certbot 실행시 Could not choose appropriate plugin for updaters : Could not select or initialize the requested installer nginx 오류 수정
페이지 정보
본문
Could not choose appropriate plugin for updaters : Could not select or initialize the requested installer nginx 오류 수정
letsencrypt ssl 인증서를 업데이트를 하는 과정에서 발생한 오류와 수정과정을 남긴다.
# 증상
```
certbot renew
```
letsencrypt 인증서를 업데이트 하기 위해서, 위 명령어를 수행하면, 아래와 같은 오류가 난다.
```
Could not choose appropriate plugin for updaters : Could not select or initialize the requested installer nginx
```
# 원인
python-certbot-nginx 패키지가 설치되지 않아서 발생하는 오류이다.
```
# yum list installed | grep certbot
certbot.noarch
python3-certbot.noarch
python3-certbot-apache.noarch
```
# python3-certbot-nginx 설치
python3-certbot-nginx 를 설치해도 되고,
python-certbot-nginx 를 설치하면, python3-certbot-nginx 가 설치가 된다.
```
# yum install python-certbot-nginx
```
설치 확인
```
# yum list installed | grep certbot
certbot.noarch
python3-certbot.noarch
python3-certbot-apache.noarch
python3-certbot-nginx.noarch
```
letsencrypt ssl 인증서를 업데이트를 하는 과정에서 발생한 오류와 수정과정을 남긴다.
# 증상
```
certbot renew
```
letsencrypt 인증서를 업데이트 하기 위해서, 위 명령어를 수행하면, 아래와 같은 오류가 난다.
```
Could not choose appropriate plugin for updaters : Could not select or initialize the requested installer nginx
```
# 원인
python-certbot-nginx 패키지가 설치되지 않아서 발생하는 오류이다.
```
# yum list installed | grep certbot
certbot.noarch
python3-certbot.noarch
python3-certbot-apache.noarch
```
# python3-certbot-nginx 설치
python3-certbot-nginx 를 설치해도 되고,
python-certbot-nginx 를 설치하면, python3-certbot-nginx 가 설치가 된다.
```
# yum install python-certbot-nginx
```
설치 확인
```
# yum list installed | grep certbot
certbot.noarch
python3-certbot.noarch
python3-certbot-apache.noarch
python3-certbot-nginx.noarch
```
추천0
댓글목록
등록된 댓글이 없습니다.