Certbot: Difference between revisions
From IT위키
(새 문서: 분류:인터넷분류:보안 ;Let's Encrypt에서 제공하는 인증서를 손쉽게 설치하고 갱신하는 등 관리할 수 있도롬 만들어진 ACME 도구 *...) |
No edit summary |
||
Line 2: | Line 2: | ||
;[[Let's Encrypt]]에서 제공하는 인증서를 손쉽게 설치하고 갱신하는 등 관리할 수 있도롬 만들어진 [[ACME]] 도구 | ;[[Let's Encrypt]]에서 제공하는 인증서를 손쉽게 설치하고 갱신하는 등 관리할 수 있도롬 만들어진 [[ACME]] 도구 | ||
* 개발사: Electronic Frontier Foundation (EFF)<ref>샌프란시스코의 비영리 단체</ref> | * 개발사: Electronic Frontier Foundation (EFF)<ref>샌프란시스코의 비영리 단체</ref> | ||
== 사용법 == | |||
=== 설치 === | |||
=== 갱신 === | |||
<pre> | |||
$ sudo certbot renew | |||
</pre> | |||
== 기타 == | |||
* 인증서 유효기간 등 정보 확인 | |||
$ sudo certbot certificates | |||
<pre> | |||
[ec2-user@ip-172-9-9-9~]$ sudo certbot certificates | |||
Saving debug log to /var/log/letsencrypt/letsencrypt.log | |||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |||
Found the following certs: | |||
Certificate Name: ooo.kr | |||
Serial Number: 1234567... | |||
Key Type: RSA | |||
Domains: ooo.kr | |||
Expiry Date: 2021-07-16 14:33:21+00:00 (VALID: 89 days) | |||
Certificate Path: /etc/letsencrypt/live/ooo.kr/fullchain.pem | |||
Private Key Path: /etc/letsencrypt/live/ooo.kr/privkey.pem | |||
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - | |||
</pre> | |||
== 트러블 슈팅 == | |||
* 인증서 자동 갱신 시도 시 아래와 같은 에러 발생<ref>이 외 기본적인 에러 메시지 템플릿도 출력되지만, 주요한 내용만 발췌</ref> | |||
<pre> | |||
The error was: PluginError('An authentication script must be provided with --manual-auth-hook when using the manual plugin non-interactively.',). | |||
</pre> | |||
* 원인 및 해결법: [https://darkstart.tistory.com/109?category=871909 관련 블로그 글 보기] |
Revision as of 01:16, 18 April 2021
- Let's Encrypt에서 제공하는 인증서를 손쉽게 설치하고 갱신하는 등 관리할 수 있도롬 만들어진 ACME 도구
- 개발사: Electronic Frontier Foundation (EFF)[1]
사용법
설치
갱신
$ sudo certbot renew
기타
- 인증서 유효기간 등 정보 확인
$ sudo certbot certificates
[ec2-user@ip-172-9-9-9~]$ sudo certbot certificates Saving debug log to /var/log/letsencrypt/letsencrypt.log - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Found the following certs: Certificate Name: ooo.kr Serial Number: 1234567... Key Type: RSA Domains: ooo.kr Expiry Date: 2021-07-16 14:33:21+00:00 (VALID: 89 days) Certificate Path: /etc/letsencrypt/live/ooo.kr/fullchain.pem Private Key Path: /etc/letsencrypt/live/ooo.kr/privkey.pem - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
트러블 슈팅
- 인증서 자동 갱신 시도 시 아래와 같은 에러 발생[2]
The error was: PluginError('An authentication script must be provided with --manual-auth-hook when using the manual plugin non-interactively.',).
- 원인 및 해결법: 관련 블로그 글 보기