当前位置:网站首页>Export MySQL database to xxx SQL, set xxx The SQL file is imported into MySQL on the server. Project deployment.
Export MySQL database to xxx SQL, set xxx The SQL file is imported into MySQL on the server. Project deployment.
2022-06-24 08:25:00 【weixin_ forty-six million three hundred and seventy-one thousan】
One 、 Will local myql Database exported as oasystem.sql
mysqldump -h 127.0.0.1 -uroot [email protected] oasystem > f:oasystem.sql
IP Database name Location and name of the export
Two 、 take oasystem.sql File upload to server mysql in
I will oasystem.sql Upload to /home/lkj/ route
1、 On the server mysql in , establish database oasystem
mysql> create database oasystem;
2、 Use the newly created database
mysql> use oasystem
3、 take oasystem.sql Import into database
mysql> source /home/lkj/oasystem.sql;
4、 Check :
mysql> show databases;
边栏推荐
- [introduction to point cloud dataset]
- Which is the first poem of Tang Dynasty?
- 权限模型 DAC ACL RBAC ABAC
- Question 4 - datepicker date selector, disabling two date selectors (start and end dates)
- Question 1: the container that holds the most water
- Live broadcast review | detailed explanation of koordinator architecture of cloud native hybrid system (complete ppt attached)
- (PKCS1) RSA 公私钥 pem 文件解析
- RCNN、Fast-RCNN、Faster-RCNN介绍
- More appropriate development mode under epidemic situation
- "Adobe international certification" about Adobe Photoshop, creating and modifying brush tutorials?
猜你喜欢
随机推荐
疫情下更合适的开发模式
权限模型 DAC ACL RBAC ABAC
June 27, 2021: given a positive array arr, it represents the weight of several people
Swift 基础 Swift才有的特性
Pagoda panel installation php7.2 installation phalcon3.3.2
11-- longest substring without repeated characters
Question 4 - datepicker date selector, disabling two date selectors (start and end dates)
Solution of electric education system for intelligent supervision station
到底哪一首才是唐诗第一?
FPGA的虚拟时钟如何使用?
More appropriate development mode under epidemic situation
VR is destined to reappear in the Jianghu?
The JS macro of WPS implements the separation method of picture text in the same paragraph
2021-03-11 comp9021 class 8 notes
Swift extension chainlayout (UI chain layout) (source code)
dhcp、tftp基础
Five level classification of loans
Teach you how to use the reflect package to parse the structure of go - step 1: parameter type check
2022年流动式起重机司机特种作业证考试题库及在线模拟考试
Future trends in automated testing








