我是靠谱客的博主 动人棉花糖,最近开发中收集的这篇文章主要介绍mysql8.0重置密码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

重置mysql root

1、打开配置文件/etc/my.cnf,添加一行

skip-grant-tables

2、重启 service mysqld restart 或 systemctl restart mysqld

3、mysql -uroot -p进入

3.1 select host, user, authentication_string, plugin from user;

3.2  root 清空密码 update user set authentication_string='' where user='root';

3.3 修改密码 字母(大小写)数字特殊符

alter user 'root'@'localhost' identified by '你的新密码';

1. 使用 caching_sha2_password 插件

修改用户密码,并且用插件生成。

ALTER USER 'user'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';

2、修改 /etc/mysql/my.cnf

[mysqld]

default_authentication_plugin= mysql_native_password

3、修改密码

ALTER USER 'user'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';

最后

以上就是动人棉花糖为你收集整理的mysql8.0重置密码的全部内容,希望文章能够帮你解决mysql8.0重置密码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部