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
1 answer

How can I execute git commands (pull, push) on my home computer from a remote computer without installing software on the client?

Essentially, I'm trying to build a web server on my home desktop. However, I find that I am out and about quite often, so it would be nice to be able to use my laptop to edit the code on GitHub, push it to the cloned repository on my home computer,…
1
vote
1 answer

visual studio 2017 remote debugging cannot link linux lib

I connect a linux server using ssh(vs2017), and want to debug codes though the gdb server(has been installed).But I find there are some problems in linking process. The output shows that "Loaded '/lib/x86_64-linux-gnu/libc.so.6'. Cannot find or open…
jianliu
  • 13
  • 3
1
vote
1 answer

Chrome developer tools closes JetBrains IDE support plugin

I debug with PhpStorm 2016.3 my JavaScript code remotely using JetBrains IDE support plugin for Chrome (my Chrome version is 56.0.2924.87 (64-bit), plugin version is is 2.0.9). When I try to open Developer tools in Chrome, JetBrains IDE support…
metamaker
  • 2,307
  • 2
  • 19
  • 18
1
vote
1 answer

xdebug does not work on localhost

I have installed xdebug on my MacBook Pro with PHP 5.6.29 and using sublimeXdebug as client (both server and client are on same machine). It works perfectly fine when I connected to internet and xdebug.remote_host=192.168.0.35. It is not working…
lucifer
  • 110
  • 8
1
vote
1 answer

Why cannot I debug (remotely) my Azure WebApi?

I'm working on WebAPI 2 project with Azure. I have one WebAPI hosted on Azure, but I cannot debug it remotely. By Visual Studio, I click on Attach Debug (of CloudExplorer panel) like following image: But I obtain the following error: Other…
ilMattion
  • 1,841
  • 2
  • 24
  • 47
1
vote
1 answer

is '--remote-debugger-port' supposed to work with casper 1.1.2 and phantomjs 2.1.1?

I try this very simple script : debugger; var casper = require('casper').create(); casper.on('remote.message', function(msg) { this.echo('remote: ' + msg); }) casper.start('http://stackoverflow.com'); casper.thenEvaluate(function(){ var…
MevatlaveKraspek
  • 2,246
  • 3
  • 20
  • 23
1
vote
0 answers

How to remote debug a java process running on the play framework

I'm using play 2.1.2 and Java 1.7 on Eclipse. This is a two part question. 1) How do we remote debug a process that's running on the play framework 2) How do I restrict the debug port to one of many play processes running on the server? I'm trying…
Classified
  • 5,759
  • 18
  • 68
  • 99
1
vote
0 answers

Finding a TraceSource from code

We have a large business application which contains multiple project all managed by a single management project. within this management project i want to adjust the switch value of certain tracesources remotly and use DebugView to see what is…
1
vote
1 answer

PyCharm SFTP Automatic Uploading

I am using Pycharm 2016.3 Pro Edition and am remotely editing files on an ec2-instance. I have enabled automatic uploading which, to my understanding, means that any changes I make will not require me to press the "upload" button. However, this does…
Brad Miro
  • 251
  • 1
  • 2
  • 6
1
vote
0 answers

Cordova Crosswalk WebView stuck

I have a cordova application running on android devices. There I use cordova-plugin-crosswalk-webview. I had quite a lot of devices running over the weekend for testing and two devices seemed to have frozen. The webview has dynamic content, like the…
IngoAlbers
  • 5,722
  • 6
  • 31
  • 45
1
vote
1 answer

Java OOM in multi-process fitnesse testing environment

we are using fitnesse for acceptance testing of a complex web-based application. full suite would take several hours to pass, so we're using multiple processes. the setup is as follows: maven forks fitnesse server process maven makes http calls to…
ilj
  • 859
  • 8
  • 18
1
vote
1 answer

How can I remote debug a Python script running on Linux from Windows using PyScripter?

I have a Python script (running Python v2.6 or v2.7) that runs on Linux and also AIX. I'd like to be able to debug this script from Windows. I'd like to use PyScripter if possible. If it is not possible to use PyScripter, what other combination of…
Kevin P.
  • 1,414
  • 1
  • 18
  • 24
1
vote
0 answers

Cannot attach debugger to a node.js application running inside a Docker container in host-mode

I'm trying to attach the Visual Studio Code (v1.7) debugger to a node.js app that is running inside a Docker container in host-mode. DEBUG=* /usr/bin/node --debug-brk /home/app/node_modules/homebridge/bin/homebridge -- -U /home/data -P…
Chris
  • 11
  • 2
1
vote
1 answer

How can I get gdbserver to run the target program on start?

Just like it says above. The program needs to be invoked in sequence with others, by a script and I'd like to have it run automatically so that it is as true to the actual running conditions as possible. Edit I wasn't able to find an answer to…
L.McCauslin
  • 346
  • 4
  • 14
1
vote
1 answer

Java remote code Hot Swap

I have a java project (spring+hibernate) and build in via maven. It's to big to run it on localhost and I run it at VPS. Are exist any technologies for remote code hotswap?
DOBA
  • 61
  • 5