Installing Certbot: Difference between revisions
Jump to navigation
Jump to search
(Created page with "In short, to install Certbot on CentOS 7, run the following commands: yum install snapd ; systemctl enable --now snapd.socket ; ln -s /var/lib/snapd/snap /snap snap inst...") |
No edit summary |
||
Line 1: | Line 1: | ||
In short, to install Certbot on CentOS 7, run the following commands: | In short, to install Certbot on CentOS 7, run the following commands: | ||
yum install snapd ; systemctl enable --now snapd.socket ; ln -s /var/lib/snapd/snap /snap | yum -y install snapd ; systemctl enable --now snapd.socket ; ln -s /var/lib/snapd/snap /snap | ||
snap install core; snap refresh core ; snap install --classic certbot ; ln -s /snap/bin/certbot /usr/bin/certbot | snap install core; snap refresh core ; snap install --classic certbot ; ln -s /snap/bin/certbot /usr/bin/certbot |
Revision as of 17:54, 16 April 2021
In short, to install Certbot on CentOS 7, run the following commands:
yum -y install snapd ; systemctl enable --now snapd.socket ; ln -s /var/lib/snapd/snap /snap snap install core; snap refresh core ; snap install --classic certbot ; ln -s /snap/bin/certbot /usr/bin/certbot