mysql5.6修改密码并授权所有远程用户可登陆

1.my.ini文件,删除最后一行的“skip-grant-tables

2.执行“use mysql;”,使用mysql数据库;

3.执行:update mysql.user set password=password("123456") where user="root"

4.grant all privileges on . to root@'%' identified by '123456' with grant option ;

posted @ 2019-07-02 10:16  风许下的泪  阅读(1267)  评论(0编辑  收藏  举报