VS Code SSH 远程连接时断时续 / 不稳定标题排查

打印 上一主题 下一主题

主题 952|帖子 952|积分 2856

注:本文为 “VS Code SSH 远程连接标题” 相干文章合辑。
英文部分机翻,未校。

Troubleshooting VS Code Remote SSH Connection Issues: A Step-by-Step Guide

排查 VS Code 远程 SSH 连接标题:分步指南
Coded Java, 11-11-2024
Introduction

先容
Visual Studio Code (VS Code) has revolutionized the way we develop software, offering a robust and versatile platform for coding across diverse languages and environments. One of its most powerful features is the Remote - SSH extension, allowing developers to connect to remote servers and work on projects seamlessly. However, like any complex technology, remote SSH connections can encounter issues, leading to frustration and lost productivity. This comprehensive guide will provide you with a step-by-step approach to troubleshoot common VS Code remote SSH connection problems, empowering you to swiftly identify and resolve them.
Visual Studio Code (VS Code) 彻底改变了我们开发软件的方式,为跨差别语言和情况的编码提供了一个强大且多功能的平台。它最强大的功能之一是远程 - SSH 扩展,允许开发职员连接到远程服务器并无缝地处理惩罚项目。但是,与任何复杂技能一样,远程 SSH 连接大概会遇到标题,从而导致挫败感和生产力丧失。本综合指南将为您提供办理常见 VS Code 远程 SSH 连接标题的分步方法,使您能够快速识别和办理这些标题。
Understanding the Problem

了解标题
Before diving into troubleshooting, it’s crucial to understand the nature of the issue. Pinpointing the source of the problem is the first step towards a solution. Consider these factors:
在深入研究故障清除之前,了解标题的性子至关重要。查明标题的根源是办理标题的第一步。请考虑以下因素:


  • Remote Server Configuration: Are you sure the remote server is correctly set up for SSH access? This includes verifying firewall settings, SSH service status, and user permissions.
    远程服务器配置:您确定远程服务器已正确设置为 SSH 访问吗?这包罗验证防火墙设置、SSH 服务状态和用户权限。
  • Network Connectivity: Is your local machine able to connect to the remote server over the network? Check for any network issues like firewall blocks, VPN configurations, or internet connectivity problems.
    网络连接:您的本地盘算机是否能够通过网络连接到远程服务器?查抄是否存在任何网络标题,比方防火墙制止、VPN 配置或 Internet 连接标题。
  • VS Code Settings: Are your VS Code settings for the Remote - SSH extension configured correctly? This includes specifying the SSH connection details, authentication methods, and other relevant parameters.
    VS Code 设置:远程 - SSH 扩展的 VS Code 设置是否配置正确?这包罗指定 SSH 连接详细信息、身份验证方法和其他相干参数。
  • Extension Updates: Are your VS Code extensions, particularly the Remote - SSH extension, up-to-date? Outdated extensions can sometimes lead to compatibility issues.
    扩展更新:您的 VS Code 扩展(尤其是远程 - SSH 扩展)是否是最新的?过时的扩展有时会导致兼容性标题。
Common Troubleshooting Steps

常见故障清除步调
Now, let’s delve into the specific troubleshooting steps for resolving VS Code remote SSH connection problems:
现在,让我们深入研究办理 VS Code 远程 SSH 连接标题的具体故障清除步调:
1. Verify Remote Server Configuration

