使用Linux不需要密码scp ssh

一、为了使用scp的时候不需要输入密码,采用ssh另一种用密钥对来验证的方式。

1、使用ssh-keygen命令生成密钥。生成过程中,除了输入密码外,其他都选择默认的值:回车即可。不需要密码的话,输入密码时直接回车,那么密钥设置为空了,ssh或scp时默认用密钥,因为密钥为空,所以直接ssh

[root@xxxroot]#ssh-keygen-trsa

Generatingpublic/privatersakeypair.

Enterfileinwhichtosavethekey(/root/.ssh/id_rsa):

Createddirectory'/root/.ssh'.

Enterpassphrase(emptyfornopassphrase):

Entersamepassphraseagain:

Youridentificationhasbeensavedin/root/.ssh/id_rsa.

Yourpublickeyhasbeensavedin/root/.ssh/id_rsa.pub.

Thekeyfingerprintis:

e0:f0:3b:d3:0a:3d:da:42:01:6a:61:2f:6c:a0:c6:e7root@xxx

[root@xxxroot]#

2、把这个密钥对中的公共密钥访问属性改为755,然后复制到备份的机器上去,并改名为authorized_keys

[root@xxxroot]#chmod755/root/.ssh/id_rsa.pub

[root@xxxroot]#scp/root/.ssh/id_rsa.pub192.168.1.92:/root/.ssh/authorized_keys

root@xxx'spassword:

id_rsa.pub100%2183.2MB/s00:00

[root@xxxroot]#

之后再用sshscpsftp访问那台机器时,就不用输入密码。这样可以利用shell进行自动文件传送了。

相关推荐