1.错误描述:
重启Apache服务出现下列警告:
service apache2 restart
* Restarting web server apache2
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 192.168.1.1. Set the 'ServerName' directive globally to suppress this message
...done.
2.错误解决(ubuntu):
在/etc/apache2/apache2.conf配置文档中加入下面的一句:
ServerName 127.0.0.1:80
再次重启Apache服务后,警告消除
root@server:~# service apache2 restart
* Restarting web server apache2
...done.
root@server:~#
本文详细介绍了在Ubuntu环境下遇到Apache服务启动时出现的警告:无法可靠确定服务器的完全合格域名名称,并提供了通过在配置文件中添加特定指令来解决此问题的方法。通过将'ServerName'设置为'127.0.0.1:80',成功消除了警告,确保了Apache服务稳定运行。
4775

被折叠的 条评论
为什么被折叠?



