| Home » Categories » Multiple Categories |
How To Migrate a MySQL Database Between Two Servers |
|
Article Number: 185 | Rating: Unrated | Last Updated: Tue, Sep 23, 2025 at 11:32 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 [email protected]:~/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 Manage Content Using the Ghost Blogging Platform
Viewed 9170 times since Sun, Dec 29, 2013
How to Add a Swap File on an Arch Linux Cloud Server
Viewed 3116 times since Fri, Dec 27, 2013
How To Use WP-CLI to Manage your WordPress Site from the Command Line
Viewed 10579 times since Sat, Jan 4, 2014
How To Set Up mod_security with Apache on Debian/Ubuntu
Viewed 4497 times since Thu, Dec 26, 2013
How To Install Git on Ubuntu 12.04
Viewed 6583 times since Mon, Dec 23, 2013
How To Use CakePHP to Create a Small Web Application
Viewed 3455 times since Fri, Jan 3, 2014
How To Manage Packages In Ubuntu and Debian With Apt-Get & Apt-Cache
Viewed 7154 times since Fri, Dec 27, 2013
A Comparison of (Rack) Web Servers for Ruby Web Applications
Viewed 8604 times since Mon, Dec 30, 2013
How to Install Piwik on an Ubuntu 12.04 Cloud Server
Viewed 3581 times since Sat, Jan 4, 2014
How To Install Ruby on Rails on Arch Linux with RVM
Viewed 14262 times since Sun, Dec 29, 2013
|
