Brew安装的MySQL8.0忘记密码修改密码
【摘要】 1、修改my.ini
# 查看my.ini位置
$ mysqld --help --verbose | more
# 找到这一行,挨个试试,看存不存在
# /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
$ ls /etc/my.cnf
ls: /etc/my.cnf: No such ...
1、修改my.ini
# 查看my.ini位置
$ mysqld --help --verbose | more
# 找到这一行,挨个试试,看存不存在
# /etc/my.cnf /etc/mysql/my.cnf /usr/local/etc/my.cnf ~/.my.cnf
$ ls /etc/my.cnf
ls: /etc/my.cnf: No such file or directory
$ ls /etc/mysql/my.cnf
ls: /etc/mysql/my.cnf: No such file or directory
$ ls /usr/local/etc/my.cnf
/usr/local/etc/my.cnf # 注意这个文件存在了
# 修改配置文件, 添加 skip-grant-tables
$ cat /usr/local/etc/my.cnf
# Default Homebrew MySQL server config
[mysqld]
# Only allow connections from localhost
bind-address = 127.0.0.1
skip-grant-tables # 添加这一行
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
2、修改密码
# 重启MySQL
$ mysql.server restart
# 进入,遇到密码直接回车
$ mysql -u root -p
# 修改前确认版本号,如果是其他版本可能会有差别
mysql> select version();
8.0.16
mysql> flush privileges; --刷新
mysql> use mysql;
mysql> alter user'root'@'localhost' IDENTIFIED BY 'aBc@123456';
# 注意: mysql8.0以上密码策略限制必须要大小写加数字特殊符号
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
3、复原my.ini
将第一步中my.ini加入的skip-grant-tables删除或注释
4、重启MySQL登录测试
$ mysql.server restart
# 此时在登录就需要密码了
$ mysql -u root -p
- 1
- 2
- 3
- 4
参考
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/100854789
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)