此内容没有您所选择的语言版本。
Chapter 5. Configure Public Key based SSH Authentication without a password
Configure public key based SSH authentication without a password for the root user on the first hyperconverged host to all hosts, including itself. Do this for all storage and management interfaces, and for both IP addresses and FQDNs.
5.1. Adding known hosts to the first host 复制链接链接已复制到粘贴板!
When you use SSH to log in to a host from a system that is not already known to the host, you are prompted to add that system as a known host.
- Log in to the first hyperconverged host as the root user.
Perform the following steps for each host in the cluster, including the first host.
Use SSH to log in to a host as the root user.
ssh root@server1.example.com
[root@server1]# ssh root@server1.example.com
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enter
yes
to continue connecting.ssh root@server2.example.com
[root@server1]# ssh root@server2.example.com The authenticity of host 'server2.example.com (192.51.100.28)' can't be established. ECDSA key fingerprint is SHA256:Td8KqgVIPXdTIasdfa2xRwn3/asdBasdpnaGM. Are you sure you want to continue connecting (yes/no)?
Copy to Clipboard Copied! Toggle word wrap Toggle overflow This automatically adds the host key of the first host to the
known_hosts
file on the target host.Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.51.100.28' (ECDSA) to the list of known hosts.
Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added '192.51.100.28' (ECDSA) to the list of known hosts.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enter the password for the root user on the target host to complete the login process.
root@server2.example.com's password: *************** Last login: Mon May 27 10:04:49 2019 [root@server2]#
root@server2.example.com's password: *************** Last login: Mon May 27 10:04:49 2019 [root@server2]#
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Log out of the host.
exit
[root@server2]# exit [root@server1]#
Copy to Clipboard Copied! Toggle word wrap Toggle overflow NoteWhen you log out of the SSH session from the first host to itself, the user and server in the command line prompt stay the same; it is only the session that changes.
exit
[root@server1]# exit [root@server1]#
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
5.2. Generating SSH key pairs without a password 复制链接链接已复制到粘贴板!
Generating a public/private key pair lets you use key-based SSH authentication. Generating a key pair that does not use a password makes it simpler to use Ansible to automate deployment and configuration processes.
Procedure
- Log in to the first hyperconverged host as the root user.
Generate an SSH key that does not use a password.
Start the key generation process.
ssh-keygen -t rsa
# ssh-keygen -t rsa Generating public/private rsa key pair.
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enter a location for the key.
The default location, shown in parentheses, is used if no other input is provided.
Enter file in which to save the key (/home/username/.ssh/id_rsa): <location>/<keyname>
Enter file in which to save the key (/home/username/.ssh/id_rsa): <location>/<keyname>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Specify and confirm an empty passphrase by pressing
Enter
twice.Enter passphrase (empty for no passphrase): Enter same passphrase again:
Enter passphrase (empty for no passphrase): Enter same passphrase again:
Copy to Clipboard Copied! Toggle word wrap Toggle overflow The private key is saved in
<location>/<keyname>
. The public key is saved in<location>/<keyname>.pub
.Copy to Clipboard Copied! Toggle word wrap Toggle overflow WarningYour identification
in this output is your private key. Never share your private key. Possession of your private key allows someone else to impersonate you on any system that has your public key.
5.3. Copying SSH keys 复制链接链接已复制到粘贴板!
To access a host using your private key, that host needs a copy of your public key.
Prerequisites
- Generate a public/private key pair.
- SSH access from the root user on the host to all storage and management interfaces on the same host, using both IP addresses and FQDNs.
Procedure
- Log in to the first host as the root user.
Copy your public key to the host that you want to access.
ssh-copy-id -i <location>/<keyname>.pub <user>@<hostname>
# ssh-copy-id -i <location>/<keyname>.pub <user>@<hostname>
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Enter the password for
<user>@<hostname>
if prompted.WarningMake sure that you use the file that ends in
.pub
. Never share your private key. Possession of your private key allows someone else to impersonate you on any system that has your public key.