1.验证远程服务器配置


  • SSH Service Status: Ensure that the SSH service is running on the remote server. You can check this using commands like systemctl status sshd (on Linux/macOS) or sc query sshd (on Windows). If the service is not running, start it using systemctl start sshd or sc start sshd.
    SSH 服务状态:确保 SSH 服务正在远程服务器上运行。您可以使用 systemctl status sshd(在 Linux/macOS 上)或 sc query sshd(在 Windows 上)等下令举行查抄。如果服务未运行,请使用 systemctl start sshd 或 sc start sshd 启动它。
  • Firewall Rules: Verify that your firewall rules allow SSH connections. On Linux/macOS, you can check and modify firewall settings using tools like ufw, iptables, or firewalld. On Windows, you can use the Windows Firewall with Advanced Security feature. Ensure that ports 22 (for SSH) are open for incoming connections.
    防火墙规则:验证您的防火墙规则是否允许 SSH 连接。在 Linux/macOS 上,您可以使用 ufw、iptables 或 firewalld 等工具查抄和修改防火墙设置。在 Windows 上,您可以使用高级安全 Windows 防火墙功能。确保端口 22(用于 SSH)为传入连接打开。
  • User Permissions: Confirm that the user account you’re using to connect has SSH access privileges. The user should have a valid SSH key configured for authentication or a valid password set up.
    用户权限:确认您用于连接的用户帐户具有 SSH 访问权限。用户应配置有用的 SSH 密钥举行身份验证或设置有用的密码。
2. Network Connectivity Check

2.网络连接查抄


  • Ping Test: Try pinging the remote server’s IP address or hostname from your local machine using the ping command. If the ping is successful, it indicates network connectivity.
    Ping 测试:尝试使用 ping 下令从本地盘算机 ping 远程服务器的 IP 所在或主机名。如果 ping 成功,则表示网络连接。
  • Port Scan: Use a port scanner like nmap to confirm that the remote server is listening on port 22 (for SSH). If port 22 is not open, the remote server might not be configured correctly for SSH access.
    端口扫描:使用雷同 nmap 的端口扫描器确认远程服务器正在侦听端口 22(用于 SSH)。如果端口 22 未打开,则远程服务器大概无法正确配置 SSH 访问。
  • VPN and Proxies: If you are using a VPN or proxy, ensure that they are not blocking or interfering with your SSH connection. Temporarily disable them to see if it resolves the issue.
    VPN 和署理:如果您使用的是 VPN 或署理,请确保它们不会制止或干扰您的 SSH 连接。暂时禁用它们以检察它是否办理了标题。
3. VS Code Settings and Configurations

3.VS Code 设置和配置


  • Connection Details: Double-check the remote server’s hostname, port, and username in your VS Code configuration. Ensure that these details are accurate and match the remote server’s settings.
    连接详细信息:在 VS Code 配置中仔细查抄远程服务器的主机名、端口和用户名。确保这些详细信息正确无误,并与远程服务器的设置相匹配。
  • Authentication Method: Verify that the authentication method you’re using is correct. If using an SSH key, confirm that the private key is accessible and its permissions are set correctly. If using a password, ensure it’s entered correctly.
    身份验证方法:验证您使用的身份验证方法是否正确。如果使用 SSH 密钥,请确认私钥可访问且其权限设置正确。如果使用密码,请确保输入正确。
  • Extension Settings: Explore the Remote - SSH extension settings in VS Code. You can access these by clicking on the Remote - SSH icon on the left sidebar and selecting “Configure Remote Settings” from the “Remote Explorer” pane. Review these settings for any potential conflicts or misconfigurations.
    扩展设置:浏览 VS Code 中的远程 - SSH 扩展设置。您可以通过单击左侧边栏上的远程 - SSH 图标并从“远程资源管理器”窗格中选择“配置远程设置”来访问这些设置。检察这些设置是否存在任何潜伏的冲突或错误配置。
4. Extension Updates and Dependencies

