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

centos7中Mysql修改密码的几种方法

时间:2019-08-26 10:19:06      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:centos7   ati   str   centos   sel   new   code   sele   cat   

修改密码
root修改自己密码
方法一:

mysqladmin -uroot -p‘123‘ password ‘new_password‘ //123为旧密码

方法二:
在Mysql中

    update mysql.user set authentication_string=password(‘Qianfeng123!‘) where user=‘root‘ and host=‘localhost‘;

方法三:
给哪个用户设置密码,你要在哪个用户下执行

set password=password(new_password‘‘)

上面方法将会在后面的版本remove,使用下面方法

SET PASSWORD=‘new_password‘;  直接设置密码

root修改其他用户密码
方法一:

mysql> SET PASSWORD FOR user3@‘localhost‘=password(‘new_password‘);

上面的方法会在将来remove,使用下面的方法:

mysql> SET PASSWORD FOR user3@’localhost’=‘new_password‘;

方法二:

UPDATE mysql.user SET authentication_string=password(‘new_password’)
    WHERE user=’user3’ AND host=’localhost’;

普通用户修改自己密码

mysql> SET password=password(‘new_password‘);
mysql> select * from mysql.user\G
mysql> alter user ‘wing‘@‘localhost‘ identified by ‘Qianfeng123!@‘;

centos7中Mysql修改密码的几种方法

标签:centos7   ati   str   centos   sel   new   code   sele   cat   

原文地址:https://blog.51cto.com/14482279/2432432

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