跳转到内容

Apache/安装

来自维基教科书,开放世界中的开放书籍

该程序可以从 http://www.apache.org/dyn/closer.cgi 单独安装。

但是,一般来说,最好使用一体化解决方案,例如 WAMPEasyPHP,因为它同时包括 PHPMySQL 的安装。

除此之外,还有一个便携式一体化解决方案,那就是 XAMPP

备注(在 PC 上):


默认情况下,Apache 设置为在启动时自动启动,这在服务器上很方便。但是,在 PC 上,最好创建一个脚本来手动启动和停止它。以 EasyPHP 为例

net start ews-dbserver
net start ews-httpserver
net start ews-dashboard
pause
net stop ews-dashboard
net stop ews-httpserver
net stop ews-dbserver
 apt-get install apache2
 emerge apache

在大多数配置修改之后,应手动重新启动服务

 vim /etc/httpd/conf/httpd.conf
#or
 vim /etc/apache2/apache2.conf

 /etc/init.d/apache2 restart
华夏公益教科书