Centos7 ssh配置RSA證書登錄
阿新 • • 發佈:2019-04-16
local entos spa con tar ssh配置 art pub conf
修改sshd配置文件
vim /etc/ssh/sshd_config
#增加以下三項 RSAAuthentication yes PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys
在root目錄下創建.ssh文件夾
[[email protected] /]# mkdir .ssh
在.ssh文件夾下創建authorized_keys文件
[[email protected] /]# cd .ssh [[email protected] .ssh]# touchauthorized_keys
寫入秘鑰
[[email protected] .ssh]# vim authorized_keys
修改authorized_keys執行權限
[[email protected] .ssh]# chmod 644 authorized_keys
重啟ssh服務
[[email protected] .ssh]# systemctl restart sshd
Centos7 ssh配置RSA證書登錄