mysql 5.7 密码重置 新增用户
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 5.7 密码重置 新增用户相关的知识,希望对你有一定的参考价值。
找到 my.cnf 看看是否有需要跳过密码验证
#skip-grant-tables=1
mysql 进去
use mysql;
update user set authentication_string=PASSWORD(‘MyPassword‘) where user="root";
desc user;
//create user ‘173‘@‘%‘ identified by ‘mima‘ password expire never;
//grant all privileges on 173.* to ‘173‘@‘%‘;
以上是关于mysql 5.7 密码重置 新增用户的主要内容,如果未能解决你的问题,请参考以下文章
MySql 5.7 for Windows 重置root密码