ubuntu mysql8 密码忘记
时间:2021-07-01 10:21:17
帮助过:39人阅读
- 编辑mysqld.cnf文件
- sudo vi /etc/mysql/mysql.conf.d/mysqld.cnf
- 在文件中的skip-external-locking一行的下面添加一行
- skip-grant-tables
- 重启MySQL服务
- sudo service mysql restart
- 终端输入mysql进入MySQL,输入USE mysql切换至mysql数据库
- mysql
- USE mysql
- 把root用户的密码修改为空(8版本以上必须先改成空,好像是因为没有password函数)
- update user set authentication_string=‘’ where user=‘root’;
- 退出重启mysql
- flush privileges;
- exit
- 注释掉/etc/mysql/mysql.conf.d/mysqld.cnf文件中添加的一行
- sudo service mysql restart
- 登陆
- mysql -u root
- 修改密码
- alter user ‘root‘@‘localhost‘ identified by ‘new_password‘;
- 退出
ubuntu mysql8 密码忘记
标签:conf coding 编辑 ring ble cat set locking use