最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

localhost - Connect from PHP docker to MySQL host (remote through ssh-tunnel) - Stack Overflow

programmeradmin2浏览0评论

I have a docker container with PHP. I can connect from PHP to my local MySQL-container with PDO:

$db = new PDO("mysql:host=mysql-docker;port=3306", "user", "pass");

I also have a remote MySQL server, which is accesible on my host machine through ssh-tunnel. From command line on my host (local) machine I can connect to it this way:

mysql -h 127.0.0.2 -P 13306 -u user -p

But when I try to connect from PDO on PHP-docker, I receive error "SQLSTATE[HY000] [2002] Connection refused"

$db = new PDO("mysql:host=127.0.0.2;port=13306", "user", "pass");

How to make it to connect?

I have a docker container with PHP. I can connect from PHP to my local MySQL-container with PDO:

$db = new PDO("mysql:host=mysql-docker;port=3306", "user", "pass");

I also have a remote MySQL server, which is accesible on my host machine through ssh-tunnel. From command line on my host (local) machine I can connect to it this way:

mysql -h 127.0.0.2 -P 13306 -u user -p

But when I try to connect from PDO on PHP-docker, I receive error "SQLSTATE[HY000] [2002] Connection refused"

$db = new PDO("mysql:host=127.0.0.2;port=13306", "user", "pass");

How to make it to connect?

Share Improve this question edited Apr 1 at 21:26 dima.rus asked Apr 1 at 10:20 dima.rusdima.rus 1821 silver badge9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

Ok, finally I have found a solution.

Actually, I can choose any ip address to end up my tunnel. So, instead of 127.0.0.2 I need to end up this tunnel on address 172.17.0.1 - this address is output of this command:

ip addr show docker0

After that I can simply connect from my PHP-container:

 $db = new PDO("mysql:host=172.17.0.1;port=13306", "user", "pass");
发布评论

评论列表(0)

  1. 暂无评论