Liunx 使用证书登录 不使用密码

1、生成秘钥

ssh-keygen -t rsa

默认会在用户目录下生成一个公钥和私钥

一定设置秘钥密码!

一定设置秘钥密码!

一定设置秘钥密码!

2、将公钥设置为该服务器的登录公钥

cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys

3、设置ssh,禁止密码登录,改用私钥登录

vi /etc/ssh/sshd_config
RSAAuthentication yes
StrictModes no
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys
PasswordAuthentication no # 禁止密码登录

4、重启ssh服务

systemctl restart sshd.service

※ 下载私钥id_rsa,到要登录服务器的客户端,在使用xshell等工具登录的时候选择该私钥登录即可。

你可能感兴趣的:(Linux,证书,服务器,ssh,SSH)