在ubuntu上安装apache2

时间:2012-09-25 05:07:28

标签: ubuntu apache2 ubuntu-12.04

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

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

我尝试卸载然后重新安装..

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

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

4 个答案:

答案 0 :(得分:5)

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

ServerName localhost

现在重启apache

sudo /etc/init.d/apache2 restart

答案 1 :(得分:2)

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

尝试以下

  1. 编辑/ etc / hostname,例如本地主机
  2. 运行:hostname -F / etc / hostname
  3. 相应地编辑/ etc / hosts
  4. /etc/init.d/apache2 restart

答案 2 :(得分: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

答案 3 :(得分:0)

您需要修改httpd.conf文件

  

sudo vim /etc/apache2/httpd.conf

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

  

ServerName localhost

到httpd.conf。然后重启apache。

  

apache2ctl restart