下载Unix Source: httpd-2.2.8.tar.gz http://httpd.apache.org/download.cgi
将包放在/home/software中
cd /home/software
tar -zxvf httpd-2.2.8.tar.gz
./buildconf
./configure --prefix=/usr/local/apache2 --enable-modules=most --enable-mods-shared=all
make
make install
安装apache到/usr/local/apache2中,并配置apache支持dso(动态共享对象,推荐)方式,dso方式不仅容易更新个别的模块而不需要编译整个服务器,而且只需要通过编辑配置文件就可以在服务器的配置中新增或者删除模块。
启动服务器:
/usr/local/apache2/bin/apachectl start
重启服务器:
/usr/local/apache2/bin/apachectl restart
停止服务:
/usr/local/apache2/bin/apachectl stop
重新加载配置文件并启动服务:
/usr/local/apache2/bin/apachectl graceful