remote-debugging

Chrome remote debugging shows device but not inspect link

懵懂的女人 提交于 2020-04-08 03:24:40
问题 I want to remote debug an Android app on Chrome. My device is Qmobile A11 Note with Android v4.0.4, Google Chrome v42 and Cordova v3.7. I have enabled USB debuging on my device. I was following this article. My problem is when I open this link in chrome chrome://inspect/#devices it show my device but with no inspect link. Here is the screenshot How can I inspect or remote debug, what's missing? I have worked with this before and Chrome was showing the Inspect link at that time. 回答1: For

Visual Studio for Mac azure remote debugging on Mac OS X

本小妞迷上赌 提交于 2020-02-03 05:49:25
问题 The matter is pretty simple: I'm on Visual Studio for Mac on Mac OS X Sierra , everything works perfectly and the deploy on Azure is great. The problem comes when I need to debug some odd error on the deployed remote app since it doesn't happen locally. I guess it's related to some third-party web service call but I really cannot figure out from the log. 来源: https://stackoverflow.com/questions/43991820/visual-studio-for-mac-azure-remote-debugging-on-mac-os-x

JBoss EAP 6 configure single server for remote debugging in domain mode

此生再无相见时 提交于 2020-01-23 10:50:08
问题 I have Domain controller, one Host controller and one server running in the same machine. I'm using IDEA to connect to the remote server for debugging but it's not stopping on break points even though it's running the code (i've verified with system outs). I've enabled HOST_CONTROLLER_JAVA_OPTS and PROCESS_CONTROLLER_JAVA_OPTS for remote debugging in $JBOSS_HOME/bin/domain.conf: # Sample JPDA settings for remote socket debuging. PROCESS_CONTROLLER_JAVA_OPTS="$PROCESS_CONTROLLER_JAVA_OPTS

How to run custom code when “Start Debugging” in Visual Studio and attach to debugger

浪子不回头ぞ 提交于 2020-01-23 03:08:04
问题 VS Code seems to have a file called Launch.json to customize what happens when you run your app for debugging. How do we go about that for Visual Studio? My goals is to run docker-compose without the VS Docker Tools, and then after the containers are up, telling VS to attach to the container. My question is not specific to that case though, it could just as well be another custom way of Run with debugger scenario. Ideally I could just run some commands to build the project, run the project,

VS2017 Debug my Shared Libraries on Linux Remote

社会主义新天地 提交于 2020-01-17 08:28:28
问题 I have a solution with few projects, in which there are 2 dynamic shared libraries. When I build the solution on remote system linux based, all goes ok. Then I try to debug the process. I launch the application directly on the board and try to attach to the process, but I'm not able to step into instructions of my shared libraries. What's the problem? could it be because, as I read on the output panel, cannot the system load libraries' symbols..?? if so, how do I fix it? 回答1: thanks to

Visual Studio Debugger failing to connect to remote Apache Cordova app in iOS simulator

笑着哭i 提交于 2020-01-17 05:26:09
问题 I have been trying to debug an Apache Cordova app with Visual Studio 2015 RC in a Windows 8.1 Virtual Machine. The app is running in an iOS simulator in a MAC OS host using vs-mda-remote (I've tried with different iPhone versions), but the debug always times out. There doesn't seem to be a proper error, only the following: Starting launch process C:\Program Files (x86)\nodejs\node.exe "C:\Users\User\AppData\Roaming\npm\node_modules\vs-tac\emulator.js" --platform ios --action launch --path "C:

Unable to debug using PhpStorm with EC2

好久不见. 提交于 2020-01-16 08:40:33
问题 I am trying to configure PhpStorm on my local machine and repository is on Amazon EC2. I used SSH tunnelling also but unable to debug using remote debugger. Here are my configuration files I have placed same configuration in /etc/php-5.6.d/xdebug.ini /etc/php.ini zend_extension=/usr/lib64/php/5.6/modules/xdebug.so xdebug.remote_enable=1 ; Enable xdebug xdebug.remote_autostart=Off ; Only start xdebug on demand, not on every request xdebug.remote_host=127.0.0.1 ; This is unused if the next

Can't debug node.js using Chrome DevTools

家住魔仙堡 提交于 2020-01-16 04:13:35
问题 When I run node --inspect app.js it says "Debugger attached". Then I open up chrome://inspect and I see my app running there so I click either Open dedicated DevTools or Inspect (next to the app's name). No matter how I open Node DevTools though, it just doesn't seem to be connected to anything (I can't see the source code there, the debugger statements are ignored, nothing logs to the console etc). I also tried opening it by opening regular DevTools and clicking the green Node icon. It's

Remote debugging Rails application in Aptana Studio 3

拟墨画扇 提交于 2020-01-13 19:24:47
问题 My Rails development IDE is Aptana Studio 3.0.5, running on Windows. The applications runs on Apache + ModRails (Phusion Passenger) on a separate CentOS Linux machine. I have both Rails 2.x and 3.x applications. I would like to be able to use the debugger in Aptana Studio (connect to the running application remotely). There are apparently some provisions for this, but I was unable to figure out what I need on the server side (in my Rails application configuration) I've tried this: Using Rack:

Visual studio + remote gdb debugging

纵饮孤独 提交于 2020-01-13 09:52:33
问题 What is best way to do remote live gdb debugging and use Visual studio as the front end. In my case: I have a C++ application (compiled for debugging) running on a Linux server Can I use Visual studio on my windows machine as a front end to do live debugging on the C++ application. Is this even possible for a large scale application (OR) If above is not possible, can I use eclipse on my windows or on a different linux box to do the same remote live debugging Any other better IDE options ?