如何在Ubuntu 16.04上设置Docker + PhpStorm + xdebug

时间:2017-09-17 10:27:52

标签: php ubuntu docker phpstorm xdebug

我的问题是xdebug在我开始侦听端口时不起作用。我认为PhpStorm无法与xdebug建立联系。我只是得到调试器面板变量不可用。它看起来像xdebug没有正确的设置。

使用的软件和版本:

Ubuntu 16.04 LTS
Docker v 17.06
docker-compose 1.15

所以我多次尝试设置xdebug + Docker + PhpStorm但不能这样做。我已经阅读了很多教程,但没有什么能帮助我。

我的docker-compose.yml看起来像这样:

version: '3'
services:
    web:
        image: nginx:latest
        ports:
            - "80:80"
        restart: on-failure
        volumes:
            - "./etc/nginx/default.conf:/etc/nginx/conf.d/default.conf"
            - "./etc/ssl:/etc/ssl"
            - "./project:/var/www/html/project"
        depends_on:
            - php
            - db

    php:
        image: nanoninja/php-fpm
        restart: on-failure
        volumes:
            - "./etc/php/php.ini:/usr/local/etc/php/conf.d/php.ini"
            - "./project:/var/www/html/project"
    db:
        image: mysql
        container_name: ${MYSQL_HOST}
        restart: on-failure
        env_file:
            - ".env"
        environment:
            - MYSQL_DATABASE=${MYSQL_DATABASE}
            - MYSQL_ROOT_PASSWORD=${MYSQL_ROOT_PASSWORD}
            - MYSQL_USER=${MYSQL_USER}
            - MYSQL_PASSWORD=${MYSQL_PASSWORD}
        command: mysqld --sql-mode=NO_ENGINE_SUBSTITUTION
        ports:
            - "8988:3306"
        volumes:
            - "./data/db/mysql:/var/lib/mysql"

我的xdebug.ini是:

xdebug.default_enable=0
xdebug.remote_enable=1
xdebug.remote_port=9000
xdebug.remote_autostart=0
xdebug.remote_connect_back=0
xdebug.idekey="PHPSTORM"
xdebug.profiler_enable=0
xdebug.remote_host=localhost

PhpStorm设置:

enter image description here

enter image description here

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:5)

我找到了解决方案如何运行xdebug。

1)首先,我们需要创建一个基于您的网络设备的新静态路由。用于创建新的静态路由:在终端ifconfig

中运行

并找出了存在的网络设备。在我的情况下,设备名称将为

wlp4s0

enter image description here

2)继续。让我们开始创建静态路由。在这样的终端运行命令中:

> sudo ip addr add 10.254.254.254/24 brd + dev wlp4s0 label wlp4s0:1

3)现在,如果再次运行ifconfig,您将看到新的静态路由: enter image description here

4)更新

xdebug.ini

文件添加:

xdebug.remote_host=10.254.254.254

5)更新docker.compose.yml文件: 在php部分添加:

environment:
    PHP_IDE_CONFIG: "serverName=project-docker"
    PHP_XDEBUG_ENABLED: 1
    XDEBUG_CONFIG: remote_host=10.254.254.254

6)最后一件事是更新phpstorm设置。

服务器设置:  phpstorm settings 远程调试配置:  phpstorm settings 7)利润xdebug正在运作:  xdebug is working

答案 1 :(得分:0)

Linux上的Docker允许Xdebug自动连接回主机系统,因此您只需设置xdebug.remote_connect_back=1并在xdebug.remote_host中保留xdebug.ini