LETSENCRYPT 인증서 갱신 renew parsefail
인증서가 만료가 다 되어 letsencrypt renew 를 했더니 아래처럼 에러가 나네요~
다른 서버에서 발급 받은 인증서를 옮긴 서버에 복사해서 사용해서 그런거 같기도 하네요.
Additionally, the following renewal configuration files were invalid:
/etc/letsencrypt/renewal/www.example.com.conf (parsefail)
아무튼 이런 경우엔 관련 파일을 다 지우고 다시 발급 받으면 되더군요~
# rm -rf /etc/letsencrypt/archive/www.example.com
# rm -rf /etc/letsencrypt/live/www.example.com
# rm -rf /etc/letsencrypt/renewal/www.example.com.conf
파일을 지운 다음에 다시 발급 받아 보세요.
CentOS 6.x 버전은
/root/letsencrypt/letsencrypt-auto certonly --standalone --agree-tos -m email@example.com -d www.example.com
CentOS 7.x 버전은
/usr/bin/letsencrypt certonly --standalone --agree-tos -m email@example.com -d www.example.com
인증서가 발급되었는지 확인해보세요.
'LINUX' 카테고리의 다른 글
MySQL Max processes 늘이기 (0) | 2017.07.20 |
---|---|
MySQL query_cache_limit query_cache_size 튜닝 (0) | 2017.07.12 |
NGINX 다운로드 트래픽 제어 (0) | 2017.07.07 |
CentOS 6.x phpMyAdmin 4.0.x 설치 (0) | 2017.07.06 |
CentOS 6.x yum install phpmyadmin 설치에러 (0) | 2017.07.06 |