Backing up and restoring MySQL databases using Mysqldump

Backing up and restoring MySQL databases using Mysqldump

Linux vps is the most convenient and can be used under ssh.

1. Back up the MySQL database

1. Back up a single database
mysqldump -u root -pmypassword wp > wpbak.sql
root is the mysql database user name, mypassword is the password, wp is the database name, and wpbak.sql is the backup file.

2. Back up multiple databases
mysqldump -u root -pmypassword –databases wp stuff > wpbak.sql
root is the mysql database user name, mypassword is the password, wp and stuff are the database names, and wpbak.sql is the backup file.

3. Back up all databases
mysqldump -u root -pmypassword –all-databases > all-databases.sql
root is the mysql database user name, mypassword is the password, and all-databases.sql is the backup file.

2. Restore MySQL database

Login to database
mysql -u root -pmypassword
root is the mysql database user name, mypassword is the password

1. Restore a single database
mysql -u root -pmypassword [database_name] < dumpfilename.sql
root is the mysql database user name, mypassword is the password, [database_name] is the database name, and dumpfilename.sql is the restored data

2. Restore multiple databases
mysql -u root -p mypassword < all-databases.sql
root is the mysql database user name, mypassword is the password, and all-databases.sql is the restored data

<<:  Linode Xen VPS 2GB RAM SSD Hard Drive Japan Tokyo Simple Review

>>:  GreenCloudVPS: $8/month/2GB RAM/15GB SSD/2TB bandwidth/KVM/Los Angeles

Recommend

turnkeyinternet: $48/year/2GB RAM/20GB SSD/unlimited data/Windows

TurnkeyInternet, a long-established hosting provi...

Tencent Cloud: Free 2C4G50G SSD6M KVM VPS, free for one year

Event page: https://cloud.tencent.com/act/pro/lig...

PeakServers 2GB VPS Phoenix Review

See previous article: PeakServers: $12/year/2 CPU...

Ubiquity Hosting Atom D525 4GB RAM Los Angeles Dedicated Server Review

Details: Ubiquity Hosting: $15/month/4GB RAM/160G...

$9.95/month/5G space/240G Windows virtual host—— HostMySite

HostMySite has been providing hosting services si...

HE.NET Free DNS Resolution Application and Usage Tutorial

1. Introduction to HE.NET HE.NET's DNS resolu...