mac下重置mysl8.0.11密码的方法
程序员文章站
2022-03-29 18:41:48
mac下安装mysql8.0.11时 要求输入密码 之后想修改密码
注意 此方法适用于mac下的mysql8.0.11 其他版本不一定相同
1.启动mysql后正常登陆...
mac下安装mysql8.0.11时 要求输入密码 之后想修改密码
注意 此方法适用于mac下的mysql8.0.11 其他版本不一定相同
1.启动mysql后正常登陆
2.查看sql中的root用户
select host, user, authentication_string, plugin from mysql.user; +-----------+------------------+-------------------------------------------+-----------------------+ | host | user | authentication_string | plugin | +-----------+------------------+-------------------------------------------+-----------------------+ | localhost | mysql.infoschema | *thisisnotavalidpasswordthatcanbeusedhere | mysql_native_password | | localhost | mysql.session | *thisisnotavalidpasswordthatcanbeusedhere | mysql_native_password | | localhost | mysql.sys | *thisisnotavalidpasswordthatcanbeusedhere | mysql_native_password | | localhost | root | *23ae809ddacaf96af0fd78ed04b6a265e05aa257 | mysql_native_password | +-----------+------------------+-------------------------------------------+-----------------------+ 4 rows in set (0.00 sec)
3.重置密码
- 语法格式
select host, user, authentication_string, plugin from user;
plugin 密码加密方式
authentication_string 加密后的密码
- 注意 mysql8.0以后废弃了password函数 添加密码的时候不需要使用函数
- 清空root密码
update user set authentication_string='你的密码' where mysql.user='root';
4.测试
mysql -uroot -p你的密码
总结
以上所述是小编给大家介绍的mac下重置mysl8.0.11密码的方法,希望对大家有所帮助
推荐阅读
-
linux Ubuntu下SSH无密码验证配置的方法步骤
-
CentOS7.2 忘记root密码及重置root密码的简单处理方法
-
阿里云Linux CentOS 7.2下自建MySQL的root密码忘记的解决方法
-
Mac下忘记Mysql的root用户密码的解决方法
-
MySQL8下忘记密码后重置密码的办法(MySQL老方法不灵了)
-
企业k宝密码忘了怎么重置(手机找回k宝密码的方法)
-
Mac下如何安装字体?苹果Mac系统安装字体的三种方法
-
wamp下修改mysql访问密码的解决方法
-
在mac下查找python包存放路径site-packages的实现方法
-
MySQL8.0 on Windows下重置root密码的BUG