Linux 配置root 用户 ssh 免密登陆
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
场景:
机器A:192.168.2.111
机器B:192.168.2.200
需要在机器A通过ssh免密登陆到机器B
注意:如果之前生成过公钥私钥就不要再生成了,不然会导致之前所配置的免密登陆失效,直接通过第三步 ssh-copy-id 命令发送给B机器就好了
1,登陆A机器,通过命令 ssh-keygen -t rsa 生成公钥和私钥对,输入命令后直接按三次确认键就能看到下面输出界面
[root@localhost ~]# cd
[root@localhost ~]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:OyJ0tdz0H34iXRmfXzVtkYrVPGlQxbhDR/g46X8xc1E root@localhost.localdomain
The key's randomart image is:
+---[RSA 2048]----+
| .=B*|
| .+BE|
| . . o.oO*|
| o + o .*oO|
| . . S . ...==|
| . . . +.*+|
| . . o . =.B|
| . . . . oo|
| .|
+----[SHA256]-----+
[root@localhost ~]#
2,之后进入到.ssh文件夹下,就能看到生成的公钥和私钥文件
[root@localhost ~]# cd .ssh/
[root@localhost .ssh]# ll
总用量 8
-rw-------. 1 root root 1679 8月 13 11:03 id_rsa
-rw-r--r--. 1 root root 408 8月 13 11:03 id_rsa.pub
3,接下来通过命令 ssh-copy-id root@192.168.2.200 将公钥文件发送给机器B,弹出的框中输入B机器密码即可
如果需要双向免密登陆,直接登陆B机器按照步骤生成公钥私钥,然后通过ssh-copy-id命令将公钥发送给A机器就好了
4,可以直接将B机器ip设置到hosts里面,下次直接通过别名登陆就好了
一、编辑 /etc/hosts 文件
vim /etc/hosts
将192.168.2.200 b 添加到文件末尾
保存退出。
然后直接通过 ssh b 命令就能登陆到b机器了
生成秘钥后需要保证 .ssh目录的权限必须是700 , .ssh/authorized_keys文件权限必须是600,如果不是需要手动通过下面命令更改权限
chmod 700 ~/.ssh
chmod 600 ~/.ssh/authorized_keys
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献3条内容
所有评论(0)