The sys admin's daily grind – Let's Encrypt
Always at Hand
Columnist Charly fights the fight for free SSL certificates with Let's Encrypt. He particularly likes the matching software client that takes care of everything – from certificate retrieval to web server integration.
Although more and more web servers now use TLS, small businesses and amateur users are worried about the administrative overhead that accompanies SSL certificates. The Electronic Frontier Foundation, the University of Michigan, and the Mozilla foundation helped launch a project that addresses two pain points.
For one thing, it distributes Let's Encrypt [1] SSL certificates free of charge. For another – and this is where the project scores points compared with other free offerings – it delivers a Python client software tool that autonomously takes care of creating, validating, signing, and renewing certificates in good time. It even helps administrators integrate certificates with services running on their servers.
For Debian and its derivative distributions, you can pick up prebuilt packages. If you prefer to do it yourself – or are forced to do so – you can retrieve the Let's Encrypt client from GitHub with the following command:
git clone https://github.com/letsencrypt/letsencrypt
In the letsencrypt
directory, you will now find a tool by the name of letsencrypt-auto
. To use it to create a certificate for my example domain, <mydomain>.com
, I would just type the following command:
sudo ./letsencrypt-auto certonly --standalone -d <mydomain>.com
Here certonly
creates a certificate but does not automatically integrate it with the web server configuration. I prefer to do this myself; after all, this part of the software is still beta and only works correctly for Apache installations that have not had their configuration manipulated by admins.
The --standalone
parameter starts a web server for validation purposes – this is one of the reasons the tool needs root privileges. Next, letsencrypt-auto
briefly stops the active web server; the server is only allowed to continue doing whatever it was doing after passing the SSL checks.
Web Server Integration
The certificates generated here – cert.pem
, chain.pem
, and fullchain.pem
, which combines the previous two, and the private key privkey.pem
– end up in the /etc/letsencrypt/live/<mydomain>.com/
directory. To integrate this with an Apache web server, I need to pay attention to the Apache version number. Listing 1 shows the required instructions.
Listing 1
Integrating Certificates
01 # Apache 2.4.8 and later: 02 SSLCertificateFile /etc/letsencrypt/live/mydomain.com/fullchain.pem 03 SSLCertificateKeyFile /etc/letsencrypt/live/mydomain.com/privkey.pem 04 05 # Pre-Apache 2.4.8: 06 SSLCertificateFile /etc/letsencrypt/live/mydomain.com/cert.pem 07 SSLCertificateChainFile /etc/letsencrypt/live/mydomain.com/chain.pem 08 SSLCertificateKeyFile /etc/letsencrypt/live/mydomain.com/privkey.pem 09 10 # Nginx: 11 ssl_certificate /etc/letsencrypt/live/mydomain.com/fullchain.pem; 12 ssl_certificate_key /etc/letsencrypt/live/mydomain.com/privkey.pem;
To renew the certificates, which are only valid for 90 days (Figure 1), automatically, you can simply run letsencrypt-auto
with the renew
parameter within this period.

Charly Kühnast
Charly Kühnast is a Unix operating system administrator at the Data Center in Moers, Germany. His tasks include firewall and DMZ security and availability. He divides his leisure time into hot, wet, and eastern sectors, where he enjoys cooking, freshwater aquariums, and learning Japanese, respectively.
Infos
- Let's Encrypt: https://letsencrypt.org
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
MNT Seeks Financial Backing for New Seven-Inch Linux Laptop
MNT Pocket Reform is a tiny laptop that is modular, upgradable, recyclable, reusable, and ships with Debian Linux.
-
Ubuntu Flatpak Remix Adds Flatpak Support Preinstalled
If you're looking for a version of Ubuntu that includes Flatpak support out of the box, there's one clear option.
-
Gnome 44 Release Candidate Now Available
The Gnome 44 release candidate has officially arrived and adds a few changes into the mix.
-
Flathub Vying to Become the Standard Linux App Store
If the Flathub team has any say in the matter, their product will become the default tool for installing Linux apps in 2023.
-
Debian 12 to Ship with KDE Plasma 5.27
The Debian development team has shifted to the latest version of KDE for their testing branch.
-
Planet Computers Launches ARM-based Linux Desktop PCs
The firm that originally released a line of mobile keyboards has taken a different direction and has developed a new line of out-of-the-box mini Linux desktop computers.
-
Ubuntu No Longer Shipping with Flatpak
In a move that probably won’t come as a shock to many, Ubuntu and all of its official spins will no longer ship with Flatpak installed.
-
openSUSE Leap 15.5 Beta Now Available
The final version of the Leap 15 series of openSUSE is available for beta testing and offers only new software versions.
-
Linux Kernel 6.2 Released with New Hardware Support
Find out what's new in the most recent release from Linus Torvalds and the Linux kernel team.
-
Kubuntu Focus Team Releases New Mini Desktop
The team behind Kubuntu Focus has released a new NX GEN 2 mini desktop PC powered by Linux.