Two decisions determine how a MariaDB install turns out on a fresh Ubuntu VPS: which repository the packages come from, and whether the post-install hardening script actually gets run. Skip either one and you end up with a database that's either years out of date or wide open by default. This guide covers both paths — …
Read MoreSQL Workbench/J: Free Multi-Database Client for a Linux VPS
Aug 3, 2026 / · 8 min read · sql database jdbc linux vps sysadmin devops open-source sql-client java ·Command-line clients like psql and the MySQL shell handle a quick query fine, but they start to strain once a Linux VPS admin is juggling more than one database engine, or wants to browse table structures and query history without re-learning another tool's dialect for every server. SQL Workbench/J exists for exactly …
Read MoreA caching layer is one of those pieces of a VPS stack that people install once and stop thinking about — until the license under which it ships changes and suddenly matters again. That's exactly what happened with Redis, and it's why anyone provisioning a new Linux VPS for a session store, a queue backend, or a query …
Read MoreHow to Monitor a Linux VPS with Netdata
Jul 12, 2026 / · 7 min read · netdata monitoring linux vps sysadmin devops performance observability dashboard ·A VPS with no monitoring installed only tells you about a problem after it has already become one — the process that has been leaking memory for six hours, the disk that filled up overnight, the CPU spike from a runaway cron job three days ago. Netdata closes that gap by collecting and charting server metrics every …
Read MoreA stock Ubuntu install ships an ancient Docker package under a different name entirely — docker.io — if it ships one at all, and that package trails months or years behind what Docker actually maintains. The reliable path on a VPS is Docker's own apt repository, which tracks Docker Engine releases directly and gets you …
Read MoreOn a systemd-based VPS the journal is not a plain text file you can tail and forget — it is a structured, indexed binary store managed by systemd-journald, and left at its defaults it will quietly grow until it claims a slice of your disk you never agreed to give it. That structure is a feature, not an annoyance: every …
Read MoreNo space left on device. The error stops your application cold, and the first instinct — delete some logs and move on — usually misses what is actually wrong. A full disk on a VPS is rarely one obvious huge file; it is more often a directory you forgot about, a log that a process is still writing to after you "deleted" …
Read MoreEvery shared-root server has the same origin story. One person spins up the VPS, a second needs access so they get handed the root password, a contractor joins and gets it too, and within a year nobody can say who logged in last week or who still knows the password that protects everything. When something is deleted at …
Read MoreCron has scheduled Unix jobs for forty years and it still works, but on a systemd-based VPS it is no longer the only option — and for anything you need to operate rather than just fire-and-forget, systemd timers are the better tool. The difference is not nostalgia versus novelty; it is that a cron job is invisible …
Read More1/var/log/myapp/*.log { 2 daily 3 rotate 14 4 compress 5 delaycompress 6 missingok 7 notifempty 8 create 0640 www-data adm 9 sharedscripts 10 postrotate 11 systemctl reload myapp >/dev/null 2>&1 || true 12 endscript 13} That single stanza is the whole job: it keeps two weeks of compressed application logs, never lets …
Read More