专注于云服务器
VPS主机优惠测评
国内免备案虚拟主机

mysql5.7怎么重置密码

mysql5.7重置密码的方法:首先执行【update user set authentication_string = password('123456') where user = 'root';】语句;然后重启mysql服务即可。

mysql5.7怎么重置密码

具体方法:

(推荐教程:mysql视频教程

关闭MySQL5.7的权限系统

找到MySQL5.7的配置文件my.cnf

在文件末尾编辑增加代码skip-grant-tables

重启mysqld服务,登陆MySQL

$systemctl restart mysqld

此时再登录mysql时,不需要密码就登录进去了。

修改root密码

$use mysql; $select host,user,authentication_string from user; #修改root密码 $update user set authentication_string = password('123456') where user = 'root';

开启权限系统,重启MySQL,新密码登录

$vim /etc/my.cnf #开启权限系统 #skip-grant-tables #重启mysql $systemctl restart mysqld #新root密码登陆 $mysql -uroot -p

相关推荐:mysql教程

以上就是mysql5.7怎么重置密码的详细内容,更多请关注名铺123其它相关文章!

赞(0) 打赏
转载请注明出处:晓波笔记 » mysql5.7怎么重置密码
分享到: 更多 (0)
megalayer云服务器

raksmart云服务器

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

晓波笔记-VPS主机,云服务器优惠促销测评

QQ:87304394

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