remote-debugging

Can't get PHP debugging to work with Komodo (but I'm almost there!)

独自空忆成欢 提交于 2019-12-02 13:30:12
问题 I posted about this a week or so ago but since then I've done some further troubleshooting so I thought it was worth posting again: I'm trying to set up PHP debugging in Komodo 7, using the Xdebug extension that ships with Komodo. The extension seems to be working fine, and Komodo responds when I try and start a debug session. However, Komodo doesn't let me step-through my PHP code; instead it just runs through the code in a pane in the bottom-right of the Komodo window. For the record, I don

nsight eclipse remote debugging timed out error

删除回忆录丶 提交于 2019-12-02 12:29:27
I have a Server running CentOS 6.0 and I'm trying to use it as a remote host for cuda debugging. In order to do this, I installed cuda-toolkit 5.5 both on the server and my notebook, which is running ubuntu 12.10 OS. I configured the two machines as the NVIDIA-cuda-instruction told me, yet when I started the Nsight eclipse edition and tried to remote debug my cuda applications, I ran into error, whcih says: Failed to execute MI command: -target-select remote 192.168.2.105:2345 Error message from debugger back end: 192.168.2.105:2345: Connection timed out I googled this error, someones says it

Bluemix remote debugging session not starting

狂风中的少年 提交于 2019-12-02 12:14:32
问题 I have followed the Bluemix/Eclipse instructions to setup the Liberty servers in eclipse. Able to do everything with the Bluemix/eclipse tools except for remote debugging. Receiving the following exceptions/errors when I select the "Enable Debug Mode" on my application under the servers. Tried a longer Debug timeout but that has not helped. Any pointers? TIA [2015-11-30 07:16:56.832] bluemixMgmgClient - ???? [pool-1-thread-1] .... ERROR --- ClientProxyImpl: Cannot create the websocket

Program received signal SIGTRAP, Trace/breakpoint trap. [Switching to Thread 6]

拈花ヽ惹草 提交于 2019-12-02 09:39:36
I know this question has been asked before, but I have read all the threads and I didn't find an answer. From the moment I execure run to start debugging my project, I get this : Program received signal SIGTRAP, Trace/breakpoint trap. [Switching to Thread 6] . When I do ctrl+c , gdb tells me : Program received signal SIGINT, Interrupt. 0x00000000 in ?? () Usually it'll tell me which file and which function it got interrupted at not 0x00000000 in ?? () GDB no longer hits breakpoints, and what makes matter crazier is the fact that a colleague and I, are sharing the same session (the debug is

Can't get PHP debugging to work with Komodo (but I'm almost there!)

独自空忆成欢 提交于 2019-12-02 07:10:39
I posted about this a week or so ago but since then I've done some further troubleshooting so I thought it was worth posting again: I'm trying to set up PHP debugging in Komodo 7, using the Xdebug extension that ships with Komodo. The extension seems to be working fine, and Komodo responds when I try and start a debug session. However, Komodo doesn't let me step-through my PHP code; instead it just runs through the code in a pane in the bottom-right of the Komodo window. For the record, I don't have any Mapped URIs. I'd really appreciate any help anyone's able to offer on this as I've got a

How to debug a deployed web site

自作多情 提交于 2019-12-02 05:36:18
问题 This question kind of follows on froma previous one I posted. I have a .net web site deployed on a server. In certain circumstances the site falls over. Specifically, when I browse to the site from my PC (which has visual studio) to the web server using a particular dns entry. So, I want to debug a browser session on my PC which is looking to a URL on a web server. How can I do this? Within VS when I attach to Internet Explorer no break point is ever reached? Thanks in advance. Jim 回答1:

Bluemix remote debugging session not starting

天涯浪子 提交于 2019-12-02 05:34:53
I have followed the Bluemix/Eclipse instructions to setup the Liberty servers in eclipse. Able to do everything with the Bluemix/eclipse tools except for remote debugging. Receiving the following exceptions/errors when I select the "Enable Debug Mode" on my application under the servers. Tried a longer Debug timeout but that has not helped. Any pointers? TIA [2015-11-30 07:16:56.832] bluemixMgmgClient - ???? [pool-1-thread-1] .... ERROR --- ClientProxyImpl: Cannot create the websocket connections for JavaMemcachedApp com.ibm.ws.cloudoe.management.client.exception.ApplicationManagementException

Launch Notepad.exe using PsExec sysinternal tool

北城余情 提交于 2019-12-02 04:39:49
问题 I am trying to launch notepad.exe on remote server A from local server B. below is the command which works fine and I could see notepad.exe process on Task Manager however when I physically remote login to server I do not see notepad launched (GUI). C:\Windows\System32>D:\SysInternals\psexec.exe \\serverB -u Domain\user1 -p passXX -i -d notepad.exe PsExec v1.98 - Execute processes remotely Copyright (C) 2001-2010 Mark Russinovich Sysinternals - www.sysinternals.com notepad.exe started on

GDB remote debug: can't stop the thread

情到浓时终转凉″ 提交于 2019-12-02 04:19:03
问题 I have a gdbserver on a target, that I launch like gdbserver :2345 /bin/ls . Next I am connect a gdb from a host, and trying issue next commands: (gdb) target remote 192.168.1.2:2345 Remote debugging using 192.168.1.2:2345 warning: Architecture rejected target-supplied description [New Thread 686] (gdb) Remote 'g' packet reply is too long:

Debugging Library Code with Visual Studio's Linux support

半城伤御伤魂 提交于 2019-12-02 02:25:59
问题 I'm using Visual Studio 2017's integration to build and debug a CMake Linux application locally in the Windows Subsystem for Linux. When running the application, Visual Studio uses an ssh connection to localhost to run cmake -DCMAKE_BUILD_TYPE="Debug" .. and make , then uses gdbserver to debug the application. This works fine for my application's own code, including breakpoints and line-by-line debugging. This application links to a library file, libhypro.so.17.09 , which is also part of a