"Apache2.service non è attivo, impossibile ricaricare"


10

Durante l'esecuzione sudo service apache2 reload, viene visualizzato l'errore:

apache2.service is not active, cannot reload

Uscita di sudo service apache2 status

root@gamma:~# sudo service apache2 status
● apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2; bad; vendor preset: enabled)
Drop-In: /lib/systemd/system/apache2.service.d
       └─apache2-systemd.conf
Active: inactive (dead) since Sat 2016-10-15 08:23:11 UTC; 2h 28min ago
 Docs: man:systemd-sysv-generator(8)
Process: 2203 ExecStop=/etc/init.d/apache2 stop (code=exited,     status=0/SUCCESS)
Process: 2185 ExecStart=/etc/init.d/apache2 start (code=exited, status=0/SUCCESS)

Oct 15 08:23:10 gamma systemd[1]: Starting LSB: Apache2 web server...
Oct 15 08:23:10 gamma apache2[2185]:  * Starting Apache httpd web server apache2
Oct 15 08:23:11 gamma apache2[2185]: Action 'start' failed.
Oct 15 08:23:11 gamma apache2[2185]: The Apache error log may have more information.
Oct 15 08:23:11 gamma apache2[2185]:  *
Oct 15 08:23:11 gamma apache2[2203]:  * Stopping Apache httpd web server apache2
Oct 15 08:23:11 gamma apache2[2203]:  *
Oct 15 08:23:11 gamma systemd[1]: Started LSB: Apache2 web server.
root@gamma:~# sudo service apache2 reload
apache2.service is not active, cannot reload.
root@gamma:~#

Uscita di error.log

root@gamma:/# sudo service apache2 force-reload
apache2.service is not active, cannot reload.
root@gamma:/# grep '15 08:23:' /var/log/apache2/error.log
root@gamma:/# zgrep -h 'Oct 15 08:23:' /var/log/apache2/error.log*
[Sat Oct 15 08:23:11.012917 2016] [ssl:emerg] [pid 2202] AH02562: Failed to configure certificate   bot.testingsite.cf:443:0 (with chain), check /etc/apache2/ssl/bot.testingsite.cf.crt
[Sat Oct 15 08:23:11.013037 2016] [ssl:emerg] [pid 2202] SSL Library Error:    error:0906D06C:PEM rou  tines:PEM_read_bio:no start line (Expecting: TRUSTED CERTIFICATE) -- Bad file contents or format -   or even just a forgotten SSLCertificateKeyFile?
[Sat Oct 15 08:23:11.013056 2016] [ssl:emerg] [pid 2202] SSL Library Error: error:140DC009:SSL rou  tines:SSL_CTX_use_certificate_chain_file:PEM lib
root@gamma:/#

Ho provato ad abilitare il certificato SSL. Namecheap mi ha fornito un file e l'ho usato sul file ..cf.crt. Dopo aver visto questo errore ho provato a convalidare tramite il metodo DCV. Ma ho ancora questo errore. sudo service apache2 restartnon fornisce alcun output.


Possiamo vedere l'output dello stato apache2 del servizio sudo?
Manuel Alvarez,

@ManuelAlvarez Post modificato
user9677832

1
Puoi anche aggiungere l'output digrep '15 08:23:' /var/log/apache2/error.log
Martin Thornton,

Se non è presente alcun output, eseguire zgrep -h 'Oct 15 08:23:' /var/log/apache2/error.log*invece.
Martin Thornton,

Ho anche provato a riavviare l'intero sistema operativo, ma non ha aiutato.
user9677832

Risposte:


16

Fare

apachectl stop

Verrà visualizzato un messaggio di errore relativo all'errore di sintassi nel /etc/apache2/apache2.conffile

Correggilo.

Quindi fa

apachectl stop
/etc/init.d/apache2 start

Ora il ricaricamento di apache2 funzionerà

Fare

/etc/init.d/apache2 reload

In realtà, è stato un mese fa e ho dovuto reinstallare il sistema operativo. A proposito, grazie per la risposta.
user9677832

Questo ha funzionato per me!
gthuo,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.