Home  >  Article  >  Database  >  mysql密码修改_MySQL

mysql密码修改_MySQL

WBOY
WBOYOriginal
2016-05-27 14:12:141026browse

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
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn