VS Code 远端ssh连接开发

查看本地ssh

1
2
cd ~/.ssh
ls

如果本地已经有id_rsaid_rsa.pub,表明本地已经建立过ssh,可以跳过下一步;如果没有的话,则需要建立一个

设置ssh密钥

1
ssh-keygen -t rsa -C "your_email@example.com"

代码参数含义:

-t 指定密钥类型,默认是 rsa ,可以省略。

-C 设置注释文字,比如邮箱。

-f 指定密钥文件存储文件名。

以上代码省略了 -f 参数,因此,运行上面那条命令后会让你输入一个文件名,用于保存刚才生成的 SSH key 代码,如:

1
2
Generating public/private rsa key pair.
# Enter file in which to save the key (/c/Users/you/.ssh/id_rsa): [Press enter]

当然,你也可以不输入文件名,使用默认文件名(推荐),那么就会生成 id_rsa 和 id_rsa.pub 两个秘钥文件。

接着又会提示你输入两次密码(该密码是你push文件的时候要输入的密码,而不是github管理者的密码),

当然,你也可以不输入密码,直接按回车。那么push的时候就不需要输入密码,直接提交到github上了,如:

1
2
Enter passphrase (empty for no passphrase): 
# Enter same passphrase again:

接下来,就会显示如下代码提示,如:

1
2
3
4
Your identification has been saved in /c/Users/you/.ssh/id_rsa.
# Your public key has been saved in /c/Users/you/.ssh/id_rsa.pub.
# The key fingerprint is:
# 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db your_email@example.com

上传本地密钥到服务器并认证

1
2
3
4
5
6
mkdir ~/.ssh
cd ~/.ssh
cat id_rsa.pub >> authorized_keys # id_rsa.pub是刚刚生成的ssh公钥
chmod 600 authorized_keys
service sshd restart
sudo service ssh restart

本地vscode连接

安装remote ssh

image-20221231103727629

修改本地配置文件,添加ssh config

1
2
3
Host xxx
HostName xxxx
User xxxxx

image-20221231103646094

重启vscode,即可免密登录~


参考:https://zhuanlan.zhihu.com/p/425641299


VS Code 远端ssh连接开发
http://baokker.github.io/2022/12/31/VS-Code-远端ssh连接开发/
作者
Baokker
发布于
2022年12月31日
更新于
2022年12月31日
许可协议