Questions tagged [remote-debugging]

Remote debugging is the process of running a debug session in a local development environment attached to a remotely deployed application.

While developing applications, developers often need to run the applications on other machines than their development machine. Reasons could be many: big environment setup to run the application (server grade), running on different OSes, preventing the development machine from any damage, actual run on production-like environment and so on,

A remote debugger is installed on remote machine, which is then connected to development machine. Remote debugger allows debugging in debugger just like local process debugging.

For debugging, the developer builds the executable (and dependent modules) locally, copies them (manually or with script) to remote machine, and then begins debugging.

2628 questions
1
vote
0 answers

mod_perl debugging & user-code-lines are not shown

I'm playing around Apache::DB to debug my code under mod_perl. I can have it running and see the variables, but I cannot see the line of code with the instruction that is going to be executed (even if the file pathname and line number printed apart…
stef.ch
  • 11
  • 2
1
vote
0 answers

Android : debugging app over different network

I'm trying to debug app over diffrent networks. Is it possible. I have tried wifi debugging where both the devices are connected to the same network (same wifi connection). As descripbed here. But whem i tried to do same steps, and using the…
PJ1405
  • 545
  • 1
  • 3
  • 18
1
vote
0 answers

Visual Studio 2015 and remote debugger - Cannot connect to a service process that is starting

When using Visual Studio 2015 and its x64, 2015 version remote debugger - I can't connect to a service process that is starting. It's not an issue connecting to a process that is running. Connecting to a service while it is starting is useful…
Matt
  • 25,943
  • 66
  • 198
  • 303
1
vote
1 answer

Software update on remote machines

[Thank you for answers. I am adding more information to my original question] We have a Python App that is deployed across several customer locations. It is not feasible to set up a VPN between our servers and the client machines.As we add new…
sachin
  • 35
  • 1
  • 5
1
vote
0 answers

Eclipse PyDev run remotely

I normally have to log into to a cluster and switch to a node / user: ssh root@domain ssh n001 su - user and then I am able to run from a particular directory and debug my code. I would like to use Eclipse PyDev (locally) to run/debug my code on…
Janusz
  • 173
  • 1
  • 9
1
vote
1 answer

xdebug running in PHPStorm unable to connect to remote server

Problem I'm trying to get xdebug running between my box and a webapp running on a remote server. I'm running xdebug through PHPStorm on my development box. I get stuck after starting the debugger. The PHPStorm debugger window hangs on "Waiting for…
Joey
  • 760
  • 2
  • 7
  • 23
1
vote
1 answer

Pass arguments to ARM program while remotely debugging

I'm trying to debug an ARM code from my Linux machine. The beginning of the code is as follows: .text:00008290 MOV R12, SP .text:00008294 STMFD SP!, {R4,R11,R12,LR,PC} .text:00008298 SUB R11,…
Sebastien Damaye
  • 385
  • 2
  • 15
1
vote
1 answer

Debugging Apache Spark clustered application from Eclipse

I am trying to debug Spark application running on eclipse in clustered/distributed environment but not able to succeed. Application is java based and I am running it through Eclipse. Configurations to spark for Master/worker is provided through Java…
jammer
  • 151
  • 3
  • 23
1
vote
1 answer

PyCharm add remote Python interpreter inside the Docker

So I have set up a docker on my laptop. I'm using Boot2Docker so I have one level of indirection to access the docker. In PyCharm, I can set a remote python interpreter via SSH but I'm not sure how to do it for dockers that can only be accessed via…
Sam R.
  • 16,027
  • 12
  • 69
  • 122
1
vote
0 answers

What is the principle of IntelliJ IDEA's remote debug?

It's easy to debug remotely in Intellij IDEA, but what is the principle? In what way does the IDEA catch the request?
nullptr
  • 339
  • 2
  • 6
1
vote
1 answer

Visual Studio 2013 remote debugger monitor error (not trying to do anything remote)

I've been using VS 2013 for quite a while now and this problem occures quite often, although sometimes it goes away for a week or two. Sometimes, after running my program in debug mode a few times, I get the following error: The workaround I have…
Eric
  • 522
  • 5
  • 9
1
vote
2 answers

Is the remote debugger from VS2010 compatible with VS2008?

Is the remote debugger from VS2010 compatible with VS2008? That is, can connect from visual studio 2008 to a machine running the remote debugger installed by VS 2010
Matt
  • 25,943
  • 66
  • 198
  • 303
1
vote
1 answer

Problems with Xdebug failing to connect with PHPStorm

I'm trying to get Xdebug working with PHPStorm for a Magento site I'm working on. It is a remote server, and this is my first time setting that up. As best I can tell it's setup correctly, but when I have PHPStorm Listen it never connects. When I…
Matt Flamm
  • 181
  • 1
  • 1
  • 14
1
vote
1 answer

How to setup remote debugging of an eclipse RCP application

My RCP app is not working properly outside of the development environment so I'm trying to setup a remote debugging session. I start the app using the following parameters: -vmargs -Xdebug -Xnoagent…
paul
  • 13,312
  • 23
  • 81
  • 144
1
vote
0 answers

Chrome remote debugging gives broken page when accessed over network

Tried to expose chrome dev-tools interface over network using adb forward tcp:9222 localabstract:chrome_devtools_remote and access it over localhost:9222 but it gives an error whereas the default interface is accessible by going to…