linux ssh 对等性配置

简介: linux ssh 对等快速配置

os 版本

Red Hat Enterprise Linux Server release 6.8

配置环境

prod01 192.168.0.230
prod04 192.168.0.197

配置root 对等性

主要命令:ssh-keygen ,ssh-copy-id

配置过程

[root@prod01 ~]# ssh-keygen 
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:
08:36:39:c3:9a:92:c0:ea:a0:f3:8f:87:2f:79:9a:2c root@prod01
The key's randomart image is:
+--[ RSA 2048]----+
|                 |
|.  . .           |
|..  O            |
|o. + = .         |
|= o   . S        |
|+.               |
|o. o             |
|E++oo            |
| .*Bo            |
+-----------------+
[root@prod01 ~]# 
[root@prod01 ~]# 
[root@prod01 ~]# ssh-copy-id 192.168.0.230
The authenticity of host '192.168.0.230 (192.168.0.230)' can't be established.
RSA key fingerprint is a5:27:79:df:14:ab:fe:83:10:ad:59:14:b3:d2:ec:0d.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.0.230' (RSA) to the list of known hosts.
root@192.168.0.230's password: 
Now try logging into the machine, with "ssh '192.168.0.230'", and check in:

  .ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.

[root@prod01 ~]# 
[root@prod01 ~]# scp -r ^C
[root@prod01 ~]# pwd
/root
[root@prod01 ~]# scp -r .ssh/ 192.168.0.197:/root/
The authenticity of host '192.168.0.197 (192.168.0.197)' can't be established.
RSA key fingerprint is ca:a4:56:1e:6d:4f:b1:5f:c0:e1:55:47:6d:9b:5b:22.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.0.197' (RSA) to the list of known hosts.
root@192.168.0.197's password: 
id_rsa.pub                                                                                                                 100%  393     0.4KB/s   00:00    
id_rsa                                                                                                                     100% 1679     1.6KB/s   00:00    
authorized_keys                                                                                                            100%  393     0.4KB/s   00:00    
known_hosts                                                                                                                100%  790     0.8KB/s   00:00    
[root@prod01 ~]# ssh 192.168.0.197 date
Wed Nov 28 09:36:28 CST 2018
[root@prod01 ~]# ssh 192.168.0.230 date
Wed Nov 28 09:36:32 CST 2018
[root@prod01 ~]# 

测试连通性

#PROD01 
[root@prod01 ~]# ssh 192.168.0.230 date
[root@prod01 ~]# ssh 192.168.0.230 date
Wed Nov 28 09:37:15 CST 2018
[root@prod01 ~]# ssh 192.168.0.197 date
Wed Nov 28 09:37:20 CST 2018
#PROD04 
[root@prod04 ~]# ssh 192.168.0.197 date
Wed Nov 28 09:38:01 CST 2018
[root@prod04 ~]# ssh 192.168.0.230 date
Wed Nov 28 09:38:04 CST 2018
[root@prod04 ~]# 
相关文章
|
4天前
|
缓存 资源调度 安全
深入探索Linux操作系统的心脏——内核配置与优化####
本文作为一篇技术性深度解析文章,旨在引领读者踏上一场揭秘Linux内核配置与优化的奇妙之旅。不同于传统的摘要概述,本文将以实战为导向,直接跳入核心内容,探讨如何通过精细调整内核参数来提升系统性能、增强安全性及实现资源高效利用。从基础概念到高级技巧,逐步揭示那些隐藏在命令行背后的强大功能,为系统管理员和高级用户打开一扇通往极致性能与定制化体验的大门。 --- ###
19 9
|
6天前
|
存储 安全 数据管理
如何在 Rocky Linux 8 上安装和配置 Elasticsearch
本文详细介绍了在 Rocky Linux 8 上安装和配置 Elasticsearch 的步骤,包括添加仓库、安装 Elasticsearch、配置文件修改、设置内存和文件描述符、启动和验证 Elasticsearch,以及常见问题的解决方法。通过这些步骤,你可以快速搭建起这个强大的分布式搜索和分析引擎。
13 5
|
8天前
|
监控 Ubuntu Linux
使用VSCode通过SSH远程登录阿里云Linux服务器异常崩溃
通过 VSCode 的 Remote - SSH 插件远程连接阿里云 Ubuntu 22 服务器时,会因高 CPU 使用率导致连接断开。经排查发现,VSCode 连接根目录 ".." 时会频繁调用"rg"(ripgrep)进行文件搜索,导致 CPU 负载过高。解决方法是将连接目录改为"root"(或其他具体的路径),避免不必要的文件检索,从而恢复正常连接。
|
20天前
|
Java Linux 网络安全
NIFI在Linux服务区上的部署配置过程是什么?
【10月更文挑战第21天】NIFI在Linux服务区上的部署配置过程是什么?
36 2
|
1月前
|
Ubuntu Linux 编译器
Linux/Ubuntu下使用VS Code配置C/C++项目环境调用OpenCV
通过以上步骤,您已经成功在Ubuntu系统下的VS Code中配置了C/C++项目环境,并能够调用OpenCV库进行开发。请确保每一步都按照您的系统实际情况进行适当调整。
257 3
|
1月前
|
监控 安全 网络协议
快速配置Linux云服务器
【10月更文挑战第3天】快速配置Linux云服务器
|
2月前
|
Oracle Java 关系型数据库
Linux下JDK环境的配置及 bash: /usr/local/java/bin/java: cannot execute binary file: exec format error问题的解决
如果遇到"exec format error"问题,文章建议先检查Linux操作系统是32位还是64位,并确保安装了与系统匹配的JDK版本。如果系统是64位的,但出现了错误,可能是因为下载了错误的JDK版本。文章提供了一个链接,指向Oracle官网上的JDK 17 Linux版本下载页面,并附有截图说明。
Linux下JDK环境的配置及 bash: /usr/local/java/bin/java: cannot execute binary file: exec format error问题的解决
|
2月前
|
Linux 编译器 开发工具
快速在linux上配置python3.x的环境以及可能报错的解决方案(python其它版本可同样方式安装)
这篇文章介绍了在Linux系统上配置Python 3.x环境的步骤,包括安装系统依赖、下载和解压Python源码、编译安装、修改环境变量,以及常见安装错误的解决方案。
121 1
|
1月前
|
应用服务中间件 Linux Shell
Linux 配置 Nginx 服务的详细步骤,绝对干货
Linux 配置 Nginx 服务的详细步骤,绝对干货
70 0
|
1月前
|
Unix Linux Go
Linux 使用Yum安装Go和配置环境
Linux 使用Yum安装Go和配置环境