阿里云下配置MySQL远程连接 Aug 27, 2021 1 min read 其他ManualOther 1)use mysql 2)将host设置为%表示任何ip都能连接mysql update user set host='%' where user='root' and host='localhost'; 3) 执行完以上语句,接着执行以下语句 ,刷新权限表,使配置生效 flush privileges; 参考链接: 阿里云下配置MySQL远程连接的步骤详解 Buy me a coffee Alipay WeChat
Comments