remote-debugging

xdebug running in PHPStorm unable to connect to remote server

拈花ヽ惹草 提交于 2019-12-11 10:54:32
问题 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 incoming connection with ide key 'PHPStorm'" Remote Server Configs On the remote server, our sys admin has installed xdebug. The server has the following settings: xdebug.remote_port 9000 xdebug.default_enable On xdebug.remote_enable On xdebug

QT: Remote debugging to ARM using QT Creator hangs, command line GDB runs fine

孤人 提交于 2019-12-11 08:29:05
问题 I'm using an Allwinner A33 (Quad core ARM) development kit from Olimex. It is running an Ubuntu 16.04 root filesystem. My host PC is running 64-bit Kubuntu 16.04. I'm using GCC 6.1.1 (Linaro build) as cross-compiler and QT v5.5. Only pre-build .deb packages via the package manager is used. Nothing was build myself from source. I have tested a simple QT application (Main window with one label, no other application code) using the scenarios described below. Of all the scenarios it is only

PyDev Remote Debugger and Tab Completion in Eclipse

筅森魡賤 提交于 2019-12-11 06:43:22
问题 This might be a limitation of the PyDev debugger but would anyone know how to enable tab completion and history like in a plain Python shell in the Eclipse debug Console window? Pressing tab or the arrow keys just jumps/moves the cursor. PyDev remote debugger is initialized as needed with following code: from pydevsrc import pydevd;pydevd.settrace('<my ip>', stdoutToServer=True, stderrToServer=True, suspend=True) 回答1: Did you check Preferences -> PyDev -> Editor -> Code Completion -> "Use

Can I remote debug vb6 application? [duplicate]

五迷三道 提交于 2019-12-11 04:43:16
问题 This question already has answers here : Remote debugging in VB6 (3 answers) Closed 7 months ago . I wondering if I can remote debug vb6 application like in c#. I want to debug another computer across a network. I looked at Remote debugging in VB6 but it doesn't help me. 回答1: Not down to VB6 code level. Normal debugging tools will help you debug at the assembly level, possibly with some code annotation but that's it. 来源: https://stackoverflow.com/questions/9701911/can-i-remote-debug-vb6

CUDA Debugging - VS on windows workstation, GPUs on Linux server?

。_饼干妹妹 提交于 2019-12-11 02:43:02
问题 Has anyone had any experience debugging CUDA code on a server while coding on a workstation? My laptop (Thinkpad T400) doesn't support CUDA, but I have access to a server with pair of NVIDIA GTX 295 cards that runs Linux. Can I use NVidia's Visual Studio tools to debug remotely on the server? Failing that, I also have an Ubuntu VM running on my laptop. Is there a debugger that I can use under Linux to debug on the server? I really don't want to have to buy another laptop with dual NVidia

Remote Debug Java part of the Flex/Java application within Flash Builder 4.7

烂漫一生 提交于 2019-12-11 01:09:38
问题 I have a Flex/Java application. The build is done using Maven. My IDE is Flash Builder 4.7. The server is a tomcat wrapper (vFabric tcserver). Based upon the many google searches, I added the following lines in my wrapper.conf. wrapper.java.additional.11="-Xdebug" wrapper.java.additional.12="-Xrunjdwp:transport=dt_socket,address=8000,server=y,suspend=n" In my Flash Builder, I have set up a debug configuration to use port 8000 on host localhost and the connection type is Socket Attach. I am

How do I debug hanging threads in the JVM?

 ̄綄美尐妖づ 提交于 2019-12-11 00:59:55
问题 I am running a durable Java program on a remote Ubuntu server, where I have root user rights. After some time, the usage on some CPU cores goes up to 100%. The logs show nothing suspicious and the application still works, but with reduced throughput. How can I debug the JVM so that I can find out the cause of this, while it's still running? 回答1: One option is VisualVM, which is included in the JDK starting with Java 1.6. I have found it useful in some situations in the past. You may connect

Received “/: Event not found.” when using PyCharm remote dubugger

我的未来我决定 提交于 2019-12-10 23:27:10
问题 When I use PyCharm with remote debug through ssh to a tcsh shell server , many times its stops working, and displays "/: Event not found" More specifically, I encounter the following in pycharm debug console. ssh://username@hostserver:22/path/to/bin/python -u /path/to/.pycharm_helpers/pydev/pydevd.py --cmd-line --multiproc --qt-support=auto --client '0.0.0.0' --port 40426 --file /path/to/python/file/main.py /: Event not found. Is the problem owing to history substitution in tcsh shell?

How to see local and auto variables values on remote debugging

匆匆过客 提交于 2019-12-10 18:54:59
问题 sAs I wrote in the subject I can't see that values of variables in remote debug mode. The window of auto and locals are empty during debug. Any ideas why? and how can I solve it? When I'm trying to add a watch on a variable I get: Internal error in the expression evaluator 回答1: Its a bug in visual studio 2012 . Apparently it works with vs 2010 . VS 2012 Update 2 fixed it but update 3 broke it again according to some posts on connect http://connect.microsoft.com/VisualStudio/feedback/details

Debugging a library of an external program? (Visual Studio 2010)

最后都变了- 提交于 2019-12-10 18:45:46
问题 This is a question towards programmers who have experience with using Visual Studio 2010 for debugging external applications. Currently, I'm developping an add-on for a program made by people I work for. In order to make this add-on work with the external program, I have to place the .dll file in a certain folder, specified by the external program. I have my build settings configurated so the .dll file is copied automatically. I also copy the .pdb file to enable debugging options. Since this