Home » Categories » Multiple Categories |
How To Migrate a MySQL Database Between Two Servers |
Article Number: 185 | Rating: Unrated | Last Updated: Thu, Dec 26, 2013 at 10:21 PM
|
Transferring a database between virtual private servers can be
accomplished using a SCP (Secure Copy), a method of copying files
derived from the SSH Shell. Keep in mind, you will need to know the
passwords for both virtual servers. In order to migrate the database, there are two steps: Step One—Perform a MySQL DumpBefore transferring the database file to the new VPS, we first need to back it up on the original virtual server by using the mysqldump command.mysqldump -u root -p --opt [database name] > [database name].sqlAfter the dump is performed, you are ready to transfer the database. Step Two—Copy the DatabaseSCP helps you copy the database. If you used the previous command, you exported your database to your home folder.The SCP command has the following syntax: scp [database name].sql [username]@[servername]:path/to/database/A sample transfer might look like this: scp newdatabase.sql user@example.com:~/After you connect, the database will be transferred to the new virtual private server. Step Three—Import the DatabaseOnce the data has been transferred to the new server, you can import the database into MySQL:mysql -u root -p newdatabase < /path/to/newdatabase.sqlWith that, your transfer via SCP will be complete. |
Attachments
![]()
There are no attachments for this article.
|
How To Install Wordpress on Ubuntu 12.04
Viewed 2670 times since Tue, Dec 24, 2013
How To Use HAProxy to Set Up MySQL Load Balancing
Viewed 8266 times since Thu, Dec 26, 2013
How to Setup and Configure an OpenVPN Server on Debian 6
Viewed 2499 times since Thu, Dec 26, 2013
How To Create An Off-Site Backup Of Your Site With Rsync On Centos 6
Viewed 5856 times since Sat, Jan 4, 2014
How To Set Up Apache Virtual Hosts on Debian 7
Viewed 3335 times since Fri, Dec 27, 2013
How To Copy Files With Rsync Over SSH
Viewed 6585 times since Fri, Dec 27, 2013
How To Install And Run A Node.js App On Centos 6.4 64bit
Viewed 10486 times since Sun, Dec 29, 2013
How To Create a SSL Certificate on Apache for Debian 7
Viewed 2487 times since Fri, Dec 27, 2013
How To Install and Use PostgreSQL on Ubuntu 12.04
Viewed 6316 times since Mon, Dec 30, 2013
How To Install Linux, Apache, MySQL, PHP (LAMP) stack on Debian
Viewed 7829 times since Thu, Dec 26, 2013
|