MySQL单实例重置密码的两种方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL单实例重置密码的两种方法相关的知识,希望对你有一定的参考价值。
MySQL单实例重置密码的两种方法
在工作学习中,我们有时会忘记数据库的密码,下面是mysql单实例密码重置的步骤。
说明:
(1)[[email protected] ~]# cat /etc/redhat-release
CentOS release 6.7 (Final)
(2)[[email protected] ~]# mysql --version
mysql Ver 14.14 Distrib 5.7.13, for Linux (i686) using EditLine wrapper
主要步骤如下:
首先停止MySQL
[[email protected] ~]# /etc/init.d/mysqld stop
/etc/init.d/mysqld: line 46: /usr/local/mysql: is a directory
/etc/init.d/mysqld: line 47: /usr/local/mysql/data: is a directory
Shutting down MySQL. SUCCESS!
查看MySQL的状态:
[[email protected] ~]# /etc/init.d/mysqld status
/etc/init.d/mysqld: line 46: /usr/local/mysql: is a directory
/etc/init.d/mysqld: line 47: /usr/local/mysql/data: is a directory
ERROR! MySQL is not running
查看MySQL的进程:
[[email protected] ~]# ps aux|grep mysql|grep -v grep
使用--skip-grant-tables启用MySQL忽略登入授权验证
[[email protected] ~]# mysqld_safe --skip-grant-tables --user=mysql &
[1] 6559
[[email protected] ~]# 2017-07-30T14:23:38.600285Z mysqld_safe Logging to ‘/usr/local/mysql/data/mysqld.err‘.
2017-07-30T14:23:38.640326Z mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data
无需密码即可登入MySQL
[[email protected] ~]# mysql
重置root密码
说明:新安装的MySQL5.7,登录时提示密码错误,安装的时候并没有更改密码,后来通过免密码登录的方式更改密码,输入update mysql.user set password=password(‘wtf123‘) where user=‘root‘ and host=‘localhost‘时提示ERROR 1054 (42S22): Unknown column ‘password‘ in ‘field list‘,原来是mysql5.7数据库下已经没有password这个字段了,password字段改成了authentication_string.
mysql> update mysql.user set authentication_string=password(‘wtf123‘) where user=‘root’and host=‘localhost‘;
Query OK, 1 row affected, 1 warning (0.00 sec)
Rows matched: 1 Changed: 1 Warnings: 1
刷新:mysql> flush privileges;
退出:mysql> quit
说明:不能使用set password=password(‘wtf1234‘);
重启服务再登入
[[email protected] ~]# /etc/init.d/mysqld restart
[[email protected] ~]# mysql -uroot -pwtf123
说明:查看数据库密码命令:
mysql> select user,host,authentication_string from mysql.user;
扩展:通过修改/etc/my.cnf 配置文件来重置mysql密码
1.打开mysql的配置文件,命令:vim /etc/my.cnf 。在配置文件中新增一行 skip-grant-tables,结果如下图所示:
2.保存并退出!
3.重启mysqld,命令:service mysqld restart
4.无需密码即可登入MySQL
[[email protected] ~]# mysql
mysql> update mysql.user set authentication_string=password(‘wtf123‘) where user=‘root’and host=‘localhost‘;
flush privileges; #刷新权限
退出:quit
5.退出后还原my.cnf重启,命令如下:
vim /etc/my.cnf #打开mysql配置文件,将skip-grant-tables前面加#;
/etc/init.d/mysqld restart #重新启动mysql;
用新密码登入mysql数据库,命令如下:
#mysql –uroot –p123456 即可正常登入数据库了!
本文出自 “圣骑士控魔之手” 博客,请务必保留此出处http://wutengfei.blog.51cto.com/10942117/1952520
以上是关于MySQL单实例重置密码的两种方法的主要内容,如果未能解决你的问题,请参考以下文章
使用–skiptables重置MySQL8 root用户的密码