====== Apache - Troubleshooting - Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName ====== ===== Error ===== When Starting or Restarting Apache, the error is seen **Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName**. ---- ===== Fix ===== Add the **ServerName** directive to /etc/apache2/httpd.conf. ServerName localhost ... ---- ===== Restart Apache ===== sudo /etc/init.d/apache2 restart ----