4.扩展更新和依赖项


  • Remote - SSH Extension: Ensure that the Remote - SSH extension is up-to-date. You can update extensions by clicking on the Extensions icon (four squares icon) on the left sidebar, searching for the “Remote - SSH” extension, and clicking on the “Update” button if available.
    远程 - SSH 扩展:确保远程 - SSH 扩展是最新的。您可以通过单击左侧边栏上的扩展图标(四个方块图标),搜刮“远程 - SSH”扩展,然后单击“更新”按钮(如果可用)来更新扩展。
  • VS Code Version: Check your VS Code version and ensure it’s compatible with the Remote - SSH extension. You can check the VS Code release notes or extension marketplace listing for compatibility information.
    VS Code 版本:查抄您的 VS Code 版本,并确保它与远程 - SSH 扩展兼容。您可以检察 VS Code 发行分析或扩展市场列表,了解兼容性信息。
  • System Dependencies: Ensure that all necessary system dependencies are installed on your local machine. For example, you might need to install an SSH client like OpenSSH or PuTTY depending on your operating system.
    系统依赖项:确保在本地盘算机上安装了全部必要的系统依赖项。比方,您大概需要安装 OpenSSH 或 PuTTY 等 SSH 客户端,具体取决于您的操纵系统。
Debugging Techniques

调试技能
Sometimes, troubleshooting requires more in-depth analysis and debugging. These techniques can be helpful:
有时,故障清除需要更深入的分析和调试。以下技能大概会有所帮助:


  • SSH Logs: Analyze the SSH logs on the remote server for any error messages related to the failed connection attempt. You can find these logs in /var/log/auth.log or /var/log/secure on most Linux distributions.
    SSH 日志:分析远程服务器上的 SSH 日志,查找与连接尝试失败相干的任何错误消息。在大多数 Linux 发行版中,您可以在 /var/log/auth.log 或 /var/log/secure 中找到这些日志。
  • VS Code Developer Tools: Use the VS Code Developer Tools (accessible through the “Help” menu) to inspect network requests and logs related to the Remote - SSH extension. This can provide insights into the specific issue causing the connection problem.
    VS Code 开发职员工具:使用 VS Code 开发职员工具(可通过“帮助”菜单访问)查抄与远程 - SSH 扩展相干的网络请求和日志。这可以深入了解导致连接标题的特定标题。
  • SSH Client Testing: Test the connection using a separate SSH client like PuTTY or OpenSSH on your local machine. This can help isolate whether the issue is specific to VS Code or a broader SSH connectivity problem.
    SSH 客户端测试:在本地盘算机上使用单独的 SSH 客户端(如 PuTTY 或 OpenSSH)测试连接。这有助于确定标题是特定于 VS Code 还是更广泛的 SSH 连接标题。
Addressing Specific Errors

办理特定错误
Let’s now focus on addressing some commonly encountered error messages during VS Code remote SSH connections:
现在,让我们专注于办理 VS Code 远程 SSH 连接期间遇到的一些常见错误消息:
1. “Connection Refused”

1.“连接被拒绝”


  • Possible Causes: This error typically indicates that the remote server is not listening on the specified port (usually port 22 for SSH). This can be due to firewall blocks, a stopped SSH service, or incorrect configuration of the SSH service.
    大概的缘故原由:此错误通常表示远程服务器未侦听指定的端口(通常是 SSH 的端口 22)。这大概是由于防火墙制止、SSH 服务克制或 SSH 服务配置不正确。
  • Troubleshooting Steps:
  • Verify firewall rules and ensure that port 22 is open for incoming connections.
    验证防火墙规则,并确保端口 22 已打开以用于传入连接。
  • Check if the SSH service is running on the remote server and start it if it’s not.
    查抄 SSH 服务是否在远程服务器上运行,如果没有,请启动它。
  • Double-check the hostname and port number in your VS Code settings.
    仔细查抄 VS Code 设置中的主机名和端口号。
2. “Permission Denied (publickey,password)”


  • “权限被拒绝(公钥、密码)”


  • Possible Causes: This error means that the SSH client (VS Code) is unable to authenticate with the remote server using the provided credentials. This can be due to an invalid SSH key, incorrect password, or insufficient permissions on the remote server.
    大概的缘故原由: 此错误意味着 SSH 客户端 (VS Code) 无法使用提供的凭据向远程服务器举行身份验证。这大概是由于 SSH 密钥无效、密码不正确或远程服务器的权限不足造成的。
  • Troubleshooting Steps:
  • Verify that the private key associated with your SSH key pair is available and its permissions are set correctly.
    验证与您的 SSH 密钥对关联的私有密钥是否可用,以及其权限设置是否正确。
  • Double-check the password and ensure it’s entered correctly.
    仔细查抄密码并确保输入正确。
  • Confirm that the user account you’re trying to connect with has the appropriate permissions on the remote server to access SSH.
    确认您尝试连接的用户帐户在远程服务器上具有访问 SSH 的得当权限。
