o que está errado .. Não consigo iniciar o apache2? usando o comando: /etc/init.d/apache2 start

0
 * 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
    
por deni 29.01.2016 / 15:05

1 resposta

2

Address already in use: AH00072: make_sock: could not bind to address [::]:80

Como o erro indica, então você já tem um serviço ouvindo a porta 80. Tente:

service apache2 restart

Pode ser o apache que já está em execução, portanto, você pode tentar reiniciá-lo. Se você ainda tiver problemas, verifique seu sistema em busca de outros processos que possam usar a porta 80.

    
por Morten Jakobsen 29.01.2016 / 15:10