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
2 answers

Allow remote mysql access on linux (through webmin or shell)

Spec: Ubuntu 14.04 webmin/virtualmin 1.791 I am using following code to test remote mysql database connection:
shenkwen
  • 3,536
  • 5
  • 45
  • 85
1
vote
1 answer

debugging remote website using eclipase + xdebug

I have spent several hours on the maze of eclipse's setting trying to find out how to debug a remote website but still can't get it to work. This SO is exactly what I was about to ask, after reading it, I still have something that needs to be…
shenkwen
  • 3,536
  • 5
  • 45
  • 85
1
vote
1 answer

Cannot start GDBserver using a serial connection

I'm running a small test program on an embedded Linux target (a Freescale i.MX25), which I'd like to debug using GDB. I connect to the system using an FTDI USB-RS232 cable through am Ubuntu VM. GDBserver is installed on the target. I do not have…
Ed King
  • 1,833
  • 1
  • 15
  • 32
1
vote
0 answers

How can I do debugging with vCloud using visual studio? how can I attach my vCloud machine?

I have one .exe windows app, so I am just installing my .exe in vCloud which I created windows 10 machine in vCloud. Normally it is running successfully, so right now my WindowsApp crashing in vCloud Windows 10 machine, so how can I Debug that…
1
vote
1 answer

Remote debugging from eclipse

I am trying to remote a debug an application which is deployed through Websphere. I have all the port configured correctly on server side and on eclipse side. I can use telnet host port to connect to remote host and port correctly. But When I try…
yogsma
  • 10,142
  • 31
  • 97
  • 154
1
vote
2 answers

Is it possible to use command line as a client to remote debugging a Java project?

Normally we use eclipse/IntellijIdea to remote debugging a Java application. I wonder is it possible to use some command line tool to do it?
Freewind
  • 193,756
  • 157
  • 432
  • 708
1
vote
2 answers

Remote Debugging C++ Application, Deployment failed on VS 2015

I am trying to remote debug C++ application. VS 2015 could able to connect to remote machine and on remote machine "VS 2015 Remote Debugger" is detecting valid user is connected to it. But deployment is failing with errors in visual studio…
vip007
  • 93
  • 2
  • 11
1
vote
0 answers

Remote development

I need IDE for remote debug. Local host on Windows xp and remote is on Linux. I doubts between Eclipse and netBeans EDE. Can anyone give me advice with that?
dima
  • 27
  • 1
  • 3
1
vote
1 answer

Remote debug Firefox over the internet

I just found the following great chrome extension devtool sremote. Is there a similar add-on for firefox or explorer? Or, better is there a javascript I can use for remote cross-browser debuging?
1
vote
1 answer

Cocos2d-x (JS) Android JavaScript Remote Debugging

http://www.cocos2d-x.org/wiki/Javascript_Remote_Debugging As per above doc, I tried the same for Android, but didnt work. From firefox, on clicking 'connect', connect to remote device screen came pre-filled with ip 127.0.0.1 and port 5086. After…
1
vote
1 answer

PhpStorm - Remote debugging with xDebug

OK, first things first. I started working on a new PHP project which, as in many cases, to put it mildly, built terribly. It is not possible, at this point, to copy the project to a local machine so I forced to work via FTP. I would like to set up…
Dinly
  • 161
  • 2
  • 10
1
vote
0 answers

Android: Is it possible to connect to remote adb programatically?

I set-up remote debugging with these commands: adb tcpip 5555 When I connect to the adb service with adb connect :5555 I am able to read the logcat from my computer. However, I want to write a small android app for my tablet (device A) which…
Denis Loh
  • 2,194
  • 2
  • 24
  • 38
1
vote
0 answers

Remote debugging not hitting methods in the stream functions

I was trying to debug the application but have seen that you can able to debug the streams but not functions called from map or filter. In my case it is not hitting the break point inside calculateUserData. I tried it in IntelliJ Idea with the below…
krmanish007
  • 6,749
  • 16
  • 58
  • 100
1
vote
3 answers

XAMPP 1.7.3, Eclipse PDT & XDebug - Debugging a PHP web page in Eclipse never stops at breakpoints

My development web server is currently a XAMPP 1.7.3 on my localhost (Win XP). I just set up my Eclipse 3.6 PDT with XDebug. It works fine, if I debug a file as a "PHP script", but when it comes to debugging it as a "PHP web page", XDebug ignores…
Sevyls
  • 1,160
  • 1
  • 11
  • 15
1
vote
1 answer

How to remotely debug java app and forwarding the port to virtual machine?

I want to start a java application in a host machine (windows 7) with debugging enabled -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 Then I want to start a virtual machine through vagrant and forward the port 5005 to the…
mrt181
  • 5,080
  • 8
  • 66
  • 86