1.远程导出
cmd进入mysql的安装bin目录
导出指定的库名:boot-chat
mysqldump -uroot -p1qaz2wsx -h172.16.32.66 -P3306 --databases boot-chat > bootchat.sql
在当前目录下将生成boochat.sql
2.导入到指定的环境
cmd进入mysql的安装bin目录
mysql -uroot -proot -h192.168.1.13 -P3306 boot-chat<bootchat.sql
其中:boot-chat库要先手动在192.168.1.13环境建好
网友评论