目录
一、ssh原理简单介绍
客户端生成一对公钥和私钥,并将自己的公钥发送到服务器上
其中公钥用来加密,私钥用来解密。
二、ssh免密登入实现步骤详解
我这就以服务器controller和客户端compute来做为例子
2.1、首先在controller上输入ssh-keygen -t rsa
一直敲回车就行,默认会在~/.ssh目录下生成密钥(id_rsa和id_rsa.pub),如果.ssh目录不存在,则会自动创建。
ssh-keygen -t rsa
[root@controller ~]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your ident