无法重新启动 Apache 服务器

无法重新启动 Apache 服务器

我在终端中写了代码:

sudo service apache2 restart

并得到答复:

AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message

这是什么错误?

答案1

为了防止出现此消息,您应该通过在文件中添加以下行来告诉它您想要从本地主机提供服务/etc/apache2/apache2.conf

sudo gedit /etc/apache2/apache2.conf

然后添加行

ServerName localhost

保存并退出然后尝试重新启动:

sudo service apache2 restart

相关内容