1. Data backup 1. Use mysqldump command to back up The mysqldump command backs up the data in the database into a text file. The structure of the table and the data in the table will be stored in the generated text file. The working principle of the mysqldump command is simple. It first finds out the structure of the table that needs to be backed up, and then generates a CREATE statement in a text file. Then, convert all the records in the table into one INSERT statement. Then through these statements, you can create tables and insert data. 1. Back up a database mysqldump basic syntax: mysqldump -u username -p dbname table1 table2 ...-> BackupName.sql in: The dbname parameter indicates the name of the database; The table1 and table2 parameters indicate the names of the tables to be backed up. If they are left blank, the entire database will be backed up. Back up the person table in the test database as root user mysqldump -u root -p test person > D:ackup.sql The generated script is as follows: The beginning of the file will record the MySQL version, backup host name and database name. The comments that begin with "--" in the file are SQL language comments, and the comments that begin with "/*!40101" and other forms are related to MySQL. 40101 is the version number of the MySQL database. If the MySQL version is higher than 1.11, the content between /*!40101 and */ is executed as an SQL command. If it is lower than 4.1.1, it is treated as a comment. 2. Back up multiple databases grammar: mysqldump -u username -p --databases dbname2 dbname2 > Backup.sql Add the --databases option, followed by multiple databases mysqldump -u root -p --databases test mysql > D:ackup.sql 3. Back up all databases The syntax for the mysqldump command to back up all databases is as follows: mysqldump -u username -p -all-databases > BackupName.sql Example: mysqldump -u -root -p -all-databases > D:all.sql 2. Directly copy the entire database directory MySQL has a very simple backup method, which is to directly copy the database files in MySQL. This is the easiest and fastest method. However, before doing so, you must stop the server to ensure that the database data does not change during the copy. If data is written during the database replication process, data inconsistency will occur. This is fine in a development environment, but it is difficult to allow backup servers in a production environment. Note: This method is not applicable to tables using the InnoDB storage engine, but is convenient for tables using the MyISAM storage engine. At the same time, the MySQL version should be the same when restoring. 3. Use mysqlhotcopy tool for quick backup You can tell from the name that it is hot backup. Therefore, mysqlhotcopy supports backup without stopping the MySQL server. Moreover, mysqlhotcopy's backup method is faster than mysqldump. mysqlhotcopy is a perl script, mainly used in Linux systems. It uses LOCK TABLES, FLUSH TABLES, and cp for fast backups. Principle: First add a read lock to the database to be backed up, then use FLUSH TABLES to write the data in the memory back to the database on the hard disk, and finally, copy the database file to be backed up to the target directory. The command format is as follows: [root@localhost ~]# mysqlhotcopy [option] dbname1 dbname2 backupDir/ dbname: database name; backupDir: the folder to which the backup is to be placed; Common options: --help: View mysqlhotcopy help; mysqlhotcopy is not included with mysql, you need to install the Perl database interface package; the download address is: http://dev.mysql.com/downloads/dbi.html Currently, this tool can only back up MyISAM tables. 2. Data Restoration 1. Restore the database using the mysqldump command backup The syntax is as follows: mysql -u root -p [dbname] < backup.sq Example: mysql -u root -p < C:backup.sql 2. Restore the direct copy directory backup When restoring in this way, you must ensure that the version numbers of the two MySQL databases are the same. This function is valid for MyISAM tables but not for InnoDB tables. The table space of an InnoDB table cannot be copied directly. Summarize You may also be interested in:
|
<<: Vue's guide to pitfalls using throttling functions
>>: Detailed example of Linux all-round system monitoring tool dstat
This article uses an example to describe how to c...
Relationship between MySQL and MariaDB MariaDB da...
Business social networking site LinkedIn recently...
Table of contents Port-related concepts: Relation...
Table of contents Code cleaning "Frames"...
as follows: docker run -d -p 5000:23 -p 5001:22 -...
When multiple images are introduced into a page, ...
Hardware View Commands system # uname -a # View k...
Table of contents Standards for smooth animation ...
If you have developed DApps on Ethereum, you may ...
the term: 1. VM: Virtual Machine step: 1. Downloa...
front end css3,filter can not only achieve the gr...
MySQL 8.0.18 stable version (GA) was officially r...
Nginx optimization---hiding version number and we...
I use the simultaneous interpretation voice recog...