mysql 5.7 修改root密码允许远程连接

时间:2022-02-06 22:25:15

1.修改root密码(其他用户类似)

    试过网上看的一些 在mysql数据库执行 update user set password='新密码'  where user='root' 执行说找不到字段,猜想可能以前老版本跟新版本数据表结构不一样了,所以看了下表,应该是authentication_string字段  update user set authentication_string='新密码' where user='root'。

2.局域网或者远程用户无法访问

    看了下有些描述的比较麻烦,修改ini配置文件什么的,user表的第一个字段Host,默认是localhost,改成"%"即可,代表所有都可以访问。