ebson

ubuntu20.04에서 certbot 기실행 에러시 해결방법 본문

NODEJS WEB PROJECT/DEVELOPMENT

ubuntu20.04에서 certbot 기실행 에러시 해결방법

ebson 2022. 8. 15. 15:28

ubuntu20.04에서 certbot 기실행 에러시 해결방법

 

1. 에러메시지 확인

$sudo certbot certonly –nginx

Another instance of Certbot is already running.

 

2. 실행중인 certbot 프로세스 찾고 종료시키기

$find / -type f -name ".certbot.lock"

$find / -type f -name ".certbot.lock" -exec rm {} \;




Comments