본문 바로가기
JAVA 공부/Server

[CentOS7/Putty] 서트봇(CertBot(https) 인증서 자동갱신설정)

by KyeongOUK 2020. 9. 18.

https로 바꿔주는 서트봇은 유효기간이 있다. 예를 들어

 

3개월밖에 안됨으로, 자동갱신설정 해두면 사용하기가 편해진다.

 

 

아래 셋팅하면 3개월리뉴얼을 갱신해준다. 

  • echo "0 0,12 * * * root python -c 'import random; import time; time.sleep(random.random() * 3600)' && certbot renew -q" | sudo tee -a /etc/crontab > /dev/null

추가가 됬는지 확인 방법

sudo vim /etc/crontab

0 0,12 * * * root ~ 로 시작되는 문장 한줄이 추가된걸 확인할 수 있다. 

 

crontab 은 자동실행을 뜻한다. 

댓글