vscode ssh 远程免密登录开发

  1. 存放代码的机器运行 sshd, vscode 所在机器保证可以通过 ssh 登录服务器
  2. vscode 机器通过 ssh-keygen 生成 ssh 公私钥对(已有可以忽略)
  3. 将客户端的 id_rsa.pub 加入到服务器的鉴权队列 cat id_rsa.pub >> authorized_keys
  4. vscode 配置ssh登录即可.ctrl+p, remote-ssh: open ssh configuration file…
Host ubuntu-ssh-login
  HostName xxx.xxx.xxx.xxx
  Port 22
  User user_name
  IdentityFile "C:\Users\xxx\.ssh\id_rsa"

你可能感兴趣的:(工具类,vscode,ssh,ide)