禁用 Bitnami 横幅后,Apache 未运行,Httpd 无法启动

禁用 Bitnami 横幅后,Apache 未运行,Httpd 无法启动

我禁用横幅后重新启动了 Apache

sudo /opt/bitnami/apps/wordpress/bnconfig --disable_banner 1

现在 Apache 不会重新启动

~$ sudo /opt/bitnami/ctlscript.sh status
php-fpm already running
apache not running
mysql already running

我试过

~$ sudo /opt/bitnami/ctlscript.sh start apache
Syntax OK
/opt/bitnami/apache2/scripts/ctl.sh : httpd could not be started

监控Apache

对于错误日志 - cat /opt/bitnami/apache2/logs/error_log
您可以在此链接中找到它
https://drive.google.com/file/d/1f2Xt0bwcMEhKcXkILLMf_kdBl0JoSZUr/view?usp=sharing

为了httpd-应用程序配置文件将副本存档于以下链接中
https://drive.google.com/file/d/1l2zEPzIU0uBHdEyFQEZ22eEPS9fMnBTO/view?usp=sharing

答案1

查看(错误)日志文件时,最新的文件位于底部,并且当应用程序无法启动时,这些文件通常是最相关的。

这表明问题不在于横幅,而在于其他东西:

[2018 年 7 月 20 日星期五 23:52:07.232239] [ssl:emerg] [pid 2058:tid 140169115285248] AH0 2565:来自 /opt/bitnami/apache2/conf /server.crt 和 /opt/bitnami/apache2/conf/server.key 的证书和私钥 localhost:443:0 不匹配 AH00016:配置失败

您的问题在于 SSL 配置,并且私钥server.key不属于证书server.crt。您需要使用正确的文件来修复该问题。

openssl 您可以使用以下方式检查 TLS 证书文件:模量必须匹配:

$ openssl x509 -noout -text -in server.crt
$ openssl rsa -noout -text -in server.key


$ openssl x509 -noout -modulus -in server.crt 
$ openssl rsa -noout -modulus -in server.key 

相关内容