Linux重置MySQL密码

Posted 做一个有灵魂的人

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux重置MySQL密码相关的知识,希望对你有一定的参考价值。

1.停止mysql程序

[[email protected] ~]# service mysqld stop
Stopping mysqld:                                           [  OK  ]

 2.打开mysql配置文件

[[email protected] ~]# vim /etc/my.cnf
搜索mysqlld /mysqld
[mysqld]#下一行添加
skip-grant-tables  #忽略MySQL权限问题,直接登录

 3.开启MySQL服务

[[email protected] ~]# service mysqld start

 4.无密码直接进入mysql

[[email protected] ~]# mysql
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.73-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

5.使用mysql表,进行修改密码

mysql> use mysql
Database changed
mysql> update user set password=password("123") where user="root";#密码修改为123
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0

 6.刷新权限

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

 7.杀死所有mysqld进程

[[email protected] ~]# killall mysqld
[[email protected] ~]# ps -ef|grep mysqld
root      53342  45198  0 20:57 pts/6    00:00:00 grep mysqld

 8.开启mysqld服务

[[email protected] ~]# service mysqld start
Starting mysqld:                                           [  OK  ]

 9.测试进入mysql

[[email protected] ~]# mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.1.73-log Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.

mysql>

 




以上是关于Linux重置MySQL密码的主要内容,如果未能解决你的问题,请参考以下文章

linux重置mysql密码

在Linux中,MySQL密码没过期,刚重置完,提示已过期

linux重置mysql密码

Linux重置MySQL密码

linux下mysql重置密码

Linux重置MySQL密码