• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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