Linux实现免密码登录
Posted hotMemo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux实现免密码登录相关的知识,希望对你有一定的参考价值。
本机node1
实现本机的免密码登录:
# ssh-keygen -t dsa -P ‘ ‘ -f ~/.ssh/id_dsa
# cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys
将node的公钥复制到node4的/opt/中
# scp ./id_dsa.pub [email protected]:/opt
node4中也要执行# ssh-keygen -t dsa -P ‘ ‘ -f ~/.ssh/id_dsa 目的是为了生成 .ssh文件夹
转到node4,执行cat /opt/id_dsa.pub >> ~/.ssh/authorized_keys
以上是关于Linux实现免密码登录的主要内容,如果未能解决你的问题,请参考以下文章
有啥方法方便用SecureCRT免密码用ssh登录linux主机。