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 密码重置 新增用户的主要内容,如果未能解决你的问题,请参考以下文章

Mac上重置mysql 5.7密码

MySql 5.7 for Windows 重置root密码

重置mysql密码

MySQL 5.7 新增默认账号 mysql.session和mysql.sys

Ubuntu重置Mysql密码

MySQL 5.7安装后的一些配置