
Debian 11에서 Certbot을 업데이트하는 방법
2022-10-01 last update
4 minutes reading productivity certbot debian ssl문제에 대한 설명
Debian 11에서 CertBot 버전은 다음과 같습니다. https://packages.debian.org/bullseye/certbot
(2022년 8월 28일 = 1.12.0)
마지막 릴리스: https://github.com/certbot/certbot/releases
(2022년 8월 28일 = 1.29.0)
데비안 11에서 CertBot은 구식입니다. 첫 번째 단계: 설치된 경우 제거합니다.
sudo apt remove certbot -y
CertBot 설치
sudo apt remove certbot -y
sudo apt install snapd -y
sudo snap install core; sudo snap refresh core
sudo snap install --classic certbot
sudo ln -s /snap/bin/certbot /usr/bin/certbot
설치된 CertBot 버전 확인
1.- 버전 보기: sudo certbot --version
출력: certbot 1.29.0
수동으로 사용
다음 명령에서 이메일을 [email protected]로 바꿉니다. 그리고 도메인의 *.example.com
sudo certbot certonly --manual --preferred-challenges=dns --email [email protected] --agree-tos -d *.example.com
마지막으로 명령줄에서 CertBot 단계를 따르십시오.
다음 명령에서 이메일을 [email protected]로 바꿉니다. 그리고 도메인의 *.example.com
sudo certbot certonly --manual --preferred-challenges=dns --email [email protected] --agree-tos -d *.example.com
마지막으로 명령줄에서 CertBot 단계를 따르십시오.