반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- 꼴뚜기회
- 방이편백육분삼십
- 성신여대맛집
- 스페인여행
- 공무원
- 한성대맛집
- 통영여행
- ELK
- 성북구맛집
- 통영
- 뚝섬역맛집
- 통영에어비앤비
- 돈암동맛집
- 파이썬
- react
- ubuntu자바설치
- springboot
- 퇴사후공무원
- npm
- 한남동맛집
- 통영예쁜카페
- 자바스크립트에러처리
- 영화추천
- 방이편백육분삼십성신여대
- gradle
- 성신여대편백집
- tomcat7
- 서울숲누룽지통닭구이
- JavaScript
- 국가직
Archives
- Today
- Total
코린이의 기록
[VS Code] Remote SSH Tunneling Permission denied 본문
반응형
"install" terminal command done Received install output: af06cc03-7565-4026-9930-b794c5913b01==37094== Server is listening on port xxxxx Spawning tunnel with: ssh vm2 -N -L localhost:xxxx:localhost:xxxxx Spawned SSH tunnel between local port xxxxand remote port xxxxx Waiting for ssh tunnel to be ready Tunnel(xxxxx) stderr: Permission denied, please try again. Tunnel(xxxxx) stderr: Permission denied, please try again. Tunnel(xxxxx) stderr: root@xx.xx.xx.xx Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password). Tunneling remote port xxxxx to local port xxxx Resolving "ssh-remote+vm2" to "localhost:xxxx", attempt: 1 |
해결방법
https://github.com/Microsoft/vscode-remote-release/issues/75
settings.json 에서 "remote.SSH.showLoginTerminal" : true 추가
{
"window.zoomLevel": 0,
"git.ignoreMissingGitWarning": true,
"open-in-browser.default": "chrome",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\wsl.exe",
"terminal.external.windowsExec": "C:\\Program Files\\Git\\bin\\bash.exe",
"git.ignoreLegacyWarning": true
"remote.SSH.showLoginTerminal": true,
}
반응형
Comments