Crontab을 이용한 SSL 인증서 자동 갱신

갱신 테스트
sudo certbot renew --dry-run


갱신 명령어
sudo certbot renew


1.sudo yum install cronie -y
2. sudo systemctl enable crond.service
3. sudo systemctl start crond.service
4. sudo crontab -e


매 주 월요일 0시에 해당 갱신을 수행한 후 아파치를 재시작한다.

0 0 * * 1 /usr/bin/certbot renew --renew-hook="sudo systemctl restart httpd"


Ref [https://devlog.jwgo.kr/2019/04/16/how-to-lets-encrypt-ssl-renew/](https://devlog.jwgo.kr/2019/04/16/how-to-lets-encrypt-ssl-renew/) [https://jainsaket-1994.medium.com/installing-crontab-on-amazon-linux-2023-ec2-98cf2708b171](https://jainsaket-1994.medium.com/installing-crontab-on-amazon-linux-2023-ec2-98cf2708b171)

'Linux' 카테고리의 다른 글

AWS 스왑 메모리 구성하기  (0) 2024.06.24
Raid 구성하기  (0) 2024.06.22
HardLink and SoftLink  (0) 2024.06.09
AWS EC2 Nginx 설치  (0) 2024.06.09
Sudo redirection does not work  (0) 2024.06.09