Themysqlbackup client is an easy-to-use tool for all backup and restore operations. During backup operations,mysqlbackup backs up:
All InnoDB tables and indexes, including:
The InnoDBsystem tablespace, which, by default contains all the InnoDB tables.
Any separate data files produced with the InnoDBfile-per-table setting. Each one contains one table and its associated indexes. Each data file can use either the originalAntelope or the newBarracuda file format.
All MyISAM tables and indexes.
Tables managed by other storage engines.
Other files underneath the MySQL data directory, such as the
.sdifiles that record the structure of MyISAM tables.Any other files in the database subdirectories under the server's data directory.
In addition to creating backups,mysqlbackup can pack and unpack backup data, apply to the backup data any changes to InnoDB tables that occurred during the backup operation, and restore data, index, and log files back to their original locations, or to other places.
Here are some sample commands to start a backup operation withmysqlbackup are:
# Information about data files can be retrieved through the database server connection.# Specify connection options on the command line.mysqlbackup --user=dba --password --port=3306 \ --with-timestamp --backup-dir=/export/backups \ backup# Or we can include the above options in the configuration file# under the [mysqlbackup] section, and just specify the configuration file# and the 'backup' operation.mysqlbackup --defaults-file=/usr/local/mysql/my.cnf backup# Or we can specify the configuration file as above, but# override some of those options on the command line.mysqlbackup --defaults-file=/usr/local/mysql/my.cnf \ --compress --user=backupadmin --password --port=18080 \ backup The--user and the--password you specify are used to connect to the MySQL server. This MySQL user must have certain privileges in the MySQL server, as described inSection 4.1.2, “Grant MySQL Privileges to Backup Administrator”.
The--with-timestamp option places the backup in a subdirectory created under the directory you specified above. The name of the backup subdirectory is formed from the date and the clock time of the backup run.
For the meanings of other command-line options, seeChapter 20,mysqlbackup Command-Line Options. For information about configuration files, seeChapter 21,Configuration Files and Parameters.
Make sure that the user or the cron job runningmysqlbackup has the rights to copy files from the MySQL database directories to the backup directory.
Make sure that your connection timeouts are long enough so that themysqlbackup command can keep the connection to the server open for the duration of the backup run.mysqlbackup pings the server after copying each database to keep the connection alive.
ReviewSection 13.1, “Optimizing Backup Performance” to understand the various issues that can impact the performance of MySQL Enterprise Backup.