帮助中心 >  技术知识库 >  网站相关 >  建站知识 >  如何在centos6.5系统修改MySQL默认用户root的密码

如何在centos6.5系统修改MySQL默认用户root的密码

2016-06-24 15:39:48 9068

1.用默认账号密码登录MySQL服务端

[root@domin ~]# mysql -u root -p

2.切换到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.执行更改密码的语句

mysql> update user set password=password('landui') where user='root';

Query OK, 3 rows affected (0.01 sec)

Rows matched: 3  Changed: 3  Warnings: 0

4.刷新权限表

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)

5.现在退出就可以用新密码登录啦~

mysql> exit;

Bye


提交成功!非常感谢您的反馈,我们会继续努力做到更好!

这条文档是否有帮助解决问题?

非常抱歉未能帮助到您。为了给您提供更好的服务,我们很需要您进一步的反馈信息:

在文档使用中是否遇到以下问题: