Articles

 Exporting a MySQL via CLI (Command Line Interface)

Using SSH, execute the following command: mysqldump -p -u username database_name > dbname.sql...

 Importing a MySQL via CLI (Command Line Interface)

The file must be in .sql format. It can not be compressed in a .zip or .tar.gz file. Start by...

 MySQL database replication in CentOS

This tutorial describes how to set up database replication in MySQL. MySQL replication allows you...