我正在运行certbot --apache,但是我得到了以下错误:
Starting new HTTPS connection (1): acme-v01.api.letsencrypt.org
Obtaining a new certificate
Performing the following challenges:
Client with the currently selected authenticator does not support any
combination of challenges that will satisfy the CA.安装在Debian8.10上的版本是0.10.2
我想升级到0.21.0,这将修复https://community.letsencrypt.org/t/certbot-0-21-0-release/50725问题
但是我尝试了apt-获取更新/升级,我得到了以下内容:
certbot is already the newest version.
certbot set to manually installed.对如何更新有什么建议吗?
发布于 2018-02-26 21:34:24
不知道我是怎么错过这个的。来自安装文档https://certbot.eff.org/docs/install.html#certbot-auto
user@webserver:~$ wget https://dl.eff.org/certbot-auto
user@webserver:~$ chmod a+x ./certbot-auto
user@webserver:~$ ./certbot-auto --help发布于 2020-04-27 17:11:05
您可以检查您的软件版本,但这是可行的:
sudo apt-get update -y
sudo apt-get install software-properties-common
sudo add-apt-repository universe
sudo add-apt-repository ppa:certbot/certbot
sudo apt-get update -y
sudo apt-get install certbot python-certbot-apache
certbot --version发布于 2021-05-24 14:49:33
sudo apt update
sudo apt install --only-upgrade certbot用nginx在ubuntu上试过,对我来说没有问题。
https://stackoverflow.com/questions/48997079
复制相似问题