Database backup #grammar: # mysqldump -h server-u username-p password database name> backup file.sql #Example: #Single database backup mysqldump -uroot -p123 db1 > db1.sql mysqldump -uroot -p123 db1 table1 table2 > db1-table1-table2.sql #Multi-database backup mysqldump -uroot -p123 --databases db1 db2 mysql db3 > db1_db2_mysql_db3.sql #Backup all librariesmysqldump -uroot -p123 --all-databases > all.sql Data Recovery #Method 1: [root@egon backup]# mysql -uroot -p123 < /backup/all.sql #Method 2: mysql> use db1; mysql> SET SQL_LOG_BIN=0; #Turn off binary logging, only effective for the current session mysql> source /root/db1.sql The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed tutorial on docker-compose deployment and configuration of Jenkins
>>: How to install Nginx in a specified location in Centos system
1. Introduction Image maps allow you to designate...
Table of contents 0x0 Introduction 0x1 Installati...
As a front-end monkey, whether it is during an in...
This article shares the MySQL 5.7.16 free install...
1: Baidu website login entrance Website: http://ww...
Tutorial Series MySQL series: Basic concepts of M...
Preface When the system space usage is too large ...
Copy code The code is as follows: <input type=...
This article example shares the specific code of ...
Table of contents 1. What is Set 2. Set Construct...
In actual Web development, inserting images, incl...
Table of contents Use Cases Reactive API related ...
Table of contents utils: Use in vue: explain: Ima...
Carousel animation can improve the appearance and...
Table of contents Use of this.$set in Vue use Why...