ssh使用私钥登录

#生成rsa
ssh-keygen -t rsa

#按需修改,默认即可
#复制SSH密钥到目标主机,开启无密码SSH登录

ssh-copy-id user@host

#本地主机ssh远程服务器

ssh -v root@远程服务器IP

#注意 SSH相关的配置在/etc/ssh/sshd_config
#可以控制是否允许登录
#允许root认证登录
PermitRootLogin yes
#允许密钥认证
RSAAuthentication yes
PubkeyAuthentication yes
#默认公钥存放的位置
AuthorizedKeysFile .ssh/authorized_keys

你可能感兴趣的:(优化,bash,linux运维)