mysql多种方法修改密码----5.6的坑
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql多种方法修改密码----5.6的坑相关的知识,希望对你有一定的参考价值。
创建用户并授权和改密码:
grant all privileges on *.* to [email protected]‘%‘ identified by ‘123456‘ with grant option;
*9FB2126F7514B6AF42B20E9E4B8E839B72E31
方法一:
#msyqladmin -uroot password nwepassword
#mysqladmin -uroot password oldpassword newpassword
方法二:
create user [email protected]‘localhost‘;
set password for [email protected]‘%‘=password("123456");
set password=password("123456");
方法三:
update mysql.user set password=password("123456") where user=‘root‘ and host=‘%‘;
updata mysql.user set password="*9FB2126F7514B6AF42B20E9E4B8E839B72E31" where user=‘root‘ and host=‘%‘;
刷新权限:
flush privileges;
mysql5.6 授权
密码不能和其他用户重复,否则无法登陆。
以上是关于mysql多种方法修改密码----5.6的坑的主要内容,如果未能解决你的问题,请参考以下文章