Linux 安装Apache

卸载

默认安装的 httpd 包

rpm -e httpd --nodeps

源码包安装

解压:tar -zxvf httpd-2.2.21.tar.gz -C /

配置:

./configure --prefix=/usr/local/httpd
--enable-so
--enable-rewrite
--enable-charset-lite
--enable-cgi

编译并安装

make&&make install

添加环境变量

export HTTPD_HOME=/usr/local/httpd
export PATH=$PAHT:$HTTPD_HOME/bin

控制脚本

复制
cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd

修改控制脚本,添加到系统服务

vim /etc/init.d/httpd

添加:

#chkconfig: 35 85 21
#description:Nginx Server

生效:

chkconfig --add httpd

启动服务

/etc/init.d/httpd start