centos7-ssh免秘钥登录
Posted liuhui-xzz
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos7-ssh免秘钥登录相关的知识,希望对你有一定的参考价值。
实验环境:
主机1:controller ip:192.168.1.10
主机2:compute ip:192.168.2.10
controller主机执行ssh-keygen -t rsa生成秘钥
查看秘钥是否生成
compute主机执行ssh-keygen -t rsa生成秘钥
controller主机给compute主机分发公钥:scp .ssh/id_rsa.pub 192.168.1.20:/root/.ssh/authorized_keys
controller主机执行:cp .ssh/id_rsa.pub .ssh/authorized_keys
两台主机均要修改authorized_keys文件权限为600
chmod 600 .ssh/authorized_keys
controller主机免密码登录compute主机
以上是关于centos7-ssh免秘钥登录的主要内容,如果未能解决你的问题,请参考以下文章