SSH报错-Terminal shell path: C:\WINDOWS\System32\cmd.exe 此时不应有

作者分享了在VScode中配置SSH远程连接服务器时遇到的问题,发现是由于卸载Anaconda导致cmd.exe闪退。解决方案包括修改注册表删除或重置AutoRun变量,以及避免重装系统的极端方法。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

最近接盘了实验室的工作,需要重新配置连接自己的VScode的SSH远程连接服务器,结果配置了一个下午都没搞好,决定记录一下,希望大家避免踩坑。在vscode上遇到的是这个报错:

错误日志

[11:40:12.097] Checking ssh with "C:\Windows\System32\Wbem\ssh.exe -V"
[11:40:12.098] Got error from ssh: spawn C:\Windows\System32\Wbem\ssh.exe ENOENT
[11:40:12.098] Checking ssh with "C:\Windows\System32\WindowsPowerShell\v1.0\ssh.exe -V"
[11:40:12.099] Got error from ssh: spawn C:\Windows\System32\WindowsPowerShell\v1.0\ssh.exe ENOENT
[11:40:12.099] Checking ssh with "C:\Windows\System32\OpenSSH\ssh.exe -V"
[11:40:12.137] > OpenSSH_for_Windows_8.6p1, LibreSSL 3.4.3

[11:40:12.144] Running script with connection command: "C:\Windows\System32\OpenSSH\ssh.exe" -T -D 52967 "这里写的是我的IP,我删了" bash
[11:40:12.150] Terminal shell path: C:\WINDOWS\System32\cmd.exe
[11:40:12.365] > 此时不应有 &。
> ]0;C:\WINDOWS\System32\cmd.exe
[11:40:12.365] Got some output, clearing connection timeout
[11:40:13.655] "install" terminal command done
[11:40:13.655] Install terminal quit with output: ]0;C:\WINDOWS\System32\cmd.exe
[11:40:13.655] Received install output: ]0;C:\WINDOWS\System32\cmd.exe
[11:40:13.655] Failed to parse remote port from server output
[11:40:13.656] Resolver error: Error:

这个前提是前面的远端(.vscode-server/bin)和主机端(ssh)等等的配置没有问题。建议先在shell上输入密码测试一下:

ssh 用户名@测试IP -p 22

问题分析

最开始在网上找到的方案是让我换Shell,结果我发现根本换不了,改了默认也无法解决这个bug。最后我发现了我电脑的一个bug:cmd.exe点击后总是闪退

问题原因

由于我卸载更新过anaconda,在我卸载anaconda时,anaconda自动修改了注册表的数据,进而导致cmd闪退,进而导致vscode-remote-SSH无法打开cmd。

解决方案

  1. 重新修改注册表即可。
  • win键+r 输入regedit 回车,打开注册表编辑器页面

  • 找到HKEY_CURRENT_USER\Software\Microsoft\Command Processor文件夹。

  • 如果有AutoRun这个变量,则将变量数值数据全部删除掉“置空”。
    如果没有AutoRun这个变量,则右键,点击新建字符串值,变量名称命名为AutoRun,变量数值不用设置,自动就是空值。下图是我的修改前。
    我的是修改前

  • 找到 HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor文件夹。同样的,对AutoRun与上一步相同操作。

  • 重启vscode,问题解决。修改注册表不需要重启电脑。

  1. 直接重装Windows系统,一了百了。

参考链接

vscode-remote官方解答
Anaconda解答

