【发布时间】:2016-09-24 08:24:26
【问题描述】:
我在连接到使用 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 用户的权限问题。
任何想法如何解决这个问题?
【问题讨论】:
-
感谢您提出这样一个结构良好的问题。正是我遇到的问题和解决方案。
-
我遇到了同样的问题,但给出的解决方案都不起作用。
-
对我来说,根本原因是我使用 Dockerfile“入口点”调用客户端的方式。作为环境变量传递的数据库凭据要求我使用 shell 版本的入口点而不是命令版本入口点的正确方法:["/bin/bash", "-c", "java -DMYSQL_PASSWORD=${MYSQL_PASSWORD} -jar myapp.war"]
标签: mysql docker docker-compose