欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysql密码修改_MySQL

程序员文章站 2022-05-28 21:50:53
...
bitsCN.com

[root@slave1 ~]# mysql
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

使用带密码的root用户登录后,修改密码即可,如下:

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

重启mysql,即可用mysql无密码登录了


bitsCN.com
相关标签: 密码修改 mysql