15

I am working with PhpStorm 2018.3.4, Docker, MySQL and Ubuntu. I tried unsuccessfully to configure MySQL with the Docker container network_mysql.

First, I have tried this configuration :

First configuration

It gave me this error :

Result of the first configuration

Then, I tried this :

Second configuration

This one gave me this other error.

Result of the second configuration

Am I missing something? Is there another place where I must configure something?

docker ps output :

docker ps

Here docker network ls :

docker network ls

For the command docker inspect network_mysql, here is a link to the description : https://pastebin.com/9LmeAkc8

Here is a docker-compose.yml configuration : https://pastebin.com/DB4Eye4y

I tried to put - "3306:3306" in addition to the wex_server_proxy section with no avail.

The file to modify was this one :

https://pastebin.com/TPBQNCDZ

I added the ports section, opening the 3306 port :) And then, it works.

12
  • use your mysql container name in connection host Commented Mar 6, 2019 at 16:21
  • you can see the container name by this command docker ps or docker container ls Commented Mar 6, 2019 at 16:23
  • typo mysql:/// three slashes, should be 2 ? Commented Mar 6, 2019 at 16:26
  • Can you share your container configuration? Commented Mar 6, 2019 at 16:26
  • Possible duplicate of Connect to Docker MySQL container from localhost? Commented Mar 6, 2019 at 16:27

3 Answers 3

26

Solution

I notice that you are not mapping the mysql container port out. If you did, you would see this from the docker ps command:

...   0.0.0.0:3306->3306/tcp       network_mysql

Post not mapped out for mysql container

The container network_mysql is attached to a bridge type network called tmp_wex_net. This means that the container is not accesible from the host, by its container name.

I appears that you are using a docker-compose.yml definition for the stack. In order to be able to access the container from the host, you need to use the ports section of your compose definition for this container:

serivces:
  mysql:
    ...
    ports:
      - "3306:3306"
    ...

If you are starting it with docker run, then you can acomplish the same thing with:

docker run -p 3306:3306 --name network_mysql --network="tmp_wex_net" -d mysql

And then use localhost in the hostname of your connection settings in PHPStorm. Like this:

Host: localhost

Port: 3306

Database: network


The problem

The reason that you are not able to connect, is that the host name network_mysql that you specify in the connection settings, does not resolve to any host that your machines knows of.

The container name of a docker container, is not a DNS name that the docker host can resolve.

If you have not specified any network for your mysql container, then it is connected to the default bridge network. And if you have created a new network, without specifying the type - it will also default to the bridge driver.

In order to access the container from the host, you need to either:

  1. Connect the container to the host network
  2. Or from a container on a bridge network, map the port to the host like suggested in the solution above. You can then address the specifically mapped port on that container with localhost:<portnum> from the host machine.
Sign up to request clarification or add additional context in comments.

8 Comments

I added the docker inspect network_mysql command via a link in my original post.
I can see that your container is in the 'tmp_wex_net' network which is a bridge network. Please try my instructions in the bottom of my answer. I think I will move them to the top.
I edited my answer to fit the new information, and to make the solution appear in the top of the answer. Let me know if the suggested solution works out for you.
I will discuss of your solution with the one who created the overlay.
I changed something to the Docker configuration file (that i just added to my post) but it did not change anything.
|
3

For everyone who has setup mysql manually in a docker image:

chances are you must configure mysql to accept incoming connections also from the network interface which docker creates/uses to communicate with the host (along with port forwarding).

in my case, i added the following to /etc/mysql/my.cnf to the end of the file:

[mysqld]
bind-address    = 0.0.0.0

With that mysql listens on all network interfaces.

Comments

0

My solution: I forwarded ports from localhost to remote: ssh -R 3306:localhost:3306 root@remote_host_ip and the connection was successful.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.