为了账号安全,请及时绑定邮箱和手机立即绑定

Mysql5.7忘记root密码

标签:
MySQL

关闭正在运行的 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


更改密码:

?

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


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

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

?

12mysql> flush privileges;mysql> quit;

修改完毕。重启

?

1[root@localhost ~]# service mysql restart

然后mysql就可以连接了

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

?

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

这样也可以:

?

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

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

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

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

?

12345[root@bright ~]# cat /root/.mysql_secret# Password set for user 'root@localhost' at 2015-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里第二行内容

?

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

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

?

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


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

方法一:

?

1234567shell>service mysqld stop #停止mysql服务shell>mysqld_safe --skip-grant-tables & #以不启用grant-tables模式启动mysqlshell>mysql -uroot -p #输入命令回车进入,出现输入密码提示直接回车。mysql>use mysql;mysql>update user set password=PASSWORD("123456")where user="root"; #更改密码为 newpassordmysql>flush privileges; #更新权限mysql>quit #退出

方法二:

?

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

方法三:

?

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


点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消