Chinaunix首页 | 论坛 | 博客
  • 博客访问: 26166064
  • 博文数量: 2065
  • 博客积分: 10377
  • 博客等级: 上将
  • 技术积分: 21525
  • 用 户 组: 普通用户
  • 注册时间: 2008-11-04 17:50
文章分类

全部博文(2065)

文章存档

2012年(2)

2011年(19)

2010年(1160)

2009年(969)

2008年(153)

分类: LINUX

2010-05-22 09:47:56

有些时候,我们在复制/移动文件到另一台机器时会用到scp,因为它比较安全。但如果每次

都要输入密码,就比较烦了,尤其是在 script里。不过,ssh有另一种用密钥对来验证的方

式。下面写出生成密匙对的过程,供大家参考。

第一步:生成密匙对,我用的是rsa的密钥。使用命令 "ssh-keygen -t rsa"


  [root@test ~]$ ssh-keygen -t rsa
  Generating public/private rsa key pair.
  Enter file in which to save the key (/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:
  46:ed:89:18:f8:30:04:41:f5:72:b2:e6:66:27:20:73 root@test.test.com
  [root@test ~]$
生成的过程中提示输入密钥对保存位置,直接回车,接受默认值就行了。接着会提示输入一

个不同于你 的password的密码,直接回车,让它空着。 这样,密钥对就生成完了。

其中公共密钥保存在 ~/.ssh/id_rsa.pub
私有密钥保存在 ~/.ssh/id_rsa

第二步:改一下 .ssh 目录的权限,使用命令 "chmod 755 ~/.ssh"

[root@test ~]$ chmod 755 ~/.ssh
[root@test ~]$

第三步:
之后把这个密钥对中的公共密钥复制到你要访问的机器上去,并保存为

~/.ssh/authorized_keys


[root@test ~]$ scp ~/.ssh/id_rsa.pub test2:/root/.ssh/authorized_keys
root@test2's password:
id_rsa.pub                                    100%  228     3.2MB/s   00:00
[root@test ~]$
之这样就大功告成了。之后你再用 ssh scp sftp 之类的访问那台机器时,就不用输入密码
了,用在script上更是方便。


可以采用哦!在以后如果A与B登录的时候就不需要每次再输入密码了非常方便!

阅读(569) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-05-25 19:43:25

我试过了,可是不行呢? WeiYou-102:~ # ssh root@10.137.11.103 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: UNPROTECTED PRIVATE KEY FILE! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ Permissions 0755 for '/root/.ssh/id_rsa' are too open. It is recommended that your private key files are NOT accessible by others. This private key will be ignored. bad permissions: ignore key: /root/.ssh/id_rsa Enter passphrase for key '/root/.ssh/id_rsa': P