MySQL is an open source relational database management system. MariaDB is a fork of MySQL. Backup all databases to a local file: mysqldump –all-database -uroot -p > backup.sql Since the dump files are just SQL commands, you can restore the database backup to a file. And execute them by telling mysql to run the commandsContinue Reading
Tag: backup
Rsync basics. How to synchronize your files
Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. Basic example Transfer options Display options Skipping options Backup options Include options Archive options Rsync is a powerful tool to synchronize your files. It’s very useful when youContinue Reading