Mysql创建新用户后无法登录,提示 Access denied for user 'username'@'localhost' (using password: YE
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql创建新用户后无法登录,提示 Access denied for user 'username'@'localhost' (using password: YE相关的知识,希望对你有一定的参考价值。
mysql创建新用户后无法登录,提示 Access denied for user ‘username‘@‘localhost‘ (using password: YES) ,多半是因为存在匿名用户,要解决这个问题只要删除数据库中的匿名用户即可。
MySQL新建用户后无法登录,提示 Access denied for user ‘username‘@‘localhost‘ (using password: YES) 的解决方法:
请使用root账户通过命令行或php程序运行以下代码
- MySQL 创建一个新用户,用户名为username,密码为password,将localhost改为%可允许该用户登录所有主机
CREATE USER ‘username‘@‘localhost‘ IDENTIFIED BY ‘password‘; - 为该用户授权,本例将所有权限全部授予给该用户,可以将ALL PRIVILEGES改为具体的权限选项,
*.*代表所有数据库下的所有数据表,也可以指定为具体的数据库表
GRANT ALL PRIVILEGES ON *.* TO ‘username‘@‘localhost‘ WITH GRANT OPTION - 删除数据库中的空白账户(匿名账户),依次执行以下两条指命,这一步是解决这个问题的核心步骤
DELETE FROM `mysql`.`user` WHERE `user`=‘‘;
FLUSH PRIVILEGES;
以上是关于Mysql创建新用户后无法登录,提示 Access denied for user 'username'@'localhost' (using password: YE的主要内容,如果未能解决你的问题,请参考以下文章
MySQL-Access denied for user 'username'@'localhost' (using password: YES) 解决
MAC下的mysql 登陆的时候提示Access denied for user 'root@'localhost' (using password: YES)