连接到 docker-compose mysql 容器会拒绝访问,但运行相同映像的 docker 不会

新手上路,请多包涵

我在连接到使用 docker-compose 启动的 mysql docker 容器时遇到了一些问题。这是一个很长的帖子(对不起!)。

这是我的 docker-compose.yml 文件:

 db:
  image: mysql:5.7
  ports:
    - "3306:3306" # I have tried both ports and expose "3306". Still doesn't work
  environment:
    - MYSQL_ROOT_PASSWORD="secret"
    - MYSQL_USER="django"
    - MYSQL_PASSWORD="secret"
    - MYSQL_DATABASE="myAppDB"

然后:

 $> docker-compose build
db uses an image, skipping #expected!
$> docker-compose up
<<LOTS OF OUTPUT>>

好的,现在我有一个启动并正在运行的 docker 容器运行程序 mysql:5.7。伟大的!或者是吗?在我的 django 应用程序中进行测试时,我收到操作错误,指出不允许用户连接数据库。好的,那也许是我的 django ?

 $> docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
c7216f99ca0f        mysql:5.7           "docker-entrypoint.sh"   3 minutes ago       Up 3 minutes        0.0.0.0:3306->3306/tcp   sharpfin_db_1

$> docker-machine ip dev
192.168.99.100
$> mysql -h 192.168.99.100 -P 3306 -u django -p
Enter password:
ERROR 1045 (28000): Access denied for user 'django'@'192.168.99.1' (using password: YES)

好的,也许这与连接到 docker-compose 容器有关?如果我尝试从 docker 容器内部连接会怎样?

 $> docker exec -it c7216f99ca0f /bin/bash
root@c7216f99ca0f:/#
root@c7216f99ca0f:/# mysql -u django -p
Enter password:
ERROR 1045 (28000): Access denied for user 'django'@'localhost' (using password: YES)

好的,所以docker mysql不会让我连接,不知道为什么。让我们看看当我尝试在没有 docker-compose 的情况下执行此操作时会发生什么:

 $> docker run --name run-mysql -e MYSQL_ROOT_PASSWORD="secret" -e MYSQL_USER="django" -e MYSQL_PASSWORD="secret" -e MYSQL_DATABASE="myAppDB" -p "3306:3306" mysql:5.7
<<LOTS OF OUTPUT SAME AS BEFORE>>

好的,所以现在我们有一个容器运行与以前相同的图像并具有相同的设置。 (我认为这个断言可能不是真的 - docker-compose 正在做一些与 docker run 不同的事情)。

 $> docker ps
CONTAINER ID        IMAGE               COMMAND                  CREATED             STATUS              PORTS                    NAMES
73071b929e82        mysql:5.7           "docker-entrypoint.sh"   3 minutes ago       Up 3 minutes        0.0.0.0:3306->3306/tcp   run-mysql

这是我的容器(称为 run-mysql)。让我们连接!

 $> mysql -h 192.168.99.100 -P 3306 -u django -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.12 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| myAppDB            |
+--------------------+
2 rows in set (0.01 sec)

mysql>

好吧。可以登录。这很奇怪……从容器内部呢?

 $> docker exec -it 73071b929e82 /bin/bash
root@73071b929e82:/# mysql -u django -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 3
Server version: 5.7.12 MySQL Community Server (GPL)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> SHOW DATABASES;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| myAppDB            |
+--------------------+
2 rows in set (0.00 sec)

mysql>

好的,当我使用 docker run 启动时,我可以从容器外部和内部登录,但不能使用 docker-compose。这是怎么回事? docker-compose 必须在幕后做一些事情来改变数据库的初始化方式。

如果我也尝试使用 root 用户,上述所有内容都是完全相同的。所以这不是 django 用户的权限问题。

任何想法如何解决这个问题?

原文由 Davy Kavanagh 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 875
2 个回答

docker-compose.yml 文件中的环境变量在使用数组定义时不应有引号:

 db:
  image: mysql:5.7
  ports:
    - "3306:3306"
  environment:
    - MYSQL_ROOT_PASSWORD=secret
    - MYSQL_USER=django
    - MYSQL_PASSWORD=secret
    - MYSQL_DATABASE=myAppDB


如果您在 docker-compose.yml 文件中使用它们:

 db:
  image: mysql:5.7
  ports:
    - "3306:3306"
  environment:
    - MYSQL_ROOT_PASSWORD="secret"
    - MYSQL_USER="django"
    - MYSQL_PASSWORD="secret"
    - MYSQL_DATABASE="myAppDB"

并运行:

 $ docker-compose up -d

并进入运行容器:

 $ docker-compose exec db /bin/bash

你会看到输出:

 root@979813643b0c:/# echo $MYSQL_ROOT_PASSWORD
"secret"

原文由 Wallace 发布,翻译遵循 CC BY-SA 4.0 许可协议

我有一个类似的问题,这对我有帮助:

https://github.com/docker-library/mysql/issues/51#issuecomment-76989402

自从您第一次尝试运行容器以来,您是否更改过密码? docker-compose 做了额外的工作来保存运行之间的卷(从而保存数据库);您可能想尝试 docker-compose rm -v 删除所有内容并尝试重新启动。

原文由 gvlasov 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题