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
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Wine 10 Includes Plenty to Excite Users
With its latest release, Wine has the usual crop of bug fixes and improvements, along with some exciting new features.
-
Linux Kernel 6.13 Offers Improvements for AMD/Apple Users
The latest Linux kernel is now available, and it includes plenty of improvements, especially for those who use AMD or Apple-based systems.
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.