Trying to run the debugger on remote vm box with IPV4 connectivity only
continually getting
[Error: listen EAFNOSUPPORT: address family not supported :::9003
at Server.setupListenHandle [as _listen2] (node:net:1918:21)
at listenInCluster (node:net:1997:12)
at node:net:2206:7
at process.processTicksAndRejections (node:internal/process/task_queues:89:21)] {
code: 'EAFNOSUPPORT',
errno: -97,
syscall: 'listen',
address: '::',
port: 9003
}
I've found settings to change the port for the debugger but where do I change the address so it uses ipv4 (127.0.0.1) instead of ipv6 (::)
launch.json doesn't allow setting address or host or hostname for php debugger
php.debug.port exists but not php.debug.address or host or hostname
xdebug.client_host=127.0.0.1
xdebug.client_port=9003
both are set correctly on the host vm php.ini and php -i shows correct output
so how do you change that address value for the listen for debugging?