3. “Host Key Verification Failed”


  • “Host Key Verification failed” 主机密钥验证失败


  • Possible Causes: This error indicates that the SSH client doesn’t recognize the host key of the remote server, which is a security measure to prevent man-in-the-middle attacks. This can happen when connecting to a new server for the first time or when the server’s host key has been changed.
    大概缘故原由:该错误表示 SSH 客户端无法识别远程服务器的 host key,这是防止中心人攻击的安全措施。初次连接到新服务器或更改服务器的主机密钥时,大概会发生这种情况。
  • Troubleshooting Steps:
  • Add the server’s host key to your known hosts file. You can do this using the ssh-keyscan command followed by the remote server’s hostname or IP address.
    将服务器的主机密钥添加到已知的主机文件中。您可以使用 ssh-keyscan 下令后跟远程服务器的主机名或 IP 所在来实行此操纵。
  • Manually add the host key to your known hosts file (usually located at ~/.ssh/known_hosts) if the ssh-keyscan command fails.
    如果 ssh-keyscan 下令失败,请手动将主机密钥添加到已知的主机文件(通常位于 ~/.ssh/known_hosts)。
  • If you are sure the remote server is trustworthy, you can disable host key verification in your VS Code settings, but this is not recommended for security reasons.
    如果您确定远程服务器值得信托,则可以在 VS Code 设置中禁用主机密钥验证,但出于安全缘故原由,不发起这样做。
4. “Connection Timed Out”


  • “Connection Timed Out” (连接超时)


  • Possible Causes: This error indicates that the SSH client couldn’t establish a connection to the remote server within the timeout period. This could be due to network connectivity problems, high server load, or network congestion.
    大概的缘故原由:此错误表示 SSH 客户端无法在超时时间内与远程服务器建立连接。这大概是由于网络连接标题、高服务器负载或网络拥塞造成的。
  • Troubleshooting Steps:
  • Check your internet connection and ensure there are no network issues.
    查抄您的 Internet 连接并确保没有网络标题。
  • Try connecting to the remote server using a different network or internet connection.
    尝试使用其他网络或 Internet 连接连接到远程服务器。
  • Increase the SSH timeout value in your VS Code settings.
    在 VS Code 设置中增加 SSH 超时值。
  • Check the server load and see if it’s under excessive stress.
    查抄服务器负载,看看它是否承受了过大的压力。
Additional Tips and Best Practices

其他提示和最佳实践


  • Use a Strong SSH Key: Utilize a secure SSH key for authentication instead of passwords. This provides better security and avoids the risk of exposing your password.
    使用强 SSH 密钥:使用安全的 SSH 密钥而不是密码举行身份验证。这提供了更好的安全性,并避免了暴露密码的风险。
  • Enable SSH Key Authentication: Enable SSH key authentication on the remote server, making it more secure than password-based authentication.
    启用 SSH 密钥身份验证:在远程服务器上启用 SSH 密钥身份验证,使其比基于密码的身份验证更安全。
  • Keep Software Updated: Regularly update your VS Code, Remote - SSH extension, and the SSH client on your local machine to benefit from security patches and bug fixes.
    保持软件更新:定期更新本地盘算机上的 VS Code、远程 - SSH 扩展和 SSH 客户端,以从安全补丁和错误修复中受益。
  • Use a Dedicated User Account: Create a dedicated user account on the remote server for development purposes and limit its permissions to only necessary files and directories.
    使用专用用户帐户:在远程服务器上创建专用用户帐户以举行开发,并将其权限限定为仅必要的文件和目录。
  • Regularly Review Security Settings: Periodically review your firewall settings, SSH configurations, and other security settings on both your local machine and the remote server to maintain a secure development environment.
    定期查抄安全设置:定期查抄本地盘算机和远程服务器上的防火墙设置、SSH 配置和其他安全设置,以维护安全的开发情况。
