php – 带有虚拟机的端口9000上的XDebug – EADDRINUSE ::: 90000

我在VirtualBox VM上运行我的Symfony应用程序. PHP正在使用XDebug运行,并且已正确配置.我知道这一点,因为其他人已设法使其与同一个VM的快照一起工作.

当我尝试在VS Code XDebug中配置时,我使用以下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",
            "port": 9000
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9000
        }
    ]
}

但是当我点击“开始调试:侦听XDebug”时,我收到以下错误:

ERROR: listen EADDRINUSE :::9000

我试图杀死正在使用该端口的进程……令我惊讶的是,这是我尝试连接的虚拟机.

我在这个配置中错过了什么?

解决方法:

端口9000经常被其他应用程序的默认配置使用(例如MacOsX上的本机apache),还有VM,Docker容器等……

一个可靠的解决方案是 – 使用不同的端口.例如,9001

上一篇:PHP XDEBUG未启用


下一篇:phpinfo中敏感信息记录