web-dev-qa-db-fra.com

"Apache2.service n'est pas actif, impossible de recharger"

Lors de l'exécution de Sudo service Apache2 reload, j'obtiens l'erreur suivante:

Apache2.service is not active, cannot reload

Sortie de 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:~#

Sortie deerror.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:/#

J'ai essayé d'activer le certificat SSL. Namecheap m'a fourni un fichier et je l'ai utilisé sur le fichier ..cf.crt. Après avoir vu cette erreur, j'ai essayé de valider via la méthode DCV. Mais je reçois toujours cette erreur. Sudo service Apache2 restart ne donne aucune sortie.

8
user9677832

Faire

apachectl stop

Un message d'erreur concernant une erreur de syntaxe sera généré dans le fichier /etc/Apache2/Apache2.conf

Corrige le.

Alors fais

apachectl stop
/etc/init.d/Apache2 start

Maintenant, le rechargement d’Apache2 fonctionnera

Faire

/etc/init.d/Apache2 reload
13
rancho