How do I attach a remote debugger to a Python process?

use Winpdb. It is a platform independent graphical GPL Python debugger with support for remote debugging over a network, multiple threads, namespace modification, embedded debugging, encrypted communication and is up to 20 times faster than pdb. Features: GPL license. Winpdb is Free Software. Compatible with CPython 2.3 through 2.6 and Python 3000 Compatible with wxPython … Read more

Accessing localhost (xampp) from another computer over LAN network – how to?

Localhost is just a name given for the loopback, eg its like referring to yourself as “me” .. To view it from other computers, chances are you need only do http://192.168.1.56 or http://myPcsName if that doesnt work, there is a chance that there is a firewall running on your computer, or the httpd.conf is only … Read more

Remote debugging a Java application

Edit: I noticed that some people are cutting and pasting the invocation here. The answer I originally gave was relevant for the OP only. Here’s a more modern invocation style (including using the more conventional port of 8000): java -agentlib:jdwp=transport=dt_socket,server=y,address=8000,suspend=n <other arguments> Original answer follows. Try this: java -Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=4000,suspend=n myapp Two points here: No … Read more