Last active
January 27, 2023 12:06
-
-
Save JoelWekesa/40eeab6088191a5b8311ce66bff4671e to your computer and use it in GitHub Desktop.
Install certbot with snapd
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Step 1: Install snapd: | |
| - sudo apt install snapd | |
| Step 2: Ensure you have the latest snapd version installed: | |
| - sudo snap install core; sudo snap refresh core | |
| Step 3: Install Certbot with snapd: | |
| - sudo snap install --classic certbot | |
| Step 4: Create a symlink to ensure Certbot runs: | |
| - sudo ln -s /snap/bin/certbot /usr/bin/certbot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment