企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
>[danger]远程连接mysql 1. linux的终端链接上mysql服务, 然后开启远程连接权限 `$ grant all privileges on tian_oa.* to root@'%' identified by '111111';` ![](https://box.kancloud.cn/d39aa0448f8beba4cb6915dbc9064257_608x17.png) > grant all privileges on 数据库名称.* to 数据库用户名@'授权范围' identified by '数据库用户名密码'; > %: 代表授权全网, localhost代表授权本地链接 2. 刷新权限, 权限生效 `$ flush privileges;` ![](https://box.kancloud.cn/51064c1dfa5c989717f81d4584746b03_312x37.png) 3. 到[阿里云安全组]([https://ecs.console.aliyun.com/#/securityGroup/region/cn-hangzhou](https://ecs.console.aliyun.com/#/securityGroup/region/cn-hangzhou)), 开放3306端口 (1) 配置规则 ![](https://box.kancloud.cn/b8b5fa16fab3fd63df2b4b9cc7cd1471_1341x605.png) (2) 添加规则 ![](https://box.kancloud.cn/8cafaec2111924aa1539101e48288b25_1290x574.png) (3) 配置规则 ![](https://box.kancloud.cn/94433a17661c1d0e5dc9a404edcf6bc0_581x602.png) > 好了, 我们可以使用例如Navicat等工具远程连接linux中的mysql数据库了