关于Apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 fo

关于Apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName

最近准备学习php,所以就配了个apache2,突然发现每次启动apache都会提示 Apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName这个错误,百度了一番,分享下解决方法:

  
  
  
  
  1. sudo gedit /etc/apache2/httpd.conf

里面加一行ServerName localhost就OK了;
有可能你没有这个文件或者这个文件是空的,添加就行了.
然后我重启apache,发现还是提升这个错误,又百度了一番,发现是apache的默认配置文件apache2.conf中没有引用这个httpd.conf配置文件,解决办法是在include httpd.conf这个文件:

  
  
  
  
  1. sudo gedit /etc/apache2/apache2.conf

找到

  
  
  
  
  1. # Include module configuration:
  2. Include /etc/apache2/mods-enabled/*.load
  3. Include /etc/apache2/mods-enabled/*.conf
  4. ……
  5. # Include ports listing
  6. Include ports.conf
  7. ……
  8. # Include generic snippets of statements
  9. Include conf.d/
  10. ……
  11. # Include the virtual host configurations:
  12. Include sites-enabled/

这些语句随便哪里插入:

  
  
  
  
  1. # Include all the user configurations:
  2. Include httpd.conf

就可以了.
还有一点,更改默认的web文档根目录:对于Ubuntu而言,默认的是/var/www。怎么知道的呢?apache2.conf里并没有DocumentRoot项,httpd.conf又是空的,因此肯定在其他的文件中。经过搜索,发现在/etc/apache2/sites-enabled/000-default中,里面有这样的内容:

  
  
  
  
  1. NameVirtualHost *
  2. <VirtualHost *>
  3. ServerAdmin webmaster@localhost
  4. DocumentRoot /var/www/

这个就是了.更改成你想要的就可以了,当然别忘了设置权限哦!

你可能感兴趣的:(关于Apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 fo)