MySQL 5.7忘记root密码及修改root密码的方法

运维 数据库运维
本文重点给大家介绍下mysql 5.7 root密码修改。

【引自豆花饭烧土豆的博客】关闭正在运行的 MySQL :

  1. [root@www.woai.it ~]# service mysql stop 

运行

  1. [root@www.woai.it ~]# mysqld_safe --skip-grant-tables & 

为了安全可以这样禁止远程连接:

  1. [root@www.woai.it ~]# mysqld_safe --skip-grant-tables --skip-networking & 

使用mysql连接server:

  1. [root@www.woai.it ~]# mysql -p 

更改密码:

  1. mysql> update mysql.user set authentication_string=password('123qwe'where user='root' and Host = 'localhost'

*特别提醒注意的一点是,新版的mysql数据库下的user表中已经没有Password字段了

而是将加密后的用户密码存储于authentication_string字段

  1. mysql> flush privileges
  2.  
  3. mysql> quit; 

 

修改完毕。重启

  1. [root@localhost ~]# service mysql restart 

然后mysql就可以连接了

但此时操作似乎功能不完全,还要alter user…

  1. mysql> alter user 'root'@'localhost' identified by '123'

这样也可以:

 

  1. mysql> set password for 'root'@'localhost'=password('123'); 

重点给大家介绍下mysql 5.7 root密码修改

MySQL管理者密码设置或修改:

依据官方说明5.6以后版本,***次启动时会在root目录下生产一个随机密码,文件名.mysql_secret。

  1. [root@bright ~]# cat /root/.mysql_secret 
  2.  
  3. Password set for user 'root@localhost' at 2015-03-27 23:12:10 
  4.  
  5. :Jj+FTiqvyrF 
  6.  
  7. [root@bright ~]# cd /usr/local/mysql/bin/ 
  8.  
  9. [root@bright bin]# ./mysqladmin -u root -h localhost password '123456' -p 

 

Enter password: #此行输入.mysql_secret里第二行内容

  1. mysqladmin: [Warning] Using a password on the command line interface can be insecure. 
  2.  
  3. Warning: Since password will be sent to server in plain text, use ssl connection to ensure password safety. 

 

官方的方式,笔者无论是否使用--skip-grant-tables启动mysql都测试失败,亲们可以测试:

  1. shell>mysql -uroot -p'password' #password即.mysql_secret里的密码 
  2.  
  3. mysql>SET PASSWORD = PASSWORD('newpasswd'); 

 

 

 

 

 

旧版本,安装后ROOT无密码,按如下操作:

方法一:

  1. shell>service mysqld stop #停止mysql服务 
  2.  
  3. shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysql 
  4.  
  5. shell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。 
  6.  
  7. mysql>use mysql; 
  8.  
  9. mysql>update user set password=PASSWORD("123456")where user="root"; #更改密码为 newpassord 
  10.  
  11. mysql>flush privileges; #更新权限 
  12.  
  13. mysql>quit #退出 

 

方法二:

  1. shell>service mysqld stop #停止mysql服务 
  2.  
  3. shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysql 
  4.  
  5. shell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。 
  6.  
  7. mysql > set password for root@localhost = password('mysqlroot'); 

 

方法三:

  1. shell>/path/mysqladmin -u UserName -h Host password 'new_password' -p 

参考:http://www.jb51.net/article/77858.htm

忘记mysql root用户密码的解决办法(skip-grant-tables)

skip-grant-tables

顾名思义,数据库启动的时候 跳跃权限表的限制,不用验证密码,直接登录。

注意:

这种情况只有在忘记root密码 不得已重启数据库的情况下使用的。现网环境慎用,需要重启数据库,并且安全性也比较难以保证。

1.修改配置参数

/etc/my.cnf

[mysqld] 下面加上:

skip-grant-tables

配置项。

2.重启MySQL

使得参数生效:

service mysqld restart

3.注意事项

此时所有用户登录当前数据库都是免密码的,所以此时数据库的安全性是非常低的。

4.修改密码

具体的办法:

参考以上介绍

5.去掉参数

a.密码修改好了之后再将配置文件中 skip-grant-tables去掉

b.再次重启数据库。 

责任编辑:庞桂玉 来源: 豆花饭烧土豆的博客
相关推荐

2010-10-14 10:09:33

MySQL root用

2010-06-10 15:44:53

2010-05-26 17:21:14

MySQL root密

2010-06-04 16:03:37

MySQL root密

2010-06-09 17:26:54

2011-06-27 09:23:05

Ubuntu密码

2010-05-13 18:18:58

MySQL root

2010-05-18 16:41:25

MySQL 修改

2010-09-02 14:04:20

2010-05-27 18:18:14

MySQL修改root

2018-07-11 20:29:19

数据库MySQLroot密码

2010-06-01 08:54:36

MySQL忘记root

2010-02-03 13:50:19

Linux mysql

2010-05-27 18:06:12

MySQL 修改roo

2010-06-01 10:37:11

MySQL修改root

2019-09-09 10:25:54

MySQLMariaDB roo密码

2010-05-19 16:23:21

MySQL root密

2010-01-27 09:56:31

linux超级权限root密码

2010-01-06 13:50:23

2009-12-31 16:30:41

Ubuntu桌面设置
点赞
收藏

51CTO技术栈公众号