阿里云下配置MySQL远程连接 2021-08-27 1 分钟阅读 其他ManualOther 1)use mysql 2)将host设置为%表示任何ip都能连接mysql update user set host='%' where user='root' and host='localhost'; 3) 执行完以上语句,接着执行以下语句 ,刷新权限表,使配置生效 flush privileges; 参考链接: 阿里云下配置MySQL远程连接的步骤详解 打赏 支付宝 微信
评论