• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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