第一步:创建公钥与私钥
第二步:
创建 .ssh 目录与authorized_keys文件
mkdir /root/.ssh
vi /root/.ssh/authorized_keys
第三步:
将私钥保存,公钥存储于 authorized_keys中
第四步:
授权
chmod 700 /root/.ssh
chmod 600 /root/.ssh/*
第五步:
关闭防火墙
vi /etc/selinux/config 中的SELIUNX=disabled
setenforce 0
iptables -F
service iptables save
第六步:
登录
时间: 2024-11-06 16:20:12