I made a simple working script to backup all the containers at once and send it on Linux backup server via RSYNC, here’s how to…
Linux cheat sheet
I made a simple working script to backup all the containers at once and send it on Linux backup server via RSYNC, here’s how to…
Create script file touch /root/mysql-backup/mysqldump.sh Insert this code #!/bin/bash mysqldump -u root -ppassword dbname | bzip2 -c > dbname$(date +%Y-%m-%d-%H.%M.%S).sql.bz2 Make it executable chmod +x mysqldump.sh Run…