标签:centos7 ati str centos sel new code sele cat
修改密码方法二:
在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 ati str centos sel new code sele cat
原文地址:https://blog.51cto.com/14482279/2432432