remote-debugging

Remote Xdebug with VirtualBox

痞子三分冷 提交于 2019-12-02 21:06:32
I'm trying to get remote debugging to work. The PHP is running on a VM and I'm trying to debug from NetBeans on the host machine. I've followed the instructions here , forwarded port 9000 in the Windows 7 firewall and in the VirtualBox network settings, and set up path mappings in NetBeans. My xdebug settings look like this: xdebug.remote_enable = On xdebug.remote_connect_back = On xdebug.idekey = "netbeans-xdebug" xdebug.remote_log = /tmp/xdebug.log When I load the URL I want to debug (using the correct idekey) it logs the following: I: Checking remote connect back address. I: Remote address

Running Visual Studio Remote Debugger in Windows Container (Docker managed)

最后都变了- 提交于 2019-12-02 20:44:30
I try to run the Visual Studio Remote Debugger in a Windows Container on Windows Server 2016 TP4 . Since it runs inside a container, there is no UI. I try to run the remote debugger via: .\msvsmon.exe /nostatus /silent /nosecuritywarn /nofirewallwarn /noclrwarn /port 4020 I am executing the above as administrator user (nt authority\system). This works fine on the host computer, but it does not work inside the container. The Windows event log shows the following error event. Msvsmon was unable to start a server named "`6D2D071453C5:4020`". The following error occurred: The parameter is

Remote debugging in visual studio: remote debugger does not support this edition of windows

被刻印的时光 ゝ 提交于 2019-12-02 18:39:44
I am trying to remote debug my application in VMware workstation 7 and Visual studio 2010 ultimate. I habe several images (win 7 ultimate,vista,etc). I am following this tutorial: http://kristofmattei.be/2010/01/20/debugging-applications-in-virtual-machines-with-vmware-workstation-7-and-visual-studio-2008-sp1-2/ Whenever I try to start msvsmon.exe on the remote computer it will say : "The visual studio remote debugger does not support this edition of windows" tried it with win 7 ultimate, vista premium and xp home, same situation. Could someone help me out here? Thanks! Leo Davidson The error

Visual Studio 2012 Remote Debugging: Invalid access to memory location

我们两清 提交于 2019-12-02 17:57:27
I followed the instructions in this link: http://msdn.microsoft.com/en-us/library/bt727f1t.aspx to install the remote debugger (2012) on my server where the application is running in hope to debug it remotely from my dev machine running visual studio 2012. I cannot even get as far as viewing the list of processes to attach to on the remote machine. I keep getting "Unable to connect to the Microsoft Visual Studio Remote Debugging Monitor named [name]. Invalid access to memory location". I have managed to successfully connect a few times but then the attach fails immediately then I cannot

How to remote debug python code in a Docker Container with VS Code

吃可爱长大的小学妹 提交于 2019-12-02 17:43:52
I've just registered for this question. It's about if it's possible to remote debug python code in a Docker Container with VS Code. I am having a completely configured Docker Container here. I got a little bit of help with it, and I'm pretty new to docker anyways. In it runs Odoo v10. But I cant get the remote debug in VS Code to work. I have tried this explanation, but I don't really get it. Is it even possible? And if yes, how can I get it to work? I'm running Kubuntu 16.04 with VS Code 1.6.1 and the Python Extension from Don Jayamanne. Ah yeah and I hope I am at the right location with this

Cannot get Remote Debugging working with VS2010

为君一笑 提交于 2019-12-02 17:06:48
I have a server and a workstation on the same corporate domain. My user is a local administrator on both machines. I have Installed the VS2010 version of MSVSMON and set it to run as a service on the server under my user DOMAIN\greg.b (I gave myself "log on as service"). I log onto the server using my domain account and start Remote Debug monitor. I then connect to the server from my Visual Studio. In the monitor on the server I can see 23/09/2010 16:26:33 DOMAIN\greg.b connected. Then a moment later, I get a dialog from Visual Studio saying Unable to connect to the Microsoft Visual Studio

msvsmon.exe crashed when debugging

浪子不回头ぞ 提交于 2019-12-02 17:01:59
When I debugging in VS2013 update3, msvsmon.exe crashed when hit at a breakpoint. It shows "The debugger's worker process (msvsmon.exe) unexpectedly exited. Debugging will be aborted". I'm not using remote debug. Is it possible to shut down the msvsmon.exe to avoid calling it when debugging ? Deleting all of the breakpoints solves the problem when I hit this error. Disabling the breakpoints was not enough - they had to be deleted. I was able to attach to a process numerous times. Once I added a conditional breakpoint (with a few checks), I started getting this error when attempting to attach

Google Chrome for Android Remote Debugging - “localhost:9222” Not Available

人盡茶涼 提交于 2019-12-02 16:38:33
I'm following the steps to enable remote debugging ( https://developers.google.com/chrome/mobile/docs/debugging ). When I reach step 4, Chrome for Desktop returns with "This webpage is not available". "Enable USB Web Debugging" is checked in Chrome for Android. "USB Debugging" is enabled on my device (rooted Nexus S, CM9). The "adb devices" command return with, " device number device". The "adb forward..." command returns with: * daemon not running. starting it now on port 5037 * * daemon started successfully * I'm running the latest ADB on Windows 7, cmd as Administrator. I found that I had

Remote Debugging in Visual Studio (VS2008), Windows Forms Application

99封情书 提交于 2019-12-02 15:48:44
I'm trying to Remote Debugging a Windows Forms Application (C#), but i'm always getting this error: Unable to connect to the Microsoft Visual Studio Remote Debugging Monitor named 'XXX. The Visual Studio Remote Debugger on the target computer cannot connect back to this computer. Authentication failed. Please see Help for assistance. I tried to config according to the MSDN guides but i was not able to make it work. My setup: Development Computer - XP (x86) that is connected to a domain. Test Computer - Vista (x86) that is NOT connected to a domain. I have network connection between the

Is it possible to remote debug a VirtualBox with visual studio?

自作多情 提交于 2019-12-02 15:29:42
I'm running different versions of our application on Sun's open source VirtualBox , is it possible to remote debug the app from the host OS with Visual Studio? The problem is that in Visual Studio when I want to attach to a remote machine I have to enter either a computer name or IP and the IP I get from within the virtual box isn't pingable from the host machine. I'm primarily interested in debugging native code (so I can run with no authentication) but if there's a way to debug managed code too please let me know. I should note that the host OS is Vista and the guest is XP. Thanks to Mark I