Mysql5.6忘记root密码修改root密码的方法

 更新时间:2016年06月29日 11:18:00   作者:zyc_reg  
这篇文章主要介绍了Mysql5.6忘记root密码修改root密码的方法的相关资料,非常不错,具有参考借鉴价值,需要的朋友可以参考下

mysql5.6忘记数据库的root密码:

[root@oraserver139 ~]# mysql -uroot -p
Enter password:
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

查看当前安装的mysql版本:

root@oraserver139 ~]# rpm -qa | grep MySQL
MySQL-server-5.6.15-1.el6.x86_64
MySQL-client-5.6.15-1.el6.x86_64
MySQL-shared-compat-5.6.15-1.el6.x86_64
MySQL-devel-5.6.15-1.el6.x86_64
perl-DBD-MySQL-4.022-1.el6.rfx.x86_64

停止mysql服务:

[root@oraserver139 ~]# service mysql stop
Shutting down MySQL.. SUCCESS!

进入到skip-grant-tables模式:

[root@oraserver139 ~]# mysqld_safe --skip-grant-tables
140211 15:37:49 mysqld_safe Logging to '/var/lib/mysql/oraserver139.err'.
140211 15:37:49 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql

现在就不需要密码就可以进入mysql了:

[root@oraserver139 ~]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.6.15 MySQL Community Server (GPL)

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系统数据库:

mysql> use mysql
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed

修改root账户密码:

mysql> update user set password=password("12345") where user="root";
Query OK, 4 rows affected (0.02 sec)
Rows matched: 4 Changed: 4 Warnings: 0

刷新权限:

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

停止mysql进程:

[1]+ Stopped mysqld_safe --skip-grant-tables

启动mysql:

[root@oraserver139 ~]# service mysql start
Starting MySQL SUCCESS!

使用刚才修改的密码进入mysql:

[root@oraserver139 ~]# mysql -uroot -p12345
Warning: Using a password on the command line interface can be insecure.
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.6.15

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> show databases;
ERROR 1820 (HY000): You must SET PASSWORD before executing this statement

mysql> SET PASSWORD = PASSWORD('12345');
Query OK, 0 rows affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| performance_schema |
| test |
+--------------------+
4 rows in set (0.00 sec)

修改完成;

以上所述是小编给大家介绍的Mysql5.6忘记root密码修改root密码的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

相关文章

  • MySql超长自动截断实例详解

    MySql超长自动截断实例详解

    这篇文章主要介绍了MySql超长自动截断实例详解的相关资料,这里通过实例来说明如何实现自动截断的功能,需要的朋友可以参考下
    2017-07-07
  • MySQL 聚合函数排序

    MySQL 聚合函数排序

    这篇文章主要介绍了MySQL查询排序与查询聚合函数用法,结合实例形式分析了MySQL查询结果排序以及查询聚合函数相关使用技巧,需要的朋友可以参考下
    2021-07-07
  • MySQL8.0/8.x忘记密码更改root密码的实战步骤(亲测有效!)

    MySQL8.0/8.x忘记密码更改root密码的实战步骤(亲测有效!)

    忘记root密码的场景还是比较常见的,特别是自己搭的测试环境经过好久没用过时,很容易记不得当时设置的密码,下面这篇文章主要给大家介绍了关于MySQL8.0/8.x忘记密码更改root密码的实战步骤,亲测有效!需要的朋友可以参考下
    2023-04-04
  • 导致MySQL做全表扫描的几种情况

    导致MySQL做全表扫描的几种情况

    这篇文章主要介绍了导致MySQL做全表扫描的几种情况,帮助大家更好的理解和学习使用MySQL,感兴趣的朋友可以了解下
    2021-03-03
  • MySQL实现创建存储过程并循环添加记录的方法

    MySQL实现创建存储过程并循环添加记录的方法

    这篇文章主要介绍了MySQL实现创建存储过程并循环添加记录的方法,涉及基本的mysql存储过程创建、调用相关操作技巧,需要的朋友可以参考下
    2017-05-05
  • MySQL 5.5主从同步设置笔记分享

    MySQL 5.5主从同步设置笔记分享

    这篇文章主要介绍了MySQL 5.5主从同步设置笔记分享,需要的朋友可以参考下
    2014-05-05
  • MySQL使用LIKE索引是否失效的验证的示例

    MySQL使用LIKE索引是否失效的验证的示例

    LIKE查询可以通过一些方法来使得LIKE查询能够使用索引,本文主要介绍了MySQL使用LIKE索引是否失效的验证的示例,具有一定的参考价值,感兴趣的可以了解一下
    2024-08-08
  • mysql7.x单独安装mysql的方法

    mysql7.x单独安装mysql的方法

    这篇文章主要介绍了mysql7.x单独安装mysql的方法,要解决这个问题,我们要先下载mysql的repo源,具体操作步骤大家通过本文学习吧
    2017-01-01
  • MySQL中关于case when的用法

    MySQL中关于case when的用法

    这篇文章主要介绍了MySQL中关于case when的用法,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-06-06
  • mysql root密码的重设方法(亲测可用)

    mysql root密码的重设方法(亲测可用)

    这篇文章主要介绍了如何重设mysql root密码,需要的朋友可以参考下
    2014-02-02

最新评论