17

我尝试在Windows Server 2016 TP4上的Windows 容器中运行Visual Studio 远程调试器。由于它在容器内运行,因此没有 UI。

我尝试通过以下方式运行远程调试器:

 .\msvsmon.exe /nostatus /silent /nosecuritywarn /nofirewallwarn /noclrwarn /port 4020

我正在以管理员用户(nt authority\system)的身份执行上述操作。这在主机上工作正常,但在容器内不起作用。Windows 事件日志显示以下错误事件。

Msvsmon was unable to start a server named "`6D2D071453C5:4020`". 
The following error occurred: The parameter is incorrect. 

完整的事件日志:

Get-EventLog -LogName Application -EntryType Error | format-list

Index              : 1718
EntryType          : Error
InstanceId         : 3221226473
Message            : The description for Event ID '-1073740823' in Source 'Visual Studio Remote Debugger' cannot be found.  The local computer may not have the necessary registry information or message DLL
                     files to display the message, or you may not have permission to access them.  The following information is part of the event:'Msvsmon was unable to start a server named
                     '6D2D071453C5:4020'. The following error occurred: The parameter is incorrect.

                     View Msvsmon's help for more information.'
Category           : (0)
CategoryNumber     : 0
ReplacementStrings : {Msvsmon was unable to start a server named '6D2D071453C5:4020'. The following error occurred: The parameter is incorrect.

                     View Msvsmon's help for more information.}
Source             : Visual Studio Remote Debugger
TimeGenerated      : 05.04.2016 9:47:19 AM
TimeWritten        : 05.04.2016 9:47:19 AM
UserName           : NT AUTHORITY\SYSTEM

我注意到一个关于容器主机名的问题,但这可以解决:

6D2D071453C5是我的 Windows 容器(由 docker 管理)的容器 ID :

PS C:> docker ps -a
CONTAINER ID        IMAGE               COMMAND                   CREATED             STATUS                    PORTS               NAMES
6d2d071453c5        d9d15fbca6d7        "cmd /S /C 'C:\\myprg-"   6 days ago          Up 3 days                                     derrin

通常,在 Docker 中,此容器 id也将是容器内部/容器的主机名。

所以,当我运行时docker inspect 6d2d071453c5,我会在输出中得到这个:

"Config": {
    "Hostname": "6d2d071453c5",
    "Domainname": "",

但是,在容器内,我hostname在命令行中输入“”并得到:

PS C:> hostname
test2016

这是目前特定于 Windows Server 2016 TP4 / Windows 容器的错误。主机名不应该是test2016(容器主机的名称,我的实际物理 Win2016 服务器),而是容器 id ( 6d2d071453c5)。至少,这将是我的预期行为,当我在需要 VM 的 Windows 上运行任何其他容器(即 Ubuntu 容器)时也是如此。我刚刚重新检查了它。

尽管如此,为了规避这个问题,我调整了主机文件,添加:

172.16.0.2        6d2d071453c5

现在我至少可以 ping 我自己的主机名了。

PS C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\Remote Debugger\x64> ping 6D2D071453C5

Pinging 6d2d071453c5 [172.16.0.2] with 32 bytes of data:
Reply from 172.16.0.2: bytes=32 time<1ms TTL=128
Reply from 172.16.0.2: bytes=32 time<1ms TTL=128

尽管如此,远程调试器仍然没有启动,并且仍然说:

Msvsmon was unable to start a server named "`6D2D071453C5:4020`". 
The following error occurred: The parameter is incorrect.

根据列出所有参数和选项的随附帮助文件,我看不出任何参数有什么问题。相同的命令在容器主机上运行良好,只是不在容器内。

有没有人让远程调试器在容器内工作?

=======更新======

如下所示,我尝试了主机名参数。我不再在事件日志中看到任何错误,但我也没有看到任何东西正在侦听端口 4020。

在目录 C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\Remote Debugger\x64 的容器内执行:

> hostname
WIN-DE6U4068NAF

> ".\msvsmon.exe /nostatus /silent /nosecuritywarn /nofirewallwarn /noclrwarn /port 4020 /hostname WIN-DE6U4068NAF"
.\msvsmon.exe /nostatus /silent /nosecuritywarn /nofirewallwarn /noclrwarn /port 4020 /hostname WIN-DE6U4068NAF

> netstat -ab | find "4020"

>
4

4 回答 4

2

我发现这个序列有效:

PS C:\> start-service msvsmon150
PS C:\Program Files\Microsoft Visual Studio 15.0\Common7\IDE\Remote Debugger\x64> .\msvsmon  /noauth /anyuser /silent

当在 Windows 10 托管的 Windows 容器中运行时,start-Service 命令将发出一个关于服务如何无法启动的错误。但是,在输入第二个命令后,端口在 netstat -ab 中显示为被阻止,并且 Visual Studio 2017 可以嗅探调试器单元。

于 2017-10-08T18:58:06.393 回答
2

要进行调试,您需要将远程工具安装到映像中,正常运行容器,然后使用docker exec.

命令行如下:

docker exec -it <container id/name> "C:\Program Files\Microsoft Visual Studio 14.0\Common7\IDE\Remote Debugger\x64\msvsmon.exe" /nostatus /silent /noauth /anyuser /nosecuritywarn

我在博客文章中有更多详细信息,是的,关闭本地开发机器上的身份验证确实会带来一些风险(无论风险多么小),但这至少应该让您了解如何去做。您可以随时调整命令行选项以使其以您想要的方式工作。

于 2017-02-13T00:09:55.770 回答
1

好的,在这里扔掉非常明显的东西。从您的帖子中,命令

“.\msvsmon.exe /nostatus /silent /nosecuritywarn /nofirewallwarn /noclrwarn /port 4020 /hostname WIN-DE6U4068NAF”

只会在powershell中打印完全相同的字符串。它实际上并没有启动调试器。回声输出显示了这一点。(我可能读得太多了)

所以/nofirewallwarn只抑制被防火墙阻止的警告(YMMV),并没有真正通过防火墙。你有/prepcomputer先运行它吗?

您是否尝试过/anyuser绕过身份验证并只允许 TCP 工作?

msvsmon 实际上是否绑定到正确的网络接口?有时,绑定到环回适配器意味着它只能在本地访问。当您netstat显示在所有接口上侦听 ( 0.0.0.0) 时?

您是否尝试过使用该选项将其作为服务运行/service?不过,可能还有更多的陷阱。我通常很难让它在现场工作。

于 2016-12-01T00:39:21.817 回答
1

您是否尝试使用 msvsmon /hostname 选项“硬编码”主机名?

根据 msvsmon 文档: “/hostname hostname_value 指示远程调试器使用指定的主机名值或 IP 地址值在网络上进行侦听。在具有多个网卡或分配了多个 DNS 主机名的计算机上,此选项可以是用于限制其中哪些将允许远程调试。例如,服务器可能具有面向 Internet 的地址和内部地址。通过使用“/hostname private_ip_address”,将无法通过面向 Internet 的地址进行远程调试。”

于 2016-04-26T12:43:30.803 回答