建立SSH信任

假设A,B两服务器,现在需要在A机上用root登陆B机,而不需要输入密码,那我们可按照下面的步骤来做:

1.输入命令:ssh-keygen -t rsa

  Generating public/private rsa key pair.

  Enter file in which to save the key (/root/.ssh/id_rsa): /root/.ssh/id_rsa

  Enter passphrase (empty for no passphrase):直接回车

  Enter same passphrase again:直接回车

  Your identification has been saved in /root/.ssh/id_rsa.

  Your public key has been saved in /root/.ssh/id_rsa.pub.

  The key fingerprint is:

  f6:61:a8:27:35:cf:4c:6d:13:22:70:cf:4c:c8:a0:23 root@host1

  这样,在/root/.ssh/路径下会生成id_rsa,和id_rsa.pub,其中id_rsa是密钥,id_rsa.pub是公钥。

2.把在A机生成的id_rsa.pub拷贝到B机上,假设拷贝到B机的临时目录下,如

  scp /root/.ssh/id_rsa.pub root@218.242.214.20:/tmp

3.用root帐号登陆B机,进入其主目录,创建authorized_keys文件,并设置好权限。

  cd ~/.ssh

  cat /tmp/id_rsa.pub >>authorized_keys

  chmod 400 authorized_keys

  rm -f /tmp/id_rsa.pub

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值