gpt4 book ai didi

python - 错误 1045 (28000) : Access denied

转载 作者:行者123 更新时间:2023-11-30 01:16:59 26 4
gpt4 key购买 nike

这是我以前遇到过的常见问题:

:~$ mysql -h "1xx.xxx.xxx.xxx" -u "someuser" -ppassword "somepass" -D "somedatabase"
ERROR 1045 (28000): Access denied for user 'someuser'@'yyy.yyy.yyy.yyy' (using password: YES)

但这一次,当我尝试连接到远程 vps xxx.xxx.xxx....。我收到错误 1045,其中 ip 地址是我的 ip 地址,这显然告诉我它甚至没有尝试连接到远程 vps。(xxx 不是 yyy。我想连接到 xxx.x...)

有什么猜测,帮忙吗?其他人以前遇到过这样的问题吗?

我通过 mysql 连接器模块从 python 尝试了同样的事情,但同样的事情。

最佳答案

您需要允许从远程位置访问该用户。

CREATE USER 'user'@'remotehost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'user'@'remotehost';
FLUSH PIVILEGES;

关于python - 错误 1045 (28000) : Access denied,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18962792/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com