Chinaunix首页 | 论坛 | 博客
  • 博客访问: 91922
  • 博文数量: 16
  • 博客积分: 607
  • 博客等级: 中士
  • 技术积分: 190
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-20 08:43
文章分类

全部博文(16)

文章存档

2011年(6)

2010年(10)

我的朋友

分类: LINUX

2010-07-23 16:53:46

SSH免密码登录

例:A机登录B

1.A机中

#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

Enter same passphrase again:                             <---直接按enter

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:           

e8:8a:5e:ae:c7:13:45:d0:81:cd:3f:e6:1e:f8:88:5a root@localhost.localdomain

执行完毕,会在/root/.ssh/下面生成id_rsa.pub

2.B机中创建/root/.ssh/authorized_keys,将Aid_rsa.pub中的内容,拷贝到B/root/.ssh/authorized_keys

3.B机中,将/etc/ssh/sshd_config中的PermitRootLogin yes开启。

4.B机中#service sshd restart
阅读(847) | 评论(1) | 转发(0) |
0

上一篇:GCC的安装顺序

下一篇:Bind基本配置

给主人留下些什么吧!~~

chinaunix网友2010-07-24 22:10:17

请教下,我有一个用户和root有着相同的UID和GID,我怎么使用这个方法来免密码登入?我试过了,比起作用,ssd好像不会读取该用户~/.ssh/authorized_keys里的内容