安装SSH KEY登陆

  1. ssh key 生成
    # 使用RSA算法生成公钥和私钥
    ssh-keygen -t rsa
    
    全部缺省回车
  2. 拷贝公钥到目标电脑
    ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected]
    
  3. 测试
    ssh [email protected]
    

你可能感兴趣的:(安装SSH KEY登陆)