SSH 密钥登录

# 建立密钥对(这里是在root用户下)
ssh-keygen

# 安装公钥
cd ~/.ssh
cat id_rsa.pub >> authorized_keys
# 确保权限正确
chmod 600 authorized_keys
chmod 700 ~/.ssh

# 配置文件
vi /etc/ssh/sshd_config
RSAAuthentication yes
PubkeyAuthentication yes
PermitRootLogin yes
# 可以关闭密码登录
PasswordAuthentication no

# 重启SSH服务
service sshd restart
posted @ 2022-03-19 10:56  qianbuhan  阅读(34)  评论(0编辑  收藏  举报