gpt4 book ai didi

mysql - MariaDB 10.1.12,使用 -p 时控制台没有响应

转载 作者:行者123 更新时间:2023-11-29 21:01:17 25 4
gpt4 key购买 nike

当我使用给定用户的密码时,我突然无法再登录本地(Windows 7 64)数据库(MariaDB 10.1.12)。我还有另一个 MySQL 在 Vagrant (Ubuntu32 14.04) 中运行,因此 --port 3305对于其中的 Windows 而言。

$ mysql --version
C:\Program Files\MariaDB 10.1\bin\mysql.exe Ver 15.1 Distrib 10.1.12-MariaDB, for Win64 (AMD64)

Windows/Git Bash 中给出的所有命令:

$ mysql --port 3305
ERROR 1045 (28000): Access denied for user 'ODBC'@'localhost' (using password: NO)

错误消息几乎立即出现,并且是预期的。

然后使用存在的用户名(不是字面上的下面的用户名):
$ mysql --port 3305 -u my_username
ERROR 1045 (28000): Access denied for user 'my_username'@'localhost' (using password: NO)

同样,错误消息按预期立即出现。

问题:
在同一个控制台中,此命令永远不会得到任何响应。就像 MariaDB 挂起/卡住(直到 Ctrl + C),即使在后台等待一个小时后也是如此。这似乎只发生在 -p 时参数设置:

$ mysql --port 3305 -u my_username -pcorrect_password

$ mysql --port 3305 -u my_username -p

对于后一种情况,应该会出现密码提示,但它也永远不会出现。这个配置以前有效,并且(据我所知)没有任何改变? MariaDB 本身正在工作,因为它确实响应其他命令。为什么密码提示会挂起它?

最佳答案

因为Mariadb客户端也继承了很多MySQL代码和行为,所以Mysql文档里面写的是:Connecting to the MySQL Server mariadb 客户端也可能发生这种情况。

On Unix, MySQL programs treat the host name localhost specially, in a way that is likely different from what you expect compared to other network-based programs. For connections to localhost, MySQL programs attempt to connect to the local server by using a Unix socket file. This occurs even if a --port or -P option is given to specify a port number. To ensure that the client makes a TCP/IP connection to the local server, use --host or -h to specify a host name value of 127.0.0.1, or the IP address or name of the local server. You can also specify the connection protocol explicitly, even for localhost

显然,即使使用 --port 参数,mariadb 客户端也会连接到 3305。由于端口 3305 未运行 maraidb 代理,但端口已打开,因此 mariadb 客户端只需等待超时(典型的 TCP/IP 客户端工具行为)。如果 3305 没有打开,mariadb 客户端会 ASAP 给出连接失败。

关于mysql - MariaDB 10.1.12,使用 -p 时控制台没有响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37204161/

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