当前位置: 首页 > 编程笔记 >

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

邢卓
2023-03-14
本文向大家介绍Mysql5.6忘记root密码修改root密码的方法,包括了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密码的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对小牛知识库网站的支持!

 类似资料:
  • 本文向大家介绍Mysql5.7忘记root密码及mysql5.7修改root密码的方法,包括了Mysql5.7忘记root密码及mysql5.7修改root密码的方法的使用技巧和注意事项,需要的朋友参考一下 关闭正在运行的 MySQL : 运行 为了安全可以这样禁止远程连接: 使用mysql连接server: 更改密码: *特别提醒注意的一点是,新版的mysql数据库下的user表中已经没有Pas

  • 本文向大家介绍Mysql5.6 忘记root密码的解决办法,包括了Mysql5.6 忘记root密码的解决办法的使用技巧和注意事项,需要的朋友参考一下 查看当前安装的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

  • 主要内容:使用mysqladmin命令在命令行指定新密码,修改MySQL数据库的user表,使用SET语句修改root用户的密码在 MySQL 中,root 用户拥有很高的权限,因此必须保证 root 用户密码的安全。修改 root 用户密码的方式有很多种,本节将介绍几种常用的修改 root 用户密码的方法。 使用mysqladmin命令在命令行指定新密码 root 用户可以使用 mysqladmin 命令来修改密码,mysqladmin 的语法格式如下: mysqladmin -u usern

  • 本文向大家介绍MySQL 修改root密码,包括了MySQL 修改root密码的使用技巧和注意事项,需要的朋友参考一下 例子            

  • 本文向大家介绍windows 下忘记mysql root密码的更改方法,包括了windows 下忘记mysql root密码的更改方法的使用技巧和注意事项,需要的朋友参考一下 mysql数据库忘记了root密码是件很痛苦的事,本文介绍如何解决windows环境下mysql服务器忘记root密码的解决方法。 1.关闭MySQL服务 window+r运行输入net stop mysql 2.在mysq

  • 本文向大家介绍MySql5.5忘记root密码怎么办,包括了MySql5.5忘记root密码怎么办的使用技巧和注意事项,需要的朋友参考一下 使用mysql5.5,突然root密码忘记,怎么也登录不了,很急人,该怎么解决呢?下面通过本文给大家介绍mysql5.5忘记root密码的解决办法,需要的朋友参考下吧 方法一: 操作系统:windows操作系统,xp或win7. C:\Users\Admini