Centos7 修改mysql指定用户的密码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos7 修改mysql指定用户的密码相关的知识,希望对你有一定的参考价值。
1.登陆mysql或者mariadb(两种任选其一)
[[email protected] ~]# mysql -u root
[[email protected] ~]# mysql -uroot -p
2.切换到存储用户名和密码的数据库
MariaDB [mysql]> use mysql;回车,会显示以下内容
Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A
Database changed
3.修改密码,适用password()函数进行加密,实际上就是执行sql语句来更新指定用户的密码
MariaDB [mysql]> update user set password=password(‘新密码‘) where user=‘要更新密码的用户名‘;回车
-> ;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 5 Changed: 0 Warnings: 0
4.刷新用户权限列表
MariaDB [mysql]> flush privileges;回车
Query OK, 0 rows affected (0.00 sec)
5.退出mysql登陆
MariaDB [mysql]> quit
Bye
6.重启mysql或者mariadb服务
[[email protected] ~]# service mysqld restart(重启mysql)
[[email protected] ~]# service mariadb restart(重启mariadb)
以上是关于Centos7 修改mysql指定用户的密码的主要内容,如果未能解决你的问题,请参考以下文章