Installing a Commercial SSL Server Certificate (nginx)
Since CACert still isn't "Browser Trusted", and I still don't want to use letsencrypt, I decided to give this a try. Company-specific (certum.pl) The company resides inside the European Union and is the cheapest I could find. This was the process to get the certificate for anyone who's interested: ...
Setup NFS Share on Debian
I did practically everything described here (archive). However, for automating the whole process with fstab on both client & server, this provided important extra information, esp. about bind-mounting existing filesystems into a dedicated NFS folder, and also about /etc/fstab entries. That's it ...
Manually Migrate a WordPress Site
Requirements Two servers capable of running WordPress, both providing Command line access (usually via ssh) phpMyAdmin or a similar web admin UI capable of managing SQL databases. Both WPs are installed into the webroot folder (top level, /) or the exact same subfolder (e.g. /blog). If your situa...
Dist‑upgrade Debian from oldstable to stable
(before LTS support runs out) I have now dist-upgraded several times, always from (old)stable to stable. Originally written for a Jessie => Stretch upgrade, this text still applies for Buster => Bullseye and likely so on into the future. So just replace "jessie" and "stretch" in this text wit...
Upgrade PostgreSQL Database (Cluster) from one Major Version to Another
Context I'm in the process of finally upgrading my Debian install from oldstable (buster) to stable (bullseye). My DAViCal installation uses PostgreSQL for its database backend. Strangely, I have two versions of PostgreSQL (9.6 and 11) and I purged the older one (without deleting the databases, than...
Create restricted user on Linux, home directory on encrypted partition
Premise Create a user that has the sole task to run some daemon that also needs to store files on disk. Starting and stopping daemon, as well as accessing these files, needs to be possible via ssh. Otherwise it should be locked down as far as possible. Let's call the user sandy from now on. There al...
Migrate Old Server to New
Situation Two virtual servers with command line ssh and sftp access, administered from my local machine. I want to migrate everything from one server to the other, without an additional stop on the local machine. The web site in question is located in a www subfolder of the home folder (sometimes al...
Getting email off my web server with msmtp (and PHP)
Sometimes I want to get a message from my server, e.g. diagnostic stuff from services (SMART daemon, fail2ban), or if someone tries to contact me on my website, and I want it sent to one of my email addresses which is not maintained on that server. I used to use sSMTP for this, but it seems to stop ...