httpd (nenhum arquivo pid) não está sendo executado ao reiniciar o apache

4

Estou trabalhando no Ubuntu. Recebi as mensagens de erro enquanto tentava reiniciar o apache.

root@XXX:/etc/init.d# sudo /etc/init.d/apache2 restart
 * Restarting web server apache2                                                                                                              apache2: Could not reliably determine the server's fully qualified domain name,                                                               using xxx.xxx.xx.xxx for ServerName
httpd (no pid file) not running
apache2: Could not reliably determine the server's fully qualified domain name,                                                               using xxx.xxx.xx.xxx for ServerName
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs

Recebi a seguinte mensagem quando tentei netstat -pant

tcp        0   0 0.0.0.0:80              0.0.0.0:*               LISTEN      0          32748       9950/httpd

tcp      429      0 xxx.xxx.xx.xxx:80       xxx.xxx.xx.xxx:xxxxx    CLOSE_WAIT  0          0          
    
por user59503 08.11.2010 / 07:35

4 respostas

1

Use lsof -i :80 {verifique se o parâmetro está correto). Está listando todo o aplicativo que está escutando na porta 80.

Tente também executar o apache2 {diretamente no executável} para verificar o que está acontecendo.

    
por 08.11.2010 / 14:05
1

Do post de algumas pessoas, é devido a algum applcation que liga a porta 80, então apenas emita 'killall httpd' e então 'apachectl start' para fazer tudo normal novamente.

    
por 19.09.2014 / 04:11
0

Basta matar o apache pid (acho que é 'matar 9950')

e depois tente /etc/init.d/apache2 start

    
por 08.11.2010 / 08:10
0

use pgrep apache2 para obter a lista de processos

    
por 02.10.2013 / 02:03