q29191 发表于 2017-1-7 11:29:19

解决apache启动错误"httpd:Could not reliably determine..."

原文地址:http://www.iyunv.com/os/201201/117797.html



启动apache遇到错误:httpd: Could not reliably determine the server's fully qualified domain name
# /usr/local/apache/bin/apachectl start

httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName

1)进入apache的安装目录:(视个人安装情况而不同) # cd /usr/local/apache/conf

2)编辑httpd.conf文件,搜索"#ServerName",添加ServerName localhost:80
# ls
extrahttpd.confmagicmime.typesoriginal
# vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80
3)再重新启动apache 即可。
# /usr/local/apache/bin/apachectl restart
页: [1]
查看完整版本: 解决apache启动错误"httpd:Could not reliably determine..."