分析如下vscode SSH连接时的报错:[09:54:45.561] Log Level: 2 [09:54:45.582] SSH Resolver called for "ssh-remote+10.170.27.158", attempt 1 [09:54:45.586] remote.SSH.useLocalServer = false [09:54:45.586] remote.SSH.useExecServer = true [09:54:45.587] remote.SSH.bindHost = {} [09:54:45.587] remote.SSH.showLoginTerminal = false [09:54:45.587] remote.SSH.remotePlatform = {} [09:54:45.587] remote.SSH.path = [09:54:45.587] remote.SSH.configFile = [09:54:45.587] remote.SSH.useFlock = true [09:54:45.587] remote.SSH.lockfilesInTmp = false [09:54:45.588] remote.SSH.localServerDownload = auto [09:54:45.588] remote.SSH.remoteServerListenOnSocket = false [09:54:45.588] remote.SSH.defaultExtensions = [] [09:54:45.590] remote.SSH.defaultExtensionsIfInstalledLocally = [] [09:54:45.591] remote.SSH.loglevel = 2 [09:54:45.591] remote.SSH.enableDynamicForwarding = true [09:54:45.591] remote.SSH.enableRemoteCommand = false [09:54:45.591] remote.SSH.serverPickPortsFromRange = {} [09:54:45.591] remote.SSH.serverInstallPath = {} [09:54:45.592] remote.SSH.permitPtyAllocation = false [09:54:45.592] remote.SSH.preferredLocalPortRange = undefined [09:54:45.592] remote.SSH.useCurlAndWgetConfigurationFiles = false [09:54:45.592] remote.SSH.experimental.chat = true [09:54:45.592] remote.SSH.experimental.enhancedSessionLogs = true [09:54:45.592] remote.SSH.httpProxy = {"*":""} [09:54:45.593] remote.SSH.httpsProxy = {"*":""} [09:54:45.600] VS Code version: 1.101.2 [09:54:45.600] Remote-SSH version: remote-ssh@0.120.0 [09:54:45.601] win32 x64 [09:54:45.604] SSH Resolver called for host: 10.170.27.158 [09:54:45.604] Setting up SSH remote "10.170.27.158" [09:54:45.617] Using commit id "2901c5ac6db8a986a5666c3af51ff804d05af0d4" and quality "stable" for server [09:54:45.617] Extensions to install: [09:54:45.623] Install and start server if needed [09:54:47.890] Checking ssh with "C:\windows\ssh.exe -V" [09:54:47.894] Got error from ssh: spawn C:\windows\ssh.exe ENOENT [09:54:47.894] Checking ssh with "C:\windows\system32\ssh.exe -V" [09:54:47.896] Got error from ssh: spawn C:\windows\system32\ssh.exe ENOENT [09:54:47.897] Checking ssh with "C:\windows\System32\Wbem\ssh.exe -V" [09:54:47.898] Got error from ssh: spawn C:\windows\System32\Wbem\ssh.exe ENOENT [09:54:47.899] Checking ssh with "C:\windows\System32\WindowsPowerShell\v1.0\ssh.exe -V" [09:54:47.900] Got error from ssh: spawn C:\windows\System32\WindowsPowerShell\v1.0\ssh.exe ENOENT [09:54:47.901] Checking ssh with "C:\Windows\ssh.exe -V" [09:54:47.903] Got error from ssh: spawn C:\Windows\ssh.exe ENOENT [09:54:47.903] Checking ssh with "C:\Windows\system32\ssh.exe -V" [09:54:47.905] Got error from ssh: spawn C:\Windows\system32\ssh.exe ENOENT [09:54:47.905] Checking ssh with "C:\Windows\System32\Wbem\ssh.exe -V" [09:54:47.907] Got error from ssh: spawn C:\Windows\System32\Wbem\ssh.exe ENOENT [09:54:47.907] Checking ssh with "C:\Windows\System32\WindowsPowerShell\v1.0\ssh.exe -V" [09:54:47.909] Got error from ssh: spawn C:\Windows\System32\WindowsPowerShell\v1.0\ssh.exe ENOENT [09:54:47.909] Checking ssh with "C:\windows\System32\WindowsPowerShell\v1.0\ssh.exe -V" [09:54:47.912] Got error from ssh: spawn C:\windows\System32\WindowsPowerShell\v1.0\ssh.exe ENOENT [09:54:47.912] Checking ssh with "C:\windows\System32\OpenSSH\ssh.exe -V" [09:54:47.964] > OpenSSH_for_Windows_8.6p1, LibreSSL 3.4.3 [09:54:47.969] Running script with connection command: "C:\windows\System32\OpenSSH\ssh.exe" -T -D 50055 "10.170.27.158" sh [09:54:47.970] Generated SSH command: 'type "C:\Users\S50048~1\AppData\Local\Temp\vscode-linux-multi-line-command-10.170.27.158-752111106.sh" | "C:\windows\System32\OpenSSH\ssh.exe" -T -D 50055 "10.170.27.158" sh' [09:54:47.971] Using connect timeout of 17 seconds [09:54:47.971] Terminal shell path: C:\windows\System32\cmd.exe [09:54:48.820] > ssh: connect to host 0.0.0.158 port 22: Unknown error > 过程试图写入的管道存在。 [09:54:48.821] Got some output, clearing connection timeout [09:54:50.079] "install" terminal command done [09:54:50.080] Install terminal quit with output: 过程试图写入的管道存在。 [09:54:50.080] Received install output: 过程试图写入的管道存在。 [09:54:50.080] WARN: $PLATFORM is undefined in installation script output. Errors may be dropped. [09:54:50.081] Failed to parse remote port from server output [09:54:50.081] Resolver error: Error at y.Create (c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:744751) at t.handleInstallOutput (c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:742832) at t.tryInstall (c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:865534) at async c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:824246 at async t.withShowDetailsEvent (c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:827501) at async A (c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:820760) at async t.resolve (c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:824898) at async c:\Users\s50048740\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:1113660 [09:54:50.085] ------ [09:54:50.086] No hints found in the recent session.
07-10
[17:04:56.015] Log Level: 2 [17:04:56.034] SSH Resolver called for "ssh-remote+183.175.12.54", attempt 1 [17:04:56.039] remote.SSH.useLocalServer = false [17:04:56.039] remote.SSH.useExecServer = true [17:04:56.039] remote.SSH.bindHost = {} [17:04:56.040] remote.SSH.showLoginTerminal = false [17:04:56.040] remote.SSH.remotePlatform = {} [17:04:56.040] remote.SSH.path = [17:04:56.040] remote.SSH.configFile = [17:04:56.042] remote.SSH.useFlock = true [17:04:56.042] remote.SSH.lockfilesInTmp = false [17:04:56.042] remote.SSH.localServerDownload = auto [17:04:56.042] remote.SSH.remoteServerListenOnSocket = false [17:04:56.042] remote.SSH.defaultExtensions = [] [17:04:56.043] remote.SSH.defaultExtensionsIfInstalledLocally = [] [17:04:56.043] remote.SSH.loglevel = 2 [17:04:56.043] remote.SSH.enableDynamicForwarding = true [17:04:56.043] remote.SSH.enableRemoteCommand = false [17:04:56.043] remote.SSH.serverPickPortsFromRange = {} [17:04:56.044] remote.SSH.serverInstallPath = {} [17:04:56.044] remote.SSH.permitPtyAllocation = false [17:04:56.044] remote.SSH.preferredLocalPortRange = undefined [17:04:56.044] remote.SSH.useCurlAndWgetConfigurationFiles = false [17:04:56.045] remote.SSH.experimental.chat = true [17:04:56.045] remote.SSH.experimental.enhancedSessionLogs = true [17:04:56.045] remote.SSH.httpProxy = {"*":""} [17:04:56.045] remote.SSH.httpsProxy = {"*":""} [17:04:56.053] VS Code version: 1.101.2 [17:04:56.053] Remote-SSH version: remote-ssh@0.120.0 [17:04:56.054] win32 x64 [17:04:56.057] SSH Resolver called for host: 183.175.12.54 [17:04:56.057] Setting up SSH remote "183.175.12.54" [17:04:56.066] Using commit id "2901c5ac6db8a986a5666c3af51ff804d05af0d4" and quality "stable" for server [17:04:56.066] Extensions to install: [17:04:56.072] Install and start server if needed [17:04:57.046] Checking ssh with "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\bin\ssh.exe -V" [17:04:57.048] Got error from ssh: spawn C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\bin\ssh.exe ENOENT [17:04:57.048] Checking ssh with "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\libnvvp\ssh.exe -V" [17:04:57.049] Got error from ssh: spawn C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v11.8\libnvvp\ssh.exe ENOENT [17:04:57.049] Checking ssh with "D:\python3.13.5\Scripts\ssh.exe -V" [17:04:57.050] Got error from ssh: spawn D:\python3.13.5\Scripts\ssh.exe ENOENT [17:04:57.051] Checking ssh with "D:\python3.13.5\ssh.exe -V" [17:04:57.051] Got error from ssh: spawn D:\python3.13.5\ssh.exe ENOENT [17:04:57.051] Checking ssh with "C:\Program Files\Common Files\Oracle\Java\javapath\ssh.exe -V" [17:04:57.053] Got error from ssh: spawn C:\Program Files\Common Files\Oracle\Java\javapath\ssh.exe ENOENT [17:04:57.053] Checking ssh with "C:\Program Files (x86)\VMware\VMware Workstation\bin\ssh.exe -V" [17:04:57.054] Got error from ssh: spawn C:\Program Files (x86)\VMware\VMware Workstation\bin\ssh.exe ENOENT [17:04:57.055] Checking ssh with "C:\Program Files (x86)\Common Files\Oracle\Java\javapath\ssh.exe -V" [17:04:57.056] Got error from ssh: spawn C:\Program Files (x86)\Common Files\Oracle\Java\javapath\ssh.exe ENOENT [17:04:57.056] Checking ssh with "C:\WINDOWS\system32\ssh.exe -V" [17:04:57.057] Got error from ssh: spawn C:\WINDOWS\system32\ssh.exe ENOENT [17:04:57.057] Checking ssh with "C:\WINDOWS\ssh.exe -V" [17:04:57.058] Got error from ssh: spawn C:\WINDOWS\ssh.exe ENOENT [17:04:57.059] Checking ssh with "C:\WINDOWS\System32\Wbem\ssh.exe -V" [17:04:57.060] Got error from ssh: spawn C:\WINDOWS\System32\Wbem\ssh.exe ENOENT [17:04:57.060] Checking ssh with "C:\WINDOWS\System32\WindowsPowerShell\v1.0\ssh.exe -V" [17:04:57.061] Got error from ssh: spawn C:\WINDOWS\System32\WindowsPowerShell\v1.0\ssh.exe ENOENT [17:04:57.061] Checking ssh with "C:\WINDOWS\System32\OpenSSH\ssh.exe -V" [17:04:57.109] > OpenSSH_for_Windows_8.1p1, LibreSSL 3.0.2 [17:04:57.113] Running script with connection command: "C:\WINDOWS\System32\OpenSSH\ssh.exe" -T -D 61810 "183.175.12.54" sh [17:04:57.114] Generated SSH command: 'type "C:\Users\Lenovo\AppData\Local\Temp\vscode-linux-multi-line-command-183.175.12.54-514770763.sh" | "C:\WINDOWS\System32\OpenSSH\ssh.exe" -T -D 61810 "183.175.12.54" sh' [17:04:57.115] Using connect timeout of 17 seconds [17:04:57.116] Terminal shell path: C:\WINDOWS\System32\cmd.exe [17:04:57.390] > Bad owner or permissions on C:\\Users\\Lenovo/.ssh/config [17:04:57.390] Got some output, clearing connection timeout [17:04:57.406] > 过程试图写入的管道存在。 [17:04:58.664] "install" terminal command done [17:04:58.665] Install terminal quit with output: 过程试图写入的管道存在。 [17:04:58.665] Received install output: 过程试图写入的管道存在。 [17:04:58.666] WARN: $PLATFORM is undefined in installation script output. Errors may be dropped. [17:04:58.666] Failed to parse remote port from server output [17:04:58.666] Resolver error: Error at y.Create (c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:744751) at t.handleInstallOutput (c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:742832) at t.tryInstall (c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:865534) at async c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:824246 at async t.withShowDetailsEvent (c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:827501) at async A (c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:820760) at async t.resolve (c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:824898) at async c:\Users\Lenovo\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:1113660 [17:04:58.672] ------ [17:04:58.673] No hints found in the recent session. [17:04:59.210] Opening exec server for ssh-remote+183.175.12.54 [17:04:59.228] Initizing new exec server for ssh-remote+183.175.12.54 [17:04:59.228] Using commit id "2901c5ac6db8a986a5666c3af51ff804d05af0d4" and quality "stable" for server [17:04:59.228] Extensions to install: [17:04:59.326] Opening exec server for ssh-remote+183.175.12.54 [17:04:59.329] Install and start server if needed [17:05:03.005] getPlatformForHost was canceled [17:05:03.005] Exec server for ssh-remote+183.175.12.54 failed: Error: 已取消连接 [17:05:03.006] Existing exec server for ssh-remote+183.175.12.54 errored (Error: 已取消连接) [17:05:03.006] Initizing new exec server for ssh-remote+183.175.12.54 [17:05:03.007] Error opening exec server for ssh-remote+183.175.12.54: Error: 已取消连接 [17:05:03.007] No hints found in the recent session. [17:05:03.007] Using commit id "2901c5ac6db8a986a5666c3af51ff804d05af0d4" and quality "stable" for server [17:05:03.007] Extensions to install: [17:05:03.011] Install and start server if needed
最新发布
07-11
[13:24:06.734] Log Level: 2 [13:24:06.748] SSH Resolver called for "ssh-remote+root", attempt 1 [13:24:06.752] remote.SSH.useLocalServer = false [13:24:06.752] remote.SSH.useExecServer = true [13:24:06.752] remote.SSH.bindHost = {} [13:24:06.752] remote.SSH.showLoginTerminal = false [13:24:06.752] remote.SSH.remotePlatform = {} [13:24:06.754] remote.SSH.path = [13:24:06.754] remote.SSH.configFile = [13:24:06.754] remote.SSH.useFlock = true [13:24:06.754] remote.SSH.lockfilesInTmp = false [13:24:06.754] remote.SSH.localServerDownload = auto [13:24:06.754] remote.SSH.remoteServerListenOnSocket = false [13:24:06.754] remote.SSH.defaultExtensions = [] [13:24:06.754] remote.SSH.defaultExtensionsIfInstalledLocally = [] [13:24:06.754] remote.SSH.loglevel = 2 [13:24:06.755] remote.SSH.enableDynamicForwarding = true [13:24:06.755] remote.SSH.enableRemoteCommand = false [13:24:06.755] remote.SSH.serverPickPortsFromRange = {} [13:24:06.755] remote.SSH.serverInstallPath = {} [13:24:06.755] remote.SSH.permitPtyAllocation = false [13:24:06.755] remote.SSH.preferredLocalPortRange = undefined [13:24:06.755] remote.SSH.useCurlAndWgetConfigurationFiles = false [13:24:06.755] remote.SSH.experimental.chat = true [13:24:06.755] remote.SSH.experimental.enhancedSessionLogs = true [13:24:06.756] remote.SSH.httpProxy = {"*":""} [13:24:06.756] remote.SSH.httpsProxy = {"*":""} [13:24:06.763] VS Code version: 1.101.1 [13:24:06.763] Remote-SSH version: remote-ssh@0.120.0 [13:24:06.763] win32 x64 [13:24:06.765] SSH Resolver called for host: root [13:24:06.765] Setting up SSH remote "root" [13:24:06.771] Using commit id "18e3a1ec544e6907be1e944a94c496e302073435" and quality "stable" for server [13:24:06.771] Extensions to install: [13:24:06.777] Install and start server if needed [13:24:09.050] Checking ssh with "C:\Program Files (x86)\Common Files\Oracle\Java\java8path\ssh.exe -V" [13:24:09.051] Got error from ssh: spawn C:\Program Files (x86)\Common Files\Oracle\Java\java8path\ssh.exe ENOENT [13:24:09.051] Checking ssh with "C:\Program Files (x86)\Common Files\Oracle\Java\javapath\ssh.exe -V" [13:24:09.052] Got error from ssh: spawn C:\Program Files (x86)\Common Files\Oracle\Java\javapath\ssh.exe ENOENT [13:24:09.052] Checking ssh with "C:\Windows\system32\ssh.exe -V" [13:24:09.053] Got error from ssh: spawn C:\Windows\system32\ssh.exe ENOENT [13:24:09.053] Checking ssh with "C:\Windows\ssh.exe -V" [13:24:09.053] Got error from ssh: spawn C:\Windows\ssh.exe ENOENT [13:24:09.054] Checking ssh with "C:\Windows\System32\Wbem\ssh.exe -V" [13:24:09.054] Got error from ssh: spawn C:\Windows\System32\Wbem\ssh.exe ENOENT [13:24:09.054] Checking ssh with "C:\Windows\System32\WindowsPowerShell\v1.0\ssh.exe -V" [13:24:09.055] Got error from ssh: spawn C:\Windows\System32\WindowsPowerShell\v1.0\ssh.exe ENOENT [13:24:09.055] Checking ssh with "C:\Windows\System32\OpenSSH\ssh.exe -V" [13:24:09.073] > OpenSSH_for_Windows_9.5p1, LibreSSL 3.8.2 [13:24:09.077] Running script with connection command: "C:\Windows\System32\OpenSSH\ssh.exe" -T -D 54688 root sh [13:24:09.077] Generated SSH command: 'type "C:\Users\chen\AppData\Local\Temp\vscode-linux-multi-line-command-root-306797396.sh" | "C:\Windows\System32\OpenSSH\ssh.exe" -T -D 54688 root sh' [13:24:09.078] Using connect timeout of 17 seconds [13:24:09.078] Terminal shell path: C:\Windows\System32\cmd.exe [13:24:09.325] > C:\\Users\\chen/.ssh/config line 3: keyword hostname extra arguments at end of line > C:\\Users\\chen/.ssh/config line 4: keyword user extra arguments at end of line > C:\\Users\\chen/.ssh/config line 5: Bad port '22#'. > C:\\Users\\chen/.ssh/config: terminating, 3 bad configuration options > 过程试图写入的管道存在。 [13:24:09.325] Got some output, clearing connection timeout [13:24:10.570] "install" terminal command done [13:24:10.570] Install terminal quit with output: 过程试图写入的管道存在。 [13:24:10.571] Received install output: 过程试图写入的管道存在。 [13:24:10.571] WARN: $PLATFORM is undefined in installation script output. Errors may be dropped. [13:24:10.571] Failed to parse remote port from server output [13:24:10.571] Resolver error: Error at y.Create (c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:744751) at t.handleInstallOutput (c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:742832) at t.tryInstall (c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:865534) at async c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:824246 at async t.withShowDetailsEvent (c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:827501) at async A (c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:820760) at async t.resolve (c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:824898) at async c:\Users\chen\.vscode\extensions\ms-vscode-remote.remote-ssh-0.120.0\out\extension.js:2:1113660 [13:24:10.576] ------ [13:24:10.578] No hints found in the recent session. [13:24:11.043] Opening exec server for ssh-remote+root [13:24:11.056] Initizing new exec server for ssh-remote+root [13:24:11.056] Using commit id "18e3a1ec544e6907be1e944a94c496e302073435" and quality "stable" for server [13:24:11.056] Extensions to install: [13:24:11.122] Opening exec server for ssh-remote+root [13:24:11.125] Install and start server if needed [13:24:13.130] getPlatformForHost was canceled [13:24:13.130] Exec server for ssh-remote+root failed: Error: 已取消连接 [13:24:13.130] Existing exec server for ssh-remote+root errored (Error: 已取消连接) [13:24:13.130] Initizing new exec server for ssh-remote+root [13:24:13.130] Error opening exec server for ssh-remote+root: Error: 已取消连接 [13:24:13.131] No hints found in the recent session. [13:24:13.131] Using commit id "18e3a1ec544e6907be1e944a94c496e302073435" and quality "stable" for server [13:24:13.131] Extensions to install: [13:24:13.133] Install and start server if needed
06-22
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值