我尝试在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"
>