我的apache2在ubuntu上运行正常。 但是现在它在重新启动时显示以下错误。
我尝试卸载然后重新安装..
我编辑配置文件并添加了ServerName localhost
虽然错误消失但我仍然无法在浏览器上运行localhost
答案 0 :(得分:5)
编辑/etc/apache2/httpd.conf 并添加以下行
ServerName localhost
现在重启apache
sudo /etc/init.d/apache2 restart
答案 1 :(得分:2)
您需要确保正确设置了FQDN。
尝试以下
答案 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