简单地说

我想在docker容器中运行mysql,并从我的主机连接到它。到目前为止,我所取得的最好成绩是:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

更多的细节

我正在使用以下Dockerfile:

FROM ubuntu:14.04.3
RUN apt-get update && apt-get install -y mysql-server

# Ensure we won't bind to localhost only
RUN grep -v bind-address /etc/mysql/my.cnf > temp.txt \
  && mv temp.txt /etc/mysql/my.cnf

# It doesn't seem needed since I'll use -p, but it can't hurt
EXPOSE 3306

CMD /etc/init.d/mysql start && tail -F /var/log/mysql.log

在有这个文件的目录中,我可以成功地构建图像并运行它:

> docker build -t my-image .
> docker run -d -p 12345:3306 my-image

当我附加到图像时,它似乎工作得很好:

# from the host
> docker exec -it <my_image_name> bash

#inside of the container now
$ mysql -u root
Welcome to the MySQL monitor.  Commands end with ; or \g.
[...]

然而,我并没有从主持人那里得到太多的成功:

> mysql -P 12345 -uroot
ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2)

更多细节

我看到有一个问题看起来像我的。然而,这是不一样的(它没有任何答案) 我已经看到有专门的mysql映像,但我没有更多的成功与他们 我的grep -v可能感觉很奇怪。诚然,也许有更清洁的方法。但是当我附加我的图像时,我可以观察到它实际上按预期工作(即:删除绑定地址)。我可以在容器/var/log/mysql/error.log中看到:

服务器主机名(bind-address): '0.0.0.0';端口:3306 - '0.0.0.0'解析为'0.0.0.0'; 在IP: '0.0.0.0'上创建的服务器套接字。


当前回答

如果这能帮到别人的话:

我的首选方案

添加~/.my.cnf的内容

[client]
user=<yourusername>
password=typethepasswordhere
host=127.0.0.1
port=3306

然后从终端运行>$ mysql,你应该在你的SQL cmd。

硬核替代品

你也可以这样连接

docker exec -it containername mysql  

进入sql cmd

or

docker exec -it contaiinername bash (or sh) 

在容器中连接,然后运行>$ mysql

其他回答

mysql -u root -P 4406 -h localhost --protocol=tcp -p

请记住更改用户、端口和主机,以便与您的配置相匹配。如果您的数据库用户配置了密码,则需要使用-p标志

如果你的Docker MySQL主机运行正常,你可以从本地机器连接到它,但你应该这样指定主机,端口和协议:

mysql -h localhost -P 3306 --protocol=tcp -u root

将3306更改为您从Docker容器转发的端口号(在您的示例中,它将是12345)。

因为你是在Docker容器内运行MySQL, socket是不可用的,你需要通过TCP连接。在mysql命令中设置“——protocol”将改变这一点。

如果你使用“127.0.0.1”而不是localhost, mysql将使用tcp方法,你应该能够连接容器:

mysql -h 127.0.0.1 -P 3306 -u root

你应该检查分配给运行容器的IP地址,然后连接到该主机:

docker inspect -f '{{range . networksettings . networks}}{{。IPAddress}}{{end}} ` <容器名称或id>

比你能联系到的:

mysql -h < inspect命令提供的IP > -P <port> -u <user> -P <db name> . mysql

https://mariadb.com/kb/en/installing-and-using-mariadb-via-docker/#connecting-to-mariadb-from-outside-the-container

好的。我终于解决了这个问题。以下是我在https://sqlflow.org/sqlflow中使用的解决方案。

完整的解决方案

为了使演示独立,我将所有必要的代码移到了https://github.com/wangkuiyi/mysql-server-in-docker。

解决方案的关键

我没有使用DockerHub.com https://hub.docker.com/r/mysql/mysql-server上的官方图片。相反,我自己在Ubuntu 18.04上安装了MySQL。这种方法让我有机会启动mysqld并将其绑定到0.0.0.0(所有ip)。

有关详细信息,请参阅我的GitHub回购中的这些行。

SQLFLOW_MYSQL_HOST=${SQLFLOW_MYSQL_HOST:-0.0.0.0}

echo "Start mysqld ..."
sed -i "s/.*bind-address.*/bind-address = ${SQLFLOW_MYSQL_HOST}/" \
    /etc/mysql/mysql.conf.d/mysqld.cnf
service mysql start

验证我的解决方案

Git clone the aforementioned repo. git clone https://github.com/wangkuiyi/mysql-server-in-docker cd mysql-server-in-docker Build the MySQL server Docker image docker build -t mysql:yi . Start MySQL server in a container docker run --rm -d -p 23306:3306 mysql:yi Install the MySQL client on the host, if not yet. I am running Ubuntu 18.04 on the host (my workstation), so I use apt-get. sudo apt-get install -y mysql-client Connect from the host to the MySQL server running in the container. mysql --host 127.0.0.1 --port 23306 --user root -proot

从同一主机上的另一个容器连接

我们甚至可以从另一个容器(在同一主机上)运行MySQL客户端。

docker run --rm -it --net=host mysql/mysql-server mysql \
   -h 127.0.0.1 -P 13306 -u root -proot

从其他主机连接

在我的iMac上,我使用Homebrew安装MySQL客户端。

brew install mysql-client
export PATH="/usr/local/opt/mysql-client/bin:$PATH"

然后,我可以访问上面的Ubuntu主机(192.168.1.22)。

mysql -h 192.168.1.22 -P 13306 -u root -proot

从运行在其他主机上的容器连接

我甚至可以在iMac上的容器中运行MySQL客户端,以连接到我的Ubuntu工作站上的容器中的MySQL服务器。

docker run --rm -it --net=host mysql/mysql-server mysql \
    -h 192.168.1.22 -P 13306 -u root -proot

特例

在这种情况下,我们在运行在同一主机上的独立容器中运行MySQL客户端和服务器——这可能发生在我们设置CI时,我们不需要构建我们自己的MySQL服务器Docker镜像。相反,我们可以在运行客户端容器时使用——net=container:mysql_server_container_name。

启动服务器

docker run --rm -d --name mysql mysql/mysql-server

启动客户端

docker run --rm -it --net=container:mysql mysql/mysql-server mysql \
 -h 127.0.0.1 -P 3306 -u root -proot