VS Code Remote SSH에서 could not to connection to 오류 해결 방법

1738 단어 VSCode

해결까지의 경위





큰 전제로서,
사진 하단(보이지 않지만 출력란)에 Log가 출력되고 있으므로, 그쪽의 내용을 읽으면 대답이 쓰고 있었습니다.

보기로는 사진 하단 More Actions... 의 버튼을 누르면 출력 화면을 볼 수 있습니다.

💡해결 방법(내 경우)


[20:40:57.919] Received install output: /Users/ユーザー名/.ssh/config line 5: garbage at end of line; "#".
[20:40:57.920] Failed to parse remote port from server output
[20:40:57.921] Resolver error: Error: 

"#"로 주석을 넣었기 때문에 parse 오류가 발생했습니다.

따라서 .ssh/config의 주석을 삭제하면 해결되었습니다.
Host 任意の名前
  HostName [該当のIPアドレス]
  User root
  Port 22
  IdentityFile ~/.ssh/xxxxxxxxxxxxxxx # 秘密鍵が置いてあるパス ← こちらのコメント削除

이 후 권한 시스템 오류
Could not establish connection to "OFLog-dev-env": Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).

나왔으므로 나중에 설명합니다.

그 전에 그 밖에 시도한 것입니다.

시도한 것 1 : remotePlatform 지정



시도한 것 2 : "Remote.SSH : Config File"설정



나는 mac 이었기 때문에 경로 부분 C:\Users\<PCのユーザー名>\.ssh\config
User/<PCのユーザー名>/.ssh/config

라고 기재

시도 3 : remote.SSH.useLocalServer를 false로.



(번외) 권한 오류 해결



다른 기사에 기재했습니다.

좋은 웹페이지 즐겨찾기