o apache2 não está iniciando

0
Starting web server apache2
(99)Cannot assign requested address: AH00072: make_sock: could not bind to address 10.0.1.43:8069
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 Bhaviraj Brahmshatriya 04.11.2016 / 09:13

1 resposta

1

Como a mensagem de erro diz " (99)Cannot assign requested address: AH00072: make_sock: could not bind to address 10.0.1.43:8069 no listening sockets available, shutting down ". Algum outro processo alocou o socket que você está tentando fazer o Apache usar (provavelmente uma tentativa anterior de iniciar o Apache).

Descubra em qual processo a porta TCP 8069 está aberta:

sudo lsof -i :8069  
    
por waltinator 04.11.2016 / 14:10