码迷,mamicode.com
首页 > Web开发 > 详细

如何解决apache启动时错误:Could not reliably determine the server's fully qualified domain name

时间:2015-12-12 09:33:22      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

启动apache遇到错误:httpd: Could not reliably determine the server‘s fully qualified domain name

[root@server httpd-2.2.4]# /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的安装目录:(视个人安装情况而不同)

[root@server ~]# cd /usr/local/apache/conf

2)编辑httpd.conf文件,搜索"#ServerName",添加

ServerName localhost:80
[root@server conf]# ls
extra  httpd.conf  magic  mime.types  original
[root@server conf]# vi httpd.conf
#ServerName www.example.com:80
ServerName localhost:80

3)再重新启动apache 即可。

[root@server ~]# /usr/local/apache/bin/apachectl restart

如何解决apache启动时错误:Could not reliably determine the server's fully qualified domain name

标签:

原文地址:http://www.cnblogs.com/shouce/p/5040728.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!