Mysql中使用root用户远程连接
时间:2015-05-16 14:40:50
收藏:0
阅读:253
root用户不允许远程连接,需要执行一下授权
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘1234‘ with grant option;
需要替换一下实际的密码
原文:http://www.cnblogs.com/dindin2046/p/4507787.html
评论(0)