Não consigo reiniciar o servidor Apache

Não consigo reiniciar o servidor Apache

Eu escrevi o código no terminal:

sudo service apache2 restart

E obtive a resposta:

AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message

O que é esse erro?

Responder1

Para evitar que esta mensagem apareça, você deve dizer que deseja servir a partir do localhost adicionando a seguinte linha ao seu /etc/apache2/apache2.confarquivo:

sudo gedit /etc/apache2/apache2.conf

Em seguida, adicione a linha

ServerName localhost

Salve e saia e tente reiniciar:

sudo service apache2 restart

informação relacionada