• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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