Centos免费Let's Encrypt SSL证书申请和自动续签

Centos免费Let's Encrypt SSL证书申请和自动续签

# 添yum源

yum -y install yum-utils
yum-config-manager --enable rhui-REGION-rhel-server-extras rhui-REGION-rhel-server-optional


# 安装certbot

sudo yum install certbot


提示 certbot 包不存在解决

yum install epel-release
# 开启测试源
yum-config-manager --enable epel-testing
# 临时开启测试源
yum update --enablerepo=epel-testing


# 只求证书,不自动配置

certbot certonly


#证书文件目录

/etc/letsencrypt/live/


# crontab 自动续期

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



猜你喜欢