Ubuntu下安装apache,绑定地址有时为127.0.1.1,伴随着提示信息:
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
我们知道只要127.开头的地址是回环地址,任何一个127.*都访问的是本机回环地址。
不过,我们习惯了使用127.0.0.1作为回环地址,以下是解决办法:
sudo gedit /etc/apache2/apache2.conf
文件最后加上:
#Server Name
ServerName 127.0.0.1