tomomik’s blog

とりあえずのメモ 違ってたらゴメンなさい

Let's Encryptを導入しようとしたら Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA. って出た

さくらのVPSで Let’s Encrypt を導入しようとしたら

Client with the currently selected authenticator does not support any combination of challenges that will satisfy the CA.

というエラーメッセージが出た時のした事のメモ。

下記を参考に作業を開始。( OSはCentOS 7)

ネコでもわかる!さくらのVPS講座 ~第六回「無料SSL証明書 Let’s Encryptを導入しよう」 | さくらのナレッジ

yum install certbot python2-certbot-apache
certbot --apache -d example.com

上記のコマンドでタイトルのエラーが発生した。

調べるとCertbotを最新版にしないといけないようだ。

community.letsencrypt.org

最新版を取得

wget https://dl.eff.org/certbot-auto
chmod a+x ./certbot-auto
./certbot-auto --version

webサーバーが動作中だったので、 Webroot プラグインSSL/TLS 証明書を発行

./certbot-auto certonly --webroot -w /var/www/example.com/htdocs -d example.com

Certbotの使い方は、「Let's Encrypt 総合ポータル」を参考にしました。 letsencrypt.jp