将 sequel pro 连接到 docker mysql
Connecting sequel pro to docker mysql
我已按照有关如何将 mysql 安装到 docker here 的指南进行操作。
在 运行 上 docker ps
我得到:
CONTAINER ID IMAGE COMMAND CREATED
3e477bb5aaf9. mcr.microsoft.com/mssql/server:2019-latest "/opt/mssql/bin/perm…" 53 seconds ago
STATUS PORTS NAMES
Up 52 seconds 0.0.0.0:1433->1433/tcp sql_server
我试过像这样从 sequel pro 连接到它:
但是,那没有用。我收到连接错误消息:
Unable to connect to host 127.0.0.1, or the request timed out.
Be sure that the address is correct and that you have the necessary privileges, or try increasing the connection timeout (currently 10 seconds).
MySQL said: Can't connect to MySQL server on '127.0.0.1' (4)
我想知道如何与 Sequel Pro 连接到 docker 上的 mysql 服务器?
您在 MySQL 和 MSSQL 之间搞砸了。这两个是完全不同的产品,协议不兼容。 sequelpro
是连接MySQL服务器的工具,而你是运行MSSQL。没有魔法,连接不上。
我已按照有关如何将 mysql 安装到 docker here 的指南进行操作。
在 运行 上 docker ps
我得到:
CONTAINER ID IMAGE COMMAND CREATED
3e477bb5aaf9. mcr.microsoft.com/mssql/server:2019-latest "/opt/mssql/bin/perm…" 53 seconds ago
STATUS PORTS NAMES
Up 52 seconds 0.0.0.0:1433->1433/tcp sql_server
我试过像这样从 sequel pro 连接到它:
但是,那没有用。我收到连接错误消息:
Unable to connect to host 127.0.0.1, or the request timed out.
Be sure that the address is correct and that you have the necessary privileges, or try increasing the connection timeout (currently 10 seconds).
MySQL said: Can't connect to MySQL server on '127.0.0.1' (4)
我想知道如何与 Sequel Pro 连接到 docker 上的 mysql 服务器?
您在 MySQL 和 MSSQL 之间搞砸了。这两个是完全不同的产品,协议不兼容。 sequelpro
是连接MySQL服务器的工具,而你是运行MSSQL。没有魔法,连接不上。