facebook twitter hatena line email

Linux/LetsEncrypt導入

提供: 初心者エンジニアの簡易メモ
2016年7月2日 (土) 07:53時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「==certbot-autoのインストール== $ git clone https://github.com/certbot/certbot $ cd certbot $ ./certbot-auto ==証明書取得== ./certbot-auto certonly --webr...」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

certbot-autoのインストール

$ git clone https://github.com/certbot/certbot
$ cd certbot
$ ./certbot-auto

証明書取得

./certbot-auto certonly --webroot \
-w /var/www/example -d example.com \
-m sample@example.com \
--agree-tos

以下エラーが発生する場合はPython 2.7を入れる必要がある

./certbot-auto: line 558: virtualenv

Python 2.7のインストール

$ sudo yum install centos-release-scl
$ sudo yum install python27 python27-python-tools
$ python -V
Python 2.6.6
# デフォだと2.6なので以下コマンドで一時的に2.7へ
$ sudo scl enable python27 bash
$ python -V
Python 2.7.8