On Sat, Mar 31, 2012 at 01:16, Dan Kopparhed <[email protected]> wrote: > I have a setup with Eclipse running in Windows 7 x64 but working in a > SMB-shared workspace folder residing in my Linux server. I have Nodejs > 0.6.14 installed and working properly both in Windows and Linux. I use > the Eclipse debugger plugin for V8 and it works as expected when I debug > with nodejs running locally in Windows. However, I prefer to run nodejs etc > in Linux, but if I instead run nodejs --debug in the remote Linux machine > (with appropriate changes) the debugger fails with "Failed to connect to > Standalone V8 VM". > > I use Eclipse 4.1.2 x64 with the latest updates installed. I also tried with > Indigo, with identical results. I have verified that there are no firewall > rules blocking. > > It simply seems like the debugger plugin won't connect properly to the > remote machine, but I can see the packets going between (with tcpdump). > Anyone else seen this problem? A bug?
The V8 debugger binds to 127.0.0.1, that's why you can't connect. You can't override that, it's hard-coded, but you can forward traffic to the port with iptables or set up a ssh tunnel. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
