🔥

Let's Encryptのウェブサーバ証明書の手動更新

2022/03/17に公開

Let's Encryptのウェブサーバ証明書の手動更新

Let's Encryptのウェブサーバ証明書は自動更新できて便利なものの、
証明書を取得するマシンとそれが設定されるウェブサーバが異なっていても
"マニュアル・モード"で対応できます。

このマニュアル・モードは、正式なウェブサーバーとは別の
適当なPCで証明書を取得して、後でウェブサーバーに設定する流れとなります。
途中でドメイン所有とウェブサーバ保有の確認のための作業が入ります。

最初に適当なインターネットに繋がったLinux PC(ここではUbuntu 18.04)を用意。
まずは以下のコマンドでツールをインストール。

# apt install certbot

その後、証明書を取得したいドメイン名(FQDN)を指定して以下を実行。

# certbot certonly --manual -d <ドメイン名> --preferred-challenges http-01

対話式なので問に答えていけば途中まで進むのは簡単です。
なお初回のみメールアドレスを求められたりします。
進めていくと

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Create a file containing just this data:

<ファイルの内容>

And make it available on your web server at this URL:

http://<ドメイン名>/.well-known/acme-challenge/<ファイル名>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Press Enter to Continue

のようなメッセージが出ます。
ここで指定されたURLを開いたときに、指定されたファイルの内容が
返るように正規ウェブサーバ側を設定します。
ウェブブラウザで正常に開けることを確認してから
[Enter]キーを押すと確認が行われ、完了すれば証明書が取得できます。
証明書は"/etc/letsencrypt/"ディレクトリ下にあり、
参照元の"/etc/letsencrypt/live/<ドメイン名>/"ディレクトリと
実体のある"/etc/letsencrypt/archive/<ドメイン名>/"ディレクトリの
ファイルを正規のウェブサーバにコピーして立ち上げ直せば完了です。

なお初回実行時のやり取り全文を以下に載せておきます。

root@pc:~# certbot certonly --manual -d <ドメイン名> --preferred-challenges http-01
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator manual, Installer None
Enter email address (used for urgent renewal and security notices) (Enter 'c' to
cancel): <メールアドレス>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Please read the Terms of Service at
https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf. You must
agree in order to register with the ACME server at
https://acme-v02.api.letsencrypt.org/directory
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(A)gree/(C)ancel: a

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Would you be willing to share your email address with the Electronic Frontier
Foundation, a founding partner of the Let's Encrypt project and the non-profit
organization that develops Certbot? We'd like to send you email about our work
encrypting the web, EFF news, campaigns, and ways to support digital freedom.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: n
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for <ドメイン名>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NOTE: The IP of this machine will be publicly logged as having requested this
certificate. If you're running certbot in manual mode on a machine that is not
your server, please ensure you're okay with that.

Are you OK with your IP being logged?
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
(Y)es/(N)o: y

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Create a file containing just this data:

<ファイルの内容>

And make it available on your web server at this URL:

http://<ドメイン名>/.well-known/acme-challenge/<ファイル名>

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Press Enter to Continue
Waiting for verification...
Cleaning up challenges

IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
   /etc/letsencrypt/live/<ドメイン名>/fullchain.pem
   Your key file has been saved at:
   /etc/letsencrypt/live/<ドメイン名>/privkey.pem
   Your cert will expire on <日付>. To obtain a new or tweaked
   version of this certificate in the future, simply run certbot
   again. To non-interactively renew *all* of your certificates, run
   "certbot renew"
 - Your account credentials have been saved in your Certbot
   configuration directory at /etc/letsencrypt. You should make a
   secure backup of this folder now. This configuration directory will
   also contain certificates and private keys obtained by Certbot so
   making regular backups of this folder is ideal.
 - If you like Certbot, please consider supporting our work by:

   Donating to ISRG / Let's Encrypt:   https://letsencrypt.org/donate
   Donating to EFF:                    https://eff.org/donate-le

Discussion