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

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

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

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

# 为.ssh目录设置权限
chmod 600 ~/.ssh/config

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

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

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(其他主机方法一样)
上一篇:Asp.netcore 托管模型- 进程内托管和进程外托管(inprocess out OutOfProcess)


下一篇:hadoop 伪分布式执行 mapreduce 任务时报 running beyond physical memory或者beyond vitual memory limits