웹서버/엔진엑스

DNS TXT / Let's Encrypt SSL 인증서 발급

삐뚤어진 개발자 2020. 1. 24.

DNS TXT  /  Let's Encrypt SSL 인증서 발급

 

 

 

무료 도메인을 사용하면서 Let's Encrypt 을 발급받으려다 보니, 아래와 같은 오류가 생겼습니다.

Failed authorization procedure. goo.ringobee.kro.kr (http-01): urn:ietf:params:acme:error:connection :: The server could not connect to the client to verify the domain :: Fetching http://goo.ringobee.kro.kr/.well-known/acme-challenge/NXqaYCws-a46TbVqRqOvLUNWz6LJ3AsMVvTo4RG0e3w: 
Timeout during connect (likely firewall problem)
 
IMPORTANT NOTES:
 - The following errors were reported by the server:
 
   Domain: goo.ringobee.kro.kr
   Type:   connection
   Detail: Fetching
   http://goo.ringobee.kro.kr/.well-known/acme-challenge
   Timeout during connect (likely firewall problem)
 
   To fix these errors, please make sure that your domain name was
   entered correctly and the DNS A/AAAA record(s) for that domain
   contain(s) the right IP address. Additionally, please check that
   your computer has a publicly routable IP address and that no
   firewalls are preventing the server from communicating with the
   client. If you're using the webroot plugin, you should also verify
   that you are serving files from the webroot path you provided.

likely firewall problem , 방화벽에 문제가 있는거 같다고 해서 방화벽, 포트 확인을 아무리해봐도 문제는 없는 것 같았습니다.

무료 도메인이라서 내 소유인지에 대한 인증이 원활히 이루어 지지 않은 것 같습니다.

 

해결방법은 DNS TXT 레코드를 등록해서 내 도메인의 소유권을 확인 시켜주면 됩니다.

 

1. 우분투 서버에 아래와 같은 명령어를 넣습니다. (내 도메인, goo.ringobee.kro.kr)

certbot certonly -d goo.ringobee.kro.kr --manual --preferred-challenges dns

이런화면이 뜨면, y를 입력후 enter를 눌러줍니다.

 

2. TXT가  출력되면 복사해 둡니다.

 

Please deploy a DNS TXT record under the name
_acme-challenge.new.lesstif.com with the following value:
 
Iqa5R_wP43obfcjexVee-dIbedG0ui9IJp_yA_HRYF214 <--여기 코드가 출력된다. 이것을 복사
 
Before continuing, verify the record is deployed.
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Press Enter to Continue

txt 코드를 복사해서,

 

 

3.

3-1 도메인 관리 -> dns txt 에 넣어줍니다.

3-2 _acme-challenge 를 txt 도메인 이름으로 설정합니다.

예를 들어, 도메인이 goo.ringobee.kro.kr 이라면, _acme-challenge.goo.ringobee.kro.kr 이 되어야합니다.  

 

 

 

4. 그리고 우분투 커널로 돌아가서 enter을 눌러주면 끝.

댓글