让学习成为一种习惯!
全部博文(44)
分类: LINUX
2014-12-04 21:44:09
比如:
在red202上:
[oracle@red202 ~]$ ssh red203 hostname
red203
要测试和对方节点的连通性,同时也要测试节点自身的联通性。
crs是通过远程管理的,对自身节点,在它看来也上远程的。
比如:
在red202上:
[oracle@red202 ~]$ ssh red203 hostname
red203
[oracle@red202 ~]$
[oracle@red202 ~]$
[oracle@red202 ~]$ ssh red202 hostname
The authenticity of host 'red202 (192.168.8.202)' can't be established.
RSA key fingerprint is ae:
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'red202,192.168.8.202' (RSA) to the list of known hosts.
red202
[oracle@red202 ~]$
在red203上测试:
[oracle@red203 ~]$ ssh red202 hostname
red202
[oracle@red203 ~]$
[oracle@red203 ~]$ ssh red203 hostname
The authenticity of host 'red203 (192.168.8.203)' can't be established.
RSA key fingerprint is
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'red203,192.168.8.203' (RSA) to the list of known hosts.
red203
[oracle@red203 ~]$