Reiniciando nuestro servidor apache nos encontramos con el siguiente error
* Restarting web server apache2 apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
… waiting apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
Para solucionarlo primero revisamos que tengamos correctamente nuestro host
vi /etc/hosts
127.0.0.1 localhost localhost.syswoody syswoody.syswoody
Ahora editamos nuestro fichero de configuracion de apache para añadir la directiva ServerName
vi /etc/apache2/apache2.conf
añadimos
ServerName 127.0.0.1
Ya podemos reiniciar nuestro servidor sin este mensaje de error.