赞
踩
1 vscode远程连接服务器时ssh: Connection refused,过程试图写入的管道不存在
reason:可能是服务器ssh service没有打开
solution:sudo service ssh start;(设置开机自启动:sudo service ssh start)
若启动后任然出问题,可以尝试retry重新链接
2 WSASendCB - ERROR: broken assumption, io:000001EB0A8E5D20, sent:33, remaining:0
reason:windows系统自带openssh环境变量不适合使用vscode连接导致
solution:
右击 此电脑-属性-高级系统设置-高级-环境变量-系统变量-Path-编辑
把路径为: %SYSTEMROOT%\System32\OpenSSH\更改为xxxxx\Git\usr\bin
3 ssh config文件的配置
Host alias
HostName 172.17.252.97
User 远程服务器的名字
ServerAliveInterval 50
ServerAliveCountMax 4
4 vscode的settings.json配置
{
"workbench.colorTheme": "Visual Studio Dark - C++",
"remote.SSH.configFile":"C:\\Users\\xxxxx\\.ssh\\config",(3中ssh config文件的存放路径)
"remote.SSH.path": "D:\\Program Files\\Git\\usr\\bin\\ssh.exe", (Git中ssh.exe的路径)
"remote.SSH.showLoginTerminal": true,
"remote.SSH.remotePlatform": {
"alias": "linux"
},
"bracket-pair-colorizer-2.depreciation-notice": false,
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。