문서의 이전 판입니다!
인증서 갱신 오류 Certificate Renew Internal Error
Nginx Proxy Manager(이하 NPM)
사용시 인증서를 새로 갱신하려 할때 아래와 같은 오류가 발생한다.
또는 원래 인증서 유효기간이 30일 미만으로 남았을때 자동 갱신되어야 하는데 동작하지 않는다.
이는 certbot
의 동작방식이 바뀌어서 그럴수 있다.
로그 확인
certbot
이나 npm
의 로그를 확인해보면 아래와 같은 로그가 찍힌다.
시스템 로그 메시지 messages
또는 syslog
또는 journalctl -f
로 확인시 아래와 같은 로그
Oct 22 20:22:56 proxy npm[425719]: [10/22/2024] [11:22:56 AM] [SSL ] › ℹ info Renewing Let'sEncrypt certificates via Cloudflare for Cert #10: *.fatp.org, fatp.org Oct 22 20:22:56 proxy npm[425719]: [10/22/2024] [11:22:56 AM] [SSL ] › ℹ info Command: certbot renew --force-renewal --config "/etc/letsencrypt.ini" --work-dir "/tmp/letsencrypt-lib" --logs-dir "/tmp/letsencrypt-log" --cert-name 'npm-10' --disable-hook-validation --no-random-sleep-on-renew Oct 22 20:22:56 proxy npm[425719]: [10/22/2024] [11:22:56 AM] [Global ] › ⬤ debug CMD: certbot renew --force-renewal --config "/etc/letsencrypt.ini" --work-dir "/tmp/letsencrypt-lib" --logs-dir "/tmp/letsencrypt-log" --cert-name 'npm-10' --disable-hook-validation --no-random-sleep-on-renew Oct 22 20:22:56 proxy npm[425719]: [10/22/2024] [11:22:56 AM] [Express ] › ⚠ warning Saving debug log to /tmp/letsencrypt-log/letsencrypt.log Oct 22 20:22:56 proxy npm[425719]: Renewal configuration file /etc/letsencrypt/renewal/npm-10.conf is broken. Oct 22 20:22:56 proxy npm[425719]: The error was: expected /etc/letsencrypt/live/npm-10/cert.pem to be a symlink Oct 22 20:22:56 proxy npm[425719]: Skipping. Oct 22 20:22:56 proxy npm[425719]: 0 renew failure(s), 1 parse failure(s) Oct 22 20:22:56 proxy npm[425719]: Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /tmp/letsencrypt-log/letsencrypt.log or re-run Certbot with -v for more details.
위 메시지 내용을 보면 알겠지만
Oct 22 20:22:56 proxy npm[425719]: Renewal configuration file /etc/letsencrypt/renewal/npm-10.conf is broken. Oct 22 20:22:56 proxy npm[425719]: The error was: expected /etc/letsencrypt/live/npm-10/cert.pem to be a symlink
이라는 부분을 확인할 수 있다.
원래 예전버전은 해당 디렉토리의 파일이 실제 파일로 존재하였다.
디렉토리 구조는 아래와 같다.
. ├── archive │ ├── npm-10 │ │ ├── cert1.pem │ │ ├── cert2.pem │ │ ├── chain1.pem │ │ ├── chain2.pem │ │ ├── fullchain1.pem │ │ ├── fullchain2.pem │ │ ├── privkey1.pem │ │ └── privkey2.pem │ └── npm-9 │ ├── cert1.pem │ ├── cert2.pem │ ├── chain1.pem │ ├── chain2.pem │ ├── fullchain1.pem │ ├── fullchain2.pem │ ├── privkey1.pem │ └── privkey2.pem ├── credentials │ ├── credentials-10 │ └── credentials-9 ├── live │ ├── npm-10 │ │ ├── cert.pem │ │ ├── chain.pem │ │ ├── fullchain.pem │ │ ├── privkey.pem │ │ └── README │ ├── npm-9 │ │ ├── cert.pem │ │ ├── chain.pem │ │ ├── fullchain.pem │ │ ├── privkey.pem │ │ └── README │ └── README ├── renewal │ ├── npm-10.conf │ └── npm-9.conf └── renewal-hooks ├── deploy ├── post └── pre
디렉토리 구조에서 보는바와 같이 실제 인증서 파일은 live
디렉토리 아래에 존재하게 된다.
그리고 인증서를 갱신할때마다 만료된
인증서는 archive
디렉토리로 옮기고 갱신된
인증서 파일을 live
디렉토리에 위치시키는 방식이었다.
하지만 새로 바뀐 certbot
은 실제 파일 자체를 archive
디렉토리에 존재시키고 심볼릭 링크만 live
디렉토리에 두는 형태로 바뀌게 되었다.
. ├── archive │ ├── npm-12 │ │ ├── cert1.pem │ │ ├── cert2.pem │ │ ├── chain1.pem │ │ ├── chain2.pem │ │ ├── fullchain1.pem │ │ ├── fullchain2.pem │ │ ├── privkey1.pem │ │ └── privkey2.pem │ └── npm-9 │ ├── cert1.pem │ ├── cert2.pem │ ├── chain1.pem │ ├── chain2.pem │ ├── fullchain1.pem │ ├── fullchain2.pem │ ├── privkey1.pem │ └── privkey2.pem ├── credentials │ ├── credentials-10 │ └── credentials-9 ├── live │ ├── npm-12 │ │ ├── cert.pem -> ../../archive/npm-12/cert2.pem │ │ ├── chain.pem -> ../../archive/npm-12/chain2.pem │ │ ├── fullchain.pem -> ../../archive/npm-12/fullchain2.pem │ │ ├── privkey.pem -> ../../archive/npm-12/privkey2.pem │ │ └── README │ ├── npm-9 │ │ ├── cert.pem │ │ ├── chain.pem │ │ ├── fullchain.pem │ │ ├── privkey.pem │ │ └── README │ └── README ├── renewal │ ├── npm-12.conf │ └── npm-9.conf └── renewal-hooks ├── deploy ├── post └── pre
두번째 환경의 디렉토리를 구조에서 npm-12
와 npm-9
의 차이를 보면 확실히 알수 있게 된다.
npm-12
는 새롭게 바뀐 방식인데 실제 인증서는 archive
에 존재하고 그중 가장 최신 인증서만 심볼릭 링크로 live
디렉토리에 존재하는 형태로 바뀐것을 알 수 있다.
물론 갱신할때마다 파일명은 맨 뒤의 숫자가 1씩 올라가는 구조이다.
해결방법
따라서 해결방법은 현재 존재하는 인증서를 archive
디렉토리 하위로 옮기면서 가장 최근 인증서 번호+1 한 파일로 변경하고 live
디렉토리에는 해당 인증서의 심볼릭 링크만 걸어주면 된다.
귀찮다면 그냥 기존 만료된
인증서중에 1번에 해당하는것을 그냥 링크로 걸어준다음 수동으로 인증서 갱신(renew)작업을 한번 해주면 자동으로 처리된다.
주의할점은 반드시 인증서파일명 + 숫자
형태로 만들어야 한다. 뒤에 숫자가 없다면 인식하지 못한다.