Conclusion

结论
Troubleshooting VS Code remote SSH connection issues can be frustrating, but by following the step-by-step guide and applying the debugging techniques outlined in this article, you can effectively identify and resolve most common connection problems. Remember to approach troubleshooting systematically, starting with the most likely causes and gradually narrowing down your investigation. Regularly reviewing your settings and configurations, keeping software up-to-date, and prioritizing security best practices will help prevent future connection issues.
排查 VS Code 远程 SSH 连接标题大概令人沮丧,但通过遵循分步指南并应用本文中概述的调试技能,您可以有用地识别和办理最常见的连接标题。请记着系统地举行故障清除,从最大概的缘故原由开始,然后逐渐缩小调查范围。定期查抄您的设置和配置,使软件保持最新状态,并确定安全最佳实践的优先级,将有助于防止将来出现连接标题。
FAQs

1. Can I use VS Code for remote development without SSH?
1.我可以在没有 SSH 的情况下使用 VS Code 举行远程开发吗?
While SSH is a popular method for remote development, you can also use other options like VS Code’s Remote - Containers extension to connect to Docker containers or the Remote - WSL extension to work on projects within the Windows Subsystem for Linux.
虽然 SSH 是一种盛行的远程开发方法,但您也可以使用其他选项(如 VS Code 的远程 - 容器扩展)连接到 Docker 容器,或使用远程 - WSL 扩展来处理惩罚实用于 Linux 的 Windows 子系统中的项目。
2. Is it safe to disable host key verification?
2.禁用主机密钥验证是否安全?
Disabling host key verification can increase the risk of man-in-the-middle attacks. While it might be convenient for testing purposes, it’s not recommended for production environments.
禁用主机密钥验证大概会增加中心人攻击的风险。虽然它大概便于测试目的,但不发起用于生产情况。
3. How do I troubleshoot a “Connection Refused” error when connecting to an AWS EC2 instance?
3.怎样排查连接到 AWS EC2 实例时出现的“Connection Refused”(连接被拒绝)错误?
If you encounter this error when connecting to an AWS EC2 instance, ensure that the security group associated with the instance allows incoming SSH connections on port 22. You might also need to ensure that the instance’s SSH service is running and correctly configured.
如果您在连接到 AWS EC2 实例时遇到此错误,请确保与该实例关联的安全组允许端口 22 上的传入 SSH 连接。您大概还需要确保实例的 SSH 服务正在运行并正确配置。
4. Can I access files on the remote server through VS Code?
4.我可以通过 VS Code 访问远程服务器上的文件吗?
Yes, VS Code’s Remote - SSH extension allows you to browse, edit, and manage files on the remote server directly within the VS Code environment.
是的,VS Code 的远程 - SSH 扩展允许您直接在 VS Code 情况中浏览、编辑和管理远程服务器上的文件。
5. What are the best practices for SSH security?
5.SSH 安全的最佳实践是什么?


  • Use strong SSH keys for authentication instead of passwords.
    使用强 SSH 密钥而不是密码举行身份验证。
  • Enable SSH key authentication on the remote server.
    在远程服务器上启用 SSH 密钥身份验证。
  • Keep your SSH client and server software up-to-date.
    使您的 SSH 客户端和服务器软件保持最新状态。
  • Use a dedicated user account with limited permissions on the remote server.
    在远程服务器上使用具有有限权限的专用用户帐户。
  • Regularly review your firewall settings and SSH configurations.
    定期查抄您的防火墙设置和 SSH 配置。

【工程调试记载】vscode 远程连接卡顿、频繁掉线的一个办理方法

