Erro ao iniciar o serviço apache2

0

Eu recebo um erro quando executo este comando

sudo service apache2 start

Este é o erro

* Starting web server apache2                                      
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
(98)Address already in use: AH00072: make_sock: could not bind to address [::]:80
(98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
AH00015: Unable to open logs
Action 'start' failed.
The Apache error log may have more information.
 * 
 * The apache2 instance did not start within 20 seconds. Please read the log files to discover problems

Alguém por favor pode ajudar?

    
por vinayawsm 17.06.2015 / 16:05

1 resposta

0

Existe algo mais em execução que usa a porta 80. Pode ser outro servidor web como o nginx ou outra instância do apache em execução ... pode até ser o skype.

Você pode ver o que está usando a porta 80 com este comando:

netstat -tulpn | grep :80
    
por Sledge Hammer 17.06.2015 / 16:29