[INS-06006] Passwordless SSH connectivity not set up between the following node(s)

简介: [INS-06006] Passwordless SSH connectivity not set up between the following node(s)

现象

CentOS 7.6 安装Oracle 11.2.0.4 rac,静默安装grid集群软件报错:

[FATAL] [INS-06006] Passwordless SSH connectivity not set up between the following node(s): [oarac2].
   CAUSE: Either passwordless SSH connectivity is not setup between specified node(s) or they are not reachable. Refer to the logs for more details.
   ACTION: Refer to the logs for more details or contact Oracle Support Services.

其它现象:

1、用以下命令已经配置过互信了,而且可以确定互信是配置成功的:

/soft/database/sshsetup/sshUserSetup.sh -user oracle  -hosts "oarac1 oarac2" -advanced exverify –confirm
/soft/database/sshsetup/sshUserSetup.sh -user grid  -hosts "oarac1 oarac2" -advanced exverify –confirm

因为以下命令可以不输入密码就可以返回日期的:

ssh oracle@rac2 date
ssh grid@rac2 date

ssh oracle@rac1 date
ssh grid@rac1 date

2、奇怪的地方是,用ssh互相连接的时候不能连接

ssh oracle@rac2
ssh oracle@rac2
ssh root@rac2

[root@oarac1 ~]#  ssh root@oarac2
ssh: connect to host oarac2 port 22: Connection timed out
[oracle@oarac1 ~]$ ssh oracle@oarac2  -vvvv
OpenSSH_7.4p1, OpenSSL 1.0.2k-fips  26 Jan 2017
debug1: Reading configuration data /home/oracle/.ssh/config
debug1: /home/oracle/.ssh/config line 1: Applying options for *
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 58: Applying options for *
debug2: resolving "oarac2" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to oarac2 [172.20.7.82] port 22.
debug1: connect to address 172.20.7.82 port 22: Connection timed out
ssh: connect to host oarac2 port 22: Connection timed out

防火墙和selinux都已关闭!!!

原因

华为云服务器的安全组拒绝了22端口:

解决

修改该安全组问题得到解决。

其它可能的原因

1、主机名不能大写,需要改为小写,请参考:https://blog.csdn.net/m0_37625564/article/details/115242416 和 MOS:11.2.0.4 runInstaller: [INS-06006] Passwordless SSH connectivity not set up between the following nodes(s) (Doc ID 1597212.1)

2、需要删除虚拟机自带的虚拟网卡virbr0

1、ifconfig virbr0 down
2、brctl delbr virbr0
3、systemctl disable libvirtd
4、重启虚拟机
5、将原来的rm -rf /home/grid/.ssh文件删除,重新Setup,Test即可

3、若是AIX系统,则可以如下解决:

ln -s /usr/bin/ksh /bin/bash
mkdir -p /usr/local/bin
ln -s /usr/bin/ssh-keygen /usr/local/bin/ssh-keygen
ln -s /usr/bin/ssh /usr/local/bin/ssh
ln -s /usr/bin/scp /usr/local/bin/scp

4、用户密码错误

5、环境变量配置错误

目录
相关文章
|
Java 数据库连接 网络安全
【SSH错误整理】node to traverse cannot be null!
【SSH错误整理】node to traverse cannot be null!
149 0
|
Kubernetes Cloud Native 安全
Kubernetes CKS 2021【5】---Cluster Setup - Node Metadata
Kubernetes CKS 2021【5】---Cluster Setup - Node Metadata
Kubernetes CKS 2021【5】---Cluster Setup - Node Metadata
|
2月前
|
JavaScript
NodeJs的安装
文章介绍了Node.js的安装步骤和如何创建第一个Node.js应用。包括从官网下载安装包、安装过程、验证安装是否成功,以及使用Node.js监听端口构建简单服务器的示例代码。
NodeJs的安装
|
1月前
|
JavaScript 开发工具 git
已安装nodejs但是安装hexo报错
已安装nodejs但是安装hexo报错
26 2
|
2月前
|
存储 JavaScript 前端开发
Node 版本控制工具 NVM 的安装和使用(Windows)
本文介绍了NVM(Node Version Manager)的Windows版本——NVM for Windows的安装和使用方法,包括如何安装Node.js的特定版本、列出已安装版本、切换使用不同版本的Node.js,以及其他常用命令,以实现在Windows系统上对Node.js版本的便捷管理。
Node 版本控制工具 NVM 的安装和使用(Windows)
|
1月前
|
Web App开发 JavaScript 前端开发
JavaWeb 22.Node.js_简介和安装
JavaWeb 22.Node.js_简介和安装
|
2月前
|
SQL JavaScript 数据库
sqlite在Windows环境下安装、使用、node.js连接
sqlite在Windows环境下安装、使用、node.js连接
|
2月前
|
JavaScript Linux 开发者
一个用于管理多个 Node.js 版本的安装和切换开源工具
【9月更文挑战第14天】nvm(Node Version Manager)是一个开源工具,用于便捷地管理多个 Node.js 版本。其特点包括:版本安装便捷,支持 LTS 和最新版本;版本切换简单,不影响开发流程;多平台支持,包括 Windows、macOS 和 Linux;社区活跃,持续更新。通过 nvm,开发者可以轻松安装、切换和管理不同项目的 Node.js 版本,提高开发效率。
|
1月前
|
JavaScript 算法 内存技术
如何降低node.js版本(nvm下载安装与使用)
如何降低node.js版本(nvm下载安装与使用)
|
3月前
|
缓存 JavaScript 安全
2022年最新最详细的安装Node.js以及cnpm(详细图解过程、绝对成功)
这篇文章提供了2022年最新最详细的Node.js和cnpm安装教程,包括步骤图解、全局配置路径、cnpm安装命令、nrm的安装与使用,以及如何管理npm源和测试速度。
2022年最新最详细的安装Node.js以及cnpm(详细图解过程、绝对成功)