How to remove / remove Certbot Let Encrypt from Debian 8

I just watched the objects found: https://certbot.eff.org/#debianjessie-apache to install enable certificate encryption on my Linux vps.

but, unfortunately, the installation did not go as I expected, because:

  • A. I already had an apache2 instance installed - which contradicted installing the certbot instance of the instance.
  • Q. I have a dynamic dns that I want to have as my domain name and add ssl for, but let the encryption system seem to have problems with free dns providers.

so I finally decided to remove certbot and instead try to install a local ssl certificate, which I myself sign. I can not find direct installation guide for certbot. you can help?

thank

+4
source share
1 answer

Ok, I think I learned how to do this:

I first uninstalled certbot using the following commands:

sudo apt-get purge certbotapt
sudo apt-get purge python-certbot-apache -t jessie-backports
sudo apt-get purge apache2

then I manually deleted the files / folders in the following:

  • / myuser / certbot-auto
  • /myuser/.local/share/letsencrypt/
  • /etc. / letsencrypt /
  • / var / Library / letsencrypt /
  • / var / Magazine / letsencrypt /

then I installed a new fresh instance of apache2:

sudo apt-get install apache2
sudo service apache2 restart

Now everything has returned to where I was, and I can work on setting a personal / local ssl for my project.

Hope this helps you too;)

+3

Source: https://habr.com/ru/post/1677840/


All Articles