Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PhpStorm - How to connect to MySQL via Docker

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.

like image 749
lionelp Avatar asked Mar 06 '19 16:03

lionelp


2 Answers

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 it's 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.
like image 108
Andreas Lorenzen Avatar answered Sep 20 '22 10:09

Andreas Lorenzen


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.

like image 28
Luc Avatar answered Sep 21 '22 10:09

Luc