Linux SSH 通过密匙连接主机

  1. chmod 400 私钥文件 #将您的私钥文件设置权限为400
  2. ssh -i 私钥文件 系统管理员@服务器IP #对于ubuntu系统管理员为ubuntu;对于redhat,centos,debian,suse用户名为root

例:ssh -i ~/test [email protected] #私钥文件路径为~/test,用户名为ubuntu,服务IP为203.111.111.111

你可能感兴趣的:(Linux)