首页 > 代码库 > 2017-06-14 Linux 添加密钥key

2017-06-14 Linux 添加密钥key

第一步:创建公钥与私钥

技术分享

第二步:

创建 .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

第六步:

登录

技术分享

 

2017-06-14 Linux 添加密钥key