已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题吗?**通过editing this post添加详细信息并阐明问题。
5个月前关闭。
Improve this question
我正在学习一个文本教程,在该教程中我创建了一个用户:
create user 'APP'@'localhost' identified by 'APP';
grant all privileges on *.* to 'APP'@'localhost';
quit
当我尝试使用以下用户登录时:
mysql -u APP -p
我被要求输入密码。输入密码时出现错误:
ERROR 1045 (28000): Access denied for user 'APP'@'localhost' (using password: YES)
创建的用户使用哪个密码?
1条答案
按热度按时间hpxqektj1#
编辑:您可能还需要执行 FLUSH PRIVILEGES; 以使更改生效。