Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Simple Operation of mysql data backup and recovery

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly tells you about the simple operation of mysql data backup and recovery. You can check the relevant professional terms on the Internet or find some related books to supplement them. We will not dabble here. Let's go straight to the topic. I hope this article on the simple operation of mysql data backup and recovery can bring you some practical help.

Physical backup

Tar jcvf / opt/ `date +% x`mysql.tar.gz / usr/local/mysql/data

Full backup of a single library

Mysqldump-u root-p 'password' auth > / opt/auth.sql

Mysqldump-u root-p 'password' mysql > / opt/mysql.sql

Make a full backup of multiple libraries

Mysqldump-u user name-p [password] [option]-- databases library name 1 [library name 2]. > / backup path / backup file name

Mysqldump-U root-p-- databases demo mysql > / opt/databases-demo-mysql.sql

Make a full backup of all libraries

Mysqldump-u user name-p [password] [option]-- all-databases > / backup path / backup file name

Mysqldump-u root-p-- opt-- all-databases > / opt/all-data.sql

Mysqldump backup table

Mysqldump-u user name-p [password] [option] Database name Table name > / backup path / backup File name

Mysqldump-U root-P mysql user > / opt/mysql-user.sql

Restore the database

MySQL [(demo)] > source / opt/all-data.sql

Restore Database 2

Mysql-u user name-p [password] [library name]

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report