安装11g RAC的grid时,在Test互信的时候报错INS-06006 Passwordless SSH connectivity not set up between the following node(s) 奇怪的是"setup"互信过程却可以成功,只是在"test"过程中报错.可见下图: 这种情况引发原因会有很多种,有环境变量不正确的问题导致,也有用户没有正确配置密码导致,也有两台主机互信通信问题导致. 但是各种检测后,仍然无法解决问题. 从上图中,可以…
解决方法1 参考:11.2.0.4 runInstaller: [INS-06006] Passwordless SSH connectivity not set up between the following nodes(s) (文档 ID 1597212.1) 将/etc/hosts文件里面主机名改为小写即可 解决方法2(在AIX 6.1有案例采用下面的方法解决) ln -s /usr/bin/ksh /bin/bash mkdir -p /usr/local/bin ln -s /usr…
原文地址:http://manjeetdahiya.com/2011/03/03/passwordless-ssh-login/ Consider two machines A and B. We want to connect machine B from A over SSH. To do so we have to specify password every time we connect. Here, we can create a setup where SSHing can be…
今天是2014.05.26,离别N继续使用长今博客.成交一直忙于最近.该条目加上家庭网络还没有缴纳会费,我开始变得不太安全.学习是一个需要冷静情绪.心脏的声音是. 由于改变笔记本,特别需要重新建立Rac周边环境,几篇日志整理一下.我在安装过程中遇到的错误.可能曾经我整理过其它的问题.而这是我本次遇到的. 实验环境: virtual box+ Oracle 11.2.0.4  +  ASM (Openfiler)+ oracle linux 6.4 问题一:在virtual box克隆系统的时候提…
更多内容参考: http://docs.oracle.com/cd/E51111_01/current/acrobat/122ebsmt.zip Preparing for Patching For patches that have manual steps, the patch readme file instructs you to use Oracle Patch Application Assistant (PAA) to create customized instructions…
今天是2014.05.26,离别N久的博客今天继续使用. 近期一直忙着离职.入职另外加上家的网一直没有交费,弄的自己開始不那么安稳.学习就是须要一种心情平静.内心稳妥的去进行. 因换笔记本,特须要又一次搭建Rac环境.这几篇日志整理一下.我在安装过程中遇到的错误.可能曾经我整理过其它的问题,而这是我本次遇到的. 实验环境: virtual box+ Oracle 11.2.0.4  +  ASM (Openfiler)+ oracle linux 6.4 问题一:在virtual box克隆系统…
In present (post production) IT infrastructure many different workstations, servers etc. have to be maintained on a daily basis. When running on *nix operating systems, the main tool to log into and execute arbitrary code on a remote machine is SSH .…
This chapter explains how to install Cygwin and start the SSH daemon on Microsoft Windows hosts. This chapter is applicable only when you want to install a Management Agent on a Microsoft Windows host, using the Add Host Targets Wizard or EM CLI. In…
Ansible并发失败原因,  fork=100. 执行playbook时候没有并发 vim /usr/lib/python2.7/site-packages/ansible/runner/connection_plugins/ssh.py 299 ┊ if C.HOST_KEY_CHECKING and not_in_host_file: 300 ┊ ┊ # lock around the initial SSH connectivity so the user prompt about wh…
设置 SSH Key 登录服务器 通过 ssh 登录服务器,一直都是用的账号和密码,今天看到一篇文章说这样不安全,使用 ssh key 的方式登录则是更好的选择,因此,研究实践了一下,并记录在这里. Ssh key 的基本原理是这样的:在你的本机上创建两个Key文件,一个是私钥,一个是公钥,私钥放在本地,公钥放在远程服务器.当你通过ssh key登录到远程服务器时,远程服务器使用公钥创建了一个加密的随机消息,然后发送到本地机器,本地机器使用私钥解密消息,发送解密的消息到远程服务器.远程服务器验证…