linux-ssh免密登录配置

1.生成密钥对(一直回车即可)

ssh-keygen -t rsa

2.安装openssh-clients

yum -y install openssh-clients

3. 分发pub

ssh-copy-id -i /root/.ssh/id_rsa.pub root@xxx

4.测试

ssh root@xxx

你可能感兴趣的:(linux,ssh,服务器)