Saw lots of posts regarding the debugging of remote Node js server and tried a lot of their solutions yet did not manage to get my configuration to work
I have Intellij installed on a Windows PC with the following "Node.js Remote Debug" configuration: Host:my-server.dev.com Port:5858
the node server itself is installed on UBUNTU with the following port forwarding rule defined on it: socat TCP-LISTEN:5858,fork TCP:localhost:6000
and the server runs with the following command (cluster : /usr/local/n/versions/node/0.10.44/bin/node --debug=6000 /opt/play/play-server/main.js)
Intellij shows session as connected yet cannot break on break points