本文共 1492 字,大约阅读时间需要 4 分钟。
阅读目录
下载解压apr-1.4.5
./configure --prefix=/usr/local/aprmakesudo make install
下载解压apr-util-1.5.2
./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/aprmakesudo make install
下载解压pcre-7.8.tar.gz
./configure --prefix=/usr/local/pcremakesudo make install
下载解压httpd-2.4.12
./configure --prefix=/usr/local/httpd --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-pcre=/usr/local/pcre --enable-so --enable-rewritemakesudo make install
--enable-so 支持DSO模式(动态模块加载方式)
--enable-rewrite 支持rewrite(地址重定向)建立软链接
sudo ln -s /usr/local/httpd/bin/apachectl /usr/local/bin/apachectl
sudo apachectl start
启动异常
$sudo ./apachectl start
1 2 | AH00557: httpd: apr_sockaddr_info_get() failed for test10.125.8.116 AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName' directive globally to suppress this message |
原因:这个问题应该是没有在 /etc/httpd/conf/httpd.conf 中设定 ServerName。所以apache会用主机上的名称来取代,首先会去找 /etc/hosts 中有没有主机的定义。
解决:在/etc/httpd/conf/httpd.conf中添加上ServerName=****
打开浏览器输入ip,显示It works! 表示成功了。
添加网页
文件:/usr/local/httpd/htdocs/test.html
内容
Test works OK!
重启服务
sudo apachectl restart
验证
1. 修改Web站点目录
默认的Web站点目录:/usr/local/apache2/htdocs,如果修改,例如"/home/gyw/WebSite"的目录作为apache的站点目录
找到DocumentRoot这一行修改为:DocumentRoot "/home/gyw/WebSite"
找到 <Directory> 这一行修改为:<Directory "/home/gyw/WebSite">
本文转自jihite博客园博客,原文链接:http://www.cnblogs.com/kaituorensheng/p/5162560.html,如需转载请自行联系原作者