码迷,mamicode.com
首页 > 数据库 > 详细

mysql修改密码(命令行)

时间:2021-02-22 11:45:52      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:mysql   use   host   password   改密码   local   nbsp   cat   grant   

mysql8:

  alter user ‘root‘@‘localhost‘ identified by ‘123456‘;

mysql5.7:

  update user set authentication_string = password(‘123456‘) where user = ‘root‘ and Host = ‘localhost‘;

  flush privileges;

  如果flush 无效,就加上下面这句:

  grant all privileges on *.* to ‘root‘@‘localhost‘ identified by ‘123456‘ with grant option;

mysql修改密码(命令行)

标签:mysql   use   host   password   改密码   local   nbsp   cat   grant   

原文地址:https://www.cnblogs.com/xdl824/p/14419981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!