Thomas_Ironprop 于 2020-05-12 14:57:13 发布
近来使用 vscode 远程连接服务器的时间碰到了卡顿、频繁掉线的标题,在公司大神的帮助下办理了这个标题,在此分享下办理方法。
标题形貌

本地(win10)使用 vscode 的 remote-ssh 功能远程连接服务器(ubuntu16.04)举行开发。发现十分卡顿,频繁掉线。
缘故原由

本地使用的是 win10 自带的 openSSH,版本是 7.7p1。

该版本大概和 vscode 不太兼容。安装其他版本大概办理这个标题,我这里使用的是 git 自带的 ssh 版本,不想折腾的同砚可以仿照下面的步调举行。
办理方法

下载安装 git

https://git-scm.com/downloads
配置情况变量

将 git 安装路径下的 *\Git\usr\bin 路径添加到系统自带 OpenSSH 路径(一样寻常是 *\System32\OpenSSH)前即可。注意由于系统自带的 OpenSSH 路径一样寻常在系统变量用户变量中都有配置,而系统 path 会先于用户 path 生效,以是要将 git 路径也配置在系统变量中的 *\System32\OpenSSH 前。如下图所示。

配置好之后重启 cmd 窗口,检察 ssh 版本,验证是否配置成功。

之后再打开 vscode 重新连接,发现卡顿和频繁掉线标题得到办理。

[2023 最新] vscode 连接服务器频繁断连

孙笑窜已于 2023-03-01 10:23:54 修改
一、标题形貌

vscodexshellMobaXterm等一众 shell 客户端连接aliyun服务器大概实验室服务器都出现频繁断连情况。
以是大概不是 vscode 的标题,而是本身电脑的标题!
二、办理办法

搜遍网上教程,尝试处理惩罚方法如下,但是都没有办理:
1.vscode切换英文
2. 卸载 Windows 自带的 openssh,将 Git 文件夹里的 ssh.exe 添加到情况变量
3. 修改服务器端的 sshd_config
三、成功方法


  • 卸载 Windows 自带的 openssh,将本身下载的 Git 文件夹里的 ssh.exe 添加到系统情况变量用户情况变量最好也加一下。
怎样卸载 openssh:[官方链接]
https://docs.microsoft.com/en-us/windows-server/administration/openssh/openssh_install_firstuse

成功后,cmd 中显示如下:


  • 修改 ssh_config ( D:\Program Files\Git\etc\ssh\ssh_config ) 文件,注意是 ssh,不是 sshd,在末端添加:
  1. ServerAliveInterval 20
  2. ServerAliveCountMax 999
复制代码

  • 重启电脑。
  • 另外一种办理方法:尚有大概是服务器,内存不敷大概磁盘空间不敷!
四、常见客户端设置方法



vscode 远程 ssh 连接不稳定的办理方法

chen_znn 于 2023-03-04 14:16:41 发布
1 标题形貌

在使用 vscode 的 remote ssh 插件远程连接服务器时很不稳定,改起代码来很贫苦。
2 缘故原由分析

在终端 ping 服务器的 IP 时显示没有丢包,在 winscp、MobaXterm 中使用 ssh 也能正常稳定地连接到服务器,这就表明标题出在 vscode 的 ssh 连接上,windows 自带的 openssh 与 vscode 不兼容。
3 办理方法

方法一

安装其他版本的 openssh,这个方法我还没试过。
方法二

使用 git 自带的 ssh 来更换掉 openssh。git 下载网址:
https://git-scm.com/downloads
安装好 git 后,配置 git 情况变量,把 “C:\Program Files\Git\usr\bin”(该文件的路径因人而异,取决于你安装 git 的路径) 添加到系统变量的 path 中,对放置的位置也有要求,需要放置在 openssh 前面,如下图所示,

方法三

把 vscode 中 remote ssh 中的 path 改成 git 中 ssh 的路径,如:C:\Program Files\Git\usr\bin,
在 vscode 的扩展插件中找到 remote ssh,并选择设置 ->extension settings

