English 中文(简体)
另一集装箱的MySQL连接Django 集装箱中的应用
原标题:Connecting Django Application in One Docker Container to MySQL in Another Container

标题:“Connecting Django Application in One Docker Library to MySQL in 另一个集装箱”

我有两辆多克集装箱:

  1. mysql-container: This container runs a MySQL image.
  2. my-django-container: It hosts a functional Django application.

我的目标是在<密码>上运行的Django申请与MySQL服务器在mysql-container之间建立联系。 然而,Im遇到数据库连接错误:

django.db.utils.OperationalError: (2002, "Can t connect to server on  36.253.8.13  (115)")

这里是我数据库的Django环境:

"default": {
    "ENGINE": "django.db.backends.mysql",
    "NAME": "name",
    "USER": "username",
    "PASSWORD": "password",
    "HOST": "172.18.0.2",  # What should I put here? The actual IP of the server `36.253.8.13` or the IP of the SQL container `172.18.0.2`?
    "PORT": "3306",  # Is this the default port for SQL?
}

我也把这两个集装箱放在同一个多克网络中,我可以确认,当我使用<条码>多克网络检查<>条码”的指挥对网络进行视察时,这两个集装箱都是明显的。

As a Docker novice, I would greatly appreciate any assistance in resolving this issue.

问题回答

SOLVED

当我试图在码头集装箱内打开Sql壳时,我就座。

(HY000): Can t connect to MySQL server on  172.18.0.2:3306  (110)

我为q罐装的最初装置并不正确配置。

I removed the container and ran a new container, now I am able to connect to that SQL container.





相关问题
SQL SubQuery getting particular column

I noticed that there were some threads with similar questions, and I did look through them but did not really get a convincing answer. Here s my question: The subquery below returns a Table with 3 ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

php return a specific row from query

Is it possible in php to return a specific row of data from a mysql query? None of the fetch statements that I ve found return a 2 dimensional array to access specific rows. I want to be able to ...

Character Encodings in PHP and MySQL

Our website was developed with a meta tag set to... <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> This works fine for M-dashes and special quotes, etc. However, I ...

Pagination Strategies for Complex (slow) Datasets

What are some of the strategies being used for pagination of data sets that involve complex queries? count(*) takes ~1.5 sec so we don t want to hit the DB for every page view. Currently there are ~...

Averaging a total in mySQL

My table looks like person_id | car_id | miles ------------------------------ 1 | 1 | 100 1 | 2 | 200 2 | 3 | 1000 2 | 4 | 500 I need to ...

热门标签