1

我的 apache2 在 ubuntu 上工作正常。但是现在当我重新启动它时它显示以下错误。

  • 重新启动 Web 服务器 apache2 apache2:无法可靠地确定服务器的完全限定域名,使用 127.0.1.1 作为 ServerName apache2:无法可靠地确定服务器的完全限定域名,使用 127.0.1.1 作为 ServerName

我试过卸载然后重新安装它..

我编辑我的配置文件并添加了 ServerName localhost

虽然错误消失了,但我仍然无法在浏览器上运行 localhost

4

4 回答 4

5

编辑 /etc/apache2/httpd.conf 并添加以下行

ServerName localhost

现在重新启动apache

sudo /etc/init.d/apache2 restart
于 2012-09-25T05:30:24.973 回答
2

您需要确保您的 FQDN 设置正确。

尝试以下

  1. 编辑 /etc/hostname,例如 localhost
  2. 运行:主机名 -F /etc/主机名
  3. 相应地编辑 /etc/hosts
  4. /etc/init.d/apache2 重启
于 2012-12-16T17:54:51.517 回答
1
Open Terminal (Ctrl + Alt + t)
sudo gedit /etc/apache2/httpd.conf
(you can also use any editor like nano vi )
(By default httpd.conf file will be blank. Now, simply add the following line to the file)
ServerName localhost
(Save the file and close gedit)
sudo /etc/init.d/apache2 restart
于 2013-07-06T22:55:58.480 回答
0

需要修改httpd.conf文件

须藤 vim /etc/apache2/httpd.conf

这是空白文件,您需要添加:

服务器名称本地主机

到 httpd.conf。然后重启apache。

apache2ctl 重启

于 2013-11-01T17:55:19.823 回答