当前位置:   article > 正文

VScode通过 SSH 编辑远程代码的2种方式之sftp(本地修改 push 远端)_vscode sftp使用privatekeypath

vscode sftp使用privatekeypath

指定profiles指定多个配置,包括hop
切换配置:Use SFTP: Set Profile to switch profile.

其他

HOP

如果有跳板机才能访问 ssh的服务器,需要在配置中添加 hop 的配置。

{
  "name": "target",
  "remotePath": "/path/in/target",

  // hop
  "host": "hopHost",
  "username": "hopUsername",
  "privateKeyPath": "/Users/localUser/.ssh/id\_rsa", // <-- The key file is assumed on the local.

  "hop": {
    // target
    "host": "targetHost",
    "username": "targetUsername",
    "privateKeyPath": "/Users/hopUser/.ssh/id\_rsa", // <-- The key file is assumed on the hop.
  }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

多hop详细配置参考:
https://github.com/Natizyskunk/vscode-sftp?tab=readme-ov-file#connection-hopping

VScode remote ssh

remote ssh 是VScode 提供的
https://

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/正经夜光杯/article/detail/1002729
推荐阅读
相关标签
  

闽ICP备14008679号