1,
mysql -u root -p
2,
use mysql;
3,
查询用户表命令:
select User,authentication_string,Host from user
4,
GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456'
这里的123456为你给新增权限用户设置的密码,%代表所有主机,也可以具体到你的主机ip地址
5,flush privileges;
这一步一定要做,不然无法成功! 这句表示从mysql数据库的grant表中重新加载权限数据
文章来源: https://blog.csdn.net/dimoshougary/article/details/86762503