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로.
(번외) 권한 오류 해결
다른 기사에 기재했습니다.
Reference
이 문제에 관하여(VS Code Remote SSH에서 could not to connection to 오류 해결 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/baby-0105/items/d1f90f21f068075371cf
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
[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:
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).
User/<PCのユーザー名>/.ssh/config
다른 기사에 기재했습니다.
Reference
이 문제에 관하여(VS Code Remote SSH에서 could not to connection to 오류 해결 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/baby-0105/items/d1f90f21f068075371cf텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)