Hi @async8
Thanks for using Bitnami WordPress!
That log file contains a number of errors - I've shown the first one below:
Could you please share the whole content of such a file?
I have reviewed the report generated by the bnsupport-tool
and found out that Apache is indeed not running. Before we deal with the reinstallation/generation of an SSL certificate, let's first try to bound that issue:
1) It seems like your apache2/conf/bitnami/bitnami.conf
contains invalid configuration (which may be the cause why the service is not able to start):
You are missing closing double quotes at the end of the SSLCipherSuite
directive.
Listen 443
SSLProtocol all -SSLv2 -SSLv3
SSLHonorCipherOrder on
- SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH !aNULL !eNULL !LOW !3DES !MD5 !EXP !P$
+ SSLCipherSuite "EECDH+ECDSA+AESGCM EECDH+aRSA+AESGCM EECDH+ECDSA+SHA384 EECDH+ECDSA+SHA256 EECDH+aRSA+SHA384 EECDH+aRSA+SHA256 EECDH !aNULL !eNULL !LOW !3DES !MD5 !EXP !P$"
2) When you followed the steps in the aforementioned guide, you should have replaced DOMAIN with your actual domain, bamXXXXX7.ca
. The new certificates seem to be generated, but you need to execute the following steps, this time making sure you use the actual domain name:
sudo ln -sf /opt/bitnami/letsencrypt/certificates/bamXXXXX7.ca.key /opt/bitnami/apache2/conf/server.key
sudo ln -sf /opt/bitnami/letsencrypt/certificates/bamXXXXX7.ca.crt /opt/bitnami/apache2/conf/server.crt
sudo chown root:root /opt/bitnami/apache2/conf/server*
sudo chmod 600 /opt/bitnami/apache2/conf/server*
3) Check that the Apache syntax is OK before proceeding. You should expect the following output:
sudo apachectl -t
# Syntax OK
4) You are now ready to restart your server!
sudo /opt/bitnami/ctlscript.sh restart apache
Best regards,
Jose Antonio Carmona
Was my answer helpful? Click on 