【certbot】 The requested apache plugin does not appear to be installed
問題
certbot で certbot renew --dry-run
したら、以下のエラーになりました。
Failed to renew certificate www.example.com with error: The requested apache plugin does not appear to be installed
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Processing /etc/letsencrypt/renewal/www.example.com.conf - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Cert not due for renewal, but simulating renewal for dry run Could not choose appropriate plugin: The requested apache plugin does not appear to be installed Failed to renew certificate www.example.com with error: The requested apache plugin does not appear to be installed
答え
Let’s encrypt を使うために certbot はインストールしたものの、Apache用のプラグインをインストールしていないように見えます。
以下でインストールします。
$ sudo apt install python3-certbot-apache
コメント