详解Centos7 修改mysql指定用户的密码

前端之家收集整理的这篇文章主要介绍了详解Centos7 修改mysql指定用户的密码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文介绍了Centos7 修改MysqL指定用户的密码,具体如下:

1.登陆MysqL或者mariadb(两种任选其一)

[root@localhost ~]MysqL -u root [root@localhost ~]MysqL -uroot -p

2.切换到存储用户名和密码的数据库

MariaDB [MysqL]> MysqL显示以下内容 Reading table information completion of table and column names You can turn off this feature to get a quicker startup with -

3.修改密码,适用password()函数进行加密,实际上就是执行sql语句来更新指定用户的密码

MariaDB [MysqL]> update user set password=password('新密码') where user='要更新密码的用户名'->,0 rows affected (0.00: 5 Changed: 0 Warnings: 0

4.刷新用户权限列表

MariaDB [MysqL]> ,0 rows affected (0.00 sec)

5.退出MysqL登陆

MariaDB [MysqL]>

6.重启MysqL或者mariadb服务

[root@localhost ~]MysqLd restart(重启MysqL) [root@localhost ~]

 

原文链接:https://www.f2er.com/linux/403234.html

猜你在找的Linux相关文章