tomo-k blog

気まぐれblogサイト

cronの起動

さくらVPSの起動デーモン🔗を確認した所、crond.service が起動されているようだ。

Cronを利用して、毎日AM3時にLet’s Encrypt SSL証明書の更新の実行する設定をしてみる。

CentOSのCronの確認方法

#systemctl status crond.service

動作してなかったら

#sudo systemctl enable crond.service

#sudo systemctl start crond.service

Let’s Encrypt SSL証明書の更新

crontabファイルを編集する。

#crontab -e
0 3 *  *  * root /usr/bin/certbot renew

:wq!

ログの確認

#tail -f /var/log/cron

↓AM3時に、「0 3 *  *  * root /usr/bin/certbot renew」が実行されているようだ。

Mar 16 03:00:01 tk2-219-19109 CROND[24901]: (root) CMD (root /usr/bin/certbot renew)