CentOS, 高速设置ssh无password登录

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS, 高速设置ssh无password登录相关的知识,希望对你有一定的参考价值。

首先。保证能够ping通

然后运行例如以下命令,

master登录slave

master上面运行例如以下指令:

2.4 确认本机sshd的配置文件(root)

 

$ vi/etc/ssh/sshd_config

  找到下面内容,并去掉凝视符"#"

RSAAuthenticationyes

 

PubkeyAuthenticationyes

 

AuthorizedKeysFile.ssh/authorized_keys

 


2.5 假设改动了配置文件须要重新启动sshd服务(root)


$ vi/sbin/service sshd restart

 

 假设没有改动,以上步骤略去、

以下继续

2.7 生成证书公私钥的步骤


$ssh-keygen -t dsa -P ‘‘ -f ~/.ssh/id_dsa

$ cat~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys

2.8 測试登陆 ssh localhost

$ ssh localhost

  正常情况下会登陆成功,显示一些成功登陆信息。

 

 最后:

$cat~/.ssh/id_dsa.pub | ssh 远程[email protected]远程serverip ‘cat - >> ~/.ssh/authorized_keys‘

 



以上是关于CentOS, 高速设置ssh无password登录的主要内容,如果未能解决你的问题,请参考以下文章

Linux 批量建立信任关系,实现ssh无password登陆的脚本

SSH用法

无password身份验证:安全简单且部署高速

SSH无password登陆配置

linux下怎样设置ssh无密码登录

Hapoop 搭建 设置虚拟机SSH无密钥登陆