大数据设置SSH免密钥(转)

Posted defineconst

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了大数据设置SSH免密钥(转)相关的知识,希望对你有一定的参考价值。

设置SSH免密钥

关于ssh免密码的设置,要求每两台主机之间设置免密码,自己的主机与自己的主机之间也要求设置免密码。 这项操作可以在admin用户下执行,执行完毕公钥在/home/admin/.ssh/id_rsa.pub

[[email protected] ~]# ssh-keygen -t rsa
[[email protected] ~]# ssh-copy-id node21
[[email protected] ~]# ssh-copy-id node22
[[email protected] ~]# ssh-copy-id node23

node1与node2为namenode节点要相互免秘钥   HDFS的HA

[[email protected] ~]# ssh-keygen -t rsa
[[email protected] ~]# ssh-copy-id node22
[[email protected] ~]# ssh-copy-id node21
[[email protected] ~]# ssh-copy-id node23

node2与node3为yarn节点要相互免秘钥  YARN的HA

[[email protected] ~]# ssh-keygen -t rsa
[[email protected] ~]# ssh-copy-id node23
[[email protected] ~]# ssh-copy-id node21
[[email protected] ~]# ssh-copy-id node22 

以上是关于大数据设置SSH免密钥(转)的主要内容,如果未能解决你的问题,请参考以下文章

(转) linux实现ssh免密码登录的正确方法

Linux ssh安全设置,及免密码登录

ssh使用密钥免密码登录

设置ssh通过密钥免密码登录Linux服务器

SourceTree提示ssh密钥认证失败的解决

ssh 免密钥失败原因