码迷,mamicode.com
首页 > 系统相关 > 详细

Linux下SSH免密码登录(转)

时间:2014-05-09 23:10:11      阅读:471      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   

搭建hadoop集群的时候一定会用到的就是SSH免密码登录

bubuko.com,布布扣
[hadoop@hadoop1 ~]$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/home/hadoop/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /home/hadoop/.ssh/id_rsa.
Your public key has been saved in /home/hadoop/.ssh/id_rsa.pub.
The key fingerprint is:
26:96:da:89:60:3d:90:75:43:bf:eb:56:d1:52:d9:68 hadoop@hadoop1
The keys randomart image is:
+--[ RSA 2048]----+
|    ..+      +   |
|   o . o    E .  |
|  o     .  +     |
|   o   . .o .    |
|  o o + S  o     |
| . . * + ..      |
|    o o ..       |
|       ..        |
|       ..        |
+-----------------+
[hadoop@hadoop1 ~]$ cd .ssh
[hadoop@hadoop1 .ssh]$ scp -r id_rsa.pub hadoop@hadoop3:/home/hadoop/.ssh/authorized_keys
The authenticity of host hadoop3 (192.168.127.120) cant be established.
RSA key fingerprint is 03:be:af:08:19:27:6d:15:7e:dd:90:fa:09:b3:14:2f.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added hadoop3,192.168.127.120 (RSA) to the list of known hosts.
hadoop@hadoop3s password: 
id_rsa.pub                                                       100%  396     0.4KB/s   00:00    
[hadoop@hadoop1 .ssh]$ ssh hadoop3
Last login: Sat Aug  4 17:35:22 2012 from hadoop1
bubuko.com,布布扣

如果不能没有成功

方法一:

[hadoop@hadoop3 ~]$ chmod 700 .ssh/
[hadoop@hadoop3 ~]$ cd .ssh
[hadoop@hadoop3 .ssh]$ chmod 600 authorized_keys 

方法二:

[root@hadoop3 .ssh]# vi /etc/ssh/sshd_config 
AuthorizedKeysFile      .ssh/authorized_keys  把前面的#号去掉
[root@hadoop3 .ssh]# /etc/rc.d/init.d/sshd restart
Stopping sshd:                                             [  OK  ]
Starting sshd:                                             [  OK  ]

 

Linux下SSH免密码登录(转),布布扣,bubuko.com

Linux下SSH免密码登录(转)

标签:style   blog   class   code   java   tar   

原文地址:http://www.cnblogs.com/xingmeng/p/3718819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!