mysql 5.7 mysqladmin root密码_MySQL 5.7忘记root密码及修改root密码的方法

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

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

运行

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

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

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

使用mysql连接server:

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

更改密码:

mysql>updatemysql.usersetauthentication_string=password('123qwe')whereuser='root'andHost ='localhost';

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

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

mysql> flushprivileges;

mysql> quit;

修改完毕。重启

[root@localhost ~]# service mysql restart

然后mysql就可以连接了

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

mysql>alteruser'root'@'localhost'identifiedby'123';

这样也可以:

mysql>setpasswordfor'root'@'localhost'=password('123');

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

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

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

[root@bright ~]# cat /root/.mysql_secret

# Passwordsetforuser'root@localhost'at2015-03-27 23:12:10

:Jj+FTiqvyrF

[root@bright ~]# cd /usr/local/mysql/bin/

[root@bright bin]# ./mysqladmin -u root -h localhost password'123456'-p

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

mysqladmin: [Warning] Using apasswordonthe command line interface can be insecure.

Warning: Since passwordwill be senttoserverinplain text, use sslconnectiontoensurepasswordsafety.

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

shell>mysql -uroot -p'password'#password即.mysql_secret里的密码

mysql>SETPASSWORD=PASSWORD('newpasswd');

023a787f1b14e676871f8876a6abdfb5.png

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

方法一:

shell>service mysqld stop #停止mysql服务

shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysql

shell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。

mysql>use mysql;

mysql>updateusersetpassword=PASSWORD("123456")whereuser="root"; #更改密码为 newpassord

mysql>flush privileges; #更新权限

mysql>quit #退出

方法二:

shell>service mysqld stop #停止mysql服务

shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysql

shell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。

mysql > setpasswordforroot@localhost =password('mysqlroot');

方法三:

shell>/path/mysqladmin -u UserName -h Hostpassword'new_password'-p

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

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.再次重启数据库。

【编辑推荐】

【责任编辑:枯木 TEL:(010)68476606】

点赞 0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值