1
Showfom 2018-03-27 16:02:09 +08:00
太早了吧续了吧,晚几天再试试
|
3
huaxing0211 2018-03-27 22:01:21 +08:00
换 acme.sh ……
|
4
ponote 2018-03-27 22:24:35 +08:00
参考: https://www.ponote.com/article/56903
lets encrypt 自动续期: 先查看 cron 的状态: ---------------------------- service crond status ---------------------------- 如果未安装,请先安装 cron,如果已安装 ---------------------------- crontab -e ---------------------------- 然后直接“:wq ”保存退出,(你也可以直接在 VI 界面编辑内容) 然后 ftp 进入 /var/spool/cron,大概 root 文件,粘贴下面内容,保存,重启服务: ---------------------------- 10 1 1 * * /etc/init.d/nginx stop 11 1 1 * * /opt/letsencrypt/letsencrypt-auto certonly --quiet --standalone --renew-by-default -d www.example.com -d example.com >> /var/log/letsencrypt/letsencrypt-auto-update.log 18 1 1 * * /etc/init.d/nginx restart ---------------------------- 完成 |
5
jackietsui72 2018-03-28 01:58:28 +08:00
certbot renew --dry-run 去掉--dry-run 参数吧,看返回信息是没报错的。
|
6
Akill47 OP @jackietsui72 No renewals were attempted.
|
7
kaneg 2018-03-29 13:43:57 +08:00
先把 log 文件的内容贴上来: /var/log/letsencrypt/letsencrypt.log
|