Centos下如何修改Mysql的root密码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos下如何修改Mysql的root密码相关的知识,希望对你有一定的参考价值。

1、用帐号登录mysql

mysql –u root

或#mysql –uroot –p

2、改变用户数据库

命令:mysql>use mysql

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()函数进行加密!!!!

命令:mysql> update user set password=password(‘root‘) where user=‘root‘;

mysql> update user set password=password(‘root‘) where user=‘root‘;
Query OK, 3 rows affected (0.00 sec)
Rows matched: 3  Changed: 3  Warnings: 0

4、刷新权限表

命令:mysql> flush privileges;

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)

5、退出mysql并对mysql进行重启即可!!

service mysqld restart

以上是关于Centos下如何修改Mysql的root密码的主要内容,如果未能解决你的问题,请参考以下文章

centos下修改mysql的root密码

CentOS7忘记ROOT密码

liunx centos7怎么修改root密码步骤

centos7 修改root密码方式

Centos7 忘记root密码更改

centos 7 忘记root 密码