Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to update Certbot version?

I am running certbot --apache but I get the following error:

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. 

Version installed is 0.10.2 on Debian 8.10

I would like to upgrade to 0.21.0 which should fix the issue https://community.letsencrypt.org/t/certbot-0-21-0-release/50725

but I tried apt-get update/upgrade and I get the following:

certbot is already the newest version. certbot set to manually installed. 

Any suggestions on how to update?

like image 928
xylar Avatar asked Feb 26 '18 21:02

xylar


People also ask

What is Certbot latest version?

Certbot 1.22. class from the Python standard library.

How do I know if Certbot is installed Ubuntu?

certbot --version is the correct syntax here. If you do not have certbot installed and you type that, it will generate the error certbot: command not found . This is not a sign of incorrect syntax, but rather, the sign that it is not installed.

Where is Certbot installed?

Certbot is run from a command-line interface, usually on a Unix-like server. In order to use Certbot for most purposes, you'll need to be able to install and run it on the command line of your web server, which is usually accessed over SSH.


1 Answers

Not sure how I missed this. From the install docs 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 
like image 118
xylar Avatar answered Sep 20 '22 22:09

xylar