ssh无密钥登陆的简单配置

主要目的是把本地的公钥放到远端被登陆的host上。

本地操作:

# ssh-keygen
# ssh-copy-id user@host

远端sshd_config配置:

RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

加速登陆速度的配置(远端):

UsePAM yes
UseDNS no
重启远端sshd服务:
systemctl restart sshd

done!

 
上一篇:SQL Server 修改表结构后无法保存的老问题


下一篇:ECSHOP 数据库结构说明 (适用版本v2.7.3)