标签:防火 数据 mct mysql img 使用 远程连接mysql png ima
1、导出SQL脚本
2、上传到Linux
3、创建数据库
4、运行SQL脚本
方式(1):在本地使用工具
方式(2):在Linux上,进入创建好的数据库test,然后source /usr/mysql/yoursql.sql;运行脚本
5、远程连接
(1)没有授权时,无法连接,解决方法如下
授权给你的ip:grant all PRIVILEGES on recruit_students.* to root@‘ip‘ identified by ‘123456‘;
提交事务:commit;
刷新:flush privileges;
(2)没有关闭防火墙时,无法连接,解决方法如下
systemctl stop firewalld.service
(3)远程连接
标签:防火 数据 mct mysql img 使用 远程连接mysql png ima
原文地址:https://www.cnblogs.com/huangjin91/p/11213856.html