找到 remote ssh path,并把 git 的 ssh 路径填进去,


办理 VS code 远程连接 ssh 频繁掉线标题

起个啥名捏于 2024-01-02 08:47:51 发布
近来刚换了新办公电脑,换了电脑以后发现 vscode 远程变得很不稳定,一打开倒是可以用,但是用过几个小时变得一直需要输密码,总是掉线,登陆不上,遂开始排查标题:
1. 使用 git,更改情况变量

如网上教程所示


  • [vs code 通过 remote-ssh 远程到 ubuntu 频繁掉线标题办理历程_vscode 远程 断掉 - CSDN 博客]
    https://blog.csdn.net/qq_37765778/article/details/126675962
下载 git,又将情况变量修改成默认 git 的 ssh
刚开始登录很顺利,又是用了几个小时又开始频繁掉线,没用。
2. 重新安装 vscode-sever

开始排查缘故原由,用 cmd 中的 ssh 登录,没有标题,登录顺利
正在本人眉头紧锁之际,突然发现我的远程服务器中有一 vscode-sever 隐藏文件夹,想那就把服务器上的 vscode 删掉重装试试

再次登录发现需要用时比力久
标题办理
这种方法可以用于 ssh 正常但是 vscode remote 不正常的情况

vscode 使用 ssh 远程连接失败(及其他标题合集)

吨吨不打野已于 2023-06-27 14:35:54 修改
1. 常见错误和办理方案

去检察本身的错误,


  • 在 vscode 界面,帮助->切换开发职员工具
  • 如果是 windows 系统,直接快捷键 ctrl+shift+I 打开开发者工具。
1.1 ERR Request 7 timed out (15000ms)


ERR Error: Time limit reached,超时错误,15000ms 是个参数,可以设置响应等候时间,默认是 15s,可以改为其他时间
参考 Stack Overflow:[why ssh connection timed out in vscode?]
https://stackoverflow.com/questions/59978826/why-ssh-connection-timed-out-in-vscode


  • 文件 -> 首选项 -> 设置
  • 在 常用设置 中,找到 扩展->Remote-SSH
  • 把 15s 改成更长的时间

另外,也有方法是修改一个配置文件。
依旧是在设置中,搜刮 ssh,找到 在 setting.json 中编辑

在这个文件夹中加入:"remote.SSH.useLocalServer": false,,编辑后文件雷同下面这样:
  1. {
  2.     "security.workspace.trust.untrustedFiles": "open",
  3.     "remote.SSH.useLocalServer": false,
  4.     "remote.SSH.remotePlatform": {
  5.         "10.71.10.49": "linux",
  6.         "10.70.21.10": "linux"
  7.     },
  8.     "workbench.colorTheme": "Quiet Light",
  9.     "workbench.iconTheme": "office-material-icon-theme",
  10.     "terminal.integrated.windowsEnableConpty": false,
  11. }
复制代码
如果没什么用的话,分析大概本地和远程服务器之间网大概确实不太好,大部分情况下重连频频就好了
1.2 ERR Error: WebSocket close with status code 1006

在开发者工具里信息如下:

其实在输出 ->remote ssh 中,也会有一些有用的信息,

错误信息为:
   Failed to set up socket for dynamic port forward to remote port XXX: Proxy connection timed out. Is the remote port correct?
大概意思是署理超时了。。(应该是 vpn 有标题?但是 mobaxterm 连接依然非常顺利)
  参考 Github:[Vscode-issue]
https://github.com/microsoft/vscode/issues/115818
一些人选择降级,但是 2021 年是 1.52 版本,现在已经 1.66 了,而且这个标题已经关闭了,应该新版本已经办理了
参考


  • [why ssh connection timed out in vscode?]
    https://stackoverflow.com/questions/59978826/why-ssh-connection-timed-out-in-vscode
2. Error: Could not find pty on pty host

2.1 确认错误

