Apache2 falha “start”

0

Olá a todos, eu desejo que você me ajude. Meu problema que o apache 2 não está funcionando, apesar de eu ter escrito o comando service apache2 start ou /etc/init.d/apache2 restart .

Quando eu entro em localhost eu vi isso

e ele me deu no terminal isso:

 * Restarting web server apache2                                                AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 0.0.0.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.
                                                                         [fail]
 * The apache2 instance did not start within 20 seconds. Please read the log files to discover problems
    
por Ayoub Arahmat 06.02.2016 / 22:01

1 resposta

3

A porta 80 já está em uso pelo servidor da Web lighttpd. (netstat -an | grep: 80)

Pare o lighttpd:

/etc/init.d/lighttpd stop

ou

service lighttpd stop

veja se o processo lighttpd está em execução ou não:

ps -ef |grep "lighttpd"

se sim, mate manualmente

kill -9 Process_ID

inicie o apache2

/etc/init.d/apache2 start

ou

service apache2 start
    
por editinit 06.02.2016 / 22:18