## 解决apache启动错误"httpd:Could not reliably determine fully qualified domain name, using "ip" for Serve

解决apache启动错误"httpd:Could not reliably determine fully qualified domain name, using “ip” 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

有用点赞,没用咱也不清楚

发布了4 篇原创文章 · 获赞 9 · 访问量 257

猜你喜欢

转载自blog.csdn.net/jkkbiancheng/article/details/105454643