Posts

Showing posts with the label apache2

SOLVED apache2 Could not reliably determine the servers fully qualified domain name using 127 0 1 1 for ServerName on Xubuntu

SOLVED apache2 Could not reliably determine the servers fully qualified domain name using 127 0 1 1 for ServerName on Xubuntu Symptom You get this error message when starting apache: * Starting web server apache2 apache2: Could not reliably determine the servers fully qualified domain name, using 127.0.1.1 for ServerName Fix Open a terminal window and run: sudo sh -c echo "ServerName localhost" >> /etc/apache2/conf.d/name && sudo service apache2 restart References How to fix Apache � "Could not reliably determine the server�s fully qualified domain name, using 127.0.1.1 for ServerName" Error on Ubuntu download file now

Solve Problem AH00558 When Restarting Apache2

Solve Problem AH00558 When Restarting Apache2 Im trying to restart apache2 using this command: sudo service apache2 restart or sudo /etc/init.d/apache2 restart But get below error: AH00558: apache2: Could not reliably determine the servers fully qualified domain name, using 127.0.1.1. So, how to fix this problem? Edit file apache2.conf from directory /etc/apache2/ by use this following command: nano /etc/apache2/apache2.conf Add the following syntax in the last row of apache2.conf file: ServerName localhost So that error doesnt disappear. download file now