• Please be aware: Kaspersky Anti-Virus has been deprecated
    With the upgrade to Plesk Obsidian 18.0.64, "Kaspersky Anti-Virus for Servers" will be automatically removed from the servers it is installed on. We recommend that you migrate to Sophos Anti-Virus for Servers.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Resolved Plesk Lets Encrypt outdated, would not update

maennchen1

New Pleskian
Hi!
My Plesk (Version 18.0.26) certificate is outdated. So I decided to renew it manually. After that it's still outdated.
I deleted it (Home > Tools & Settings > SSL/TLS Certificates) regarding to this docs. And create a new certificate. My browser always says I got that same old certificate... :(
I tried another browser on another network, cleared cache a.s.o.. Always the same old certificate.

Checked date from "SSLCertificateFile" (/etc/apache2/plesk.conf or /etc/nginx/plesk.conf.d/server.conf) in /opt/psa/var/certificates/ and it's from now. Are the certificates cached?
How can I fix it?
Bildschirmfoto 2020-05-25 um 15.32.16.png
 
  1. Connect to the server via SSH
  2. Get the PID of the sw-cp-server processes:
    Code:
    # ps awufx | egrep sw-cp-server | grep -v grep | awk '{print $2}'
    1594
  • Kill the sw-cp-server processes:
    Code:
    # kill -9 1594
  • Restart the sw-cp-server service:
    Code:
    # systemctl restart sw-cp-server.service
this should help
 
Back
Top