• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Question Deleted domain - Could not issue/renew Let`s Encrypt certificates for Administrator

nornagest

New Pleskian
Server operating system version
Ubuntu 20.04
Plesk version and microupdate number
18.0.49
Hi
I had a domain, now cancelled, but I still keep getting this message via email.
How do I fix?
Tnx!
 
Login to Plesk and navigate to your domain, click on SSL/TLS Certificates, next click set the "Keep websites secured" toggle to off.
 
This might not be sufficient. If @Kaspar 's solution cannot fix the issue, also do this, please:

1) The domain might be listed in the current orders. Please check at:
# ls -l /usr/local/psa/var/modules/sslit/etc/live/ | grep <your domain name>
If the folder does exist, please remove it as follows:
2) mv /usr/local/psa/var/modules/sslit/etc/live/<your domain name>/ ~/
3) Also, it might exist in the SSLIt database. You can see it as follows:
3a) Access the SSL It database:
#sqlite3 /usr/local/psa/var/modules/sslit/sslit.sqlite3
3b) Run the following command to check the last 10 notifications and their state:
> select id,createdDate,state,params from Notification where params like '%<your domain name>%' order by id desc limit 10;
3c) If there are still entries in the output, remove the notification entries, else these would still be processed:
> delete from Notification where params like '%<your domain name>%';
3d) Exit SQLite
> .quit
 
Back
Top