Tag: certbot

Install certbot-auto on CentOS 6 with Python 3.6.x

This is a simplified process for installing and running certbot-auto on CentOS 6 with Python 3.6.x. I have tried several different approaches to this and this method took the least amount of effort. yum install -y centos-release-SCL yum install -y epel-release yum clean all yum install -y rh-python36 curl -o /usr/local/bin/certbot-auto http://dl.eff.org/certbot-auto chmod +x /usr/local/bin/certbot-auto scl enable rh-python36 bash certbot-auto…

Read More »

Certbot Requires Python 2.7

This article describes how to use certbot with Python 2.7.  The assumption is that you have already installed certbot. At the bottom of this article, is a related post on how to install Python 2.7.  After installing Python, install/run certbot. A shortcut, run a command within a temporary environment, like this functional example below. To run certbot, enable python 2.7…

Read More »