linux - restart apache出现ServerName

* Restarting web server apache2 AH00558: apache2: 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

在重启apache服务的时候(Ubuntu)输入命令:sudo /etc/init.d/apache2 restart

出现上面的警告(这个不算是错误),这个错误很明显,说的是在apache里没有定义ServerName这个变量,解决方法很简单:

ServerName localhost

把这句话插入到httpd.conf(假如没有插入到apache2.conf)里就可以了。

你可能感兴趣的:(apache)