通过手动模式获取的 letsencrypt 证书是无法通过 certbot new 更新的。
如果输入 certbot renew 只会得到如下形式的报错
1 2 |
2016-09-19 21:01:50,123:WARNING:certbot.renewal:Attempting to renew cert from /etc/letsencrypt/renewal/llonely.com.conf produced an unexpected error: The manual plugin is not working; there may be problems with your existing configuration. The error was: PluginError('Running manual mode non-interactively is not supported',). Skipping. |
certbot 的 manual 插件不支持非交互形式,因此,如果需要更新通过 manual 插件获取的证书,需要再次执行此前获取该证书时输入的命令,例如 certbot certonly --manual -d llonely.com 。