ssh免密登录

本文详细介绍了如何设置SSH免密登录,包括添加用户、生成RSA密钥、使用ssh-copy-id传输公钥以及解决可能出现的权限问题和密码过期问题,确保安全便捷地远程登录。
摘要由CSDN通过智能技术生成

添加用户并加入到组
useradd ops
groupadd wheel
usermod -G wheel ops
passwd ops

如果没有wheel组,则创建
groupadd wheel
ssh-keygen
ssh-keygen -t rsa -b 4096 -C “ops@sunits.com”
ssh-copy-id -i ~/.ssh/id_rsa.pub -oPort=10022 ops@172.19.8.53

如果报错如下:
ssh-copy-id -i ~/.ssh/id_rsa.pub -oPort=22 ops@172.19.11.10
/bin/ssh-copy-id: INFO: Source of key(s) to be installed: “/root/.ssh/id_rsa.pub”
/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed – if you are prompted now it is to install the new keys
ops@172.19.11.10’s password:
Could not chdir to home directory /home/ops: No such file or directory

则证明对面没有创建/home/ops文件夹
创建并赋权
mkdir /home/ops
chown ops:ops /home/ops

ssh-copy-id -i ~/.ssh/id_rsa.pub -oPort=10022 ops@172.19.7

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值