1

我认为我非常接近(我希望)让 xdebug 在 docker 容器中运行,旨在通过 Visual Studio Code 进行连接。

我认为也许我应该/etc/hosts在容器中的文件中添加一个配置,将 IP 地址指向我的文件正在提供的 url,但我不确定该 IP 地址应该对应于什么。

错误:

通过xdebug_info()(和/tmp/xdebug.log):

[Step Debug] Could not connect to debugging client. Tried: localhost:9003 (through xdebug.client_host/xdebug.client_port) :-(

通过telnet localhost 9003

Trying 127.0.0.1...
Trying ::1...
telnet: Unable to connect to remote host: Cannot assign requested address

xdebug.ini文件:

zend_extension=xdebug.so

[xdebug]
xdebug.mode=debug
xdebug.start_with_request = yes
xdebug.discover_client_host = 0
xdebug.remote_connect_back = 1
xdebug.client_port = 9003
xdebug.force_error_reporting = 1
xdebug.remote_host=host.docker.internal
xdebug.idekey=VSCODE
xdebug.mode = debug
xdebug.log=/tmp/xdebug-local.log

launch.json: _

  "version": "0.2.0",
  "configurations": [
    {
      "type": "php",
      "request": "launch",
      "name": "xDebug listen",
      "port": 9003,
      "url": "http://mzmbo.test",
      "stopOnEntry": true,
      "pathMappings": {
        "/var/www/html/wp-content/plugins/my-wp-plugin": "${workspaceRoot}/my-wp-plugin"
      }
    }
  ]
}

Dockerfile: _

FROM "wordpress:${WP_VERSION:-latest}"

RUN apt-get update -y \
  && apt-get install -y \
      libxml2-dev \
      vim \
      lsof \
      ufw \
      telnet \
  && apt-get clean -y \
  && ufw allow 9003 \
  && docker-php-ext-install soap  \
  && docker-php-ext-enable soap \
  && pecl install xdebug \
  && docker-php-ext-enable xdebug

# Replace php.ini
COPY php.ini /usr/local/etc/php
COPY docker-php-ext-xdebug.ini /usr/local/etc/php/conf.d

最后docker-compose.yml

version: "3"

services:
  wordpress:
    build: .
    environment:
      VIRTUAL_HOST: "myproject.test"
      WORDPRESS_DB_HOST: "mysql"
      WORDPRESS_DB_NAME: "wordpress"
      WORDPRESS_DB_PASSWORD: ""
      WORDPRESS_DB_USER: "root"
    depends_on:
      - "mysql"
    networks:
      - "front"
      - "back"
    volumes:
      - "wp:/var/www/html:rw"
      - "./my-wp-plugin:/var/www/html/wp-content/plugins/my-wp-plugin:ro"

演出结果xdebug_info()

Step Debugger   ✔ enabled
xdebug.client_host  localhost
xdebug.client_port  9003
xdebug.start_with_request   yes

我打赌我需要添加一个配置,但不确定是什么。

更新

本教程中,我看到xdebug.discover_client_host=true“告诉 Xdebug 尝试从 HTTP 请求中提取客户端的 IP”,client_host如果失败则回退。(它检查变量以找出要使用的 IP 地址。)这是替换 xDebug 2 的$_SERVER['HTTP_X_FORWARDED_FOR']配置。xDebug 的大多数重要配置都在和之间发生了变化。$_SERVER['REMOTE_ADDR']remote_connect_backv2v3

但是,仍然出现相同的连接错误:

Trying 192.168.16.1...
telnet: Unable to connect to remote host: Connection refused

在日志中:

[21] [Step Debug] WARN: Could not connect to client host discovered \
 through HTTP headers, connecting to configured address/port: localhost:9003. :-|
[21] [Step Debug] WARN: Creating socket for 'localhost:9003', \ 
poll success, but error: Operation now in progress (29).192.168.16.1:9003 (from HTTP_X_FORWARDED_FOR HTTP header), \
 localhost:9003 (fallback through xdebug.client_host/xdebug.client_port) :-(

我尝试添加一个指向(在 Docker 容器中)的/etc/hosts条目,但还没有弄清楚如何刷新容器中的 DNS 记录。也许我需要在容器中添加额外的主机映射?192.168.16.1myproject.test

看到一篇建议Lando的帖子,它似乎包裹了 Docker,可以缓解一些这种痛苦,但我还没有准备好放弃这个,所以如果你读到这里,非常感谢你。

解决方案(感激地)在下面接受。

我还需要更改 VS Codelaunch.json文件:

"stopOnEntry": false

因为我的仓库中没有 WP 代码库,只有一个特定的插件。使用"stopOnEntry": true时,xDebug 插件在 中寻找(不存在的)index.php文件(起点)"${workspaceRoot},而不是仅检查断点,这是我需要的,我的本地代码库只是整个应用程序的一部分。

另外,我认为# comments接受的答案中的 使文件无效,.ini因此如果您的设置似乎没有出现,请注意这一点。

4

1 回答 1

2

看起来您正在使用 Xdebug 3,而您的一些配置参数来自已弃用的 Xdebug 2(remote_host并且remote_connect_back与新的冲突discover_client_host) - 请参阅https://xdebug.org/docs/all_settings。让我们从清理这些开始:

zend_extension=xdebug.so

[xdebug]
; Set the mode to debug
xdebug.mode=debug
; Trigger the connection on each request/CLI script execution
xdebug.start_with_request=yes
; Do not try to connect to the host reported by HTTP headers, use the one in client_host instead
xdebug.discover_client_host=0
; Force connect to the Docker host IP
xdebug.client_host=host.docker.internal
xdebug.idekey=VSCODE
xdebug.log=/tmp/xdebug-local.log

这些设置应该强制 Xdebug 始终连接到您的 Docker 主机 IP。根据您的 Docker 版本和环境,您可能需要将以下设置添加到您的docker-compose.yml

extra_hosts:
  - "host.docker.internal:host-gateway"
于 2021-09-07T03:38:16.890 回答