1 2 3 4 5 6 7 8 9 10 11 12 13 |
// find your certbot timer name ll /usr/lib/systemd/system/ get file [certbot.timer || cerbot-renew.timer||...] // check your certbot timer systemctl status [certbot.timer || cerbot-renew.timer||...] // if the timer is not enabled systemctl start [certbot.timer || cerbot-renew.timer||...] systemctl enable [certbot.timer || cerbot-renew.timer||...] //check history of the renew task journalctl -u certbot-renew.service |