共计 631 个字符,预计需要花费 2 分钟才能阅读完成。
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 -ADatabase 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
本文永久更新链接地址 :http://www.linuxidc.com/Linux/2016-05/131664.htm