What Is Localhost? How 127.0.0.1 Works (Complete Guide)
Localhost is the name your own computer uses to refer to itself. Whenever you type…
This tutorial is applicable for:
* Parallels Plesk Panel 11.x for Linux
* Parallels Plesk Panel 10.x for Linux
* Parallels Plesk Panel 9.x for Linux/Unix
* Parallels Plesk Panel 8.x for Linux/Unix
Warning sign
# /etc/init.d/httpd restart
Stopping httpd: [FAILED]
Starting httpd: Syntax error on line 39 of
/var/www/vhosts/domain.tld/conf/13418207440.81148700_httpd.include:
SSLCACertificateFile: file ‘/usr/local/psa/var/certificates/cert-cwJPGJ’ does not exist or is empty
[FAILED]
If you are receiving the above error message when you try to restart Apache. It means the certificate file for your domain name is missing.
Solution
First of all, start Apache. Generally, a lot of customers express their frustration when Apache goes down. To get Apache up, check the certificate files:
For example:
# cd /usr/local/psa/var/certificates/
# ls -la
total 28
dr-x—— 2 root root 4096 Jun 1 07:41.
drwxr-xr-x 11 psaadm psaadm 4096 Jun 13 05:02 ..
-r——– 1 root root 3625 Jun 7 20:10 cert-a3byPq
-r——– 1 root root 3046 Jun 5 12:32 certGdzxcfT
-r——– 1 root root 2710 Jun 9 09:00 cert-YbKPly
You will find the default certificate with no dashes in its name. Copy that certificate to the file name of the missing certificate:
# cp certGdzxcfT cert-cwJPGJ
Remember, you should change both file names to match the ones on your server.
Restart Apache:
# /etc/init.d/httpd restart
Everything is fine now, but the problem domain’s SSL may give a certificate warning to website users. So we need to re-upload the domain’s certificate to the control panel, for the proper file to get generated:
This will fix your problem completely.
Explore more hosting insights, tips and industry updates.
Localhost is the name your own computer uses to refer to itself. Whenever you type…
Transferring emails from G Suite to a cPanel server can be beneficial under certain conditions,…
In this article, we will explain how to install NPM on Windows. To install NPM…