반응형
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
- tomcat7
- 공무원
- 파이썬
- ubuntu자바설치
- ELK
- 통영예쁜카페
- 돈암동맛집
- 통영
- 방이편백육분삼십
- 방이편백육분삼십성신여대
- springboot
- 스페인여행
- gradle
- 한남동맛집
- 한성대맛집
- react
- npm
- 뚝섬역맛집
- 통영여행
- 서울숲누룽지통닭구이
- 꼴뚜기회
- 성신여대맛집
- 국가직
- 성북구맛집
- 퇴사후공무원
- 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