感谢 Github 上的 issue:[Keeps reconnect and reload when Remote SSH with VPN #2565]
https://github.com/microsoft/vscode-remote-release/issues/2565
启发我去看本身的输出信息,确定远程 log 文件的位置。

使用 xshell 大概 mobaxterm 等远程连接工具,去检察上面这个日志文件,比方:
  1. vim /home/user/.vscode-server/.dfd34e8260c270da74b5c2d86d61aee4b6d56977.log
复制代码
找到此中的报错信息,比方我的是
  1. [15:13:51] [Error: Could not find pty on pty host,
  2. at C._throwIfNoPty (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:20:5336),
  3. at C.updateTitle (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:20:1676),
  4. at Object.call (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:13:8332),
  5. at E.onPromise (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:12:4867),
  6. at E.onRawMessage (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:12:4262),
  7. at /home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:12:3554,
  8. at L.invoke (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:8:145),
  9. at l.fire (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:8:1856),
  10. at process.U (/home/user/.vscode-server/bin/dfd34e8260c270da74b5c2d86d61aee4b6d56977/out/vs/platform/terminal/node/ptyHostMain.js:6:34661),
  11. at process.emit (node:events:390:28),
  12. at emit (node:internal/child_process:917:12),
  13. at processTicksAndRejections (node:internal/process/task_queues:84:21)]
复制代码
2.2 搜刮办理(需要等候官方 debug)

进一步搜刮 vscode remote Error: Could not find pty on pty host,,根据 Github 的 issue:[Could not find pty on pty host #144548]
https://github.com/microsoft/vscode/issues/144548


  • 一模一样的报错信息(主动测试呆板人发现的。。)
  • 2022.3.7 才分配的错误
  • 报错代码位于
    https://github.com/Microsoft/vscode/blob/5738c241b1ff187c06704477be1fa8733029e290/src/vs/platform/terminal/node/ptyService.ts#L404
  • 修复时间从 3 月推迟到了 4 月
  • 等吧
办理 ✅

最大的收获


  • Visual Studio Code Remote Development Troubleshooting Tips and Tricks
    https://code.visualstudio.com/docs/remote/troubleshooting#_configuring-key-based-authentication
  • Developing on Remote Machines using SSH and Visual Studio Code
    https://code.visualstudio.com/docs/remote/ssh
这两个文档里详细先容了一些 ssh 连接大概出现的标题和办理方案
1. 更新 vscode 版本

前几天 vscode 更新了,现在版本是 1.67.0


  • 帮助->关于

2. 配置 ssh 密钥

2.2.1 想法泉源

灵感泉源于我在寻找替代方案时,看到


  • [VScode 远程调试 C++ 工程含 X11(局域网)]
    https://zhuanlan.zhihu.com/p/385276301
中配置 ssh 密钥,就可以省去输入密码。
想起来 vscode 之前一直断连,一直让输入密码,那直接配密钥就可以避开这一环节。
2.2.2 具体操纵

生成密钥


  • 在 windows 下令行里输入 ssh-keygen,然后会有一些提示,直接三个回车。
  • 在 C:\Users\yourname\.ssh 文件夹中可以看到刚刚生成的密钥 id_rsa.pub 和私钥 id_rsa
公钥复制到服务器中


  • 将公钥复制到 ~/.ssh/authorized_keys 文件中
测试是否配置成功


  • 直接在下令行里输入 ssh username@XXX.XXX.XXX
  • 看是否不需要密码可以直接连接
以上内容完成后,就去 vscode 举行远程连接,一样寻常都会成功
我的到这里其实有个小插曲


  • 由于公司电脑会主动加密,我在将公钥复制到服务器的过程中,不小心把公钥文件做了编辑,因此文件被加密了
  • 在 vscode 的 Remote-SSH 输出面板中,其时出现了 C:\Users\yourname\.ssh\id_rsa invalid format 这样的提示。
  • 重新生成密钥公钥,复制的时间小心不举行编辑,才成功的
3. 更换默认的 ssh 工具

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

何小豆儿在此

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表