
Si al querer comenzar usar tu servidor apache tenes el siguente problema
silvana@silvana-desktop:~$ sudo /etc/init.d/apache2 restart
* Restarting web server apache2 apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
No desesperes ni rompas nada, seguramente (como yo) has estado metiendo mano en los archivos de configuracion del servidor y comienzan los confictos la solucion FACILISIMA :
Para corregir este problema, necesitas editar el archivo httpd.conf y apache2.conf abrelo en una terminal y digita
sudo gedit /etc/apache2/apache2.conf
AGREGAR
# ServerName
ServerName localhost
sudo gedit /etc/apache2/httpd.conf
Por defecto el archivo httpd.conf esta en vacio, simplemente escribe lo siguiente.
ServerName localhost
Guarda el archivo y cierra el editor, y finalmente reinicias el servidor.
Listo!!!
sudo /etc/init.d/apache2 restart
Fuente blog.miasoftware

