您的位置:首页 > 运维架构 > Apache

Apache服务器安装

2006-12-26 16:14 141 查看
Download
$ lynx http://httpd.apache.org/download.cgi[/code] 
Extract
$ gzip -d httpd-2_0_NN.tar.gz
$ tar xvf httpd-2_0_NN.tar
Configure
$ ./configure --prefix=PREFIX
Compile
$ make
Install
$ make install
Customize
$ vi PREFIX/conf/httpd.conf
Test
$ PREFIX/bin/apachectl start
 

apache原代码下载:

 http://www.apache.org/dist/httpd/httpd-2.0.NN.tar.gz

NN是数字。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  apache 服务器 download