当前位置:   article > 正文

ssh配置config文件,实现vscode免密登陆_vscode ssh config

vscode ssh config

在使用ssh连接服务器时,每一次用vscode连接服务器进行开发,都需要输入密码,相当鸡肋,对config的配置能够实现解决这个问题。

step1:生成ssh密钥:(如果已经有了就不需要了)

# 使用以下命令 一路回车即可
ssh-keygen -t rsa

# 为.ssh目录设置权限
chmod 600 ~/.ssh/config
  • 1
  • 2
  • 3
  • 4
  • 5

在这里插入图片描述

step2: config文件配置十分简单,只需要按照以下格式配置即可。

Host 192.168.xxx.64
  HostName 192.168.xxx.64
  User admin
#Host 为了便于区分同一主机的不同Port,可以修改为不同的名字。
#比如下边的*.physical是物理机IP,*.container是运行在该物理机上的一个container,用的是物理机的端口2222
Host 231.180.container
  HostName 192.168.xxx.180
  Port 2222
  User root

Host 231.180.physical
  HostName 192.168.xxx.180
  User yourusername
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

step3:实现免密登陆

# 将密钥copy到work1,需要输入work1的登陆密码(此登陆密码为config重配置的user密码)
ssh-copy-id 231.180.physical
# 成功后会有如下提示
Now try logging into the machine, with:   "231.180.physical'"
and check to make sure that only the key(s) you wanted were added.

#现在使用如下即可登陆231.180.physical(其他主机方法一样)
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/403493
推荐阅读
相关标签
  

闽ICP备14008679号