配置非域用户帐户进行VMware远程调试
我的开发机器位于公司网络上,我使用域帐户登录它。 我安装了 VMware 工作站,但我的虚拟机不是也不可能成为公司域的一部分。
问题是我想使用 VMware 远程调试选项并从开发计算机上的 Visual Studio 调试到我的一台虚拟机中。 远程调试的要求之一是同一用户帐户必须在两台计算机上有效。
有没有办法使我的域帐户在不在域中的虚拟机上有效? 或者有没有办法让两台机器都使用不属于域的帐户?
My development machine is on the corporate network, and I log on to it using my domain account. I have VMware workstation installed, but my virtual machines are not and cannot be a part of the corporate domain.
The problem is that I would like to use the VMware remote debugging option and debug from Visual Studio on the development machine into one of my virtual machines. One of the requirements of remote debugging is that the same user account has to be valid on both machines.
Is there are way to make my domain account valid on a virtual machine that is not on the domain? Or is there a way to make both machines use an account that is not a part of a domain?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在来宾操作系统上使用
msvmon.exe
调试本机代码(非托管),则可以使用无身份验证模式来允许任何远程计算机连接并附加 VS 调试器。 这是不安全的,应该采取适当的主机防火墙等预防措施,但这将在不需要来宾虚拟机位于域中的情况下发挥作用。有关详细信息,请参阅此 Microsoft 知识库文章和此 连接过程的分步视觉指南。 此外,如果您在来宾操作系统上设置
msvmon.exe
时遇到任何问题,请参阅此 用于设置的 MS 知识库文章,以及 本文了解防火墙问题。If you are debugging native code (unmanaged) using
msvmon.exe
on the guest OS you can use No Authentication mode to allow any remote machine to connect and attach a VS debugger. This is insecure, and precautions such as appropriate host machine firewalls should be put in place, but this will function without the guest VM needing to be on the domain.For moreinformation, see this Microsoft KB article, and this step by step visual guide for the connection procedure. Additionally, if you have any issues setting up
msvmon.exe
on the guest OS see this MS KB article for setup, and this article for firewall issues.