二、安装Apache(访问代理主机)
1.下载apache源代码
解压缩 tar fvxz httpd-2.2.2.tar.gz
2.进入解压后的目录。进行配置:
. / configure -- prefix =/ usr / apache -- enable - module = most -- enable - proxy -- enable - proxy - ajp -- enable - forward -- enable - proxy - connect -- enable - proxy - http -- enable - so -- enable - deflate -- enable - headers -- enable - include
上面的配置,用到了其他一些模块,说不定以后会用到,如支持ssi的include模块。
3.编译(编译如果不成功,确认一下你的linux是否安装有编译所需要的c环境和其他需要的类库)
make
4.安装 make install
5.进入/usr/apache目录,运行apache ./apachectl -k start
运行apache后,浏览一下是否运行正常。
关闭apache ./apachectl -k stop
6.把apache作为linux的启动就运行服务程序
执行如下操作:cp /usr/apache/bin/apachectl /etc/rc.d/init.d/httpd
确认linux以前安装的httpd(apache)不需要了,你可覆盖掉以前apache的httpd文件。
chkconfig --add httpd
运行linux的setup,把httpd服务默认设定为自动运行。
到现在,你就可用另一种方式来启动、关闭apache了。如service httpd start