How to know which version of Certbot is installed?

Clash Royale CLAN TAG#URR8PPP up vote
1
down vote
favorite
I use a Ubuntu 16.04 with Nginx and Certbot.
I tried to execute, for example:
certbot -v
certbot -V
certbot --version
man certbot
none gave any relevant output. How could I know the version currently installed in my Ubuntu?
versions letsencrypt
add a comment |Â
up vote
1
down vote
favorite
I use a Ubuntu 16.04 with Nginx and Certbot.
I tried to execute, for example:
certbot -v
certbot -V
certbot --version
man certbot
none gave any relevant output. How could I know the version currently installed in my Ubuntu?
versions letsencrypt
What Ubuntu are you on? Are you using the Certbot PPA or no?
â Thomas Wardâ¦
Apr 10 at 16:11
Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
â user9303970
Apr 10 at 16:13
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I use a Ubuntu 16.04 with Nginx and Certbot.
I tried to execute, for example:
certbot -v
certbot -V
certbot --version
man certbot
none gave any relevant output. How could I know the version currently installed in my Ubuntu?
versions letsencrypt
I use a Ubuntu 16.04 with Nginx and Certbot.
I tried to execute, for example:
certbot -v
certbot -V
certbot --version
man certbot
none gave any relevant output. How could I know the version currently installed in my Ubuntu?
versions letsencrypt
versions letsencrypt
edited Apr 10 at 16:11
asked Apr 10 at 16:02
user9303970
81112
81112
What Ubuntu are you on? Are you using the Certbot PPA or no?
â Thomas Wardâ¦
Apr 10 at 16:11
Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
â user9303970
Apr 10 at 16:13
add a comment |Â
What Ubuntu are you on? Are you using the Certbot PPA or no?
â Thomas Wardâ¦
Apr 10 at 16:11
Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
â user9303970
Apr 10 at 16:13
What Ubuntu are you on? Are you using the Certbot PPA or no?
â Thomas Wardâ¦
Apr 10 at 16:11
What Ubuntu are you on? Are you using the Certbot PPA or no?
â Thomas Wardâ¦
Apr 10 at 16:11
Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
â user9303970
Apr 10 at 16:13
Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
â user9303970
Apr 10 at 16:13
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
1
down vote
accepted
14.04 and 16.04 systems (and NOT using the PPA):
Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.
If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.
To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.
14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:
At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.
As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.
And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.
To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):
$ apt-cache policy certbot | grep -i Installed
Installed: 0.22.2-1+ubuntu16.04.1+certbot+1
As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.
add a comment |Â
up vote
0
down vote
If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.
Try this command below:
sudo /PATH/TO/certbot-auto --version
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
14.04 and 16.04 systems (and NOT using the PPA):
Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.
If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.
To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.
14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:
At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.
As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.
And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.
To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):
$ apt-cache policy certbot | grep -i Installed
Installed: 0.22.2-1+ubuntu16.04.1+certbot+1
As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.
add a comment |Â
up vote
1
down vote
accepted
14.04 and 16.04 systems (and NOT using the PPA):
Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.
If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.
To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.
14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:
At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.
As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.
And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.
To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):
$ apt-cache policy certbot | grep -i Installed
Installed: 0.22.2-1+ubuntu16.04.1+certbot+1
As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.
add a comment |Â
up vote
1
down vote
accepted
up vote
1
down vote
accepted
14.04 and 16.04 systems (and NOT using the PPA):
Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.
If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.
To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.
14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:
At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.
As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.
And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.
To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):
$ apt-cache policy certbot | grep -i Installed
Installed: 0.22.2-1+ubuntu16.04.1+certbot+1
As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.
14.04 and 16.04 systems (and NOT using the PPA):
Ubuntu Trusty and Ubuntu Xenial both do not have certbot installed by default. To get Certbot, you had to be using the Certbot PPA maintained by the Certbot developers.
If you are not using the PPA (which you would have installed using sudo add-apt-repository ppa:certbot/certbot), you don't have Certbot.
To get Certbot, you should read through the instructions on the Certbot Website by choosing your specific release, and then follow the guide to set up Let's Encrypt.
14.04/16.04 systems using the PPA, or Ubuntu 17.10 or later:
At the time of this post, Ubuntu releases 16.10 and 17.04 are past End of Life and not included for this answer.
As of 17.10 (and potentially earlier, see my note above), Certbot is included in the repositories.
And if you are on older Ubuntu (14.04 or 16.04), and you are using the PPA, then certbot is available.
To find the version of Certbot installed, you can use apt-cache policy certbot | grep Installed to get the information, as shown below (note that the version information shown below is accurate as of April 10, 2018 at 12:18, on a brand new 'certbot' installation):
$ apt-cache policy certbot | grep -i Installed
Installed: 0.22.2-1+ubuntu16.04.1+certbot+1
As you can see, version 0.22.2 is installed on this computer here, which is a 16.04 machine using the Certbot PPA.
answered Apr 10 at 16:18
Thomas Wardâ¦
41.4k23112166
41.4k23112166
add a comment |Â
add a comment |Â
up vote
0
down vote
If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.
Try this command below:
sudo /PATH/TO/certbot-auto --version
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
add a comment |Â
up vote
0
down vote
If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.
Try this command below:
sudo /PATH/TO/certbot-auto --version
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
add a comment |Â
up vote
0
down vote
up vote
0
down vote
If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.
Try this command below:
sudo /PATH/TO/certbot-auto --version
If you did not get the certbot with apt like @Thomas Ward said, you will get it with the wget command as a stand-alone application instead.
Try this command below:
sudo /PATH/TO/certbot-auto --version
edited Aug 27 at 14:50
abu_bua
2,16031021
2,16031021
answered Aug 27 at 12:08
Kyle KIM
1011
1011
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
add a comment |Â
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
I recommend to edit this answer to expand it with specific details about how to do this. (See also How do I write a good answer? for general advice about what sorts of answers are considered most valuable on Ask Ubuntu.)
â abu_bua
Aug 27 at 14:52
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1023709%2fhow-to-know-which-version-of-certbot-is-installed%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e)
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom))
StackExchange.using('gps', function() StackExchange.gps.track('embedded_signup_form.view', location: 'question_page' ); );
$window.unbind('scroll', onScroll);
;
$window.on('scroll', onScroll);
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
What Ubuntu are you on? Are you using the Certbot PPA or no?
â Thomas Wardâ¦
Apr 10 at 16:11
Updated the question. Yes I downloaded a PPA (I think "downloaded" is correct), and only then I could install Certbot.
â user9303970
Apr 10 at 16:13