今天装了下mysql ,出现了这个问题 ,远程连接我也配置了,是啥情况
解决方案 : 1. 进入到mysql ,输入命令
(1) use mysql
(2)GRANT ALL PRIVILEGES ON *.* TO 'root'@'你连接的ip地址' IDENTIFIED BY 'root' WITH GRANT OPTION;
(3) 查询一下 select host,user,plugin,authentication_string from mysql.user;
问题解决
今天装了下mysql ,出现了这个问题 ,远程连接我也配置了,是啥情况
解决方案 : 1. 进入到mysql ,输入命令
(1) use mysql
(2)GRANT ALL PRIVILEGES ON *.* TO 'root'@'你连接的ip地址' IDENTIFIED BY 'root' WITH GRANT OPTION;
(3) 查询一下 select host,user,plugin,authentication_string from mysql.user;
问题解决