当前位置:网站首页>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;
边栏推荐
- Live broadcast review | detailed explanation of koordinator architecture of cloud native hybrid system (complete ppt attached)
- WPS的JS宏实现图片正文在同一段落的分离方法
- 软件过程与项目管理期末复习与重点
- 新准则金融资产三分类:AMC、FVOCI和FVTPL
- 贷款五级分类
- App Startup
- Dart development server, do I have a fever?
- 2021-03-16 comp9021 class 9 notes
- JVM underlying principle analysis
- 11--无重复字符的最长子串
猜你喜欢

FPGA的虚拟时钟如何使用?

Future trends in automated testing

2021-03-04 COMP9021第六节课笔记

2022年制冷与空调设备运行操作上岗证题库及模拟考试

Question 4 - datepicker date selector, disabling two date selectors (start and end dates)

List of Li Bai's 20 most classic poems

Swift 基础 Swift才有的特性

根据网络上的视频的m3u8文件通过ffmpeg进行合成视频

小样本故障诊断 - 注意力机制代码 - BiGRU代码解析实现

自动化测试的未来趋势
随机推荐
io模型初探
独立站运营中如何提升客户留存率?客户细分很重要!
Robot acceleration level task priority inverse kinematics
LabVIEW finds prime numbers in an array of n elements
Blue Bridge Cup_ Queen n problem
Getting started with ffmpeg
Learning event binding of 3D visualization from scratch
[acnoi2022] I have done it, but I can't
Teach you how to use the reflect package to parse the structure of go - step 1: parameter type check
13 -- 移除无效的括号
pyQt 常用系统的事件
Solution of electric education system for intelligent supervision station
Swift 基础 Swift才有的特性
Question 4 - datepicker date selector, disabling two date selectors (start and end dates)
2022 tea artist (intermediate) work license question bank and online simulation examination
Paper notes: multi label learning dm2l
VR is destined to reappear in the Jianghu?
权限模型 DAC ACL RBAC ABAC
Promise的使用場景
Swift Extension ChainLayout(UI的链式布局)(源码)