Development/VScode

[VScode] Remote SSH 오류

jstar0525 2022. 10. 11. 20:00
반응형

현상

이유는 아직 잘 모르겠지만,

vscode의 extension인 Remote ssh 접속이 이전까지 잘 되다가 

갑자기 안되는 경우가 있다.

 

나의 경우 아래의 방법으로 문제를 해결하였다.

 

나의 해결 방법

# 자신의 COMMIT_ID 알아내기
$ ls ~/.vscode-server/bin
553cfb2c2205db5f15f3ee8395bbd5cf066d357d

# COMMIT_ID를 자신에 맞게 수정
$ cd ~/.vscode-server/bin/$COMMIT_ID
$ sudo rm -r *
$ wget https://update.code.visualstudio.com/commit:$COMMIT_ID/server-linux-x64/stable

# ex
$ cd ~/.vscode-server/bin/553cfb2c2205db5f15f3ee8395bbd5cf066d357d
$ sudo rm -r *
$ wget https://update.code.visualstudio.com/commit:553cfb2c2205db5f15f3ee8395bbd5cf066d357d/server-linux-x64/stable

# 다시 연결 시도

.vscode-server를 지우고

10분정도 기다리면 되는 것이 위 과정과 비슷한 것인데,

위 해결방법이 wget을 하며 eta가 나오기 때문에

아예 시스템이 멈췄는지 설치를 하고 있는지 구분하기 편하다.

 

ref.

https://stackoverflow.com/questions/56718453/using-remote-ssh-in-vscode-on-a-target-machine-that-only-allows-inbound-ssh-co

 

Using "Remote SSH" in VSCode on a target machine that only allows inbound SSH connections

Is there a way to use the VSCode Remote SSH extension to interact with a remote host that does not allow outbound internet connections? Is it possible to download the vscode-server files from anot...

stackoverflow.com

https://code.visualstudio.com/docs/remote/troubleshooting#_troubleshooting-hanging-or-failing-connections

 

Visual Studio Code Remote Development Troubleshooting Tips and Tricks

Visual Studio Code Remote Development troubleshooting tips and tricks for SSH, Containers, and the Windows Subsystem for Linux (WSL)

code.visualstudio.com

 

반응형