MySQL多实例找回密码

比较简单的方法:

文件路径

killall mysqld

mysqld_safe --default-file=/data/3306/my.cnf --skip-grant-table &    --skip-grant-table放置在后面

mysql -uroot -p -S /data/3306/mysql.sock 登录密码为空

修改密码 update mysql.user set password = password("123456") where user = 'root' and host = 'localhost';

flush privileges;


上述方法解决不了,说明可能有别的原因,那么便参考下面的方法:

[root@db02 3306]# mysql -uroot -p123 -S /data/3306/mysql.sock 

Warning: Using a password on the command line interface can be insecure.
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
#原因解析:其实密码是正确的,但是数据库中什么都没有了,所以提示没有权限、
具体操作步骤:
修改3306多实例的配置文件,忽略密码直接登录数据库中(限于5.6的mysql)
在[mysqld]模块中添加
vi /etc/my.cnf
skip-grant-table 
然后重启数据库,并登录
/data/3306/mysql stop && /data/3306/mysql start 
mysql -S /data/3306/mysql.sock
登录数据库之后选择mysql,然后查看内容发现什么都没有
mysql>use myslq;
mysql> select user,host from user;
Empty set (0.00 sec)
#只能说这波骚操作很溜了。。。。。。
创建root用户并授予超级用户权限
grant all on *.* to 'root'@'localhost'identified by '123456' with grant option
#通过help grant知道想要给予用户管理grant 命令,只需要在赋权后面加 with grant option 就可以了
退出并重新登录mysql
[root@db02 3306]# mysql -uroot -p123456 -S /data/3306/mysql.sock

你可能感兴趣的:(MySQL多实例找回密码)