• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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