Here is a script I recently wrote to run hourly backups of our production database server.It’s important to note here a couple of things; This *could* use a lot of disk space! Backups are processor heavy, I’m running mine on on a dedicated VPS connecting to the SLAVE in a MASTER => SLAVE SLAVE replication… Continue reading Hourly MySQL Backups with a BASH Script
Category: mySQL
Finding disk usage on Linux/Ubuntu
There are a few ways to see how much free or used disk space in linux;The easiest way is to use: If you want to drill down and find where all your disk space has gone, then ncdu is the best too, all day. On Ubuntu you can apt install this repo, else there are installation instructions… Continue reading Finding disk usage on Linux/Ubuntu