我正在尝试使用VSCode和xDebug设置php调试,但是xDebug无法连接到主机。因此,VSCode也不会遇到任何断点。
当我在VSCode中启动调试侦听器时,在php-fpm容器中运行Bash shell并尝试连接到主机,它将失败:
$ docker-compose exec php-fpm bash
root@178ba0224b37:/application# nc -zv 172.20.0.1 9001
172.20.0.1: inverse host lookup failed: Unknown host
(UNKNOWN) [172.20.0.1] 9001 (?) : Connection refused
我对IP地址感到困惑,因为在Docker设置中,虚拟交换机子网设置为10.0.75.0
,并且网络适配器vEthernet (DockerNAT)
使用IP 10.0.75.1
。容器如何获得IP范围172.20.0.x
?
在我的桌面上,我无法使用172.20.0.1
请求该网页。
10.0.75.1
可以正常工作,它可以按预期显示phpinfo()
,但不会触发断点。
phpinfo()
显示xDebug已配置,并且设置与我在php-ini-overrides.ini
配置中的设置匹配。
我已禁用防火墙,尝试使用不同的IP,并检查了端口以及各种xDebug,php,docker-compose和VSCode调试设置。
我一直在搜寻,但是我仍然想念一些东西。我的猜测是它与网络连接有关,但是我不知道我还能改变什么来解决此问题。
设置
主机是具有docker-compose和VSCode的Windows10。
我从https://phpdocker.io/generator获得了docker debug-test
目录
基本上,它使用两个docker容器:nginx:alpine
和phpdocker/php-fpm
我的VSCode工作空间如下所示:
(自述文件来自phpdocker.io生成器,并包含一些基本的Docker信息)
index.php
内容:
<?php
phpinfo(); // <-- VSCode breakpoint here
echo 'hello there';
?>
容器的IP地址:
/debug-test-php-fpm - 172.20.0.3
/debug-test-webserver - 172.20.0.2
$_SERVER['REMOTE_ADDR']: 172.20.0.1 <- the host?
配置和日志
launch.json
内容:
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"pathMappings": {
"/application/public": "${workspaceRoot}/public"
},
"log": true,
"port": 9001,
"xdebugSettings": {
"max_data": 65535,
"show_hidden": 1,
"max_children": 100,
"max_depth": 5
}
},
{
"name": "Launch currently open script",
"type": "php",
"request": "launch",
"program": "${file}",
"cwd": "${fileDirname}",
"port": 9001
}
]
}
docker-compose.yml
内容:
###############################################################################
# Generated on phpdocker.io #
###############################################################################
version: "3.1"
services:
webserver:
image: nginx:alpine
container_name: debug-test-webserver
working_dir: /application
volumes:
- .:/application
- ./phpdocker/nginx/nginx.conf:/etc/nginx/conf.d/default.conf
ports:
- "8000:80"
php-fpm:
build: phpdocker/php-fpm
container_name: debug-test-php-fpm
working_dir: /application
volumes:
- .:/application
- ./phpdocker/php-fpm/php-ini-overrides.ini:/etc/php/7.2/fpm/conf.d/99-overrides.ini
php-ini-overrides.ini
内容:
upload_max_filesize = 100M
post_max_size = 108M
# added for debugging with Docker and VSCode
xdebug.remote_enable=1
xdebug.remote_connect_back=On
xdebug.remote_autostart=1
# xdebug.remote_host=172.20.0.1 # using remote_connect_back instead, which should work for any IP
xdebug.remote_connect_back=1
xdebug.remote_port=9001
xdebug.profiler_enable=0
xdebug.var_display_max_depth = 5
xdebug.var_display_max_children = 256
xdebug.var_display_max_data = 1024
xdebug.remote_log = /application/xdebug.log
xdebug.idekey = VSCODE
一次访问页面后, xdebug.log
的内容:
Log opened at 2019-01-30 12:37:39
I: Checking remote connect back address.
I: Checking header 'HTTP_X_FORWARDED_FOR'.
I: Checking header 'REMOTE_ADDR'.
I: Remote address found, connecting to 172.20.0.1:9001.
W: Creating socket for '172.20.0.1:9001', poll success, but error: Operation now in progress (29).
E: Could not connect to client. :-(
Log closed at 2019-01-30 12:37:39
Log opened at 2019-01-30 12:37:39
I: Checking remote connect back address.
I: Checking header 'HTTP_X_FORWARDED_FOR'.
I: Checking header 'REMOTE_ADDR'.
I: Remote address found, connecting to 172.20.0.1:9001.
W: Creating socket for '172.20.0.1:9001', poll success, but error: Operation now in progress (29).
E: Could not connect to client. :-(
Log closed at 2019-01-30 12:37:39
这不是粘贴错误,由于某种原因,它实际上记录了两次请求。
启动调试侦听器后,使用VSCode调试控制台:
<- launchResponse
Response {
seq: 0,
type: 'response',
request_seq: 2,
command: 'launch',
success: true }
有什么想法吗?我迷路了.. 也许与DockerNAT设置有关?
很抱歉,很长的帖子。我还是Docker的新手,我希望它具有所需的所有信息。
请在下面查看我的答案。
答案 0 :(得分:0)
经过一些编码后,我偶然发现了解决方案。
php调试设置中的IP地址不正确。由于我的系统具有VPN连接,多个以太网适配器,多个虚拟交换机和多个虚拟机,因此找出在哪里使用的内容有点棘手。
当我在请求期间在php容器上运行netstat时,偶然发现了IP:
$ docker-compose ps --services
php
app
$ docker-compose exec php sh
/var/www/html # netstat
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 08674b3fd785:58060 192.168.137.12:http TIME_WAIT
tcp 0 0 08674b3fd785:58062 192.168.137.12:http TIME_WAIT
[...]
udp 0 0 08874b3cd785:35298 192.168.65.1:domain ESTABLISHED
我首先尝试了192.168.65.1
IP,但这没用。
192.168.137.12
是php脚本连接到的Hyper-V虚拟机的IP。显然,php容器可以连接到该容器,因此也许它也可以连接到绑定到该虚拟交换机的Windows适配器,换句话说:192.168.137.1
。
将此添加到xDebug设置中可以解决问题:
xdebug.remote_host = 192.168.137.1
。