How to migrate local mysql to server database

How to migrate local mysql to server database

We can use the scp command of Linux (scp cannot be used in Windows), plus mysqldump that comes with mysql, to quickly complete the database migration.

Export the local database (music_db) as a sql file (music_db.sql)

mysqldump -uroot -p music_db > music_db.sql

Use the scp command to send the sql file to the server

scp music_db.sql remote login account@server ip:server directory/music_db.sql

SSH login server

ssh remote login account@remote ip

Log in to mysql on the server

mysql -uroot -p

Create a database with the same name (music_db) in the server's mysql, and then exit mysql

create database music_db charset=utf8;

exit;

Import the music_db.sql file transferred by the scp command into the database of the same name just created
mysql -uroot -p music_db < music_db.sql

Finish

Some students may ask if there is a simpler way. Don’t tell me there is! ! !

Method 2

The premise is that you have used Navicat to connect to the remote server. . . . .

For methods to connect to a remote server, see another blog: Remote connection to a server database

After connecting to the server, you can see the server database. We can right-click on the local data or server database, and the following will appear:

After selecting Data Transfer, you can see the following:

Just fill in the local and server related information to be transferred, click Start to display the log information, and wait for the upload to be completed!

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:
  • Implementation of mysql8.0.11 data directory migration
  • How to migrate the data directory in mysql8.0.20
  • Analysis of the principle of MySQL large table extraction mode from the perspective of cloud data migration service
  • Detailed explanation of MySQL event modification events (ALTER EVENT), disabling events (DISABLE), enabling events (ENABLE), event renaming and database event migration operations
  • Upgrade Docker version of MySQL 5.7 to MySQL 8.0.13, data migration
  • Detailed explanation of how to migrate a MySQL database to another machine
  • MySQL database migration quickly exports and imports large amounts of data
  • Python makes mysql data migration script
  • Summary of MySQL data migration

<<:  JavaScript to implement the countdown for sending SMS

>>:  Alibaba Cloud Server Tomcat cannot be accessed

Recommend

Example code of vue + element ui to realize player function

The display without the effect picture is just em...

Analyze the usage and principles of Vue's provide and inject

First, let's talk about why we use provide/in...

MySql grouping and randomly getting one piece of data from each group

Idea: Just sort randomly first and then group. 1....

The principle and basic use of Vue.use() in Vue

Table of contents Preface 1. Understanding with e...

Detailed steps to download Tomcat and put it on Linux

If you have just come into contact with Linux, th...

In-depth understanding of HTML form input monitoring

Today I saw a blog post about input events, and o...

A brief discussion on the VUE uni-app life cycle

Table of contents 1. Application Lifecycle 2. Pag...

Example of writing mobile H5 to invoke APP (IOS, Android)

iOS 1. URL scheme This solution is basically for ...

Example analysis of mysql variable usage [system variables, user variables]

This article uses examples to illustrate the usag...

Vue realizes the palace grid rotation lottery

Vue implements the palace grid rotation lottery (...

MySQL DATE_ADD and ADDDATE functions add a specified time interval to a date

MySQL DATE_ADD(date,INTERVAL expr type) and ADDDA...

Use Docker to create a distributed lnmp image

Table of contents 1. Docker distributed lnmp imag...

Summary of problems encountered when installing docker on win10 home version

Docker download address: http://get.daocloud.io/#...

SQL implementation LeetCode (176. Second highest salary)

[LeetCode] 176. Second Highest Salary Write a SQL...