针对最近黑客攻击数据库的解决方案和预防建议

最近有部分黑客采用各种手段对数据库进行sql注入或者直接加密等损坏方式攻击客户的数据库。
需要说明的是这里并非黑客用多么高深的手段或者技能攻破Oracle数据库或者由于Oracle Bug引起的,Oracle被无辜躺枪
相反,这类攻击完全是使用盗版客户端工具或者客户网络(或者主机)安全有漏洞,入侵主机或者直接使用盗版客户端(部分网上下载的非官方工具已经是被黑客篡改过的)对数据库登录时进行SQL注入的方法。

.
常见的攻击手法和案例:
.
攻击手法 1 :黑客攻入客户网络,进入客户主机,在操作系统上直接对数据库文件进行“加密”
现象:


409150050134754533


.
攻击手法 2 :也有可能是使用非官方的网上下载的被污染的工具连接数据库,然后“被执行”了类似下面的在数据库中执行恶意代码而注入损坏数据sql语句
(例如,注入一些存储过程,trigger或者其他DDL,DML等等)
现象:
在数据库的日志中,可能获得的信息如下:

ORA-00604: error occurred at recursive SQL level 1
ORA-20315: 你的数据库已被SQL RUSH Team锁死 发送5个比特币到这个地址 166xk1FXMB2g8JxBVF5T4Aw1Z5aZ6vSE (大小写一致)
之后把你的Oracle SID邮寄地址 sqlrush@mail.com 我们将让你知道如何解锁你的数据库

.

Hi buddy, your database was hacked by SQL RUSH Team, send 5 bitcoin to address 166xk1FXMB2g8JxBVF5T4Aw1Z5aZ6vSE (case sensitive),
after that send your Oracle SID to mail address sqlrush@mail.com, we will let you know how to unlock your database.
ORA-06512: at “XXX.DBMS_CORE_INTERNAL “, line 27
ORA-06512: at line 2

.
此类攻击的效果有1200天的潜伏期:
黑客代码中有类似下面的判断条件:IF (DATE1>=1200) THEN
因此,建议客户检查数据库的异常对象,如果发现异常对象,建议直接删除相关对象

.
对于上述攻击,我们的客户遇到的解决方法大致如下:
第一 :被攻击的数据库用户中没有重要的业务对象时
1.这段代码的运行都是通过job来操作的,高版本默认的job_queue_processes已经是1000了,所以当时通过操作系统看到后台有700多个job进程在跑这段代码。
通过把job_queue_processes设置为0,重启实例它这段脚本就跑不起来了。只有没有跑这段代码,存储过程等对象才能删除。
2.从操作系统登录到数据库(sys用户),找出非法的存储过程,job定义,触发器,把它们都drop就可以,
当时由于这个客户在受攻击的数据库用户下面没有业务对象,把这个用户drop,重建就可以了。
上述的整个处理过程没有数据丢失,之所以耗时这么长是因为客户担心丢失先做一次备份。
.
第二 :当被攻击的数据库用户中有重要业务对象时:
1. 如果是对文件加密,根据具体客户情况,可以考虑比对正常文件(没有被攻击的数据库的文件)和有问题文件比对,找到端倪后,拼接等等思路
2. 根据实际情况,如果上面的“1.”不可行,那么考虑停止黑客的异常job,过程,触发器等等(可以采用倒推等方式或者直接查询DBA_OBJECTS 中的LAST_DDL时间),
根据实际情况,如果有必要的话,还可以根据报错时间点进行logminer来进行检查和确认损坏过程,
并找到黑客备份的系统表,进行还原(请在Oracle Support或者专业DBA指导下完成)。
3. 如果上述的“1.”和“2.”都不可行,那么可以考虑使用各种可以进行逻辑挖掘的工具挖出数据。
.
当然根据不同的黑客入侵方式,可能还有其他解决方法,这里要重点讨论的是我们如何防患于未然:
1,请使用正版工具或者使用Oracle官方推荐的免费SQL客户端工具:
http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
上面地址是官网正版下载地址,功能非常强大,完美支持12c和以前的数据库版本,并且免费。
.
2,如果发现类似问题,尽量保护现场,并根据报错信息的时间点,追查原因
.
3,重要数据库一定要备份,如果配置了ADG,备库建议开闪回,如此,很多问题处理上就简单多了。
.
4,对于数据库用户的dba等高级权限应该有效管理
.
5.请注意,有些黑客会设置一个潜伏期,例如上面的例子,该攻击的效果存在1200天的潜伏期:
黑客代码中有类似下面的判断条件:IF (DATE1>=1200) THEN
因此,建议客户检查数据库的异常对象,如果发现异常对象,建议直接删除相关恶意注入的数据库对象(procedure,job,trigger等等)

.
有相关问题的朋友或者客户,请与我联系。

发表在 Database | 标签为 , , | 留下评论

CentOS7.2(RHEL 7.2)的CPU占用高(%system 占用高)

开机后,发现节点1的CPU使用率很高:

[root@lunar1 ~]# sar -u 1 10
Linux 3.10.0-327.el7.x86_64 (lunar1.oracle.com)         03/22/2016      _x86_64_        (2 CPU)

06:16:57 PM     CPU     %user     %nice   %system   %iowait    %steal     %idle
06:16:58 PM     all      0.55      0.00     78.14      0.00      0.00     21.31
06:16:59 PM     all      0.00      0.00     73.91      0.00      0.00     26.09
06:17:00 PM     all      0.52      0.00     81.68      0.00      0.00     17.80
06:17:01 PM     all      0.00      0.00     82.81      0.00      0.00     17.19
06:17:02 PM     all      0.00      0.00     84.13      0.00      0.00     15.87
06:17:03 PM     all      0.55      0.00     70.72      0.00      0.00     28.73
^C

06:17:03 PM     all      0.00      0.00     57.14      0.00      0.00     42.86
Average:        all      0.26      0.00     77.88      0.00      0.00     21.86
[root@lunar1 ~]# 

节点2的也比较高:

[root@lunar2 ~]# sar -u 1 10
Linux 3.10.0-327.el7.x86_64 (lunar2.oracle.com)         03/22/2016      _x86_64_        (2 CPU)

06:17:20 PM     CPU     %user     %nice   %system   %iowait    %steal     %idle
06:17:21 PM     all      0.50      0.00      0.50      0.00      0.00     99.00
06:17:22 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:17:23 PM     all     55.44      0.00      6.74      0.00      0.00     37.82
06:17:24 PM     all     59.79      0.00     11.34      0.00      0.00     28.87
06:17:25 PM     all     38.38      0.00     28.11      0.54      0.00     32.97
06:17:26 PM     all      8.67      0.00      8.67      0.00      0.00     82.65
06:17:27 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:17:28 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:17:29 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:17:30 PM     all      0.50      0.00      1.00      0.00      0.00     98.51
Average:        all     15.90      0.00      5.43      0.05      0.00     78.62
[root@lunar2 ~]# 

在节点1检查哪些进程使用CPU资源较多:

Tasks: 287 total,   4 running, 283 sleeping,   0 stopped,   0 zombie
%Cpu(s):  0.4 us, 80.8 sy,  0.0 ni, 18.8 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
KiB Mem :  3145636 total,  1630448 free,  1073504 used,   441684 buff/cache
KiB Swap:  4190204 total,  4190204 free,        0 used.  2000056 avail Mem 

  PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND                                                                                                                     
 3205 oracle    20   0  214120   1828   1328 R  79.1  0.1   3:40.27 /usr/bin/VBoxClient --clipboard                                                                                             
 3208 root      20   0  222392   1844   1312 R  78.7  0.1   3:40.10 /usr/bin/VBoxClient --clipboard                                                                                             
 3279 oracle    20   0  147044   1292    884 S   0.3  0.0   0:00.26 /usr/bin/VBoxClient --draganddrop                                                                                           
 3850 grid      20   0  322112   6092   4604 S   0.3  0.2   0:00.04 /usr/libexec/goa-identity-service                                                                                           
 7179 root      20   0  146308   2336   1520 R   0.3  0.1   0:00.02 top -c                                                                                                                      
    1 root      20   0  189244   4316   2380 S   0.0  0.1   0:01.54 /usr/lib/systemd/systemd --switched-root --system --deserialize 22                                                          
    2 root      20   0       0      0      0 S   0.0  0.0   0:00.00 [kthreadd]                                                                                                                  
    3 root      20   0       0      0      0 S   0.0  0.0   0:00.15 [ksoftirqd/0]                                                                                                               
    5 root       0 -20       0      0      0 S   0.0  0.0   0:00.00 [kworker/0:0H]                                                                                                              
    7 root      rt   0       0      0      0 S   0.0  0.0   0:00.38 [migration/0]                                                                                                               
    8 root      20   0       0      0      0 S   0.0  0.0   0:00.00 [rcu_bh]                                  

检查果然vnc都自动开启:

[root@lunar1 ~]# systemctl status vncserver@:1.service
● vncserver@:1.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:1.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2016-03-22 18:12:24 CST; 6min ago
  Process: 1420 ExecStartPre=/bin/sh -c /usr/bin/vncserver -kill :1 > /dev/null 2>&1 || : (code=exited, status=0/SUCCESS)
 Main PID: 1832 (Xvnc)
   CGroup: /system.slice/system-vncserver.slice/vncserver@:1.service
           ‣ 1832 /usr/bin/Xvnc :1 -desktop lunar1.oracle.com:1 (root) -auth /root/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /root/.vnc/passwd -rfbport 5901 -fp catalogue:/etc/...

Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Started Remote desktop service (VNC).
[root@lunar1 ~]# 
[root@lunar1 ~]# systemctl status vncserver@:2.service
● vncserver@:2.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:2.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2016-03-22 18:12:24 CST; 6min ago
  Process: 1425 ExecStartPre=/bin/sh -c /usr/bin/vncserver -kill :2 > /dev/null 2>&1 || : (code=exited, status=0/SUCCESS)
 Main PID: 1833 (Xvnc)
   CGroup: /system.slice/system-vncserver.slice/vncserver@:2.service
           ‣ 1833 /usr/bin/Xvnc :2 -desktop lunar1.oracle.com:2 (grid) -auth /home/grid/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /home/grid/.vnc/passwd -rfbport 5902 -fp catal...

Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Started Remote desktop service (VNC).
[root@lunar1 ~]# 
[root@lunar1 ~]# systemctl status vncserver@:3.service
● vncserver@:3.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:3.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2016-03-22 18:12:24 CST; 6min ago
  Process: 1423 ExecStartPre=/bin/sh -c /usr/bin/vncserver -kill :3 > /dev/null 2>&1 || : (code=exited, status=0/SUCCESS)
 Main PID: 1828 (Xvnc)
   CGroup: /system.slice/system-vncserver.slice/vncserver@:3.service
           ‣ 1828 /usr/bin/Xvnc :3 -desktop lunar1.oracle.com:3 (oracle) -auth /home/oracle/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /home/oracle/.vnc/passwd -rfbport 5903 -fp...

Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Started Remote desktop service (VNC).
[root@lunar1 ~]# 

停止vnc并设置开机不启动:

[root@lunar1 ~]# systemctl stop  vncserver@:1.service
[root@lunar1 ~]# systemctl stop  vncserver@:2.service
[root@lunar1 ~]# systemctl stop  vncserver@:3.service
[root@lunar1 ~]# systemctl disable vncserver@:1.service
Removed symlink /etc/systemd/system/multi-user.target.wants/vncserver@:1.service.
[root@lunar1 ~]# systemctl disable vncserver@:2.service
Removed symlink /etc/systemd/system/multi-user.target.wants/vncserver@:2.service.
[root@lunar1 ~]# systemctl disable vncserver@:3.service
Removed symlink /etc/systemd/system/multi-user.target.wants/vncserver@:3.service.
[root@lunar1 ~]# systemctl status vncserver@:1.service
● vncserver@:1.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:1.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Started Remote desktop service (VNC).
Mar 22 18:20:48 lunar1.oracle.com systemd[1]: Stopping Remote desktop service (VNC)...
Mar 22 18:20:49 lunar1.oracle.com systemd[1]: Stopped Remote desktop service (VNC).
[root@lunar1 ~]# systemctl status vncserver@:2.service
● vncserver@:2.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:2.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Started Remote desktop service (VNC).
Mar 22 18:20:53 lunar1.oracle.com systemd[1]: Stopping Remote desktop service (VNC)...
Mar 22 18:20:53 lunar1.oracle.com systemd[1]: Stopped Remote desktop service (VNC).
[root@lunar1 ~]# systemctl status vncserver@:3.service
● vncserver@:3.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:3.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:24 lunar1.oracle.com systemd[1]: Started Remote desktop service (VNC).
Mar 22 18:20:57 lunar1.oracle.com systemd[1]: Stopping Remote desktop service (VNC)...
Mar 22 18:20:57 lunar1.oracle.com systemd[1]: Stopped Remote desktop service (VNC).
[root@lunar1 ~]# 

优化效果非常明显,可以看到CPU基本空闲了,符合现在的情况(Oracle的CRS还没启动呢):

[root@lunar1 ~]# sar -u 1 10
Linux 3.10.0-327.el7.x86_64 (lunar1.oracle.com)         03/22/2016      _x86_64_        (2 CPU)

06:21:47 PM     CPU     %user     %nice   %system   %iowait    %steal     %idle
06:21:48 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:21:49 PM     all      0.00      0.00      0.50      0.00      0.00     99.50
06:21:50 PM     all      1.01      0.00      1.52      0.00      0.00     97.47
06:21:51 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:21:53 PM     all      0.50      0.00      0.50      0.00      0.00     99.00
06:21:54 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:21:55 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:21:56 PM     all      1.51      0.00      3.52      0.00      0.00     94.97
06:21:57 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:21:58 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
Average:        all      0.30      0.00      0.60      0.00      0.00     99.10
[root@lunar1 ~]# 

再来看看节点2:

Tasks: 284 total,   2 running, 282 sleeping,   0 stopped,   0 zombie
%Cpu(s):  4.3 us,  0.7 sy,  0.0 ni, 95.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
KiB Mem :  3145636 total,  1645972 free,  1070152 used,   429512 buff/cache
KiB Swap:  4190204 total,  4190204 free,        0 used.  2003876 avail Mem 

  PID USER      PR  NI    VIRT    RES    SHR S  %CPU %MEM     TIME+ COMMAND                                                                                                                     
 3643 grid      20   0 1442740 154600  44292 S   3.3  4.9   0:06.48 /usr/bin/gnome-shell                                                                                                        
 3651 oracle    20   0 1593832 154216  44296 S   3.0  4.9   0:06.94 /usr/bin/gnome-shell                                                                                                        
 3520 root      20   0 1580060 154488  43804 S   2.7  4.9   0:06.18 /usr/bin/gnome-shell                                                                                                        
   12 root      20   0       0      0      0 S   0.3  0.0   0:00.30 [rcuos/0]                                                                                                                   
 1023 root      20   0 1721880 153028   9952 S   0.3  4.9   0:09.38 /u01/app/12.1.0.2/grid/jdk/jre/bin/java -Xms128m -Xmx512m -classpath /u01/app/12.1.0.2/grid/tfa/lunar2/tfa_home/jlib/RATFA+ 
 1873 oracle    20   0  222688  24820   8192 S   0.3  0.8   0:00.22 /usr/bin/Xvnc :3 -desktop lunar2.oracle.com:3 (oracle) -auth /home/oracle/.Xauthority -geometry 1024x768 -rfbwait 30000 -r+ 
 3299 root      20   0  220832   1340    892 S   0.3  0.0   0:00.31 /usr/bin/VBoxClient --draganddrop                                                                                           
 7208 root      20   0  146308   2316   1512 R   0.3  0.1   0:00.11 top -c                                                                                                                      
    1 root      20   0  189236   4292   2380 S   0.0  0.1   0:01.56 /usr/lib/systemd/systemd --switched-root --system --deserialize 21                                                          
    2 root      20   0       0      0      0 S   0.0  0.0   0:00.00 [kthreadd]                                                                                                                  
    3 root      20   0       0      0      0 S   0.0  0.0   0:00.02 [ksoftirqd/0]                                                                                                               
    5 root       0 -20       0      0      0 S   0.0  0.0   0:00.00 [kworker/0:0H]                                                                                                              
    7 root      rt   0       0      0      0 S   0.0  0.0   0:00.67 [migration/0]                                                                                                               
    8 root      20   0       0      0      0 S   0.0  0.0   0:00.00 [rcu_bh]                                                                                                                    
    9 root      20   0       0      0      0 S   0.0  0.0   0:00.00 [rcuob/0]                                                                                                                   
   10 root      20   0       0      0      0 S   0.0  0.0   0:00.00 [rcuob/1]                                                                                                                   
   11 root      20   0       0      0      0 R   0.0  0.0   0:00.47 [rcu_sched]                         

同样的方法,也停止vnc服务和vnc的开机自动启动:

[root@lunar2 ~]# systemctl status vncserver@:1.service
● vncserver@:1.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:1.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2016-03-22 18:12:23 CST; 10min ago
  Process: 1470 ExecStartPre=/bin/sh -c /usr/bin/vncserver -kill :1 > /dev/null 2>&1 || : (code=exited, status=0/SUCCESS)
 Main PID: 1872 (Xvnc)
   CGroup: /system.slice/system-vncserver.slice/vncserver@:1.service
           ‣ 1872 /usr/bin/Xvnc :1 -desktop lunar2.oracle.com:1 (root) -auth /root/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /root/.vnc/passwd -rfbport 5901 -fp catalogue:/etc/...

Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Started Remote desktop service (VNC).
[root@lunar2 ~]# systemctl status vncserver@:2.service
● vncserver@:2.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:2.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2016-03-22 18:12:23 CST; 10min ago
  Process: 1469 ExecStartPre=/bin/sh -c /usr/bin/vncserver -kill :2 > /dev/null 2>&1 || : (code=exited, status=0/SUCCESS)
 Main PID: 1869 (Xvnc)
   CGroup: /system.slice/system-vncserver.slice/vncserver@:2.service
           ‣ 1869 /usr/bin/Xvnc :2 -desktop lunar2.oracle.com:2 (grid) -auth /home/grid/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /home/grid/.vnc/passwd -rfbport 5902 -fp catal...

Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Started Remote desktop service (VNC).
[root@lunar2 ~]# systemctl status vncserver@:3.service
● vncserver@:3.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:3.service; enabled; vendor preset: disabled)
   Active: active (running) since Tue 2016-03-22 18:12:23 CST; 10min ago
  Process: 1474 ExecStartPre=/bin/sh -c /usr/bin/vncserver -kill :3 > /dev/null 2>&1 || : (code=exited, status=0/SUCCESS)
 Main PID: 1873 (Xvnc)
   CGroup: /system.slice/system-vncserver.slice/vncserver@:3.service
           ‣ 1873 /usr/bin/Xvnc :3 -desktop lunar2.oracle.com:3 (oracle) -auth /home/oracle/.Xauthority -geometry 1024x768 -rfbwait 30000 -rfbauth /home/oracle/.vnc/passwd -rfbport 5903 -fp...

Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Started Remote desktop service (VNC).
[root@lunar2 ~]# 

停止vnc服务和进制vnc开机自动启动:

[root@lunar2 ~]# systemctl disable vncserver@:1.service
systemctl stop  vncserver@:1.service
systemctl status vncserver@:1.service
Removed symlink /etc/systemd/system/multi-user.target.wants/vncserver@:1.service.
[root@lunar2 ~]# systemctl stop  vncserver@:1.service
[root@lunar2 ~]# systemctl status vncserver@:1.service
● vncserver@:1.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:1.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Started Remote desktop service (VNC).
Mar 22 18:23:23 lunar2.oracle.com systemd[1]: Stopping Remote desktop service (VNC)...
Mar 22 18:23:23 lunar2.oracle.com systemd[1]: Stopped Remote desktop service (VNC).
[root@lunar2 ~]# systemctl disable vncserver@:2.service
systemctl stop  vncserver@:2.service
systemctl status vncserver@:2.service
Removed symlink /etc/systemd/system/multi-user.target.wants/vncserver@:2.service.
[root@lunar2 ~]# systemctl stop  vncserver@:2.service
[root@lunar2 ~]# systemctl status vncserver@:2.service
● vncserver@:2.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:2.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Started Remote desktop service (VNC).
Mar 22 18:23:28 lunar2.oracle.com systemd[1]: Stopping Remote desktop service (VNC)...
Mar 22 18:23:28 lunar2.oracle.com systemd[1]: Stopped Remote desktop service (VNC).
[root@lunar2 ~]# 
[root@lunar2 ~]# systemctl disable vncserver@:3.service
systemctl stop  vncserver@:3.service
systemctl status vncserver@:3.service

Removed symlink /etc/systemd/system/multi-user.target.wants/vncserver@:3.service.
[root@lunar2 ~]# systemctl stop  vncserver@:3.service
[root@lunar2 ~]# systemctl status vncserver@:3.service
● vncserver@:3.service - Remote desktop service (VNC)
   Loaded: loaded (/usr/lib/systemd/system/vncserver@:3.service; disabled; vendor preset: disabled)
   Active: inactive (dead)

Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Starting Remote desktop service (VNC)...
Mar 22 18:12:23 lunar2.oracle.com systemd[1]: Started Remote desktop service (VNC).
Mar 22 18:23:32 lunar2.oracle.com systemd[1]: Stopping Remote desktop service (VNC)...
Mar 22 18:23:32 lunar2.oracle.com systemd[1]: Stopped Remote desktop service (VNC).
[root@lunar2 ~]# 
[root@lunar2 ~]# 

看一下节点2的优化效果:

[root@lunar2 ~]# sar -u 1 10
Linux 3.10.0-327.el7.x86_64 (lunar2.oracle.com)         03/22/2016      _x86_64_        (2 CPU)

06:24:01 PM     CPU     %user     %nice   %system   %iowait    %steal     %idle
06:24:02 PM     all      0.51      0.00      0.51      0.00      0.00     98.99
06:24:03 PM     all      0.50      0.00      1.01      0.00      0.00     98.49
06:24:04 PM     all      0.00      0.00      0.50      0.00      0.00     99.50
06:24:05 PM     all      0.44      0.00      0.00      0.00      0.00     99.56
06:24:06 PM     all      0.00      0.00      0.50      0.00      0.00     99.50
06:24:07 PM     all      0.50      0.00      1.51      0.00      0.00     97.99
06:24:08 PM     all      0.50      0.00      0.50      0.00      0.00     99.00
06:24:09 PM     all      0.00      0.00      0.50      0.00      0.00     99.50
06:24:10 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
06:24:11 PM     all      0.00      0.00      0.00      0.00      0.00    100.00
Average:        all      0.25      0.00      0.50      0.00      0.00     99.26
[root@lunar2 ~]# 
发表在 Linux | 标签为 , , , , | 留下评论

Oracle 12.1 RAC 系列 – 配置第二个网络和相应的SCAN2

在配置ADG或者使用oracle 的集群管理应用的HA时(比如OGG),我们可能希望使用不同的网络,以避免ADG传输日志等对主生产网络的造成影响。
从11.2开始,我们可以使用crs管理多个网络资源(缺省只有network1),但是SCAN只能在多个网络中的一个上活动(缺省是network1,后续可以指定到不同网络上)。
然后,我们通常会配置专门为ADG传输日志的network2网络,但是在配置连接串时,只能使用vip(因为SCAN通常给主生产上的network1使用)。
.
从12.1开始,我们可以配置多个网络上的多个SCAN,比如我们配置ADG时,在network2上配置SCAN2。
具体配置如下:
–检查网卡接口对应的IP地址:

[root@rac1 ~]# ifconfig | egrep 'eth0' -A 1 | grep 'inet ' | cut -d : -f2 | cut -d ' ' -f1
192.168.56.61
192.168.56.63
[root@rac1 ~]# ifconfig | egrep 'eth2' -A 1 | grep 'inet ' | cut -d : -f2 | cut -d ' ' -f1
192.168.209.61
[root@rac1 ~]# 

[root@rac2 ~]# ifconfig | egrep 'eth0' -A 1 | grep 'inet ' | cut -d : -f2 | cut -d ' ' -f1
192.168.56.62
192.168.56.64
192.168.56.65
[root@rac2 ~]# ifconfig | egrep 'eth2' -A 1 | grep 'inet ' | cut -d : -f2 | cut -d ' ' -f1
192.168.209.62
[root@rac2 ~]# 

–添加新的public网络

[grid@rac1 ~]$ oifcfg getif
eth0  192.168.56.0  global  public
eth1  192.168.60.0  global  cluster_interconnect
[grid@rac1 ~]$ 
[grid@rac1 ~]$ oifcfg setif -global eth2/192.168.209.0:public
[grid@rac1 ~]$ oifcfg getif
eth0  192.168.56.0  global  public
eth1  192.168.60.0  global  cluster_interconnect
eth2  192.168.209.0  global  public
[grid@rac1 ~]$ 

–检查网络定义,缺省只有一个网络定义:network1

[grid@rac1 ~]$ srvctl config network
Network 1 exists
Subnet IPv4: 192.168.56.0/255.255.255.0/eth0, static
Subnet IPv6: 
Ping Targets: 
Network is enabled
Network is individually enabled on nodes: 
Network is individually disabled on nodes: 
[grid@rac1 ~]$ 

–添加新的网络集群资源(a new network cluster resource)

[root@rac1 ~]# ipcalc -bnm 192.168.209.61 255.255.255.0
NETMASK=255.255.255.0
BROADCAST=192.168.209.255
NETWORK=192.168.209.0
[root@rac1 ~]# 
[root@rac1 ~]# srvctl add network -netnum 2 -subnet 192.168.209.0/255.255.255.0/eth2
[root@rac1 ~]# 
[root@rac1 ~]# srvctl config network
Network 1 exists
Subnet IPv4: 192.168.56.0/255.255.255.0/eth0, static
Subnet IPv6: 
Ping Targets: 
Network is enabled
Network is individually enabled on nodes: 
Network is individually disabled on nodes: 
Network 2 exists
Subnet IPv4: 192.168.209.0/255.255.255.0/eth2, static
Subnet IPv6: 
Ping Targets: 
Network is enabled
Network is individually enabled on nodes: 
Network is individually disabled on nodes: 
[root@rac1 ~]# 

这时集群的网络资源中已经配置了两个网络(包括新增加的网络),如果使用“crsctl status res -t”查看,可以看到:

[root@rac1 ~]# crsctl status res -t |grep -A 2 network
ora.net1.network
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.net2.network
               OFFLINE OFFLINE      rac1                     STABLE
               OFFLINE OFFLINE      rac2                     STABLE
[root@rac1 ~]# 

–添加vip

[root@rac1 ~]# srvctl add vip -node rac1 -netnum 2 -address rac1-adg-vip/255.255.255.0/eth2
[root@rac1 ~]# srvctl add vip -node rac2 -netnum 2 -address rac2-adg-vip/255.255.255.0/eth2
[root@rac1 ~]# srvctl config vip -n rac1
VIP exists: network number 1, hosting node rac1
VIP Name: rac1-vip
VIP IPv4 Address: 192.168.56.63
VIP IPv6 Address: 
VIP is enabled.
VIP is individually enabled on nodes: 
VIP is individually disabled on nodes: 
VIP exists: network number 2, hosting node rac1
VIP Name: rac1-adg-vip
VIP IPv4 Address: 192.168.209.63
VIP IPv6 Address: 
VIP is enabled.
VIP is individually enabled on nodes: 
VIP is individually disabled on nodes: 
[root@rac1 ~]# srvctl config vip -n rac2
VIP exists: network number 1, hosting node rac2
VIP Name: rac2-vip
VIP IPv4 Address: 192.168.56.64
VIP IPv6 Address: 
VIP is enabled.
VIP is individually enabled on nodes: 
VIP is individually disabled on nodes: 
VIP exists: network number 2, hosting node rac2
VIP Name: rac2-adg-vip
VIP IPv4 Address: 192.168.209.64
VIP IPv6 Address: 
VIP is enabled.
VIP is individually enabled on nodes: 
VIP is individually disabled on nodes: 
[root@rac1 ~]# crsctl status res -t |grep -A 2 network
ora.net1.network
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.net2.network
               OFFLINE OFFLINE      rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
[root@rac1 ~]# crsctl status res -t |grep -A 2 vip
ora.rac1.vip
      1        ONLINE  ONLINE       rac1                     STABLE
ora.rac1_2.vip
      1        OFFLINE OFFLINE                               STABLE
ora.rac2.vip
      1        ONLINE  ONLINE       rac2                     STABLE
ora.rac2_2.vip
      1        OFFLINE OFFLINE                               STABLE
ora.scan1.vip
      1        ONLINE  ONLINE       rac2                     STABLE
--------------------------------------------------------------------------------
[root@rac1 ~]# 

–启动vip,查看vip资源

[root@rac1 ~]# su - grid
[grid@rac1 ~]$ srvctl start vip -vip rac1-adg-vip
[grid@rac1 ~]$ srvctl start vip -vip rac2-adg-vip
[grid@rac1 ~]$ srvctl status vip -n rac1
VIP rac1-vip is enabled
VIP rac1-vip is running on node: rac1
VIP rac1-adg-vip is enabled
VIP rac1-adg-vip is running on node: rac1
[grid@rac1 ~]$ srvctl status vip -n rac2
VIP rac2-vip is enabled
VIP rac2-vip is running on node: rac2
VIP rac2-adg-vip is enabled
VIP rac2-adg-vip is running on node: rac2
[grid@rac1 ~]$ 
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 network
ora.net1.network
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.net2.network
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 vip
ora.rac1.vip
      1        ONLINE  ONLINE       rac1                     STABLE
ora.rac1_2.vip
      1        ONLINE  ONLINE       rac1                     STABLE
ora.rac2.vip
      1        ONLINE  ONLINE       rac2                     STABLE
ora.rac2_2.vip
      1        ONLINE  ONLINE       rac2                     STABLE
ora.scan1.vip
      1        ONLINE  ONLINE       rac2                     STABLE
--------------------------------------------------------------------------------
[grid@rac1 ~]$ 

–检查新创建的vip是否运行了:

[grid@rac1 ~]$ /sbin/ifconfig eth2:1
eth2:1    Link encap:Ethernet  HWaddr 08:00:27:17:79:3C  
          inet addr:192.168.209.63  Bcast:192.168.209.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

[grid@rac1 ~]$ 
[root@rac2 ~]# /sbin/ifconfig eth2:1
eth2:1    Link encap:Ethernet  HWaddr 08:00:27:74:C7:94  
          inet addr:192.168.209.64  Bcast:192.168.209.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1

[root@rac2 ~]# 

–添加网络2上的监听:

[grid@rac1 ~]$ srvctl add listener -listener LISTENER_ADG -netnum 2 -endpoints "TCP:1522"
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 LISTENER
ora.LISTENER.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.LISTENER_ADG.lsnr
               OFFLINE OFFLINE      rac1                     STABLE
               OFFLINE OFFLINE      rac2                     STABLE
--
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[grid@rac1 ~]$ 

在network2上配置SCAN:

[root@rac1 ~]# srvctl add scan -scanname racadg-scan -netnum 2
[root@rac1 ~]# srvctl config scan -netnum 2
SCAN name: racadg-scan, Network: 2
Subnet IPv4: 192.168.209.0/255.255.255.0/eth2, static
Subnet IPv6: 
SCAN 0 IPv4 VIP: 192.168.209.65
SCAN VIP is enabled.
SCAN VIP is individually enabled on nodes: 
SCAN VIP is individually disabled on nodes: 
[root@rac1 ~]# srvctl status scan -netnum 2
SCAN VIP scan1_net2 is enabled
SCAN VIP scan1_net2 is not running
[root@rac1 ~]# crsctl status res -t |grep -A 2 LISTENER
ora.LISTENER.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.LISTENER_ADG.lsnr
               OFFLINE OFFLINE      rac1                     STABLE
               OFFLINE OFFLINE      rac2                     STABLE
--
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[root@rac1 ~]# crsctl status res -t |grep -A 1 SCAN
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
[root@rac1 ~]#  

–启动network2上的监听

[grid@rac1 ~]$ srvctl start listener -listener LISTENER_ADG
[grid@rac1 ~]$ srvctl status listener -listener LISTENER_ADG
Listener LISTENER_ADG is enabled
Listener LISTENER_ADG is running on node(s): rac1,rac2
[grid@rac1 ~]$ srvctl status listener -listener LISTENER
Listener LISTENER is enabled
Listener LISTENER is running on node(s): rac1,rac2
[grid@rac1 ~]$ 
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 LISTENER
ora.LISTENER.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.LISTENER_ADG.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
--
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 SCAN
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[grid@rac1 ~]$ 

–在network2上启动SCAN

[root@rac1 ~]# srvctl start scan -netnum 2
[root@rac1 ~]# srvctl config scan -netnum 2
SCAN name: racadg-scan, Network: 2
Subnet IPv4: 192.168.209.0/255.255.255.0/eth2, static
Subnet IPv6: 
SCAN 0 IPv4 VIP: 192.168.209.65
SCAN VIP is enabled.
SCAN VIP is individually enabled on nodes: 
SCAN VIP is individually disabled on nodes: 
[root@rac1 ~]# srvctl status scan -netnum 2
SCAN VIP scan1_net2 is enabled
SCAN VIP scan1_net2 is running on node rac1
[root@rac1 ~]# crsctl status res -t |grep -A 2 LISTENER
ora.LISTENER.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.LISTENER_ADG.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
--
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[root@rac1 ~]# crsctl status res -t |grep -A 2 SCAN
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[root@rac1 ~]# 

–在network2上添加SCAN LISTENER

[grid@rac1 ~]$ srvctl add scan_listener -netnum 2 -listener racadg-scanlsnr -endpoints "TCP:1522"
[grid@rac1 ~]$ srvctl start scan_listener -netnum 2
[grid@rac1 ~]$ srvctl status scan_listener -netnum 2
SCAN Listener RACADG-SCANLSNR_SCAN1_NET2 is enabled
SCAN listener RACADG-SCANLSNR_SCAN1_NET2 is running on node rac1
[grid@rac1 ~]$ srvctl config scan_listener -netnum 2
SCAN Listener RACADG-SCANLSNR_SCAN1_NET2 exists. Port: TCP:1522
Registration invited nodes: 
Registration invited subnets: 
SCAN Listener is enabled.
SCAN Listener is individually enabled on nodes: 
SCAN Listener is individually disabled on nodes: 
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 LISTENER
ora.LISTENER.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
ora.LISTENER_ADG.lsnr
               ONLINE  ONLINE       rac1                     STABLE
               ONLINE  ONLINE       rac2                     STABLE
--
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
[grid@rac1 ~]$ crsctl status res -t |grep -A 2 SCAN
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                     STABLE
ora.MGMTLSNR
--
ora.RACADG-SCANLSNR_SCAN1_NET2.lsnr
      1        ONLINE  ONLINE       rac1                     STABLE
ora.cvu
[grid@rac1 ~]$ 

–检查监听状态

[grid@rac1 ~]$ netstat -an |grep 1521|grep LISTEN
tcp        0      0 169.254.242.79:1521         0.0.0.0:*                   LISTEN      
tcp        0      0 192.168.60.61:1521          0.0.0.0:*                   LISTEN      -----rac1-priv
tcp        0      0 192.168.56.63:1521          0.0.0.0:*                   LISTEN      -----rac1-vip
tcp        0      0 192.168.56.61:1521          0.0.0.0:*                   LISTEN      -----rac1
[grid@rac1 ~]$ netstat -an |grep 1522|grep LISTEN
tcp        0      0 192.168.209.65:1522         0.0.0.0:*                   LISTEN      -----rac-scan
tcp        0      0 192.168.209.63:1522         0.0.0.0:*                   LISTEN      -----rac1-adg-vip
[grid@rac1 ~]$ lsnrctl status LISTENER

LSNRCTL for Linux: Version 12.1.0.2.0 - Production on 16-FEB-2016 21:41:54

Copyright (c) 1991, 2014, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER
Version                   TNSLSNR for Linux: Version 12.1.0.2.0 - Production
Start Date                16-FEB-2016 17:59:39
Uptime                    0 days 3 hr. 42 min. 14 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /u01/app/12.1.0.2/grid/network/admin/listener.ora
Listener Log File         /u01/app/grid/diag/tnslsnr/rac1/listener/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.56.61)(PORT=1521)))      -----rac1
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.56.63)(PORT=1521)))      -----rac1-vip
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcps)(HOST=rac1)(PORT=5500))(Security=(my_wallet_directory=/u01/app/oracle/product/12.1.0.2/dbhome_1/admin/lunar/xdb_wallet))(Presentation=HTTP)(Session=RAW))
Services Summary...
Service "+ASM" has 1 instance(s).
  Instance "+ASM1", status READY, has 1 handler(s) for this service...
Service "lunar" has 1 instance(s).
  Instance "lunar1", status READY, has 1 handler(s) for this service...
Service "lunarXDB" has 1 instance(s).
  Instance "lunar1", status READY, has 1 handler(s) for this service...
The command completed successfully
[grid@rac1 ~]$ 
[grid@rac1 ~]$ lsnrctl status LISTENER_ADG

LSNRCTL for Linux: Version 12.1.0.2.0 - Production on 16-FEB-2016 21:41:59

Copyright (c) 1991, 2014, Oracle.  All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=LISTENER_ADG)))
STATUS of the LISTENER
------------------------
Alias                     LISTENER_ADG
Version                   TNSLSNR for Linux: Version 12.1.0.2.0 - Production
Start Date                16-FEB-2016 21:13:48
Uptime                    0 days 0 hr. 28 min. 11 sec
Trace Level               off
Security                  ON: Local OS Authentication
SNMP                      OFF
Listener Parameter File   /u01/app/12.1.0.2/grid/network/admin/listener.ora
Listener Log File         /u01/app/grid/diag/tnslsnr/rac1/listener_adg/alert/log.xml
Listening Endpoints Summary...
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=LISTENER_ADG)))
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.209.63)(PORT=1522)))     
The listener supports no services
The command completed successfully
[grid@rac1 ~]$ 

配置ORACLE数据库实例支持多个网络:

LUNARRAC1_LOCAL_NET1 =(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = rac1-vip)(PORT = 1521)))
LUNARRAC1_LOCAL_NET2 =(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = rac1-adg-vip)(PORT = 1522)))

LUNARRAC2_LOCAL_NET1 =(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = rac2-vip)(PORT = 1521)))
LUNARRAC2_LOCAL_NET2 =(DESCRIPTION =(ADDRESS = (PROTOCOL = TCP)(HOST = rac2-adg-vip)(PORT = 1522)))

LUNARRAC_REMOTE_NET1 =(DESCRIPTION_LIST =(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = rac-scan)(PORT = 1521))))
LUNARRAC_REMOTE_NET2 =(DESCRIPTION_LIST =(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = racadg-scan)(PORT = 1522))))
[oracle@rac1 admin]$ ss

SQL*Plus: Release 12.1.0.2.0 Production on Thu Feb 18 21:58:50 2016

Copyright (c) 1982, 2014, Oracle.  All rights reserved.


Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Advanced Analytics and Real Application Testing options

SYS@lunar1>
SYS@lunar1>alter system set listener_networks='((NAME=network1)(LOCAL_LISTENER=LUNARRAC1_LOCAL_NET1)(REMOTE_LISTENER=LUNARRAC_REMOTE_NET1))','((NAME=network2)(LOCAL_LISTENER=LUNARRAC1_LOCAL_NET2)(REMOTE_LISTENER=LUNARRAC_REMOTE_NET2))' sid='lunar1';

System altered.

Elapsed: 00:00:00.36
SYS@lunar1>alter system set listener_networks='((NAME=network1)(LOCAL_LISTENER=LUNARRAC2_LOCAL_NET1)(REMOTE_LISTENER=LUNARRAC_REMOTE_NET1))','((NAME=network2)(LOCAL_LISTENER=LUNARRAC2_LOCAL_NET2)(REMOTE_LISTENER=LUNARRAC_REMOTE_NET2))' sid='lunar2';

System altered.

Elapsed: 00:00:00.19
SYS@lunar1>alter system set local_listener='(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=rac1-vip)(PORT=1521))))' sid='lunar1';

System altered.

Elapsed: 00:00:00.03
SYS@lunar1>alter system set local_listener='(DESCRIPTION=(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=rac2-vip)(PORT=1521))))' sid='lunar2';

System altered.

Elapsed: 00:00:00.80
SYS@lunar1>

配置客户端连接串
—检查数据库是否可以登录:

[oracle@lunarrac ~]$ ss

SQL*Plus: Release 12.1.0.2.0 Production on Fri Feb 19 08:57:30 2016

Copyright (c) 1982, 2014, Oracle.  All rights reserved.


Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Advanced Analytics and Real Application Testing options

SYS@lunar1>conn sys/oracle@//lunarrac-scan:1521/lunar as sysdba
Connected.
SYS@//lunarrac-scan:1521/lunar>conn sys/oracle@//lunaradg-scan:1522/lunar as sysdba
Connected.
SYS@//lunaradg-scan:1522/lunar>conn system/oracle@//lunarrac-scan:1521/lunar
Connected.
SYSTEM@//lunarrac-scan:1521/lunar>conn system/oracle@//lunaradg-scan:1522/lunar
Connected.
SYSTEM@//lunaradg-scan:1522/lunar>conn sys/oracle@lunarrac.vip as sysdba
Connected.
SYS@lunarrac.vip>conn sys/oracle@lunarrac.scanip as sysdba
Connected.
SYS@lunarrac.scanip>conn sys/oracle@lunaradg.vip as sysdba
Connected.
SYS@lunaradg.vip>conn sys/oracle@lunaradg.scanip as sysdba
Connected.
SYS@lunaradg.scanip>conn sys/oracle@rac1adg as sysdba
Connected.
SYS@rac1adg>conn sys/oracle@rac2adg as sysdba
Connected.
SYS@rac2adg>conn sys/oracle@racadg.vip as sysdba
Connected.
SYS@racadg.vip>conn sys/oracle@racadg.scanip as sysdba
Connected.
SYS@racadg.scanip>conn sys/oracle@rac1 as sysdba
Connected.
SYS@rac1>conn sys/oracle@rac2 as sysdba
Connected.
SYS@rac2>conn sys/oracle@racdb.vip as sysdba
Connected.
SYS@racdb.vip>conn sys/oracle@racdb.scanip as sysdba
Connected.
SYS@racdb.scanip>

至此已经全部完成。
Oracle 12.1 RAC 系列:
Oracle 12.1 RAC 系列-安装新主机,识别老存储和恢复数据库
Oracle 12.1 RAC 系列 – 配置第二个网络和相应的SCAN2

发表在 Installation and Deinstall, Linux, network, ORACLE 12C, RAC | 标签为 , , , , , | 留下评论

Oracle 12.1 RAC 系列-安装新主机,识别老存储和恢复数据库

11.2中模拟主机损坏,使用重新安装新主机识别老存储并恢复数据库。
11.2 RAC 系列-安装新主机,识别老存储-1-识别ASM磁盘
11.2 RAC 系列-安装新主机,识别老存储-2-准备识别数据库
11.2 RAC 系列-安装新主机,识别老存储-3-配置老存储的数据库
这里的测试也同样是模拟主机损坏,安装新主机识别老存储来恢复数据库,不同之处在于,这里假设老存储的ocr和vf是保存在单独的crsdg的,客户没有新的磁盘来创建新的crsdg,因此,我们需要将最前面的3块盘(除去sda后,是sdb~sdd)使用dd清除其前面50M的数据,然后用这3块盘组成后续安装GI时的CRSDG。
别的过程几乎都一样,添加数据库资源的时候,注意一下12.1跟11.2的命令不同,尽管12.1中如果使用11.2的添加数据库的命令也可以执行,并且没有报错信息(貌似兼容),但后续使用时可能会有问题,比如在ocr中识别的dbunique的信息是不正确的。
.
具体步骤如下(因为先在12.1中测试,然后才在112.测试,因此这里的测试记录了发现的一些问题和处理方法,而11.2中模拟主机损坏,直接使用了这里的经验,因此没有任何报错信息):
1,安装12.1.0.2的GI软件,如果需要也apply最新的PSU,然后查看磁盘和磁盘组:

[grid@lunarrac ~]$ kfod disks=all ds=true cluster=true status=true
--------------------------------------------------------------------------------
 Disk          Size Header    Path                                     Disk Group   User     Group   
================================================================================
   1:       2047 Mb MEMBER    /dev/asm-diskb                           CRSDG        grid     asmadmin
   2:       2047 Mb MEMBER    /dev/asm-diskc                           CRSDG        grid     asmadmin
   3:       2047 Mb MEMBER    /dev/asm-diskd                           CRSDG        grid     asmadmin
   4:       2048 Mb MEMBER    /dev/asm-diske                           DATADG       grid     asmadmin
   5:       2048 Mb MEMBER    /dev/asm-diskf                           DATADG       grid     asmadmin
   6:       2048 Mb MEMBER    /dev/asm-diskg                           DATADG       grid     asmadmin
   7:       3072 Mb MEMBER    /dev/asm-diskh                           DATADG2      grid     asmadmin
   8:      10240 Mb MEMBER    /dev/asm-diski                           DATADG2      grid     asmadmin
--------------------------------------------------------------------------------
ORACLE_SID ORACLE_HOME                                      HOST_NAME           
================================================================================
     +ASM1 /u01/app/12.1.0.2/grid                           lunarrac                       
[grid@lunarrac ~]$ 

创建ASM的spfile

[grid@lunarrac ~]$ ss
SQL*Plus: Release 12.1.0.2.0 Production on Sun Feb 14 19:08:33 2016

Copyright (c) 1982, 2014, Oracle.  All rights reserved.


Connected to:
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management options

SQL> create pfile='/tmp/asm.pfile' from spfile;

File created.

SQL>
添加磁盘组'CRSDG', 'DATADG', 'DATADG2'
1
SQL> alter system set asm_diskgroups='CRSDG', 'DATADG', 'DATADG2' scope=both;

System altered.

SQL> 

查找spfile:

SYS@+ASM1>SELECT f.group_number, f.file_number, a.name name, f.type type
  2  FROM v$asm_file f, v$asm_alias a
  3  WHERE f.group_number=a.group_number and f.file_number=a.file_number
  4   and f.type='PARAMETERFILE'
  5  ORDER BY 1, 2;

    GROUP_NUMBER      FILE_NUMBER NAME                                                    TYPE
---------------- ---------------- ------------------------------------------------------- -------------------------
               1              268 spfile.268.903782013                                    PARAMETERFILE
               2              273 spfile.273.892298577                                    PARAMETERFILE

Elapsed: 00:00:00.16
SYS@+ASM1>

这里看到有两个spfile,哪一个是我们需要的呢?
或者如果这个存储上有多个数据库时,怎么确定哪个数据库使用哪个spfle?
我们知道ASM内部是使用OMF管理数据文件的,因此,它的命名规则是:

因此,根据dbuniquename我们就可以确定哪个数据库使用哪个spfile。
+group/DB_UNIQUE_NAME/file_type/file_type_tag.file#.incarnation#
文件类型是datafile, controlfile, onlinelog等等

ASMCMD> ls -l 
Type           Redund  Striped  Time             Sys  Name
PARAMETERFILE  UNPROT  COARSE   DEC 25 10:00:00  Y    spfile.273.892298577
ASMCMD> pwd
+datadg2/lunar/PARAMETERFILE
ASMCMD> 

我们将spifle从ASM中复制到文件系统,然后查看其中信息是否正确:

ASMCMD> cp spfile.273.892298577 /tmp/spfile.273.892298577
copying +datadg2/lunar/PARAMETERFILE/spfile.273.892298577 -> /tmp/spfile.273.892298577
ASMCMD> ls -l
Type           Redund  Striped  Time             Sys  Name
PARAMETERFILE  UNPROT  COARSE   FEB 14 20:00:00  Y    spfile.273.892298577
ASMCMD> 

查看spfile

[grid@lunarrac ~]$ strings /tmp/spfile.273.892298577 
lunar1.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment
lunar2.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment
*._gc_policy_time=0
*._gc_undo_affinity=FALSE
*._index_partition_large_extents='FALSE'
*._optimizer_adaptive_cursor_sharing=FALSE
*._optimizer_extended_cursor_sharing='NONE'
*._optimizer_extended_cursor_sharing_rel='NONE'
*._optimizer_null_aware_antijoin=FALSE
*._optimizer_use_feedback=FALSE
*._partition_large_extents='FALSE'
*._PX_use_large_
pool=TRUE
*._undo_autotune=FALSE
*.audit_file_dest='/u01/app/oracle/admin/lunar/adump'
*.audit_trail='NONE'
*.cluster_database=true
*.compatible='12.1.0.2.0'
*.control_files='+DATADG2/LUNAR/CONTROLFILE/current.257.892295167','+DATADG2/LUNAR/CONTROLFILE/current.258.892295171'
*.db_block_size=8192
*.db_cache_size=52428800
*.db_create_file_dest='+DATADG2'
*.db_domain=''
*.db_name='lunar'
*.db_recovery_file_dest='+DATADG2'
*.db_recovery_file_dest_size=5565m
*.db_writer_processes=2
*.defe
rred_segment_creation=FALSE
*.diagnostic_dest='/u01/app/oracle'
*.dispatchers='(PROTOCOL=TCP) (SERVICE=lunarXDB)'
*.event='28401 trace name context forever,level 1','10949 trace name context forever,level 1'
lunar2.instance_number=2
lunar1.instance_number=1
*.java_pool_size=52428800
*.job_queue_processes=5
*.large_pool_size=10485760
*.log_archive_format='%t_%s_%r.dbf'
*.log_buffer=10305536
*.memory_target=0
*.open_cursors=300
*.parallel_force_local=TRUE
*.parallel_max_servers=30
*.pa
rallel_min_servers=30
*.parallel_servers_target=30
*.pga_aggregate_limit=629145600
*.pga_aggregate_target=360m
*.processes=150
*.remote_login_passwordfile='exclusive'
*.resource_limit=TRUE
*.resource_manager_plan=''
*.session_cached_cursors=30
*.sga_target=0
*.shared_pool_size=419430400
lunar2.thread=2
lunar1.thread=1
lunar2.undo_tablespace='UNDOTBS2'
lunar1.undo_tablespace='UNDOTBS1'
[grid@lunarrac ~]$ 

这时,启动是数据库会报错:

[oracle@lunarrac ~]$ ss

SQL*Plus: Release 12.1.0.2.0 Production on Sun Feb 14 21:05:13 2016

Copyright (c) 1982, 2014, Oracle.  All rights reserved.

Connected to an idle instance.

SYS@lunar1>startup
ORACLE instance started.

Total System Global Area        557842432 bytes
Fixed Size                        2926520 bytes
Variable Size                   486541384 bytes
Database Buffers                 54525952 bytes
Redo Buffers                     13848576 bytes
ORA-00205: error in identifying control file, check alert log for more info
SYS@lunar1>

alert中报错如下:

ORACLE_BASE from environment = /u01/app/oracle
Sun Feb 14 21:11:42 2016
ALTER DATABASE   MOUNT
Sun Feb 14 21:11:42 2016
This instance was first to mount
Sun Feb 14 21:11:42 2016
NOTE: ASMB mounting group 2 (DATADG2)
Sun Feb 14 21:11:42 2016
ORA-15025: could not open disk "/dev/asm-diskh"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
Sun Feb 14 21:11:42 2016
ORA-15025: could not open disk "/dev/asm-diski"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
NOTE: Disk 0 in group 2 could not be opened.
WARNING: Failed to complete group 2
WARNING: group 2 is being dismounted.
WARNING: ASMB force dismounting group 2 (DATADG2) due to failed mount
SUCCESS: diskgroup DATADG2 was dismounted
NOTE: ASMB mounting group 2 (DATADG2)
Sun Feb 14 21:11:43 2016
ORA-15025: could not open disk "/dev/asm-diskh"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
ORA-15040: diskgroup is incomplete
ORA-15040: diskgroup is incomplete
Sun Feb 14 21:11:43 2016
ORA-15025: could not open disk "/dev/asm-diski"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
NOTE: Disk 0 in group 2 could not be opened.
WARNING: Failed to complete group 2
WARNING: group 2 is being dismounted.
WARNING: ASMB force dismounting group 2 (DATADG2) due to failed mount
SUCCESS: diskgroup DATADG2 was dismounted
Sun Feb 14 21:11:43 2016
ORA-00210: cannot open the specified control file
ORA-00202: control file: '+DATADG2/LUNAR/CONTROLFILE/current.258.892295171'
ORA-17503: ksfdopn:2 Failed to open file +DATADG2/LUNAR/CONTROLFILE/current.258.892295171
ORA-15001: diskgroup "DATADG2" does not exist or is not mounted
ORA-15040: diskgroup is incomplete
ORA-00210: cannot open the specified control file
ORA-00202: control file: '+DATADG2/LUNAR/CONTROLFILE/current.257.892295167'
ORA-17503: ksfdopn:2 Failed to open file +DATADG2/LUNAR/CONTROLFILE/current.257.892295167
ORA-15001: diskgroup "DATADG2" does not exist or is not mounted
ORA-15040: diskgroup is incomplete
ORA-205 signalled during: ALTER DATABASE   MOUNT...
Sun Feb 14 21:12:07 2016
Decreasing number of real time LMS from 1 to 0

根据报错信息,我们知道,是因为oracle没有访问asm磁盘组的权限造成的,因此需要修改oracle权限:

[grid@lunarrac ~]$ $ORACLE_HOME/bin/setasmgidwrap o=/u01/app/oracle/product/12.1.0.2/dbhome_1/bin/oracle
[grid@lunarrac ~]$ ls -lrt /u01/app/oracle/product/12.1.0.2/dbhome_1/bin/oracle
-rwsr-s--x 1 oracle asmadmin 323762276 Feb 14 18:15 /u01/app/oracle/product/12.1.0.2/dbhome_1/bin/oracle
[grid@lunarrac ~]$ 

再次mount数据库,依然报错:

SYS@lunar1>alter database mount;
alter database mount
*
ERROR at line 1:
ORA-00205: error in identifying control file, check alert log for more info
Elapsed: 00:00:17.22
SYS@lunar1>

报错信息如下:

alter database mount
Sun Feb 14 21:18:10 2016
This instance was first to mount
Process O000 died, see its trace file
Sun Feb 14 21:18:12 2016
NOTE: ASMB mounting group 2 (DATADG2)
Process O000 died, see its trace file
Sun Feb 14 21:18:16 2016
ORA-15025: could not open disk "/dev/asm-diskh"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
ORA-15040: diskgroup is incomplete
ORA-15040: diskgroup is incomplete
Sun Feb 14 21:18:19 2016
ORA-15025: could not open disk "/dev/asm-diski"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
NOTE: Disk 0 in group 2 could not be opened.
WARNING: Failed to complete group 2
Sun Feb 14 21:18:24 2016
WARNING: group 2 is being dismounted.
WARNING: ASMB force dismounting group 2 (DATADG2) due to failed mount
SUCCESS: diskgroup DATADG2 was dismounted
NOTE: ASMB mounting group 2 (DATADG2)
Sun Feb 14 21:18:26 2016
ORA-15025: could not open disk "/dev/asm-diskh"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
ORA-15040: diskgroup is incomplete
ORA-15040: diskgroup is incomplete
Sun Feb 14 21:18:26 2016
ORA-15025: could not open disk "/dev/asm-diski"
ORA-27041: unable to open file
Linux-x86_64 Error: 13: Permission denied
Additional information: 9
NOTE: Disk 0 in group 2 could not be opened.
WARNING: Failed to complete group 2
WARNING: group 2 is being dismounted.
WARNING: ASMB force dismounting group 2 (DATADG2) due to failed mount
SUCCESS: diskgroup DATADG2 was dismounted
Sun Feb 14 21:18:26 2016
ORA-00210: cannot open the specified control file
ORA-00202: control file: '+DATADG2/LUNAR/CONTROLFILE/current.258.892295171'
ORA-17503: ksfdopn:2 Failed to open file +DATADG2/LUNAR/CONTROLFILE/current.258.892295171
ORA-15001: diskgroup "DATADG2" does not exist or is not mounted
ORA-15040: diskgroup is incomplete
ORA-00210: cannot open the specified control file
ORA-00202: control file: '+DATADG2/LUNAR/CONTROLFILE/current.257.892295167'
ORA-17503: ksfdopn:2 Failed to open file +DATADG2/LUNAR/CONTROLFILE/current.257.892295167
ORA-15001: diskgroup "DATADG2" does not exist or is not mounted
ORA-15040: diskgroup is incomplete
ORA-205 signalled during: alter database mount
...
Process m000 died, see its trace file
Process m001 died, see its trace file
Process m000 died, see its trace file
Process m000 died, see its trace file
Process m001 died, see its trace file
Process m000 died, see its trace file

具体的trace文件如下:

Trace file /u01/app/oracle/diag/rdbms/lunar/lunar1/trace/lunar1_m000_14358.trc
Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit Production
With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,
Advanced Analytics and Real Application Testing options
ORACLE_HOME = /u01/app/oracle/product/12.1.0.2/dbhome_1
System name:    Linux
Node name:      lunarrac
Release:        3.8.13-44.1.1.el6uek.x86_64
Version:        #2 SMP Wed Sep 10 06:10:25 PDT 2014
Machine:        x86_64
Instance name: lunar1
Redo thread mounted by this instance: 0 <none>
Oracle process number: 0
Unix process pid: 14358, image:
*** 2016-02-14 21:20:01.641
Died during process startup with error 27140 (seq=94)
OPIRIP: Uncaught error 27140. Error stack:
ORA-27140: attach to post/wait facility failed
ORA-27300: OS system dependent operation:invalid_egid failed with status: 1
ORA-27301: OS failure message: Operation not permitted
ORA-27302: failure occurred at: skgpwinit6
ORA-27303: additional information: startup egid = 6000 (oinstall), current egid = 5000 (asmadmin)
~

这里看到,应该是数据库还是不能访问磁盘组,将磁盘组注册到ocr中的过程如下:

SQL> alter diskgroup datadg mount 
Sun Feb 14 21:42:56 2016
NOTE: cache registered group DATADG 2/0x4BA26F20
NOTE: cache began mount (first) of group DATADG 2/0x4BA26F20
NOTE: Assigning number (2,1) to disk (/dev/asm-diskf)
NOTE: Assigning number (2,2) to disk (/dev/asm-diskg)
NOTE: Assigning number (2,0) to disk (/dev/asm-diske)
Sun Feb 14 21:43:02 2016
NOTE: GMON heartbeating for grp 2 (DATADG)
GMON querying group 2 at 17 for pid 30, osid 19564
Sun Feb 14 21:43:02 2016
NOTE: cache is mounting group DATADG created on 2015/10/05 07:49:39
NOTE: cache opening disk 0 of grp 2: DATADG_0000 path:/dev/asm-diske
NOTE: 02/14/16 21:43:02 DATADG.F1X0 found on disk 0 au 10 fcn 0.0 datfmt 1
NOTE: cache opening disk 1 of grp 2: DATADG_0001 path:/dev/asm-diskf
NOTE: 02/14/16 21:43:02 DATADG.F1X0 found on disk 1 au 10 fcn 0.0 datfmt 1
NOTE: cache opening disk 2 of grp 2: DATADG_0002 path:/dev/asm-diskg
NOTE: 02/14/16 21:43:02 DATADG.F1X0 found on disk 2 au 10 fcn 0.0 datfmt 1
Sun Feb 14 21:43:02 2016
NOTE: cache mounting (first) normal redundancy group 2/0x4BA26F20 (DATADG)
Sun Feb 14 21:43:02 2016
* allocate domain 2, invalid = TRUE 
Sun Feb 14 21:43:03 2016
NOTE: attached to recovery domain 2
Sun Feb 14 21:43:03 2016
* validated domain 2, flags = 0x0
NOTE: cache recovered group 2 to fcn 0.73
NOTE: redo buffer size is 256 blocks (1056768 bytes)
Sun Feb 14 21:43:03 2016
NOTE: LGWR attempting to mount thread 1 for diskgroup 2 (DATADG)
NOTE: LGWR found thread 1 closed at ABA 11.22 lock domain=0 inc#=0 instnum=1
NOTE: LGWR mounted thread 1 for diskgroup 2 (DATADG)
Sun Feb 14 21:43:03 2016
NOTE: LGWR opened thread 1 (DATADG) at fcn 0.73 ABA 12.23 lock domain=2 inc#=2 instnum=1 gx.incarn=1268936480 mntstmp=2016/02/14 21:43:03.557000
Sun Feb 14 21:43:03 2016
NOTE: cache mounting group 2/0x4BA26F20 (DATADG) succeeded
NOTE: cache ending mount (success) of group DATADG number=2 incarn=0x4ba26f20
Sun Feb 14 21:43:03 2016
NOTE: Instance updated compatible.asm to 12.1.0.0.0 for grp 2
Sun Feb 14 21:43:03 2016
SUCCESS: diskgroup DATADG was mounted
Sun Feb 14 21:43:03 2016
SUCCESS: alter diskgroup datadg mount
Sun Feb 14 21:43:04 2016
NOTE: diskgroup resource ora.DATADG.dg is online
WARNING: unknown state for diskgroup resource ora.DATADG.dg, Return Value: 3

再次查看,ocr中已经包含了这些磁盘组

[root@lunarrac ~]# crsctl status res -t
--------------------------------------------------------------------------------
Name           Target  State        Server                   State details       
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.CRSDG.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.DATADG.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.DATADG2.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.LISTENER.lsnr
               ONLINE  ONLINE       lunarrac                 STABLE
ora.asm
               ONLINE  ONLINE       lunarrac                 Started,STABLE
ora.net1.network
               ONLINE  ONLINE       lunarrac                 STABLE
ora.ons
               ONLINE  ONLINE       lunarrac                 STABLE
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.MGMTLSNR
      1        ONLINE  ONLINE       lunarrac                 169.254.52.98 192.16
                                                             8.60.56,STABLE
ora.cvu
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.lunarrac.vip
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.mgmtdb
      1        OFFLINE OFFLINE                               STABLE
ora.oc4j
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.scan1.vip
      1        ONLINE  ONLINE       lunarrac                 STABLE
--------------------------------------------------------------------------------
[root@lunarrac ~]# 

将数据库注册到ocr中:
在12.1中如果沿用11.2的配置数据库命令,那么数据库可以启动,但是可以发现配置信息是有问题的:
例如,“Database name: lunarrac”这里显示lunarrac是我的主机名,而数据库名是lunar,因此使用112.的命令注册数据库到ocr会有其他未知问题
建议,在不同版本,根据不同版本的命令进行注册。

[oracle@lunarrac ~]$ srvctl add database -d lunar -n lunarrac -o $ORACLE_HOME -p +datadg2/lunar/PARAMETERFILE/spfile.273.892298577 -s OPEN -y AUTOMATIC -a "CRSDG,DATADG,DATADG2" -t IMMEDIATE
[oracle@lunarrac ~]$ srvctl config database -d lunar
Database unique name: lunar
Database name: lunarrac
Oracle home: /u01/app/oracle/product/12.1.0.2/dbhome_1
Oracle user: oracle
Spfile: +datadg2/lunar/PARAMETERFILE/spfile.273.892298577
Password file: 
Domain: 
Start options: open
Stop options: immediate
Database role: PRIMARY
Management policy: AUTOMATIC
Server pools: 
Disk Groups: CRSDG,DATADG,DATADG2
Mount point paths: 
Services: 
Type: RAC
Start concurrency: 
Stop concurrency: 
OSDBA group: dba
OSOPER group: oinstall
Database instances: 
Configured nodes: 
Database is administrator managed
[oracle@lunarrac ~]$ 

检查crs状态,数据库已经注册进去了:

[root@lunarrac ~]# crsctl status res -t
--------------------------------------------------------------------------------
Name           Target  State        Server                   State details       
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.CRSDG.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.DATADG.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.DATADG2.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.LISTENER.lsnr
               ONLINE  ONLINE       lunarrac                 STABLE
ora.asm
               ONLINE  ONLINE       lunarrac                 Started,STABLE
ora.net1.network
               ONLINE  ONLINE       lunarrac                 STABLE
ora.ons
               ONLINE  ONLINE       lunarrac                 STABLE
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.MGMTLSNR
      1        ONLINE  ONLINE       lunarrac                 169.254.52.98 192.16
                                                             8.60.56,STABLE
ora.cvu
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.lunar.db
      1        OFFLINE OFFLINE                               STABLE
ora.lunarrac.vip
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.mgmtdb
      1        OFFLINE OFFLINE                               STABLE
ora.oc4j
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.scan1.vip
      1        ONLINE  ONLINE       lunarrac                 STABLE
--------------------------------------------------------------------------------
[root@lunarrac ~]# 

启动数据库:

[oracle@lunarrac ~]$ srvctl start database -d lunar
[oracle@lunarrac ~]$ 
.
[root@lunarrac ~]# crsctl status res -t
--------------------------------------------------------------------------------
Name           Target  State        Server                   State details       
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.CRSDG.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.DATADG.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.DATADG2.dg
               ONLINE  ONLINE       lunarrac                 STABLE
ora.LISTENER.lsnr
               ONLINE  ONLINE       lunarrac                 STABLE
ora.asm
               ONLINE  ONLINE       lunarrac                 Started,STABLE
ora.net1.network
               ONLINE  ONLINE       lunarrac                 STABLE
ora.ons
               ONLINE  ONLINE       lunarrac                 STABLE
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.MGMTLSNR
      1        ONLINE  ONLINE       lunarrac                 169.254.52.98 192.16
                                                             8.60.56,STABLE
ora.cvu
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.lunar.db
      1        ONLINE  ONLINE       lunarrac                 Open,STABLE
ora.lunarrac.vip
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.mgmtdb
      1        OFFLINE OFFLINE                               STABLE
ora.oc4j
      1        ONLINE  ONLINE       lunarrac                 STABLE
ora.scan1.vip
      1        ONLINE  ONLINE       lunarrac                 STABLE
--------------------------------------------------------------------------------
[root@lunarrac ~]# 

在挂完老存储后,还需要检查口令文件,如果有必要,需要重新给sys和system授予sysdba,sysoper权限,以便使用操作系统认证方式登录数据库。

发表在 ASM, ORACLE 12C, RAC | 标签为 , , , | 留下评论

Oracle 12.2的Sharding-1-基础概念

2015年8月份内部release了Oracle 12.2beta版本(目前内部最新release的版本是2016年2月份发布的,windows和Linux都有了),目前根据12.2beta文档的介绍,Oracle推出了sharding的功能,跟其他NOSQL型的sharding结构相比,Oracle Sharding提供的是企业级的RDBMS的分片技术。
.
Oracle Sharding的优点:
• Relational schemas
• Database partitioning
• ACID properties and read consistency
• SQL and other programmatic interfaces
• Complex data types
• Online schema changes
• Multi-core scalability
• Advanced security
• Compression
• High Availability features
• Enterprise-scale backup and recovery
.
在Oracle RDBMS 12.2.0.1中最多支持1000个shards。
.
Oracle Sharding使用GDS(Global Data Services)架构来自动部署和管理sharding和复制技术。
GDS(GDS是Oracle RDBMS 12.1的新特性)也提供负载均衡和SDB(sharded database)中的基于位置的路由功能。
.
Shard目录(Shard directors)使用GDS framework的全局服务管理组件(global service manager component)来提供应用层请求到shard的直接路由。shard目录(Shard directors)是一个单独的数据库,它用来保存SDB(Sharding database)配置数据和提供其他相关功能,比如shard的交叉查询和集中管理。可以使用GDS是GDSCTL工具可以用来配置SDB。

Oracle Sharding的分区架构(Partitioning Infrastructure)
分区在表空间级别跨shards分布,每个表空间关联一个特定的shard。一个shard表的每一个分区放单独的表空间,并且每个表空间关联到一个特定的shard。根据不同的sharding方法,这个关联可以自动建立或者根据定义创建。尽管一个shard表的多个分区放在多个单独主机的数据库上(这些数据库完全独立,不共享CPU、内存等软件和硬件),但是应用访问表时就如同访问一个单独数据库中的分区表一样。应用发出的SQL语句不需要依赖shard号和shard的物理配置。
.
Oracle Sharding 使用 familiar SQL 语法创建表分区,指定分区表的每行数据如何分片。
一个shard表的分区键叫做sharding key,例如,下面的语法是典型的用来创建sharding表的:
CREATE SHARDED TABLE customers
( cust_id NUMBER NOT NULL
, name VARCHAR2(50)
, address VARCHAR2(250)
, region VARCHAR2(20)
, class VARCHAR2(3)
, signup DATE
CONSTRAINT cust_pk PRIMARY KEY(cust_id)
)
PARTITION BY CONSISTENT HASH (cust_id)
TABLESPACE SET ts1
PARTITIONS AUTO;
这个数据分片(shard)就是基于键值cust_id,分区采用“CONSISTENT HASH”,这是一个特定的hash分区类型,通常用在分布式系统上。

.
Sharding a Table Family
一个表家族(Table Family)中没有任何父表的表叫做根表(root table),每个表家族中只能有一个根表。
表家族中所有的表按照根表的主键进行sharding,根据各级表的结构,相关数据可以被存储在同一个shard上。
在12.2,在一个SDB中只支持一个表家族。
.
以下面的例子说明,这里一共3张表组成的表家族(Table Family)
客户表,订单表和订单明细表。
每个客户可以有多个订单,每个订单中可以有多个商品,因此订单明细中就记录了每个订单中的多个商品,他们的具体数据如下:


1


在这个表族中,客户编号为123的数据如下:


2


.
将一个表族(Sharded Table Family)分片通常使有下面两种方法创建:
方法1:不显示指定父子关系,而是通过表之间主外键关系创建表族。这种方式创建的表族是一个多级的树形结构。
根表(root table)是客户表:
–客户表的主键是CustNo,分区方式是“CONSISTENT HASH (CustNo)”
–保存再表空间集ts1中

CREATE SHARDED TABLE Customers
( CustNo NUMBER NOT NULL
, Name VARCHAR2(50)
, Address VARCHAR2(250)
, CONSTRAINT RootPK PRIMARY KEY(CustNo)
)
PARTITION BY CONSISTENT HASH (CustNo)
PARTITIONS AUTO
TABLESPACE SET ts1
;

–订单表是客户表的字表,子表(订单表)根据CustNo关联父表(客户表):
–订单表的主键是(CustNo, OrderNo),外键(CustNo)引用了主表Customers(CustNo)
–分区方式是按照订单表的外键约束(CustFK)

CREATE SHARDED TABLE Orders
( OrderNo NUMBER NOT NULL
, CustNo NUMBER NOT NULL
, OrderDate DATE
, CONSTRAINT OrderPK PRIMARY KEY (CustNo, OrderNo)
, CONSTRAINT CustFK FOREIGN KEY (CustNo) REFERENCES Customers(CustNo)
)
PARTITION BY REFERENCE (CustFK)
;

–订单明细表是订单表的字表,子表(订单明细表)根据CustNo关联父表(订单表)
–订单明细表的主键是(CustNo, OrderNo, LineNo),外键(CustNo, OrderNo)引用了父表Orders(OrderNo)和Orders(CustNo, OrderNo)
–分区方式是按照订单明细表的外键约束(LineFK)

CREATE SHARDED TABLE LineItems
( CustNo NUMBER NOT NULL
, LineNo NUMBER(2) NOT NULL
, OrderNo NUMBER(5) NOT NULL
, StockNo NUMBER(4)
, Quantity NUMBER(2)
, CONSTRAINT LinePK PRIMARY KEY (CustNo, OrderNo, LineNo)
, CONSTRAINT LineFK FOREIGN KEY (CustNo, OrderNo) REFERENCES Orders(OrderNo) 
REFERENCES Orders(CustNo, OrderNo)
)
PARTITION BY REFERENCE (LineFK)
;

因此,上面的例子中,这个表家族的所有数据都保存在同一个表空间集ts1中。
当根表中增加一个分区的时候,那么相关联的表中都会自动增加相应的分区。

.
方法2:在分区表中显示指定父子关系的方法创建表家族
这种分区方法只支持两级的表家族(two-level table families),所有的子表必须有相同的父表,父表的分区列在每个子表中都存在,例如下面的CustNo.
.
–没有关键字“PARENT”(也没有上面引用约束关键字)的是根表,即客户表(Customers)

CREATE SHARDED TABLE Customers
( CustNo NUMBER NOT NULL
, Name VARCHAR2(50)
, Address VARCHAR2(250)
, region VARCHAR2(20)
, class VARCHAR2(3)
, signup DATE
)
PARTITION BY CONSISTENT HASH (CustNo)
TABLESPACE SET ts1
PARTITIONS AUTO
;

–根据关键字“PARENT Customers”指定了订单表(Orders)的父表是客户表(Customers)

CREATE SHARDED TABLE Orders
( OrderNo NUMBER
, CustNo NUMBER
, OrderDate DATE
)
PARENT Customers
PARTITION BY CONSISTENT HASH (CustNo)
TABLESPACE SET ts1
PARTITIONS AUTO
;

–根据关键字“PARENT Customers”指定了订单明细表(LineItems)的父表是客户表(Customers)

CREATE SHARDED TABLE LineItems
( LineNo NUMBER
, OrderNo NUMBER
, CustNo NUMBER
, StockNo NUMBER
, Quantity NUMBER
)
)
PARENT Customers
PARTITION BY CONSISTENT HASH (CustNo)
TABLESPACE SET ts1
PARTITIONS AUTO
;

Creating a Duplicated Table Using CREATE TABLE
复制表可以被复制到所有的shard上,这种在每个shard上有相同内容的表叫做复制表(Duplicated Table)
需要经常跟shard表关联的小表适合于作为复制表(Duplicated Table),适用于:
(1)只读表
(2)大量跨shard的读操作
.
Oracle Sharding使用Materialized View Replication来同步复制表(duplicated tables)的内容
每个shard上的duplicated tables的内容是一个只读物化视图(read-only materialized view.)
物化视图(materialized views)的主表保存在一个专门的数据库中,叫做shard catalog。
所有shard上的物化视图(materialized views)会根据配置的频率自动刷新。
创建复制表的语句“CREATE DUPLICATED TABLE”会自动创建master表,物化视图和其他物化视图复制所需要的对象。
还是以上面的客户订单关系为例,这里定义产品表(Products)为复制表:


3


CREATE DUPLICATED TABLE Products
( StockNo NUMBER PRIMARY KEY
, Description VARCHAR2(20)
, Price NUMBER(6,2))
)
;

根据sharding的机制,sharding的设计对后续系统性能影响是非常大的。
一旦sharding创建完成,并已经有很多数据,相关的属性就不能再修改了,比如某个表是复制表,还是sharding表,sharding key等等
因此,SDB的设计是至关重要的,再设计sharding是需要考虑的有:
那些表需要被设计为sharding表
哪些表需要做复制表
哪些shard表是根表
使用什么方法来关联一个表到其他表或者根表
应该使用哪种sharding方法
使用哪个座位sharding key

发表在 ORACLE 12C | 标签为 , , | 留下评论

11.2 RAC 系列-安装新主机,识别老存储-3-配置老存储的数据库

11.2 RAC 系列-安装新主机,识别老存储-1-识别ASM磁盘
11.2 RAC 系列-安装新主机,识别老存储-2-准备识别数据库
11.2 RAC 系列-安装新主机,识别老存储-3-配置老存储的数据库
Oracle 12.1 RAC 系列-安装新主机,识别老存储和恢复数据库
安装Oracle 11.2.0.4数据库软件,然后执行root.sh,这个没有特别的东西,略。
之后,我们需要修改ORACLE RDBMS的oracle二进制文件的权限,让oracle 数据库进程可以获取ASM磁盘组。

[root@lunar5 ~]# su - grid
[grid@lunar5 ~]$ $ORACLE_HOME/bin/setasmgidwrap o=/u01/app/oracle/product/11.2.0.4/dbhome_1/bin/oracle
[grid@lunar5 ~]$ ll /u01/app/oracle/product/11.2.0.4/dbhome_1/bin/oracle
-rwsr-s--x 1 oracle asmadmin 239626689 Feb 15 22:09 /u01/app/oracle/product/11.2.0.4/dbhome_1/bin/oracle
[grid@lunar5 ~]$ 

注意,这里的/u01/app/oracle/product/11.2.0.4/dbhome_1/bin/oracle就是安装ORACLE RDBMS的ORACLE_HOME。
然后,将数据库添加到CRS中,启动数据库:

[oracle@lunar5 ~]$ srvctl add database -d lunar -n lunar5 -o $ORACLE_HOME -p +DATADG2/LUNAR/PARAMETERFILE/spfile.272.892409049 -s OPEN -y AUTOMATIC -a "TEMPDG,DATADG1,DATADG2,DATADG3" -t IMMEDIATE
[oracle@lunar5 ~]$ 

检查数据库在ocr中的配置:

[oracle@lunar5 ~]$ srvctl config database -d lunar
Database unique name: lunar
Database name: lunar5
Oracle home: /u01/app/oracle/product/11.2.0.4/dbhome_1
Oracle user: oracle
Spfile: +DATADG2/LUNAR/PARAMETERFILE/spfile.272.892409049
Domain: 
Start options: open
Stop options: immediate
Database role: PRIMARY
Management policy: AUTOMATIC
Server pools: lunar
Database instances: 
Disk Groups: TEMPDG,DATADG1,DATADG2,DATADG3
Mount point paths: 
Services: 
Type: RAC
Database is administrator managed
[oracle@lunar5 ~]$ 

启动数据库:

[oracle@lunar5 ~]$ srvctl start database -d lunar
[oracle@lunar5 ~]$ 

检查crs的状态:

[root@lunar5 ~]# crsctl status res -t
--------------------------------------------------------------------------------
NAME           TARGET  STATE        SERVER                   STATE_DETAILS       
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.DATADG1.dg
               ONLINE  ONLINE       lunar5                                       
ora.DATADG2.dg
               ONLINE  ONLINE       lunar5                                       
ora.DATADG3.dg
               ONLINE  ONLINE       lunar5                                       
ora.LISTENER.lsnr
               ONLINE  ONLINE       lunar5                                       
ora.TEMPDG.dg
               ONLINE  ONLINE       lunar5                                       
ora.asm
               ONLINE  ONLINE       lunar5                   Started             
ora.gsd
               OFFLINE OFFLINE      lunar5                                       
ora.net1.network
               ONLINE  ONLINE       lunar5                                       
ora.ons
               ONLINE  ONLINE       lunar5                                       
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       lunar5                                       
ora.cvu
      1        ONLINE  ONLINE       lunar5                                       
ora.lunar.db
      1        ONLINE  ONLINE	    lunar5                   Open          
ora.lunar5.vip
      1        ONLINE  ONLINE       lunar5                                       
ora.oc4j
      1        ONLINE  ONLINE       lunar5                                       
ora.scan1.vip
      1        ONLINE  ONLINE       lunar5                                       
[root@lunar5 ~]# 

至此,整个使用新主机识别老存储的RAC(主要是识别ASM)就完成了。如果是文件系统的环境,比这个简单很多,ASM的全部可以省略了。
.
Oracle 12.1 RAC 系列:
Oracle 12.1 RAC 系列-安装新主机,识别老存储和恢复数据库
Oracle 12.1 RAC 系列 – 配置第二个网络和相应的SCAN2

发表在 ASM, Installation and Deinstall, Linux, Oracle 11.1 & Oracle11.2, RAC | 标签为 , , | 留下评论

11.2 RAC 系列-安装新主机,识别老存储-2-准备识别数据库

11.2 RAC 系列-安装新主机,识别老存储-1-识别ASM磁盘
11.2 RAC 系列-安装新主机,识别老存储-2-准备识别数据库
11.2 RAC 系列-安装新主机,识别老存储-3-配置老存储的数据库
Oracle 12.1 RAC 系列-安装新主机,识别老存储和恢复数据库
假设原来的主机已经完全不能启动了(比如硬件故障等),只能在存储上的ASM中查找数据库使用的参数文件:

[grid@lunar5 ~]$ ss

SQL*Plus: Release 11.2.0.4.0 Production on Mon Feb 15 21:48:15 2016

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management options

SYS@+ASM1>col name for a55
SYS@+ASM1>col type for a25
SYS@+ASM1>SELECT f.group_number, f.file_number, a.name name, f.type type
  2  FROM v$asm_file f, v$asm_alias a
  3  WHERE f.group_number=a.group_number and f.file_number=a.file_number
  4   and f.type='PARAMETERFILE'
  5  ORDER BY 1, 2;

    GROUP_NUMBER      FILE_NUMBER NAME                                                    TYPE
---------------- ---------------- ------------------------------------------------------- -------------------------
               2              272 spfile.272.892409049                                    PARAMETERFILE
               2              272 spfilelunar.ora                                         PARAMETERFILE

Elapsed: 00:00:00.09
SYS@+ASM1>

这里看到,数据库使用的参数文件是spfilelunar.ora,它是spfile.272.892409049的别名文件。
我们在ASM中查看一下:

ASMCMD> pwd
+datadg2/lunar
ASMCMD> ls -l
Type           Redund  Striped  Time             Sys  Name
                                                 Y    ARCHIVELOG/
                                                 Y    CONTROLFILE/
                                                 Y    DATAFILE/
                                                 Y    ONLINELOG/
                                                 Y    PARAMETERFILE/
                                                 Y    TEMPFILE/
                                                 N    spfilelunar.ora => +DATADG2/LUNAR/PARAMETERFILE/spfile.272.892409049
ASMCMD>    
我们将这个文件复制到文件系统,然后查看该文件内容,以便确定是否为我们需要使用的数据库的参数文件:
1
ASMCMD> cp +DATADG2/LUNAR/PARAMETERFILE/spfile.272.892409049 /tmp/lunar.db.spfile
copying +DATADG2/LUNAR/PARAMETERFILE/spfile.272.892409049 -> /tmp/lunar.db.spfile
ASMCMD> 

检查数据库的spfile的内容:

[root@lunar5 ~]# ll /tmp/lunar.db.spfile
-rw-r----- 1 grid oinstall 2560 Feb 15 21:51 /tmp/lunar.db.spfile
[root@lunar5 ~]# strings /tmp/lunar.db.spfile
*.audit_file_dest='/u01/app/oracle/admin/lunar/adump'
*.audit_trail='db'
*.cluster_database=true
*.compatible='11.2.0.4.0'
*.control_files='+DATADG2/lunar/controlfile/current.256.892408309','+DATADG2/lunar/controlfile/current.257.892408311'
*.db_block_size=8192
*.db_cache_size=157286400
*.db_create_file_dest='+DATADG2'
*.db_domain=''
*.db_name='lunar'
*.db_recovery_file_dest='+DATADG2'
*.db_recovery_file_dest_size=4194304000
*.diagnostic_dest='/u01/app/oracle'
lunar2.instance_number=
lunar1.instance_number=1
*.java_pool_size=31457280
*.large_pool_size=31457280
*.log_archive_format='%t_%s_%r.dbf'
*.open_cursors=300
*.pga_aggregate_target=228589568
*.processes=150
*.remote_listener='lunar-scan:1521'
*.remote_login_passwordfile='exclusive'
*.shared_pool_size=419430400
lunar2.thread=2
lunar1.thread=1
lunar2.undo_tablespace='UNDOTBS2'
lunar1.undo_tablespace='UNDOTBS1'
[root@lunar5 ~]# 

这里确定的,该文件+datadg2/lunar/spfilelunar.ora(也就是+DATADG2/LUNAR/PARAMETERFILE/spfile.272.892409049)就是我们需要使用的数据库参数文件。

发表在 ASM, Installation and Deinstall, Oracle 11.1 & Oracle11.2, RAC | 标签为 , , | 留下评论

11.2 RAC 系列-安装新主机,识别老存储-1-识别ASM磁盘

在有些场景下,RAC环境中如果主机出现问题,比如硬件故障等,不能启动,我们需要尽快存储上的启动数据库,恢复业务,那么就需要迁移以前的RAC环境到新的主机环境下,我测试了11.2和12.1的RAC,恢复过程还是很快的,基本上就是安装软件的过程,如果真实场景恢复业务,有两种方法:
1,按照我这里的方法重新安装主机,恢复RAC和数据库
2,如果之前有可用的操作系统的备份(比如NBU备份了OS),那么直接使用NBU还原即可
.
我这里测试的是方法1,重新安装11204的GI(Grid Infrastructure)和ORACLE RDBMS软件,然后识别老存储。
测试环境:单节点RAC, 操作系统是OEL Linux 6.6, 数据库版本是11.2.0.4
11.2 RAC 系列-安装新主机,识别老存储-1-识别ASM磁盘
11.2 RAC 系列-安装新主机,识别老存储-2-准备识别数据库
11.2 RAC 系列-安装新主机,识别老存储-3-配置老存储的数据库
Oracle 12.1 RAC 系列-安装新主机,识别老存储和恢复数据库
.
首先,因为存储使用的是11204的ASM,测试过程只安装11204的GI(Grid Infrastructure)软件,不用OUI配置GI。

[root@lunar5 ~]# /u01/app/oraInventory/orainstRoot.sh
Changing permissions of /u01/app/oraInventory.
Adding read,write permissions for group.
Removing read,write,execute permissions for world.

Changing groupname of /u01/app/oraInventory to oinstall.
The execution of the script is complete.
[root@lunar5 ~]# 

执行root.sh:

[root@lunar5 ~]# /u01/app/11.2.0.4/grid/root.sh
Performing root user operation for Oracle 11g 

The following environment variables are set as:
    ORACLE_OWNER= grid
    ORACLE_HOME=  /u01/app/11.2.0.4/grid

Enter the full pathname of the local bin directory: [/usr/local/bin]: 
The contents of "dbhome" have not changed. No need to overwrite.
The contents of "oraenv" have not changed. No need to overwrite.
The contents of "coraenv" have not changed. No need to overwrite.


Creating /etc/oratab file...
Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.

Using configuration parameter file: /u01/app/11.2.0.4/grid/crs/install/crsconfig_params
Creating trace directory
User ignored Prerequisites during installation
Installing Trace File Analyzer
OLR initialization - successful
  root wallet
  root wallet cert
  root cert export
  peer wallet
  profile reader wallet
  pa wallet
  peer wallet keys
  pa wallet keys
  peer cert request
  pa cert request
  peer cert
  pa cert
  peer root cert TP
  profile reader root cert TP
  pa root cert TP
  peer pa cert TP
  pa peer cert TP
  profile reader pa cert TP
  profile reader peer cert TP
  peer user cert
  pa user cert
Adding Clusterware entries to upstart
CRS-2672: Attempting to start 'ora.mdnsd' on 'lunar5'
CRS-2676: Start of 'ora.mdnsd' on 'lunar5' succeeded
CRS-2672: Attempting to start 'ora.gpnpd' on 'lunar5'
CRS-2676: Start of 'ora.gpnpd' on 'lunar5' succeeded
CRS-2672: Attempting to start 'ora.cssdmonitor' on 'lunar5'
CRS-2672: Attempting to start 'ora.gipcd' on 'lunar5'
CRS-2676: Start of 'ora.cssdmonitor' on 'lunar5' succeeded
CRS-2676: Start of 'ora.gipcd' on 'lunar5' succeeded
CRS-2672: Attempting to start 'ora.cssd' on 'lunar5'
CRS-2672: Attempting to start 'ora.diskmon' on 'lunar5'
CRS-2676: Start of 'ora.diskmon' on 'lunar5' succeeded
CRS-2676: Start of 'ora.cssd' on 'lunar5' succeeded

ASM created and started successfully.

Disk Group TEMPDG created successfully.

clscfg: -install mode specified
Successfully accumulated necessary OCR keys.
Creating OCR keys for user 'root', privgrp 'root'..
Operation successful.
CRS-4256: Updating the profile
Successful addition of voting disk 381226346c054f62bf5f219ee16d7e25.
Successfully replaced voting disk group with +TEMPDG.
CRS-4256: Updating the profile
CRS-4266: Voting file(s) successfully replaced
##  STATE    File Universal Id                File Name Disk group
--  -----    -----------------                --------- ---------
 1. ONLINE   381226346c054f62bf5f219ee16d7e25 (/dev/asm-diski) [TEMPDG]
Located 1 voting disk(s).
CRS-2672: Attempting to start 'ora.asm' on 'lunar5'
CRS-2676: Start of 'ora.asm' on 'lunar5' succeeded
CRS-2672: Attempting to start 'ora.TEMPDG.dg' on 'lunar5'
CRS-2676: Start of 'ora.TEMPDG.dg' on 'lunar5' succeeded
Configure Oracle Grid Infrastructure for a Cluster ... succeeded
[root@lunar5 ~]# 

相应的checkpoint文件内容:

[root@lunar5 ~]# ll /u01/app/grid/Clusterware/ckptGridHA_lunar5.xml
-rw-r--r-- 1 grid oinstall 4176 Feb 15 19:31 /u01/app/grid/Clusterware/ckptGridHA_lunar5.xml
[root@lunar5 ~]# 
[root@lunar5 ~]# tail  /u01/app/grid/Clusterware/ckptGridHA_lunar5.xml
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_OSDSETUP" DESC="ROOTCRS_OSDSETUP" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_ONETIME" DESC="ROOTCRS_ONETIME" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_OLR" DESC="ROOTCRS_OLR" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_GPNPSETUP" DESC="ROOTCRS_GPNPSETUP" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_OHASD" DESC="ROOTCRS_OHASD" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_INITRES" DESC="ROOTCRS_INITRES" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_ACFSINST" DESC="ROOTCRS_ACFSINST" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_BOOTCFG" DESC="ROOTCRS_BOOTCFG" STATE="SUCCESS"/>
   <CHECKPOINT LEVEL="MAJOR" NAME="ROOTCRS_NODECONFIG" DESC="ROOTCRS_NODECONFIG" STATE="SUCCESS"/>
</CHECKPOINTS>
[root@lunar5 ~]# 

这里看到“DESC=”ROOTCRS_NODECONFIG” STATE=”SUCCESS””表示GI已经配置完成。
图形界面点击ok,继续执行其余配置,配置完成后,再次检查checkpoint文件:

[root@lunar5 ~]# ll  /u01/app/grid/Clusterware/ckptGridHA_lunar5.xml
-rw-r--r-- 1 grid oinstall 4176 Feb 15 19:31 /u01/app/grid/Clusterware/ckptGridHA_lunar5.xml
[root@lunar5 ~]# cd /u01/app/grid/Clusterware/
[root@lunar5 Clusterware]# ll
total 8
-rw-r--r-- 1 grid oinstall 4176 Feb 15 19:31 ckptGridHA_lunar5.xml
[root@lunar5 Clusterware]# 

这里看到,checkpoint文件的日期没有变化,说明checkpoint文件是执行root.sh的时候才有用的,也就是这个过程是11.2中为了方便客户,增加了root.sh的失败后继续配置二设计的,非常体贴的功能。在12.2中,该功能更加方便,他将会只管的告诉你当前配置的检查点情况,如果有些步骤失败后,oracle会自动清除老的配置,以便可以失败安装后不用重装,而是纠正错误后继续配置,类似“断点续传”那种意思。
.
比如,下面是12.2beta上安装RAC时执行root.sh的过程:

[root@lunar1 ~]#  /stage/root.sh
Performing root user operation.

The following environment variables are set as:
    ORACLE_OWNER= grid
    ORACLE_HOME=  /stage

Enter the full pathname of the local bin directory: [/usr/local/bin]: 
The contents of "dbhome" have not changed. No need to overwrite.
The contents of "oraenv" have not changed. No need to overwrite.
The contents of "coraenv" have not changed. No need to overwrite.

Entries will be added to the /etc/oratab file as needed by
Database Configuration Assistant when a database is created
Finished running generic part of root script.
Now product-specific root actions will be performed.
Relinking oracle with rac_on option

Using configuration parameter file: /stage/crs/install/crsconfig_params
The log of current session can be found at:
  /u01/app/grid/crsdata/lunar1/crsconfig/rootcrs_lunar1_2016-01-24_12-44-34AM.log
2016/01/24 12:44:34 CLSRSC-46: Error: '/stage/crs/install/ParentDirPerm_lunar1.txt' does not exist

2016/01/24 12:44:34 CLSRSC-46: Error: '/stage/crs/install/ParentDirPerm_lunar1.txt' does not exist

2016/01/24 12:44:35 CLSRSC-594: Executing installation step 1 of 19: 'SetupTFA'.

2016/01/24 12:44:35 CLSRSC-4001: Installing Oracle Trace File Analyzer (TFA) Collector.

2016/01/24 12:44:35 CLSRSC-4002: Successfully installed Oracle Trace File Analyzer (TFA) Collector.

2016/01/24 12:44:35 CLSRSC-594: Executing installation step 2 of 19: 'ValidateEnv'.

2016/01/24 12:44:37 CLSRSC-363: User ignored prerequisites during installation

2016/01/24 12:44:37 CLSRSC-594: Executing installation step 3 of 19: 'CheckFirstNode'.

2016/01/24 12:44:38 CLSRSC-594: Executing installation step 4 of 19: 'GenSiteGUIDs'.

2016/01/24 12:44:39 CLSRSC-594: Executing installation step 5 of 19: 'SaveParamFile'.

2016/01/24 12:44:40 CLSRSC-594: Executing installation step 6 of 19: 'SetupOSD'.

2016/01/24 12:44:41 CLSRSC-594: Executing installation step 7 of 19: 'CheckCRSConfig'.

2016/01/24 12:44:41 CLSRSC-594: Executing installation step 8 of 19: 'SetupLocalGPNP'.

2016/01/24 12:44:42 CLSRSC-594: Executing installation step 9 of 19: 'ConfigOLR'.

2016/01/24 12:44:43 CLSRSC-594: Executing installation step 10 of 19: 'ConfigCHMOS'.

2016/01/24 12:45:30 CLSRSC-594: Executing installation step 11 of 19: 'CreateOHASD'.

2016/01/24 12:45:31 CLSRSC-594: Executing installation step 12 of 19: 'ConfigOHASD'.

2016/01/24 12:45:46 CLSRSC-330: Adding Clusterware entries to file 'oracle-ohasd.service'

2016/01/24 12:46:08 CLSRSC-594: Executing installation step 13 of 19: 'InstallAFD'.

2016/01/24 12:46:11 CLSRSC-594: Executing installation step 14 of 19: 'InstallACFS'.

2016/01/24 12:46:11 CLSRSC-594: Executing installation step 15 of 19: 'InstallKA'.

2016/01/24 12:46:14 CLSRSC-594: Executing installation step 16 of 19: 'InitConfig'.

CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'lunar1'
CRS-2673: Attempting to stop 'ora.mdnsd' on 'lunar1'
CRS-2673: Attempting to stop 'ora.gpnpd' on 'lunar1'
CRS-2677: Stop of 'ora.mdnsd' on 'lunar1' succeeded
CRS-2677: Stop of 'ora.gpnpd' on 'lunar1' succeeded
CRS-2673: Attempting to stop 'ora.evmd' on 'lunar1'
CRS-2677: Stop of 'ora.evmd' on 'lunar1' succeeded
CRS-2673: Attempting to stop 'ora.gipcd' on 'lunar1'
CRS-2677: Stop of 'ora.gipcd' on 'lunar1' succeeded
CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'lunar1' has completed
CRS-4133: Oracle High Availability Services has been stopped.
2016/01/24 12:46:23 CLSRSC-594: Executing installation step 17 of 19: 'StartCluster'.

CRS-4123: Starting Oracle High Availability Services-managed resources
CRS-2672: Attempting to start 'ora.mdnsd' on 'lunar1'
CRS-2672: Attempting to start 'ora.evmd' on 'lunar1'
CRS-2676: Start of 'ora.mdnsd' on 'lunar1' succeeded
CRS-2676: Start of 'ora.evmd' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.gpnpd' on 'lunar1'
CRS-2676: Start of 'ora.gpnpd' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.gipcd' on 'lunar1'
CRS-2676: Start of 'ora.gipcd' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.cssdmonitor' on 'lunar1'
CRS-2676: Start of 'ora.cssdmonitor' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.cssd' on 'lunar1'
CRS-2672: Attempting to start 'ora.diskmon' on 'lunar1'
CRS-2676: Start of 'ora.diskmon' on 'lunar1' succeeded
CRS-2676: Start of 'ora.cssd' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.cluster_interconnect.haip' on 'lunar1'
CRS-2672: Attempting to start 'ora.ctssd' on 'lunar1'
CRS-2676: Start of 'ora.ctssd' on 'lunar1' succeeded
CRS-2676: Start of 'ora.cluster_interconnect.haip' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.asm' on 'lunar1'
CRS-2676: Start of 'ora.asm' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.storage' on 'lunar1'
CRS-2676: Start of 'ora.storage' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.crf' on 'lunar1'
CRS-2676: Start of 'ora.crf' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.crsd' on 'lunar1'
CRS-2676: Start of 'ora.crsd' on 'lunar1' succeeded
CRS-6023: Starting Oracle Cluster Ready Services-managed resources
CRS-6017: Processing resource auto-start for servers: lunar1
CRS-6016: Resource auto-start has completed for server lunar1
CRS-6024: Completed start of Oracle Cluster Ready Services-managed resources
CRS-4123: Oracle High Availability Services has been started.
2016/01/24 12:47:34 CLSRSC-343: Successfully started Oracle Clusterware stack

2016/01/24 12:47:34 CLSRSC-594: Executing installation step 18 of 19: 'ConfigNode'.

CRS-2672: Attempting to start 'ora.ASMNET1LSNR_ASM.lsnr' on 'lunar1'
CRS-2676: Start of 'ora.ASMNET1LSNR_ASM.lsnr' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.asm' on 'lunar1'
CRS-2676: Start of 'ora.asm' on 'lunar1' succeeded
CRS-2672: Attempting to start 'ora.CRSDG.dg' on 'lunar1'
CRS-2676: Start of 'ora.CRSDG.dg' on 'lunar1' succeeded
2016/01/24 12:48:43 CLSRSC-594: Executing installation step 19 of 19: 'PostConfig'.

2016/01/24 12:49:04 CLSRSC-325: Configure Oracle Grid Infrastructure for a Cluster ... succeeded

[root@lunar1 ~]# 

可以看到,这个过程比12.2以前的RAC执行root.sh的提示更加清晰了。
好吧,回到我们的环境中,继续检查老的asm磁盘组

[grid@lunar5 ~]$ kfod disks=all ds=true cluster=true status=true
--------------------------------------------------------------------------------
 Disk          Size Header    Path                                     Disk Group   User     Group   
================================================================================
   1:        512 Mb MEMBER    /dev/asm-diskb                           DATADG1      grid     asmadmin
   2:        512 Mb MEMBER    /dev/asm-diskc                           DATADG1      grid     asmadmin
   3:        512 Mb MEMBER    /dev/asm-diskd                           DATADG1      grid     asmadmin
   4:       1024 Mb MEMBER    /dev/asm-diske                           CRSDG        grid     asmadmin
   5:       1024 Mb MEMBER    /dev/asm-diskf                           CRSDG        grid     asmadmin
   6:       1024 Mb MEMBER    /dev/asm-diskg                           CRSDG        grid     asmadmin
   7:       5120 Mb MEMBER    /dev/asm-diskh                           DATADG2      grid     asmadmin
   8:       3072 Mb MEMBER    /dev/asm-diski                           TEMPDG       grid     asmadmin
--------------------------------------------------------------------------------
ORACLE_SID ORACLE_HOME                                      HOST_NAME           
================================================================================
     +ASM1 /u01/app/11.2.0.4/grid                           lunar5              
[grid@lunar5 ~]$ 

将上述磁盘组添加到ASM启动磁盘组的列表中:

[grid@lunar5 ~]$ ss

SQL*Plus: Release 11.2.0.4.0 Production on Mon Feb 15 21:31:29 2016

Copyright (c) 1982, 2013, Oracle.  All rights reserved.


Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Real Application Clusters and Automatic Storage Management options

SQL> show parameter asm

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
asm_diskgroups                       string
asm_diskstring                       string      /dev/asm*
asm_power_limit                      integer     1
asm_preferred_read_failure_groups    string
SQL> alter system set asm_diskgroups='TEMPDG','CRSDG', 'DATADG1', 'DATADG2' scope=both;

System altered.

SQL> 

对新添加的磁盘组执行mount和dismount后,这些磁盘组就会自动添加到ocr中:

[root@lunar5 ~]# crsctl status res -t
--------------------------------------------------------------------------------
NAME           TARGET  STATE        SERVER                   STATE_DETAILS       
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.CRSDG.dg
               ONLINE  ONLINE       lunar5                                       
ora.DATADG1.dg
               ONLINE  ONLINE       lunar5                                       
ora.DATADG2.dg
               ONLINE  ONLINE       lunar5                                       
ora.LISTENER.lsnr
               ONLINE  ONLINE       lunar5                                       
ora.TEMPDG.dg
               ONLINE  ONLINE       lunar5                                       
ora.asm
               ONLINE  ONLINE       lunar5                   Started             
ora.gsd
               OFFLINE OFFLINE      lunar5                                       
ora.net1.network
               ONLINE  ONLINE       lunar5                                       
ora.ons
               ONLINE  ONLINE       lunar5                                       
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       lunar5                                       
ora.cvu
      1        ONLINE  ONLINE       lunar5                                       
ora.lunar5.vip
      1        ONLINE  ONLINE       lunar5                                       
ora.oc4j
      1        ONLINE  ONLINE       lunar5                                       
ora.scan1.vip
      1        ONLINE  ONLINE       lunar5                                       
[root@lunar5 ~]# 

检查ASM磁盘组中的内容(比如包含哪些数据库),因为ASM是采用OMF的,因此大部分情况下,通过磁盘组的目录结构就可以看出来这个存储中以前包含哪些数据库和其他相关信息:

ASMCMD> lsdg
State    Type    Rebal  Sector  Block       AU  Total_MB  Free_MB  Req_mir_free_MB  Usable_file_MB  Offline_disks  Voting_files  Name
MOUNTED  NORMAL  N         512   4096  1048576      3072     2769             1024             872              0             N  CRSDG/
MOUNTED  NORMAL  N         512   4096  1048576      1536     1251              512             369              0             N  DATADG1/
MOUNTED  EXTERN  N         512   4096  1048576      5120     3386                0            3386              0             N  DATADG2/
MOUNTED  EXTERN  N         512   4096  1048576      3072     2719                0            2719              0             Y  TEMPDG/
ASMCMD> cd +crsdg
ASMCMD> ls
ASMCMD> cd +datadg1
ASMCMD> ls
ASMCMD> cd +datadg2
ASMCMD> ls
LUNAR/
ASMCMD> 

这里看到,该存储中,包含了一个数据库,crsdg中的信息已经被我删除了,因此,没有老的ocr和voting disk文件了

现在,已经确定只有datadg2上面有数据,因此可以重组磁盘组,以便合理利用空间(后续我要用这个vm做很多其他测试):

ASMCMD> lsdg
State    Type    Rebal  Sector  Block       AU  Total_MB  Free_MB  Req_mir_free_MB  Usable_file_MB  Offline_disks  Voting_files  Name
MOUNTED  NORMAL  N         512   4096  4194304      1536     1296              512             392              0             N  DATADG1/
MOUNTED  EXTERN  N         512   4096  1048576      5120     3386                0            3386              0             N  DATADG2/
MOUNTED  EXTERN  N         512   4096  1048576      3072     3016                0            3016              0             N  DATADG3/
MOUNTED  EXTERN  N         512   4096  1048576      3072     2719                0            2719              0             Y  TEMPDG/
ASMCMD> 

使用kfod查看:

[grid@lunar5 ~]$ kfod disks=all ds=true cluster=true status=true
--------------------------------------------------------------------------------
 Disk          Size Header    Path                                     Disk Group   User     Group   
================================================================================
   1:        512 Mb MEMBER    /dev/asm-diskb                           DATADG1      grid     asmadmin
   2:        512 Mb MEMBER    /dev/asm-diskc                           DATADG1      grid     asmadmin
   3:        512 Mb MEMBER    /dev/asm-diskd                           DATADG1      grid     asmadmin
   4:       1024 Mb MEMBER    /dev/asm-diske                           DATADG3      grid     asmadmin
   5:       1024 Mb MEMBER    /dev/asm-diskf                           DATADG3      grid     asmadmin
   6:       1024 Mb MEMBER    /dev/asm-diskg                           DATADG3      grid     asmadmin
   7:       5120 Mb MEMBER    /dev/asm-diskh                           DATADG2      grid     asmadmin
   8:       3072 Mb MEMBER    /dev/asm-diski                           TEMPDG       grid     asmadmin
--------------------------------------------------------------------------------
ORACLE_SID ORACLE_HOME                                      HOST_NAME           
================================================================================
     +ASM1 /u01/app/11.2.0.4/grid                           lunar5              
[grid@lunar5 ~]$ 

确认当前的crs状态都是正常的:

[root@lunar5 ~]# crsctl status res -t
——————————————————————————–
NAME TARGET STATE SERVER STATE_DETAILS
——————————————————————————–
Local Resources
——————————————————————————–
ora.DATADG1.dg
ONLINE ONLINE lunar5
ora.DATADG2.dg
ONLINE ONLINE lunar5
ora.DATADG3.dg
ONLINE ONLINE lunar5
ora.LISTENER.lsnr
ONLINE ONLINE lunar5
ora.TEMPDG.dg
ONLINE ONLINE lunar5
ora.asm
ONLINE ONLINE lunar5 Started
ora.gsd
OFFLINE OFFLINE lunar5
ora.net1.network
ONLINE ONLINE lunar5
ora.ons
ONLINE ONLINE lunar5
——————————————————————————–
Cluster Resources
——————————————————————————–
ora.LISTENER_SCAN1.lsnr
1 ONLINE ONLINE lunar5
ora.cvu
1 ONLINE ONLINE lunar5
ora.lunar5.vip
1 ONLINE ONLINE lunar5
ora.oc4j
1 ONLINE ONLINE lunar5
ora.scan1.vip
1 ONLINE ONLINE lunar5
[root@lunar5 ~]#
至此老存储的ASM磁盘组已经在新的主机上可以识别了。

发表在 Installation and Deinstall, Linux, Oracle 11.1 & Oracle11.2, RAC | 标签为 , , | 留下评论

2016年1月PSU列表

 

从2016年1月的PSU开始,PSU的命名格式改为后缀带有PSU更新日期的格式,比以前的PSU后面带一个序列号,例如PSU5, PSU6这样的可读性要好很多。

PSU, Bundle Patches

12.1.0.2  —-  JAN2016

 Description

 PSU

    (  Patch ID  )   GI PSU

   (Windows 32bit & 64bit)
(  Patch ID  )  
 Bundle Patch

Jan-16

 21948354 (12.1.0.2.160119)

 22191349 (12.1.0.2.160119)

 22310559 (12.1.0.2.160119)

 OCT2015

 21359755 (12.1.0.2.5)

 21523234 (12.1.0.2.5)

 21821214 (12.1.0.2.10)

 JUL2015

 20831110 (12.1.0.2.4)

 20996835 (12.1.0.2.4)

 21126814 (12.1.0.2.7)

 APR2015

 20299023 (12.1.0.2.3)

 20485724 (12.1.0.2.3)

 20684004 (12.1.0.2.4)

 JAN2015

 19769480 (12.1.0.2.2)

 19954978 (12.1.0.2.2)

 19720843 (12.1.0.2.1)

 OCT2014

 19303936 (12.1.0.2.1)

 19392646 (12.1.0.2.1)

 N/A

PSU, Bundle Patches

 

12.1.0.1  —-  JAN2016
(
12.1.0.1开始,Oracle只提供PSU,不再提供SPU )

 

 Description

 PSU

 GI PSU

  Bundle Patch (Windows64bit)

 Bundle Patch (Windows32bit)

Jan-16

 21951844 (12.1.0.1.160119)

 j22191492 / k22191511(12.1.0.1.160119)

22494866 (12.1.0.2.160119)

 OCT2015

 21352619 (12.10.2.9)

 j21551666 / k21551685(12.1.0.1.9)

21744907 (12.1.0.1.21)

 JUL2015

 20831107 (12.1.0.1.8)

  j20996901 / k20996911(12.1.0.1.8)

21076681  (12.1.0.1.20)

 APR2015

 20299016 (12.1.0.1.7)

  j20485762 / k19971331(12.1.0.1.7)

20558101 (12.1.0.1.18)

 

 JAN2015

 19769486 (12.1.0.1.6)

 j19971324 / k19971331(12.1.0.1.6)

20160748 (12.1.0.1.16)

 OCT2014

 19121550 (12.1.0.1.5)

 j19392372 / k19392451(12.1.0.1.5)

19542943 (12.1.0.1.14)

 JUL2014

 18522516 (12.1.0.1.4)

 j18705901 / k18705972(12.1.0.1.4)

19062327 (12.1.0.1.11)

 APR2014

 18031528 (12.1.0.1.3)

 j18139660 / k18413105  (12.1.0.1.3)

18448604 (12.1.0.1.7)

 JAN2014

 17552800 (12.1.0.1.2)

 17735306 (12.1.0.1.2)

17977915 (12.1.0.1.3)

 OCT2013

 17027533 (12.1.0.1.1)

 17272829 (12.1.0.1.1)

 17363796 (12.1.0.1.1)

 17363795 (12.1.0.1.1)

PSU, SPU(CPU), Bundle Patches

 

11.2.0.4  —-  JAN2016

 

 Description

 PSU

 SPU(CPU)

 GI PSU

 Bundle Patch (Windows 32bit & 64bit)

 JAN2016

 21948347 (11.2.0.4.160119)

 21972320 (11.2.0.4.160119)

 22191577 (11.2.0.4.160119)

 22310544 (11.2.0.4.160119)

 OCT2015

 21352635 (11.2.0.4.8)

 21352646

 21523375 (11.2.0.4.8)

 21821802 (11.2.0.4.20)

 JUL2015

 20760982 (11.2.0.4.7)

 20803583

 20996923 (11.2.0.4.7)

 21469106 (11.2.0.4.18)

 APR2015

 20299013 (11.2.0.4.6)

 20299015

 20485808 (11.2.0.4.6)

 20544696 (11.2.0.4.15)

 JAN2015

 19769489 (11.2.0.4.5)

 19854503

 19955028 (11.2.0.4.5)

 20127071 (11.2.0.4.12)

 OCT2014

 19121551 (11.2.0.4.4)

 19271443

 19380115 (11.2.0.4.4)

 19651773 (11.2.0.4.10)

 JUL2014

 18522509 (11.2.0.4.3)

 18681862

 18706472 (11.2.0.4.3)

 18842982 (11.2.0.4.7)

 APR2014

 18031668 (11.2.0.4.2)

 18139690

 18139609 (11.2.0.4.2)

 18296644 (11.2.0.4.4)

 

 JAN2014

 17478514 (11.2.0.4.1)

 17551709

 N/A

 17987366 (11.2.0.4.1)

PSU, SPU(CPU), Bundle Patches

 

 

11.2.0.3  — JUL2015

 

 

 

 

 

 

 Description

 PSU

 SPU(CPU)

 GI PSU

 Bundle Patch(Windows64bit)

 Bundle Patch(Windows32bit)

 aJUL2015

 20760997 (11.2.0.3.15)

 20803576

 20996944 (11.2.0.3.15)

 21104036

 21104035

 APR2015

 20299017 (11.2.0.3.14)

 20299010

 20485830 (11.2.0.3.14)

 20420395

 20420394

 JAN2015

 19769496 (11.2.0.3.13)

 19854461

 19971343 (11.2.0.3.13)

 20233168

 20233167

 OCT2014

 19121548 (11.2.0.3.12)

 19271438

 19440385 (11.2.0.3.12)

 19618575

 19618574

 JUL2014

 18522512 (11.2.0.3.11)

 18681866

 18706488 (11.2.0.3.11)

 18940194

 18940193

 APR2014

 18031683 (11.2.0.3.10)

 18139695

 18139678 (11.2.0.3.10)

 18372244

 18372243

 JAN2014

 17540582 (11.2.0.3.9)

 17478415

 17735354 (11.2.0.3.9)

 18075406

 17906981

 OCT2013

 16902043 (11.2.0.3.8)

 17082364

 17272731 (11.2.0.3.8)

 17363850

 17363844

 JUL2013

 16619892 (11.2.0.3.7)

 16742095

 16742216 (11.2.0.3.7)

 16803775

 16803774

 APR2013

 16056266 (11.2.0.3.6)

 16294378

 16083653 (11.2.0.3.6)

 16345834

 16345833

 JAN2013

 14727310 (11.2.0.3.5)

 14841409

 14727347 (11.2.0.3.5)

 16042648

 16042647

 OCT2012

 14275605 (11.2.0.3.4)

 14390252

 14275572 (11.2.0.3.4)

 14613223

 14613222

 JUL2012

 13923374 (11.2.0.3.3)

 14038787

 13919095 (11.2.0.3.3)

 14223718

 14223717

 APR2012

 13696216 (11.2.0.3.2)

 13632717

 13696251 (11.2.0.3.2)

 13885389

 13885388

 JAN2012

 13343438 (11.2.0.3.1)

 13466801

 13348650 (11.2.0.3.1)

 13413168

 13413167

PSU, SPU(CPU), Bundle Patches

 

 

11.2.0.2   – OCT2013

 

 Description

 PSU

  SPU(CPU)

 GI PSU

 Bundle Patch(Windows64bit)

 Bundle Patch(Windows32bit)

 aOCT2013

 17082367 (11.2.0.2.12)

 17082375

 17272753 (11.2.0.2.12)

 17363838

 17363837

 JUL2013

 16619893 (11.2.0.2.11)

 16742100

 16742320 (11.2.0.2.11)

 16345852

 16345851

 APR2013

 16056267 (11.2.0.2.10)

 16294412

 16166868 (11.2.0.2.10)

 16345846

 16345845

 JAN2013

 14727315 (11.2.0.2.9)

 14841437

 14841385 (11.2.0.2.9)

 16100399

 16100398

 OCT2012

 14275621 (11.2.0.2.8)

 14390377

 14390437 (11.2.0.2.8)

 14672268

 14672267 

 JUL2012

 13923804 (11.2.0.2.7)

 14038791

 14192201 (11.2.0.2.7)

 14134043

 14134042

 APR2012

 13696224 (11.2.0.2.6)

 13632725

 13696242 (11.2.0.2.6)

 13697074

 13697073

 JAN2012

 13343424 (11.2.0.2.5)

 13343244

 13653086 (11.2.0.2.5)

 13413155

 13413154

 OCT2011

 12827726 (11.2.0.2.4)

 12828071

 12827731 (11.2.0.2.4)

 13038788

 13038787

 JUL2011

 12419331 (11.2.0.2.3)

 12419321

 12419353 (11.2.0.2.3)

 12714463

 12714462

 APR2011

 11724916 (11.2.0.2.2)

 11724984

 12311357 (11.2.0.2.2)

 11896292

 11896290

 JAN2011

 10248523 (11.2.0.2.1)

 N/A

 N/A

 10432053

 10432052

PSU, SPU(CPU), Bundle Patches

11.2.0.1   – JUL2011

 

 Description

 PSU

 CPU

 Bundle Patch (Windows64bit)

 Bundle Patch (Windows32bit)

 aJUL2011

 12419378 (11.2.0.1.6)

 12419278

 12429529

 12429528

 APR2011

 11724930 (11.2.0.1.5)

 11724991

 11731176

 11883240

 JAN2011

 10248516 (11.2.0.1.4)

 10249532

 10432045

 10432044

 OCT2010

 9952216 (11.2.0.1.3)

 9952260

 10100101

 10100100

 JUL2010

 9654983 (11.2.0.1.2)

 9655013

 9736865

 9736864

 APR2010

 9352237 (11.2.0.1.1)

 9369797

 N/A

 N/A

PSU, SPU(CPU), Bundle Patches

 

11.1.0.7   – JUL2015

 

 Description

 PSU

 SPU(CPU)

 Bundle Patch (Windows64bit)

 Bundle Patch (Windows32bit)

bJUL2015

 20761024 (11.1.0.7.24)

 20803573

 21104030

 21104029

bAPR2015

 20299012 (11.1.0.7.23)

 20299020

 20420391

 20420390

bJAN2015

 19769499 (11.1.0.7.22)

 19854433

 20126915

 20126914

bOCT2014

 19152553 (11.1.0.7.21)

 19274522

 19609034

 19609032

bJUL2014

 18522513 (11.1.0.7.20)

 18681875

 18944208

 18944207

bAPR2014

 18031726 (11.1.0.7.19)

 18139703

 18372258

 18372257

bJAN2014

 17465583 (11.1.0.7.18)

 17551415

 17906936

 17906935

bOCT2013

 17082366 (11.1.0.7.17)

 17082374

 17363760

 17363759

bJUL2013

 16619896 (11.1.0.7.16)

 16742110

 16803788

 16803787

bAPR2013

 16056268 (11.1.0.7.15)

 16308394

 16345862

 16345861

bJAN2013

 14739378 (11.1.0.7.14)

 14841452

 15848067

 15848066

 bOCT2012

 14275623 (11.1.0.7.13)

 14390384

 14672313

 14672312

 

 JUL2012

 13923474 (11.1.0.7.12)

 14038803

 14109868

 14109867

 APR2012

 13621679 (11.1.0.7.11)

 13632731

 13715810

 13715809

 JAN2012

 13343461 (11.1.0.7.10)

 13343453

 13460956

 13460955

 OCT2011

 12827740 (11.1.0.7.9)

 12828097

 12914916

 12914915

 JUL2011

 12419384 (11.1.0.7.8)

 12419265

 12695278

 12695277

 APR2011

 11724936 (11.1.0.7.7)

 11724999

 11741170

 11741169

 JAN2011

 10248531 (11.1.0.7.6)

 10249534

 10350788

 10350787

 OCT2010

 9952228  (11.1.0.7.5)

 9952269

 9773825

 9773817

 JUL2010

 9654987 (11.1.0.7.4)

 9655014

 9869912

 9869911

 APR2010

 9352179 (11.1.0.7.3)

 9369783

 9392335

 9392331

 JAN2010

 9209238 (11.1.0.7.2)

 9114072

 9166861

 9166858

 OCT2009

 8833297 (11.1.0.7.1)

 8836375

 8928977

 8928976

 JUL2009

 N/A

 8534338

 8553515

 8553512

 APR2009

 N/A

 8290478

 8343070

 8343061

PSU, SPU(CPU), Bundle Patches

11.1.0.6   — JUL2009

 

 Description

 CPU

 Bundle Patch (Windows64bit)

 Bundle Patch (Windows32bit)

 aJUL2009

 8534378

 8563155

 8563154 

 APR2009

 8290402

 8333657

 8333655 

 JAN2009

 7592335

 7631981

 7631980 

 OCT2008

 7375639

 7378393

 7378392 

 JUL2008

 7150417

 7210197

 7210195 

 APR2008

 6864063

 6867180

 6867178 

PSU, SPU(CPU), Bundle Patches

10.2.0.5  — JUL2013

 

 Description

 PSU

 SPU(CPU)

 Bundle Patch(Windows64bit)

 Bundle Patch(Windows32bit)

 Bundle Patch(WindowsItanium)

bJUL2015

 20299014 (10.2.0.5.19)

 20299021

 20420387

 20420386

 N/A

 APR2015

 N/A

 N/A

 N/A

 N/A

 N/A

 JAN2015

 19769505 (10.2.0.5.18)

 19854436

 20126868

 20126867

 N/A

 OCT2014

 19274523 (10.2.0.5.17)

 19274521

 19618565

 19618563

 N/A

 JUL2014

 18522511 (10.2.0.5.16)

 18681879

 18940198

 18940196

 N/A

 APR2014

 18031728 (10.2.0.5.15)

 18139709

 18372261

 18372259

 N/A

 JAN2014

 17465584 (10.2.0.5.14)

 17551414

 17906974

 17906972

 N/A

 OCT2014

 17082365 (10.2.0.5.13)

 17082371

 N/A

 17363822

 N/A

 

abJUL2013

 16619894 (10.2.0.5.12)

 16742123

 16803782

 16803780

 16803781

 bAPR2013

 16056270 (10.2.0.5.11)

 16270946

 16345857

 16345855

 16345856

 bJAN2013

 14727319 (10.2.0.5.10)

 14841459

 15848062

 15848060

 15848061

 bOCT2012

 14275629 (10.2.0.5.9)

 14390396

 14553358

 14553356

 14553357

 bJUL2012

 13923855 (10.2.0.5.8)

 14038805

 14134053

 14134051

 14134052

 bAPR2012

 13632743 (10.2.0.5.7)

 13632738

 13654815

 13654814

 13870404

 JAN2012

 13343471 (10.2.0.5.6)

 13343467

 b13460968

b13460967

 N/A

 bOCT2011

 12827745 (10.2.0.5.5)

 12828105

 c12914913

 12914911

 N/A

 JUL2011

 12419392 (10.2.0.5.4)

 12419258

 12429524

 12429523

 N/A

 APR2011

 11724962 (10.2.0.5.3)

 11725006

 12328269

 12328268

 N/A

 JAN2011

 10248542 (10.2.0.5.2)

 10249537

 10352673

 10352672

 N/A

 OCT2010

 9952230 (10.2.0.5.1)

 9952270

 10099855

 10058290

 N/A

PSU, SPU(CPU), Bundle Patches
201210月,CPU改名为SPU了,主要针对一些系统漏洞等安全问题出的季度补丁

10.2.0.4   — JUL2013

 

 Description

 PSU

 SPU(CPU)

 Bundle Patch(Windows32bit)

 Bundle Patch(Windows64bit)

 Bundle Patch(WindowsItanium)

 bgJUL2013

 16619897 (10.2.0.4.17)

 16742253

 N/A

 N/A

 N/A

 bgAPR2013

 16056269 (10.2.0.4.16)

 16270931

 N/A

 N/A

 N/A

 bgJAN2013

 14736542 (10.2.0.4.15)

 14841471

 N/A

 N/A

 N/A

bgOCT2012

 14275630 (10.2.0.4.14)

 14390410

 N/A

 N/A

 N/A

bgJUL2012

 13923851 (10.2.0.4.13)

 14038814

 N/A

 N/A

 N/A

 abAPR2012

 12879933 (10.2.0.4.12)

 12879926

 13928775

 13928776

 N/A

 JAN2012

 12879929 (10.2.0.4.11)

 12879912

 b13654060

 N/A

 N/A

 bOCT2011

 12827778 (10.2.0.4.10)

 12828112

 12914908

 12914910

 12914909

 JUL2011

 12419397 (10.2.0.4.9)

 12419249

 12429519

 12429521

 12429520

 APR2011

 11724977 (10.2.0.4.8)

 11725015

 12328501

 12328503

 12328502

 JAN2011

 10248636 (10.2.0.4.7)

 10249540

 10349197

 10349200

 10349198

 OCT2010

 9952234 (10.2.0.4.6)

 9952272

 10084980

 10084982

 10084981

 JUL2010

 9654991 (10.2.0.4.5)

 9655017

 9777076

 9777078

 9777077

 APR2010

 9352164 (10.2.0.4.4)

 9352191

 9393548

 9393550

 9393549

 JAN2010

 9119284 (10.2.0.4.3)

 9119226

 9169457

 9169460

 9169458

 OCT2009

 8833280 (10.2.0.4.2)

 8836308

 8880857

 8880861

 8880858

 JUL2009

 8576156 (10.2.0.4.1)

 8534387

 8559466

 8559467

 8541782

 APR2009

 N/A

 8290506

 8307237

 8307238

 8333678

 JAN2009

 N/A

 7592346

 7584866

 7584867

 N/A

 OCT2008

 N/A

 7375644

 7386320

 7386321

 N/A

 JUL2008

 N/A

 7150470

 7218676

 7218677

 N/A

CPU, Bundle Patches

10.2.0.3  —–  JAN2009

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 Bundle Patch (Windows64bit)

 aJAN2009

 7592354

 7631956

 7631958

 7631957

 OCT2008

 7369190

 7353782

 7353784

 7353785

 JUL2008

 7150622

 7252496

 7252497

 7252498

 APR2008

 6864068

 6867054

 6867055

 6867056

 JAN2008

 6646853

 6637237

 6637238

 6637239

 OCT2007

 6394981

 6430171

 6430173

 6430174

 JUL2007

 6079591

 6116131

 6038242

 6116139

 APR2007

 5901891

 5948242

 5916262

 5948243

 JAN2007

 5881721

 5846376

 5846377

 5846378

CPU, Bundle Patches

10.2.0.2   —–  JAN2009

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

  Bundle Patch (Windows64bit)

 Bundle Patch (WindowsItanium)

 iJAN2009

 7592355

 N/A

 N/A

 N/A

 hOCT2008

 7375660

 N/A

 N/A

 N/A

 hJUL2008

 7154083

 N/A

 N/A

 N/A

 hAPR2008

 6864071

 N/A

 N/A

 N/A

 aJAN2008

 6646850

 N/A

 N/A

 N/A

 fOCT2007

 6394997

 6397028

 6397030

 6397029

 JUL2007

 6079588

 6013105

 6013121

 6013118

 APR2007

 5901881

 5912173

 5912179

 5912176

 JAN2007

 5689957

 5716143

 5699839

 5699824

 OCT2006

 5490848

 5502226

 5500921

 5500894

 JUL2006

 5225799

 5251025

 5251028

 5251026

 APR2006

 5079037

 5140461

 5140567

 5140508

CPU, Bundle Patches

10.2.0.1  —–APR2007

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (Windows64bit)

 Bundle Patch (WindowsItanium)

 APR2007

 5901880

 N/A

 N/A

 N/A

 JAN2007

 5689937

 5695784

 5695786

 5695785

 OCT2006

 5490846

 5500927

 5500954

 5500951

 JUL2006

 5225798

 5239698

 5239701

 5239699

 APR2006

 5049080

 5059238

 5059261

 5059251

 JAN2006

 4751931

 4751539

 4770480

 4751549

CPU, Bundle Patches

10.1.0.5   —-   JAN2012

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

  Bundle Patch (WindowsItanium)

 JAN2012

 13343482

 13413002

 13413003

 OCT2011

 12828135

 12914905

 12914906

 JUL2011

 12419228

 12429517

 12429518

 APR2011

 11725035

 11731119

 11731120

 JAN2011

 N/A

 N/A

 N/A

 OCT2010

 9952279

 10089559

 10089560

 JUL2010

 9655023

 9683651

 9683652

 APR2010

 9352208

 9390288

 9390289

 JAN2010

 9119261

 9187104

 9187105

 OCT2009

 8836540

 8785211

 8785212

 JUL2009

 8534394

 8656224

 8656226

 APR2009

 8290534

 8300356

 8300360

 JAN2009

 7592360

 7486619

 7586049

 OCT2008

 7375686

 7367493

 7367494

 JUL2008

 7154097

 7047034

 7047037

 APR2008

 6864078

 6867107

 6867108

 JAN2008

 6647005

 6637274

 6637275

 OCT2007

 6395024

 6408393

 6408394

 JUL2007

 6079585

 6115804

 6115818

 APR2007

 5901877

 5907304

 5907305

 JAN2007

 5689908

 5716295

 5634747

 OCT2006

 5490845

 5500883

 5500885

 JUL2006

 5225797

 5251148

 5251140

 APR2006

 5049074

 5057606

 5057609

 JAN2006

 4751932

 4882231

 4882236

CPU, Bundle Patches

10.1.0.4 ——APR2007

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 APR2007

 5901876

 5909871

 5909879

 JAN2007

 5689894

 5695771

 5695772

 OCT2006

 5490844

 5500878

 5500880

 JUL2006

 5225796

 5239736

 5239737

 APR2006

 5049067

 5059200

 5059227

 JAN2006

 4751928

 4751259

 4745040

 OCT2005

 4567866

 4579182

 4579188

 JUL2005

 4392423

 4440706

 4404600

 APR2005

 4210374

 4287619

 4287611

 

 

 

 

 

 

 

 

CPU, Bundle Patches

10.1.0.3   — JAN2007

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 JAN2007

 5923277

 N/A

 N/A

 OCT2006

 5566825

 N/A

 N/A

 JUL2006

 5435164

 N/A

 N/A

 APR2006

 5158022

 N/A

 N/A

 JAN2006

 4751926

 4741077

 4741084

 OCT2005

 4567863

 4567518

 4567523

 JUL2005

 4392409

 4389012

 4389014

 APR2005

 4193286

 4269715

 4158888

 JAN2005

 4003062

 4074232

 3990812

CPU, Bundle Patches

10.1.0.2   —- APR2005

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 APR2005

 4193293

 4181849

 4213305

 JUL2005

 4400766

 4388944

 4388948

 JAN2005

 4003051

 4104364

 4083038

CPU, Bundle Patches

9.2.0.8   — JUL2010

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 JUL2010

 9655027

 9683644

 9683645

 APR2010

 9352224

 9390286

 N/A

 JAN2010

 9119275

 9187106

 N/A

 OCT2009

 8836758

 8785185

 8785186

 JUL2009

 8534403

 8427417

 8427418

 APR2009

 8290549

 8300340

 8300346

 JAN2009

 7592365

 7703210

 7703212

 OCT2008

 7375695

 7394394

 7394402

 JUL2008

 7154111

 7047026

 7047029

 APR2008

 6864082

 6867138

 6867139

 JAN2008

 6646842

 6637265

 6637266

 OCT2007

 6395038

 6417013

 6417014

 JUL2007

 6079582

 6130293

 6130295

 APR2007

 5901875

 5916268

 5916275

 JAN2007

 N/A   

 N/A   

 N/A   

 OCT2006

 5490859

 5652380

 5639519

 

 

 

 

 

 

 

 

CPU, Bundle Patches

9.2.0.7 —- JUL2007

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 JUL2007

 6079579

 6146759

 6146748

 APR2007

 5901872

 5907274

 5907275

 JAN2007

 5689875

 5654905

 5654909

 OCT2006

 5490841

 5500873

 5500874

 JUL2006

 5225794

 5250980

 5250981

 APR2006

 5049060

 5064365

 5064364

 JAN2006

 4751923

 4751528

 4741074

 OCT2005

 4567854

 4579590

 4579599

 JUL2005

 4547566

 N/A   

 N/A   

CPU, Bundle Patches

9.2.0.6   – OCT2006

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 OCT2006

 5490840

 5500865

 5500871

 JUL2006

 5225793

 5239794

 5239793

 APR2006

 5049051

 5059614

 5059615

 JAN2006

 4751921

 4751261

 4751262

 OCT2005

 4567846

 4579093

 4579097

 JUL2005

 4392392

 4445852

 4401917

 APR2005

 4193295

 4269928

 4213298

CPU, Bundle Patches

9.2.0.5   – OCT2006

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 OCT2006

 5689708

 N/A

 N/A

 JUL2006

 5435138

 N/A

 N/A

 APR2006

 5219762

 N/A

 N/A

 OCT2005

 4560421

 N/A

 N/A

 JUL2005

 4392256

 4387563

 4391819

 APR2005

 4193299

 4195791

 4214192

 JAN2005

 4003006

 4104374

 3990809

CPU, Bundle Patches

9.2.0.4   – JAN2005

 

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 Bundle Patch (WindowsItanium)

 JAN2005

 4002994

 4104369

 4083202

 

CPU, Bundle Patches

 

8.1.7.4   – JAN2007

 Description

 CPU (Unix/Linux)

 Bundle Patch (Windows32bit)

 JAN2007

 5689799

 5686514

 OCT2006

 5490835

 5496067

 JUL2006

 5225788

 5236412

 APR2006

 5045247

 5057601

 JAN2006

 4751906

 4751570

 OCT2005

 4560405

 4554818

 JUL2005

 4392446

 4437058

 APR2005

 4193312

 4180163

 JAN2005

 4002909

 3921893

 

 

 

 

PSU, Bundle Patches
12.1.0.2  —-  JAN2016
 Description  PSU     (  Patch ID  )   GI PSU     (Windows 32bit & 64bit)
(  Patch ID  )  
 Bundle Patch
Jan-16  21948354 (12.1.0.2.160119)  22191349 (12.1.0.2.160119)  22310559 (12.1.0.2.160119)
 OCT2015  21359755 (12.1.0.2.5)  21523234 (12.1.0.2.5)  21821214 (12.1.0.2.10)
 JUL2015  20831110 (12.1.0.2.4)  20996835 (12.1.0.2.4)  21126814 (12.1.0.2.7)
 APR2015  20299023 (12.1.0.2.3)  20485724 (12.1.0.2.3)  20684004 (12.1.0.2.4)
 JAN2015  19769480 (12.1.0.2.2)  19954978 (12.1.0.2.2)  19720843 (12.1.0.2.1)
 OCT2014  19303936 (12.1.0.2.1)  19392646 (12.1.0.2.1)  N/A
发表在 Installation and Deinstall, SAP | 标签为 , , | 留下评论

单实例数据库转换为RAC数据库–使用rconfig转换

测试目的: 单实例数据库转换为RAC数据库
测试环境:Oracle 11.2.0.3
测试方法:使用rconfig的方式

.
$su – oracle
cp $ORACLE_HOME/assistants/rconfig/sampleXMLs/ConvertToRAC_AdminManaged.xml lunar.xml
转换过程超级简单,如果你观察操作过程的rconfig日志会发现,这个方法的本质是:
1,后台自动配置RAC的CRS配置信息(CRS的,spfile的,口令文件等等)
2,自动调用rman进行backup of copy类型的数据库备份和恢复
3,自动添加RAC中第二个节点的thread 2的redo logfile group
.
具体操作如下:

[oracle@rac1 test]$ rconfig lunar.xml
Converting Database "lunar" to Cluster Database. Target Oracle Home: /u01/app/oracle/product/11.2.0/db_1. Database Role: PRIMARY.
Setting Data Files and Control Files
Adding Database Instances
Adding Redo Logs
Enabling threads for all Database Instances
Setting TEMP tablespace
Adding UNDO tablespaces
Adding Trace files
Setting Fast Recovery Area
Updating Oratab
Creating Password file(s)
Configuring Listeners
Configuring related CRS resources
Starting Cluster Database
<?xml version="1.0" ?>
<RConfig version="1.1" >
<ConvertToRAC>
    <Convert>
      <Response>
        <Result code="0" >
          Operation Succeeded
        </Result>
      </Response>
      <ReturnValue type="object">
<Oracle_Home>
         /u01/app/oracle/product/11.2.0/db_1
       </Oracle_Home>
       <Database type="ADMIN_MANAGED"  >
         <InstanceList>
           <Instance SID="lunar1" Node="rac1"  >
           </Instance>
           <Instance SID="lunar2" Node="rac2"  >
           </Instance>
         </InstanceList>
       </Database>     </ReturnValue>
    </Convert>
  </ConvertToRAC></RConfig>
[oracle@rac1 test]$ 

执行期间可以观察日志,看看rconfig怎么完成转换的,我个人觉得这个很有意思。
日志位置:$ORACLE_BASE/cfgtoollogs/rconfig_时间戳。
.
检查转换后的CRS状态:

[root@rac2 ~]# crsctl status res -t
--------------------------------------------------------------------------------
NAME           TARGET  STATE        SERVER                   STATE_DETAILS       
--------------------------------------------------------------------------------
Local Resources
--------------------------------------------------------------------------------
ora.ASMDATA.dg
               ONLINE  ONLINE       rac1                                         
               ONLINE  ONLINE       rac2                                         
ora.DATA.dg
               ONLINE  ONLINE       rac1                                         
               ONLINE  ONLINE       rac2                                         
ora.LISTENER.lsnr
               ONLINE  ONLINE       rac1                                         
               ONLINE  ONLINE       rac2                                         
ora.LISTENER_DG.lsnr
               ONLINE  ONLINE       rac1                                         
               ONLINE  ONLINE       rac2                                         
ora.asm
               ONLINE  ONLINE       rac1                     Started             
               ONLINE  ONLINE       rac2                     Started             
ora.gsd
               OFFLINE OFFLINE      rac1                                         
               OFFLINE OFFLINE      rac2                                         
ora.net1.network
               ONLINE  ONLINE       rac1                                         
               ONLINE  ONLINE       rac2                                         
ora.net2.network
               ONLINE  ONLINE       rac1                                         
               ONLINE  ONLINE       rac2                                         
ora.ons
               ONLINE  INTERMEDIATE rac1                     CHECK TIMED OUT     
               ONLINE  INTERMEDIATE rac2                     CHECK TIMED OUT     
--------------------------------------------------------------------------------
Cluster Resources
--------------------------------------------------------------------------------
ora.LISTENER_SCAN1.lsnr
      1        ONLINE  ONLINE       rac2                                         
ora.cvu
      1        ONLINE  ONLINE       rac2                                         
ora.lunar.db
      1        ONLINE  ONLINE       rac1                     Open                
      2        ONLINE  ONLINE       rac2                     Open                
ora.oc4j
      1        ONLINE  ONLINE       rac1                                         
ora.r-dg1-vip.vip
      1        ONLINE  ONLINE       rac1                                         
ora.r-dg2-vip.vip
      1        ONLINE  ONLINE       rac2                                         
ora.rac1.vip
      1        ONLINE  ONLINE       rac1                                         
ora.rac2.vip
      1        ONLINE  ONLINE       rac2                                         
ora.racdb.db
      1        OFFLINE OFFLINE                               Instance Shutdown   
      2        OFFLINE OFFLINE                               Instance Shutdown   
ora.scan1.vip
      1        ONLINE  ONLINE       rac2                                         
[root@rac2 ~]# 

常见问题1:
报错信息:The cluster is not configured or is not running on node: RAC1

[oracle@RAC1 test]$ rconfig lunar.xml
<?xml version="1.0" ?>
<RConfig version="1.1" >
<ConvertToRAC>
    <Convert>
      <Response>
        <Result code="1" >
          Operation Failed
        </Result>
       <ErrorDetails>
             The cluster is not configured or is not running on node: RAC1
       </ErrorDetails>
      </Response>
    </Convert>
  </ConvertToRAC></RConfig>
[oracle@RAC1 test]$ 

解决方法:首先需要把这个单机数据库加入CRS

.
常见问题2:
报错信息:Node that has single instance database running should be specified in the NodeList. Please specify node RAC1 as part of NodeList.

[oracle@RAC1 test]$ rconfig lunar.xml
<?xml version="1.0" ?>
<RConfig version="1.1" >
<ConvertToRAC>
    <Convert>
      <Response>
        <Result code="1" >
          Got Exception
        </Result>
       <ErrorDetails>
             Node that has single instance database running should be specified in the NodeList. Please specify node RAC1 as part of NodeList.
Operation Failed. Refer logs at /u01/app/oracle/cfgtoollogs/rconfig/rconfig_06_24_13_07_46_07.log for more details.

       </ErrorDetails>
      </Response>
    </Convert>
  </ConvertToRAC></RConfig>
[oracle@RAC1 test]$ 

解决方法:修改数据库参数,检查两个实例的参数配置正常,并使用spfile重启数据后,再次测试
例如:

[oracle@rac1 test]$ cat spfile.lunar.bak
*.audit_file_dest='/u01/app/oracle/admin/lunar/adump'
*.audit_trail='none'
*.compatible='11.2.0.3.0'
*.control_files='+ASMDATA/lunar/control01.ctl','+DATA/lunar/control02.ctl'
*.db_block_size=8192
*.db_domain=''
*.db_name='lunar'
*.db_recovery_file_dest='+ASMDATA'
*.db_recovery_file_dest_size=10485760000
*.deferred_segment_creation=FALSE
*.diagnostic_dest='/u01/app/oracle'
*.open_cursors=300
*.pga_aggregate_target=153092096
*.processes=150
*.remote_login_passwordfile='EXCLUSIVE'
*.sga_target=629145600
lunar1.undo_tablespace='UNDOTBS1'
#lunar2.undo_tablespace='UNDOTBS2'
*.db_create_file_dest='+ASMDATA'
*.db_create_online_log_dest_1='+DATA'
lunar1.instance_number=1
lunar2.instance_number=2
*.cluster_database=true
*.cluster_database_instances=2
*.undo_management=AUTO
lunar1.instance_name=lunar1
lunar2.instance_name=lunar2
lunar1.thread=1
lunar2.thread=2
lunar1.local_listener=LISTENER_RAC1
lunra2.local_listener=LISTENER_RAC2

[oracle@rac1 test]$ 

常见问题3:
报错信息:There is no return value for this step

[oracle@rac1 test]$ rconfig lunar.xml
<?xml version="1.0" ?>
<RConfig version="1.1" >
<ConvertToRAC>
    <Convert>
      <Response>
        <Result code="0" >
          Operation Succeeded
        </Result>
      </Response>
      <ReturnValue type="object">
There is no return value for this step     </ReturnValue>
    </Convert>
  </ConvertToRAC></RConfig>
[oracle@rac1 test]$ 

解决方法:修改 Convert verify=”YES” ,然后进行单机到RAC的转换。

整个过程的执行日志:

[main] [ 2013-06-24 08:11:32.949 CST ] [RConfig.<init>:88]  java.class.path=/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/rt.jar:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/i18n.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/jlib/rconfigPatch.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/jlib/rconfig.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/jlib/assistantsCommon.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/ewt3.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/ewtcompat-3_3_15.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/share.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/help4.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/jewt4.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/oracle_ice5.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/kodiak.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/swingall-1_1_1.jar:/u01/app/oracle/product/11.2.0/db_1/lib/xmlparserv2.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n-mapping.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n-utility.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n-collation.jar::/u01/app/oracle/product/11.2.0/db_1/jlib/ldapjclnt11.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/netcfg.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/ojmisc.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/oraclepki103.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/opm.jar:/u01/app/oracle/product/11.2.0/db_1/jdbc/lib/ojdbc5.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/srvm.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/srvmhas.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/srvmasm.jar:/u01/app/oracle/product/11.2.0/db_1/classes:/u01/app/oracle/product/11.2.0/db_1/jlib/oemlt.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/emca.jar:/u01/app/oracle/product/11.2.0/db_1/sysman/jlib/emCORE.jar:/u01/app/oracle/product/11.2.0/db_1/oc4j/j2ee/home/oc4j.jar:/u01/app/oracle/product/11.2.0/db_1/oc4j/j2ee/home/db_oc4j_deploy.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/emConfigInstall.jar:/u01/app/oracle/product/11.2.0/db_1/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/11.2.0/db_1/oui/jlib/OraPrereq.jar:/u01/app/oracle/product/11.2.0/db_1/inventory/prereqs/oui/OraPrereqChecks.jar:/u01/app/oracle/product/11.2.0/db_1/oui/jlib/OraPrereqChecks.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/cvu.jar:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/ext/sunjce_provider.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/asmca/jlib/asmca.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/gns.jar
[main] [ 2013-06-24 08:11:32.951 CST ] [RConfig.<init>:89]  java.home=/u01/app/oracle/product/11.2.0/db_1/jdk/jre
[main] [ 2013-06-24 08:11:32.952 CST ] [RConfig.<init>:90]  rconfig.user.dir=/home/oracle/test
[main] [ 2013-06-24 08:11:33.381 CST ] [ConfigParser.createURL:182]  PATH=/home/oracle/test/oracle/sysman/assistants/rconfig/parser/rconfig.xsd
[main] [ 2013-06-24 08:11:33.382 CST ] [ConfigParser.createURL:197]  URL=file:/home/oracle/test/oracle/sysman/assistants/rconfig/parser/rconfig.xsd
[main] [ 2013-06-24 08:11:33.385 CST ] [ConfigParser.parse:104]  Found the parser at url file:/home/oracle/test/oracle/sysman/assistants/rconfig/parser/rconfig.xsd
[main] [ 2013-06-24 08:11:33.586 CST ] [ConfigParser.parse:136]  Input File is not null, parsing input file xml
[main] [ 2013-06-24 08:11:33.587 CST ] [ConfigParser.parse:143]  Input xml Path : lunar.xml
[main] [ 2013-06-24 08:11:33.588 CST ] [ConfigParser.parse:147]  validating the input against rconfig.xsd:
[main] [ 2013-06-24 08:11:33.596 CST ] [ConfigurationHandler.startElement:114]  localName=RConfig
[main] [ 2013-06-24 08:11:33.598 CST ] [ConfigurationHandler.startElement:114]  localName=ConvertToRAC
[main] [ 2013-06-24 08:11:33.611 CST ] [ConfigurationHandler.processElement:75]  RACConversion request created
[main] [ 2013-06-24 08:11:33.612 CST ] [ConfigurationHandler.startElement:114]  localName=Convert
[main] [ 2013-06-24 08:11:33.640 CST ] [Convert.<init>:96]  doPrechecks=YES
[main] [ 2013-06-24 08:11:33.642 CST ] [ConfigurationHandler.startElement:114]  localName=SourceDBHome
[main] [ 2013-06-24 08:11:33.642 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for SourceDBHome
[main] [ 2013-06-24 08:11:33.644 CST ] [ConfigurationHandler.endElement:149]  endElement localName=SourceDBHome
[main] [ 2013-06-24 08:11:33.645 CST ] [ClusterStep.endChild:144]  Calling endChild for ClusterStep
[main] [ 2013-06-24 08:11:33.655 CST ] [OraHome.<init>:51]  Path to Oracle Home=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:33.678 CST ] [OraHome.<init>:51]  Path to Oracle Home=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:33.680 CST ] [ConfigurationHandler.startElement:114]  localName=TargetDBHome
[main] [ 2013-06-24 08:11:33.682 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for TargetDBHome
[main] [ 2013-06-24 08:11:33.683 CST ] [ConfigurationHandler.endElement:149]  endElement localName=TargetDBHome
[main] [ 2013-06-24 08:11:33.683 CST ] [ClusterStep.endChild:144]  Calling endChild for ClusterStep
[main] [ 2013-06-24 08:11:33.684 CST ] [OraHome.<init>:51]  Path to Oracle Home=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:33.686 CST ] [ConfigurationHandler.startElement:114]  localName=SourceDBInfo
[main] [ 2013-06-24 08:11:33.687 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for SourceDBInfo
[main] [ 2013-06-24 08:11:33.703 CST ] [ConfigurationHandler.startElement:114]  localName=Credentials
[main] [ 2013-06-24 08:11:33.706 CST ] [ConfigurationHandler.startElement:114]  localName=User
[main] [ 2013-06-24 08:11:33.706 CST ] [ConfigurationHandler.endElement:149]  endElement localName=User
[main] [ 2013-06-24 08:11:33.707 CST ] [Instance$Credentials.endChild:220]  UserName=sys
[main] [ 2013-06-24 08:11:33.708 CST ] [ConfigurationHandler.startElement:114]  localName=Password
[main] [ 2013-06-24 08:11:33.710 CST ] [ConfigurationHandler.endElement:149]  endElement localName=Password
[main] [ 2013-06-24 08:11:33.711 CST ] [Instance$Credentials.endChild:224]  Password Encrypted=false
[main] [ 2013-06-24 08:11:33.713 CST ] [ConfigurationHandler.startElement:114]  localName=Role
[main] [ 2013-06-24 08:11:33.714 CST ] [ConfigurationHandler.endElement:149]  endElement localName=Role
[main] [ 2013-06-24 08:11:33.715 CST ] [Instance$Credentials.endChild:250]  Role=sysdba
[main] [ 2013-06-24 08:11:33.717 CST ] [ConfigurationHandler.endElement:149]  endElement localName=Credentials
[main] [ 2013-06-24 08:11:33.718 CST ] [ConfigurationHandler.endElement:149]  endElement localName=SourceDBInfo
[main] [ 2013-06-24 08:11:33.722 CST ] [ConfigurationHandler.startElement:114]  localName=NodeList
[main] [ 2013-06-24 08:11:33.726 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for NodeList
[main] [ 2013-06-24 08:11:33.727 CST ] [ConfigurationHandler.startElement:114]  localName=Node
[main] [ 2013-06-24 08:11:33.728 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for Node
[main] [ 2013-06-24 08:11:33.735 CST ] [Node.<init>:47]  Name as obtained in inputXML=rac1
[main] [ 2013-06-24 08:11:33.736 CST ] [Node.<init>:61]  Qualified Node name=rac1, Non-qualified Node name=rac1
[main] [ 2013-06-24 08:11:33.737 CST ] [ConfigurationHandler.endElement:149]  endElement localName=Node
[main] [ 2013-06-24 08:11:33.740 CST ] [ConfigurationHandler.startElement:114]  localName=Node
[main] [ 2013-06-24 08:11:33.741 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for Node
[main] [ 2013-06-24 08:11:33.742 CST ] [Node.<init>:47]  Name as obtained in inputXML=rac2
[main] [ 2013-06-24 08:11:33.744 CST ] [Node.<init>:61]  Qualified Node name=rac2, Non-qualified Node name=rac2
[main] [ 2013-06-24 08:11:33.745 CST ] [ConfigurationHandler.endElement:149]  endElement localName=Node
[main] [ 2013-06-24 08:11:33.746 CST ] [ConfigurationHandler.endElement:149]  endElement localName=NodeList
[main] [ 2013-06-24 08:11:33.747 CST ] [ClusterStep.endChild:144]  Calling endChild for ClusterStep
[main] [ 2013-06-24 08:11:33.749 CST ] [ClusterStep.endChild:147]  Nodes.length=2
[main] [ 2013-06-24 08:11:33.750 CST ] [ConfigurationHandler.startElement:114]  localName=InstancePrefix
[main] [ 2013-06-24 08:11:33.751 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for InstancePrefix
[main] [ 2013-06-24 08:11:33.755 CST ] [ConfigurationHandler.endElement:149]  endElement localName=InstancePrefix
[main] [ 2013-06-24 08:11:33.761 CST ] [OptionsCheck.endChild:119]  NewSIDPREFIX=lunar
[main] [ 2013-06-24 08:11:33.763 CST ] [ConfigurationHandler.startElement:114]  localName=SharedStorage
[main] [ 2013-06-24 08:11:33.764 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for SharedStorage
[main] [ 2013-06-24 08:11:33.764 CST ] [ClusterStep.startChild:65]  Inside startchild of cluster step for SharedStorage
[main] [ 2013-06-24 08:11:33.779 CST ] [ConfigurationHandler.startElement:114]  localName=TargetDatabaseArea
[main] [ 2013-06-24 08:11:33.779 CST ] [ConfigurationHandler.endElement:149]  endElement localName=TargetDatabaseArea
[main] [ 2013-06-24 08:11:33.862 CST ] [ConfigurationHandler.startElement:114]  localName=TargetFlashRecoveryArea
[main] [ 2013-06-24 08:11:33.864 CST ] [ConfigurationHandler.endElement:149]  endElement localName=TargetFlashRecoveryArea
[main] [ 2013-06-24 08:11:33.865 CST ] [ConfigurationHandler.endElement:149]  endElement localName=SharedStorage
[main] [ 2013-06-24 08:11:33.868 CST ] [ConfigurationHandler.endElement:149]  endElement localName=Convert
[main] [ 2013-06-24 08:11:33.869 CST ] [ClusterStep.endChild:144]  Calling endChild for ClusterStep
[main] [ 2013-06-24 08:11:33.870 CST ] [ConfigurationHandler.endElement:149]  endElement localName=ConvertToRAC
[main] [ 2013-06-24 08:11:33.873 CST ] [ConfigurationHandler.endElement:149]  endElement localName=RConfig
[main] [ 2013-06-24 08:11:33.873 CST ] [ConfigParser.parse:149]  Validated input against rconfig schema:
[main] [ 2013-06-24 08:11:33.876 CST ] [RACConvertStep.execute:157]  $$$$$$$ The request name is ConvertToRAC
[main] [ 2013-06-24 08:11:33.878 CST ] [RACConvertStep.execute:172]  InetAddress.getLocalHost=rac1
[main] [ 2013-06-24 08:11:33.879 CST ] [Node.<init>:47]  Name as obtained in inputXML=rac1
[main] [ 2013-06-24 08:11:33.880 CST ] [Node.<init>:61]  Qualified Node name=rac1, Non-qualified Node name=rac1
[main] [ 2013-06-24 08:11:33.880 CST ] [RACConvertStep.execute:176]  Value of _localNode=rac1
[main] [ 2013-06-24 08:11:33.881 CST ] [ClusterStep.checkNodeList:198]  Index of localNode in HostItemlist=0
[main] [ 2013-06-24 08:11:33.883 CST ] [Convert.cleanup:477]  Skipping cleanup new sid: lunar1 is same as SI sid: lunar1
[main] [ 2013-06-24 08:11:33.893 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:34.362 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:34.363 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/app/oracle/product/11.2.0/db_1,2
[main] [ 2013-06-24 08:11:35.477 CST ] [OracleHome.getVersion:936]  OracleHome.server.getVersion Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.480 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.480 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.481 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.485 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.486 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.487 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:35.487 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:35.755 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:35.756 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:35.764 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:35.806 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:35.828 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:35.907 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:35.909 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:11:35.910 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:35.911 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:11:36.039 CST ] [DBInstance.initialize:135]  Number of records =1
[main] [ 2013-06-24 08:11:36.041 CST ] [DBInstance.initialize:136]  First record  =[Ljava.lang.String;@6b359c1b
[main] [ 2013-06-24 08:11:36.042 CST ] [DBInstance.initialize:142]  DB ID = 2874070637
[main] [ 2013-06-24 08:11:36.043 CST ] [DBInstance.initialize:144]  DB role = PRIMARY
[main] [ 2013-06-24 08:11:36.045 CST ] [DBInstance.initialize:146]  Log mode = ARCHIVELOG
[main] [ 2013-06-24 08:11:36.046 CST ] [DBInstance.initialize:150]  fsfoStatus = DISABLED
[main] [ 2013-06-24 08:11:36.050 CST ] [DBInstance.initialize:160]  _FSFOEnabled = false
[main] [ 2013-06-24 08:11:36.055 CST ] [DBInstance.initialize:165]  protectionMode = MAXIMUM PERFORMANCE
[main] [ 2013-06-24 08:11:36.055 CST ] [DBInstance.initialize:171]  _maxProtectionMode = false
[main] [ 2013-06-24 08:11:36.067 CST ] [DBInstance.initialize:177]  DB version = 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.068 CST ] [DBInstance.initialize:180]  Status = OPEN
[main] [ 2013-06-24 08:11:36.105 CST ] [DBInstance.initialize:184]  changeTrackingStatus = DISABLED
[main] [ 2013-06-24 08:11:36.146 CST ] [DBInstance.initialize:231]  Number of records =17
[main] [ 2013-06-24 08:11:36.147 CST ] [DBInstance.initialize:238]  processing parameter compatible
[main] [ 2013-06-24 08:11:36.148 CST ] [DBInstance.initialize:339]  compatible=11.2.0.3.0
[main] [ 2013-06-24 08:11:36.148 CST ] [DBInstance.initialize:238]  processing parameter cluster_database
[main] [ 2013-06-24 08:11:36.149 CST ] [DBInstance.initialize:273]  bCluster=true
[main] [ 2013-06-24 08:11:36.150 CST ] [DBInstance.initialize:238]  processing parameter undo_management
[main] [ 2013-06-24 08:11:36.150 CST ] [DBInstance.initialize:255]  bAutoUndo=true
[main] [ 2013-06-24 08:11:36.151 CST ] [DBInstance.initialize:238]  processing parameter db_domain
[main] [ 2013-06-24 08:11:36.152 CST ] [DBInstance.initialize:261]  dbDomain=
[main] [ 2013-06-24 08:11:36.160 CST ] [DBInstance.initialize:238]  processing parameter dispatchers
[main] [ 2013-06-24 08:11:36.161 CST ] [DBInstance.initialize:267]  dispatchers=
[main] [ 2013-06-24 08:11:36.162 CST ] [DBInstance.initialize:238]  processing parameter local_listener
[main] [ 2013-06-24 08:11:36.163 CST ] [DBInstance.initialize:303]  localListener=LISTENER_RAC1
[main] [ 2013-06-24 08:11:36.164 CST ] [DBInstance.initialize:238]  processing parameter remote_listener
[main] [ 2013-06-24 08:11:36.167 CST ] [DBInstance.initialize:309]  remoteListener=
[main] [ 2013-06-24 08:11:36.168 CST ] [DBInstance.initialize:238]  processing parameter background_dump_dest
[main] [ 2013-06-24 08:11:36.169 CST ] [DBInstance.initialize:285]  bDump=/u01/app/oracle/diag/rdbms/lunar/lunar1/trace
[main] [ 2013-06-24 08:11:36.169 CST ] [DBInstance.initialize:238]  processing parameter user_dump_dest
[main] [ 2013-06-24 08:11:36.170 CST ] [DBInstance.initialize:297]  bDump=/u01/app/oracle/diag/rdbms/lunar/lunar1/trace
[main] [ 2013-06-24 08:11:36.171 CST ] [DBInstance.initialize:238]  processing parameter core_dump_dest
[main] [ 2013-06-24 08:11:36.171 CST ] [DBInstance.initialize:291]  bDump=/u01/app/oracle/diag/rdbms/lunar/lunar1/cdump
[main] [ 2013-06-24 08:11:36.172 CST ] [DBInstance.initialize:238]  processing parameter audit_file_dest
[main] [ 2013-06-24 08:11:36.173 CST ] [DBInstance.initialize:279]  aDump=/u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:11:36.174 CST ] [DBInstance.initialize:238]  processing parameter db_name
[main] [ 2013-06-24 08:11:36.174 CST ] [DBInstance.initialize:243]  db_name=lunar
[main] [ 2013-06-24 08:11:36.175 CST ] [DBInstance.initialize:238]  processing parameter db_unique_name
[main] [ 2013-06-24 08:11:36.176 CST ] [DBInstance.initialize:249]  db_unique_name=lunar
[main] [ 2013-06-24 08:11:36.177 CST ] [DBInstance.initialize:238]  processing parameter dg_broker_start
[main] [ 2013-06-24 08:11:36.184 CST ] [DBInstance.initialize:315]  dgBrokerStart=FALSE
[main] [ 2013-06-24 08:11:36.185 CST ] [DBInstance.initialize:238]  processing parameter dg_broker_config_file1
[main] [ 2013-06-24 08:11:36.186 CST ] [DBInstance.initialize:321]  dgBrokerConfigFile1=/u01/app/oracle/product/11.2.0/db_1/dbs/dr1lunar.dat
[main] [ 2013-06-24 08:11:36.187 CST ] [DBInstance.initialize:238]  processing parameter dg_broker_config_file2
[main] [ 2013-06-24 08:11:36.188 CST ] [DBInstance.initialize:327]  dgBrokerConfigFile2=/u01/app/oracle/product/11.2.0/db_1/dbs/dr2lunar.dat
[main] [ 2013-06-24 08:11:36.189 CST ] [DBInstance.initialize:238]  processing parameter diagnostic_dest
[main] [ 2013-06-24 08:11:36.198 CST ] [DBInstance.initialize:333]  diagnostic_dest=/u01/app/oracle
[main] [ 2013-06-24 08:11:36.306 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:36.307 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:36.310 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.312 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.313 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.314 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.315 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.316 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.320 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:36.321 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:36.322 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:36.323 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:36.326 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:36.337 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:36.338 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:36.406 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:36.406 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:11:36.407 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:36.407 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:11:36.415 CST ] [DBInstance.prepareStandby:888]  DB status = OPEN
[main] [ 2013-06-24 08:11:36.418 CST ] [LocalNodeCheck.checkLocalNode:124]  Performing LocalNodeCheck
[main] [ 2013-06-24 08:11:36.463 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:36.464 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:36.467 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:36.493 CST ] [OCR.loadLibrary:320]  Going to load the ocr library
[main] [ 2013-06-24 08:11:36.493 CST ] [Library.load:188]  library.load
[main] [ 2013-06-24 08:11:36.495 CST ] [sPlatform.isHybrid:66]  osName=Linux osArch=amd64 JVM=64 rc=false
[main] [ 2013-06-24 08:11:36.495 CST ] [sPlatform.isHybrid:66]  osName=Linux osArch=amd64 JVM=64 rc=false
[main] [ 2013-06-24 08:11:36.496 CST ] [Library.load:264]  Loading  library /u01/app/oracle/product/11.2.0/db_1/lib/libsrvmocr11.so
[main] [ 2013-06-24 08:11:36.508 CST ] [OCR.loadLibrary:322]  loaded ocr libraries
[main] [ 2013-06-24 08:11:36.508 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:36.511 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:36.512 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:36.512 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:36.512 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:36.513 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:36.520 CST ] [HASContext.<init>:121]  moduleInit = 7
[main] [ 2013-06-24 08:11:36.521 CST ] [Library.load:188]  library.load
[main] [ 2013-06-24 08:11:36.522 CST ] [sPlatform.isHybrid:66]  osName=Linux osArch=amd64 JVM=64 rc=false
[main] [ 2013-06-24 08:11:36.522 CST ] [sPlatform.isHybrid:66]  osName=Linux osArch=amd64 JVM=64 rc=false
[main] [ 2013-06-24 08:11:36.522 CST ] [Library.load:264]  Loading  library /u01/app/oracle/product/11.2.0/db_1/lib/libsrvmhas11.so
[main] [ 2013-06-24 08:11:36.548 CST ] [has.HASContextNative.Native]  prsr_trace: no lsf ctx, line=Native: allocHASContext

[main] [ 2013-06-24 08:11:36.548 CST ] [has.HASContextNative.Native]  allocHASContext: module_init = 7
[main] [ 2013-06-24 08:11:36.549 CST ] [has.HASContextNative.Native]  
 allocHASContext: META context [1]
[main] [ 2013-06-24 08:11:36.552 CST ] [has.HASContextNative.Native]  
 allocHASContext: LSF context [1]
[main] [ 2013-06-24 08:11:36.553 CST ] [has.HASContextNative.Native]  prsr_trace: Native: prsr_initSCLS

[main] [ 2013-06-24 08:11:36.553 CST ] [has.HASContextNative.Native]  
 allocHASContext: SCLS context [1]
[main] [ 2013-06-24 08:11:36.554 CST ] [has.HASContextNative.Native]  
 allocHASContext: retval [1]
[main] [ 2013-06-24 08:11:36.555 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:11:36.565 CST ] [has.UtilNative.Native]  prsr_trace: Native: hasHAPrivilege

[main] [ 2013-06-24 08:11:36.584 CST ] [has.HASContextNative.Native]  prsr_trace: Native: allocHASContext

[main] [ 2013-06-24 08:11:36.585 CST ] [has.HASContextNative.Native]  allocHASContext: module_init = 56
[main] [ 2013-06-24 08:11:36.585 CST ] [has.HASContextNative.Native]  
 allocHASContext: SLTS context [1]
[main] [ 2013-06-24 08:11:36.586 CST ] [has.HASContextNative.Native]  prsr_trace: Native: prsr_initCLSS

[main] [ 2013-06-24 08:11:36.620 CST ] [has.HASContextNative.Native]  
 allocHASContext: CLSS context [1]
[main] [ 2013-06-24 08:11:36.621 CST ] [has.HASContextNative.Native]  prsr_trace: Native: prsr_initCLSR

[main] [ 2013-06-24 08:11:36.622 CST ] [has.HASContextNative.Native]  prsr_trace: prsr_initCLSR: before calling clsrcini

[main] [ 2013-06-24 08:11:36.623 CST ] [has.HASContextNative.Native]  prsr_trace: prsr_initCLSR: before calling clsrcerrini

[main] [ 2013-06-24 08:11:36.624 CST ] [has.HASContextNative.Native]  
 allocHASContext: CLSR context [1]
[main] [ 2013-06-24 08:11:36.624 CST ] [has.HASContextNative.Native]  
 allocHASContext: retval [1]
[main] [ 2013-06-24 08:11:36.625 CST ] [ClusterAlias.<init>:89]  ClusterAlias Instance created.
[main] [ 2013-06-24 08:11:36.710 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:36.716 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:36.716 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/app/oracle/product/11.2.0/db_1,2
[main] [ 2013-06-24 08:11:37.241 CST ] [OracleHome.getVersion:936]  OracleHome.server.getVersion Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.242 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.243 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.243 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.244 CST ] [CommonUtils.createPasswordFile:604]  calling new orapwd for 11.1 or higher
[main] [ 2013-06-24 08:11:37.251 CST ] [OsUtilsBase.execProg:2183]  beginning execProg with input array.
[main] [ 2013-06-24 08:11:37.291 CST ] [OsUtilsBase.execProg:2220]  finished execProg with input array. Status:0
[main] [ 2013-06-24 08:11:37.295 CST ] [OracleHome.initOptions:1236]  Initializing Database Options with  for dummy sid=DBUA1136692 using initfile=/u01/app/oracle/product/11.2.0/db_1/dbs/initDBUA1136692.ora using pwdfile=/u01/app/oracle/product/11.2.0/db_1/dbs/orapwDBUA1136692
[main] [ 2013-06-24 08:11:37.296 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.297 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.298 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.298 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.299 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.299 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.300 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:37.301 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:37.304 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:37.306 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:37.309 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:37.329 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:37.330 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:37.401 CST ] [OracleHome.initOptions:1248]  executing: startup nomount pfile='/u01/app/oracle/product/11.2.0/db_1/dbs/initDBUA1136692.ora'
[main] [ 2013-06-24 08:11:51.349 CST ] [OracleHome.initOptions:1259]  executing: select parameter from v$option where value='TRUE'
[main] [ 2013-06-24 08:11:51.384 CST ] [OracleHome.initOptions:1265]  Database Option Partitioning is ON 
[main] [ 2013-06-24 08:11:51.384 CST ] [OracleHome.initOptions:1265]  Database Option Objects is ON 
[main] [ 2013-06-24 08:11:51.385 CST ] [OracleHome.initOptions:1265]  Database Option Real Application Clusters is ON 
[main] [ 2013-06-24 08:11:51.385 CST ] [OracleHome.initOptions:1265]  Database Option Advanced replication is ON 
[main] [ 2013-06-24 08:11:51.386 CST ] [OracleHome.initOptions:1265]  Database Option Bit-mapped indexes is ON 
[main] [ 2013-06-24 08:11:51.387 CST ] [OracleHome.initOptions:1265]  Database Option Connection multiplexing is ON 
[main] [ 2013-06-24 08:11:51.389 CST ] [OracleHome.initOptions:1265]  Database Option Connection pooling is ON 
[main] [ 2013-06-24 08:11:51.390 CST ] [OracleHome.initOptions:1265]  Database Option Database queuing is ON 
[main] [ 2013-06-24 08:11:51.391 CST ] [OracleHome.initOptions:1265]  Database Option Incremental backup and recovery is ON 
[main] [ 2013-06-24 08:11:51.391 CST ] [OracleHome.initOptions:1265]  Database Option Instead-of triggers is ON 
[main] [ 2013-06-24 08:11:51.392 CST ] [OracleHome.initOptions:1265]  Database Option Parallel backup and recovery is ON 
[main] [ 2013-06-24 08:11:51.393 CST ] [OracleHome.initOptions:1265]  Database Option Parallel execution is ON 
[main] [ 2013-06-24 08:11:51.395 CST ] [OracleHome.initOptions:1265]  Database Option Parallel load is ON 
[main] [ 2013-06-24 08:11:51.396 CST ] [OracleHome.initOptions:1265]  Database Option Point-in-time tablespace recovery is ON 
[main] [ 2013-06-24 08:11:51.398 CST ] [OracleHome.initOptions:1265]  Database Option Fine-grained access control is ON 
[main] [ 2013-06-24 08:11:51.399 CST ] [OracleHome.initOptions:1265]  Database Option Proxy authentication/authorization is ON 
[main] [ 2013-06-24 08:11:51.402 CST ] [OracleHome.initOptions:1265]  Database Option Change Data Capture is ON 
[main] [ 2013-06-24 08:11:51.403 CST ] [OracleHome.initOptions:1265]  Database Option Plan Stability is ON 
[main] [ 2013-06-24 08:11:51.404 CST ] [OracleHome.initOptions:1265]  Database Option Online Index Build is ON 
[main] [ 2013-06-24 08:11:51.407 CST ] [OracleHome.initOptions:1265]  Database Option Coalesce Index is ON 
[main] [ 2013-06-24 08:11:51.408 CST ] [OracleHome.initOptions:1265]  Database Option Managed Standby is ON 
[main] [ 2013-06-24 08:11:51.410 CST ] [OracleHome.initOptions:1265]  Database Option Materialized view rewrite is ON 
[main] [ 2013-06-24 08:11:51.411 CST ] [OracleHome.initOptions:1265]  Database Option Database resource manager is ON 
[main] [ 2013-06-24 08:11:51.412 CST ] [OracleHome.initOptions:1265]  Database Option Spatial is ON 
[main] [ 2013-06-24 08:11:51.413 CST ] [OracleHome.initOptions:1265]  Database Option Export transportable tablespaces is ON 
[main] [ 2013-06-24 08:11:51.415 CST ] [OracleHome.initOptions:1265]  Database Option Transparent Application Failover is ON 
[main] [ 2013-06-24 08:11:51.416 CST ] [OracleHome.initOptions:1265]  Database Option Fast-Start Fault Recovery is ON 
[main] [ 2013-06-24 08:11:51.418 CST ] [OracleHome.initOptions:1265]  Database Option Sample Scan is ON 
[main] [ 2013-06-24 08:11:51.419 CST ] [OracleHome.initOptions:1265]  Database Option Duplexed backups is ON 
[main] [ 2013-06-24 08:11:51.423 CST ] [OracleHome.initOptions:1265]  Database Option Java is ON 
[main] [ 2013-06-24 08:11:51.424 CST ] [OracleHome.initOptions:1265]  Database Option OLAP Window Functions is ON 
[main] [ 2013-06-24 08:11:51.428 CST ] [OracleHome.initOptions:1265]  Database Option Block Media Recovery is ON 
[main] [ 2013-06-24 08:11:51.430 CST ] [OracleHome.initOptions:1265]  Database Option Fine-grained Auditing is ON 
[main] [ 2013-06-24 08:11:51.431 CST ] [OracleHome.initOptions:1265]  Database Option Application Role is ON 
[main] [ 2013-06-24 08:11:51.432 CST ] [OracleHome.initOptions:1265]  Database Option Enterprise User Security is ON 
[main] [ 2013-06-24 08:11:51.433 CST ] [OracleHome.initOptions:1265]  Database Option Oracle Data Guard is ON 
[main] [ 2013-06-24 08:11:51.434 CST ] [OracleHome.initOptions:1265]  Database Option OLAP is ON 
[main] [ 2013-06-24 08:11:51.436 CST ] [OracleHome.initOptions:1265]  Database Option Basic Compression is ON 
[main] [ 2013-06-24 08:11:51.437 CST ] [OracleHome.initOptions:1265]  Database Option Join index is ON 
[main] [ 2013-06-24 08:11:51.438 CST ] [OracleHome.initOptions:1265]  Database Option Trial Recovery is ON 
[main] [ 2013-06-24 08:11:51.440 CST ] [OracleHome.initOptions:1265]  Database Option Data Mining is ON 
[main] [ 2013-06-24 08:11:51.442 CST ] [OracleHome.initOptions:1265]  Database Option Online Redefinition is ON 
[main] [ 2013-06-24 08:11:51.444 CST ] [OracleHome.initOptions:1265]  Database Option Streams Capture is ON 
[main] [ 2013-06-24 08:11:51.447 CST ] [OracleHome.initOptions:1265]  Database Option File Mapping is ON 
[main] [ 2013-06-24 08:11:51.449 CST ] [OracleHome.initOptions:1265]  Database Option Block Change Tracking is ON 
[main] [ 2013-06-24 08:11:51.453 CST ] [OracleHome.initOptions:1265]  Database Option Flashback Table is ON 
[main] [ 2013-06-24 08:11:51.455 CST ] [OracleHome.initOptions:1265]  Database Option Flashback Database is ON 
[main] [ 2013-06-24 08:11:51.456 CST ] [OracleHome.initOptions:1265]  Database Option Transparent Data Encryption is ON 
[main] [ 2013-06-24 08:11:51.458 CST ] [OracleHome.initOptions:1265]  Database Option Backup Encryption is ON 
[main] [ 2013-06-24 08:11:51.460 CST ] [OracleHome.initOptions:1265]  Database Option Unused Block Compression is ON 
[main] [ 2013-06-24 08:11:51.461 CST ] [OracleHome.initOptions:1265]  Database Option Result Cache is ON 
[main] [ 2013-06-24 08:11:51.462 CST ] [OracleHome.initOptions:1265]  Database Option SQL Plan Management is ON 
[main] [ 2013-06-24 08:11:51.462 CST ] [OracleHome.initOptions:1265]  Database Option SecureFiles Encryption is ON 
[main] [ 2013-06-24 08:11:51.464 CST ] [OracleHome.initOptions:1265]  Database Option Real Application Testing is ON 
[main] [ 2013-06-24 08:11:51.464 CST ] [OracleHome.initOptions:1265]  Database Option Flashback Data Archive is ON 
[main] [ 2013-06-24 08:11:51.465 CST ] [OracleHome.initOptions:1265]  Database Option DICOM is ON 
[main] [ 2013-06-24 08:11:51.466 CST ] [OracleHome.initOptions:1265]  Database Option Active Data Guard is ON 
[main] [ 2013-06-24 08:11:51.467 CST ] [OracleHome.initOptions:1265]  Database Option Server Flash Cache is ON 
[main] [ 2013-06-24 08:11:51.469 CST ] [OracleHome.initOptions:1265]  Database Option Advanced Compression is ON 
[main] [ 2013-06-24 08:11:51.470 CST ] [OracleHome.initOptions:1265]  Database Option XStream is ON 
[main] [ 2013-06-24 08:11:51.472 CST ] [OracleHome.initOptions:1265]  Database Option Deferred Segment Creation is ON 
[main] [ 2013-06-24 08:11:51.473 CST ] [OracleHome.initOptions:1269]  executing: select version from v$timezone_file
[main] [ 2013-06-24 08:11:51.482 CST ] [OracleHome.initOptions:1275]  Timezone file version is 14
[main] [ 2013-06-24 08:11:51.633 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:51.649 CST ] [OsUtilsBase.deleteFile:1863]  OsUtilsBase.deleteFile: /u01/app/oracle/product/11.2.0/db_1/dbs/initDBUA1136692.ora
[main] [ 2013-06-24 08:11:51.652 CST ] [OsUtilsBase.deleteFile:1863]  OsUtilsBase.deleteFile: /u01/app/oracle/product/11.2.0/db_1/dbs/orapwDBUA1136692
[main] [ 2013-06-24 08:11:51.653 CST ] [OracleHome.initOptions:1316]  Diag cleanup /u01/app/oracle/product/11.2.0/db_1/log/diag/rdbms/dbua1136692
[main] [ 2013-06-24 08:11:51.684 CST ] [OracleHome.initOptions:1324]  Database Options queried: 61
[main] [ 2013-06-24 08:11:51.688 CST ] [OracleHome.getNodeNames:324]  inside getNodeNames, inventory loc null
[main] [ 2013-06-24 08:11:51.693 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:51.694 CST ] [OracleHome.isClusterInstalled:306]  bClusterInstalled=true
[main] [ 2013-06-24 08:11:51.698 CST ] [OracleHome.isDatabaseOptionOn:1133]  Checking Database Option: Real Application Clusters
[main] [ 2013-06-24 08:11:51.698 CST ] [OracleHome.isDatabaseOptionOn:1190]  Database Option Real Application Clusters is true
[main] [ 2013-06-24 08:11:51.699 CST ] [OracleHome.isRacEnabled:202]  bRacOn = true
[main] [ 2013-06-24 08:11:51.699 CST ] [LocalNodeCheck.checkLocalNode:136]  Getting ParallelServerConfig for dbUniqueName=lunar
[main] [ 2013-06-24 08:11:51.725 CST ] [OCRTree.init:214]  calling OCRTree.init
[main] [ 2013-06-24 08:11:51.727 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:51.728 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:51.753 CST ] [OCRTree.<init>:162]  calling OCR.init at level 7
[main] [ 2013-06-24 08:11:51.758 CST ] [OCR.init:290]  OCR instance is not present
[main] [ 2013-06-24 08:11:51.758 CST ] [OCR.<init>:243]  Called into OCR.java Constructor: level =7
[main] [ 2013-06-24 08:11:51.760 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:51.760 CST ] [OCR.<init>:254]  Calling Native function
[main] [ 2013-06-24 08:11:51.761 CST ] [nativesystem.OCRNative.Native]  
 initializeOCRLevel: NEW level = 7

[main] [ 2013-06-24 08:11:51.768 CST ] [nativesystem.OCRNative.Native]  
 initializeOCRLevel: NEW procr_init retval = 0

[main] [ 2013-06-24 08:11:51.769 CST ] [OCR.<init>:258]  Returned after initializing OCR
[main] [ 2013-06-24 08:11:51.770 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:11:51.771 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCurrentUserPrimaryGroup

[main] [ 2013-06-24 08:11:51.772 CST ] [has.UtilNative.Native]  prsr_trace: got primary group name=oinstall

[main] [ 2013-06-24 08:11:51.773 CST ] [OCR.<init>:272]  Primary Group of Current User: oinstall
[main] [ 2013-06-24 08:11:51.776 CST ] [ClusterLock.<init>:64]  ClusterLock Instance created.
[main] [ 2013-06-24 08:11:51.779 CST ] [OCRTree.isDatabaseConfigured:691]  Acquiring shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:11:51.780 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:11:51.787 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:11:51.789 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:11:51.798 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:11:51.799 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:11:51.800 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:11:51.808 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:11:51.808 CST ] [OCRTree.isDatabaseConfigured:721]  Releasing shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:11:51.809 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:11:51.825 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome

[main] [ 2013-06-24 08:11:51.826 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome crs_home=/u01/11.2.0/grid(**)

[main] [ 2013-06-24 08:11:51.827 CST ] [HASContext.getCRSHome:579]  /u01/11.2.0/grid
[main] [ 2013-06-24 08:11:51.827 CST ] [Util.getCRSHome:580]  getCRSHome: ret=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:51.828 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:51.829 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:51.830 CST ] [ClusterInfo.<init>:241]  m_olsnodesPath=/u01/11.2.0/grid/bin/olsnodes
[main] [ 2013-06-24 08:11:51.831 CST ] [Environment.checkCRSVersion:147]  Cluster.getVersion=11.2.0.3.0
[main] [ 2013-06-24 08:11:51.832 CST ] [Environment.checkCRSVersion:157]  Major Version=11
[main] [ 2013-06-24 08:11:51.834 CST ] [Environment.checkDBVersion:268]  Major Version=11
[main] [ 2013-06-24 08:11:51.854 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:11:51.857 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:11:51.860 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName

[main] [ 2013-06-24 08:11:51.860 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname length: 256

[main] [ 2013-06-24 08:11:51.865 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname: rac1

[main] [ 2013-06-24 08:11:51.865 CST ] [GetActiveNodes.getHostName:518]  hostname = rac1
[main] [ 2013-06-24 08:11:51.867 CST ] [Cluster.getHostName:1215]  hostname = rac1
[main] [ 2013-06-24 08:11:51.867 CST ] [LocalNodeCheck.checkLocalNode:144]  Getting hostname from cluster=rac1
[main] [ 2013-06-24 08:11:51.868 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:51.868 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:51.868 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:51.869 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:51.869 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:51.869 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:51.870 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:51.871 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:51.871 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:51.872 CST ] [GetActiveNodes.create:220]  Going into GetActiveNodes constructor...
[main] [ 2013-06-24 08:11:51.872 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:11:51.873 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:11:51.874 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName

[main] [ 2013-06-24 08:11:51.874 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodenumber: 1

[main] [ 2013-06-24 08:11:51.879 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodename: rac1

[main] [ 2013-06-24 08:11:51.880 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getNodeNames

[main] [ 2013-06-24 08:11:52.015 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getNodeNames:number of nodes: 2

[main] [ 2013-06-24 08:11:52.016 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getNodeNames:node 1 is alive k = 0

[main] [ 2013-06-24 08:11:52.018 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getNodeNames:1 nodename: rac1

[main] [ 2013-06-24 08:11:52.018 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getNodeNames:node 2 is alive k = 1

[main] [ 2013-06-24 08:11:52.021 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getNodeNames:2 nodename: rac2

[main] [ 2013-06-24 08:11:52.022 CST ] [GetActiveNodes.<init>:192]  Inside GetActiveNodes :rac1
[main] [ 2013-06-24 08:11:52.037 CST ] [GetActiveNodes.<init>:204]  Started clusterware daemon thread
[GetActiveNodesThread] [ 2013-06-24 08:11:52.037 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread GetActiveNodesThread m_count=0
[main] [ 2013-06-24 08:11:52.038 CST ] [GetActiveNodes.create:222]  Out of GetActiveNodes constructor.
[main] [ 2013-06-24 08:11:52.039 CST ] [LocalNodeCheck.checkLocalNode:145]  Getting localnode from cluster=rac1
[main] [ 2013-06-24 08:11:52.043 CST ] [DBInstance.getLocalStorageType:400]  Number of records =2
[main] [ 2013-06-24 08:11:52.044 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:52.045 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:52.109 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:52.110 CST ] [HAUtils.<init>:239]  oui location /u01/app/oraInventory/ContentsXML
[main] [ 2013-06-24 08:11:52.114 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:52.118 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:52.118 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:52.119 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:52.120 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:52.121 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:52.122 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:52.122 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:52.123 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:52.124 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:11:52.127 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:11:52.128 CST ] [HAUtils.getCurrentOracleHome:366]  Oracle home from system property: /u01/app/oracle/product/11.2.0/db_1
[Finalizer] [ 2013-06-24 08:11:52.201 CST ] [ClusterUtil.finalize:102]  ClusterUtil: finalized called for oracle.ops.mgmt.has.ClusterUtil@679bfb30
[main] [ 2013-06-24 08:11:52.201 CST ] [GETCRSHOMEUtil.<init>:88]  Toolname: getcrshome   ---    Tool location: /u01/app/oracle/product/11.2.0/db_1/srvm/adminTool dependencies: [Ljava.lang.String;@31884174
[main] [ 2013-06-24 08:11:52.206 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[]
[main] [ 2013-06-24 08:11:52.211 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:52.212 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:11:52.222 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:11:52.224 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/srvm/admin/getcrshome 
[main] [ 2013-06-24 08:11:52.267 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-9] [ 2013-06-24 08:11:52.268 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-10] [ 2013-06-24 08:11:52.263 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-9] [ 2013-06-24 08:11:52.284 CST ] [StreamReader.run:65]  OUTPUT>/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:52.286 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:52.287 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:52.288 CST ] [RuntimeExec.runCommand:164]  /u01/11.2.0/grid
[main] [ 2013-06-24 08:11:52.289 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:52.290 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:52.292 CST ] [UnixSystem.dorunRemoteExecCmd:3198]  retval = 0
[main] [ 2013-06-24 08:11:52.294 CST ] [UnixSystem.dorunRemoteExecCmd:3222]  exitValue = 0
[main] [ 2013-06-24 08:11:52.296 CST ] [HAUtils.getConfiguredGridHome:783]  Configured Grid Infrastructure home: /u01/11.2.0/grid
[main] [ 2013-06-24 08:11:52.298 CST ] [ASMUtils.initialize:169]  ASMHome: /u01/11.2.0/grid
[main] [ 2013-06-24 08:11:52.342 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:11:52.351 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome

[main] [ 2013-06-24 08:11:52.360 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome crs_home=/u01/11.2.0/grid(**)

[main] [ 2013-06-24 08:11:52.364 CST ] [HASContext.getCRSHome:579]  /u01/11.2.0/grid
[main] [ 2013-06-24 08:11:52.365 CST ] [Util.getCRSHome:580]  getCRSHome: ret=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:52.451 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:52.453 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:52.455 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:52.456 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:52.459 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:52.462 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:52.463 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:52.465 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:52.467 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:52.508 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:52.509 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:52.521 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:52.525 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:52.526 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:52.528 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:52.535 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:52.536 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:52.538 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:52.602 CST ] [has.HASContextNative.Native]  prsr_trace: Native: allocHASContext

[main] [ 2013-06-24 08:11:52.603 CST ] [has.HASContextNative.Native]  allocHASContext: module_init = 64
[main] [ 2013-06-24 08:11:52.605 CST ] [has.HASContextNative.Native]  prsr_trace: Native: prsr_initCLSCRS

[main] [ 2013-06-24 08:11:52.605 CST ] [has.HASContextNative.Native]  prsr_trace: prsr_initCLSCRS: before calling prcr_init_crs

[main] [ 2013-06-24 08:11:52.619 CST ] [has.HASContextNative.Native]  
 allocHASContext: CLSCRS context [1]
[main] [ 2013-06-24 08:11:52.620 CST ] [has.HASContextNative.Native]  
 allocHASContext: retval [1]
[main] [ 2013-06-24 08:11:52.711 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.asm, type: 1, registered: true
[main] [ 2013-06-24 08:11:52.738 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.asm, type: 1, registered: true
[main] [ 2013-06-24 08:11:52.798 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.asm rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:11:52.799 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.asm rac1 1', 'USR_ORA_INST_NAME':'+ASM1'
[main] [ 2013-06-24 08:11:52.801 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.asm rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:11:52.802 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.asm rac2 1', 'USR_ORA_INST_NAME':'+ASM2'
[main] [ 2013-06-24 08:11:52.803 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:11:52.824 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName

[main] [ 2013-06-24 08:11:52.824 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodenumber: 1

[main] [ 2013-06-24 08:11:52.828 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodename: rac1

[main] [ 2013-06-24 08:11:52.828 CST ] [HAUtils.getLocalASMInstanceName:406]  localNodeName rac1
[main] [ 2013-06-24 08:11:52.829 CST ] [HAUtils.getLocalASMInstanceName:410]  nodeName rac1
[main] [ 2013-06-24 08:11:52.830 CST ] [HAUtils.getLocalASMInstanceName:414]  localInstName +ASM1
[main] [ 2013-06-24 08:11:52.831 CST ] [ASMUtils.initialize:172]  ASM SID: +ASM1
[main] [ 2013-06-24 08:11:52.831 CST ] [HAUtils.getDefaultListenerProperties:1625]  Entering HAUtils.getDefaultListenerProperties
[main] [ 2013-06-24 08:11:52.947 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:52.948 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:52.949 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:52.949 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:52.950 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:52.951 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:52.952 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:52.953 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:52.953 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:52.984 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:53.018 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:53.020 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER.lsnr, type: 1, node: null
[main] [ 2013-06-24 08:11:53.021 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:53.023 CST ] [CRSNative.getStat:1451]  		'TYPE'
[main] [ 2013-06-24 08:11:53.049 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:53.049 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE'; Value: 'ora.listener.type'
[main] [ 2013-06-24 08:11:53.052 CST ] [NodeAppsFactoryImpl.getListener:1132]  Resource type is ora.listener.type
[main] [ 2013-06-24 08:11:53.055 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER.lsnr, type: 1, node: null
[main] [ 2013-06-24 08:11:53.058 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:53.061 CST ] [CRSNative.getStat:1451]  		'ENDPOINTS'
[main] [ 2013-06-24 08:11:53.111 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:53.113 CST ] [CRSNative.getStat:1474]  	Name: 'ENDPOINTS'; Value: 'TCP:1521'
[main] [ 2013-06-24 08:11:53.119 CST ] [EndpointsImpl.<init>:276]  Get listener endpoints from TCP:1521
[main] [ 2013-06-24 08:11:53.120 CST ] [EndpointsImpl.<init>:302]  Token count is 1
[main] [ 2013-06-24 08:11:53.123 CST ] [EndpointsImpl.<init>:324]  LsnrProtocol type = TCP, values = 1521
[main] [ 2013-06-24 08:11:53.129 CST ] [EndpointsImpl$LsnrProtocol.addPortValue:86]  Calling parseInt to check 1521
[main] [ 2013-06-24 08:11:53.130 CST ] [EndpointsImpl$LsnrProtocol.addPortValue:97]  Get port number 1521
[main] [ 2013-06-24 08:11:53.134 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName

[main] [ 2013-06-24 08:11:53.135 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodenumber: 1

[main] [ 2013-06-24 08:11:53.141 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodename: rac1

[main] [ 2013-06-24 08:11:53.144 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:11:53.145 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:11:53.146 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName

[main] [ 2013-06-24 08:11:53.147 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname length: 256

[main] [ 2013-06-24 08:11:53.160 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname: rac1

[main] [ 2013-06-24 08:11:53.162 CST ] [GetActiveNodes.getHostName:518]  hostname = rac1
[main] [ 2013-06-24 08:11:53.163 CST ] [Cluster.getHostName:1215]  hostname = rac1
[main] [ 2013-06-24 08:11:53.165 CST ] [CRSNative.getResourceInstancesID:1645]  Looking for RIs using filter: (NAME == ora.LISTENER.lsnr)
[main] [ 2013-06-24 08:11:53.211 CST ] [CRSNative.getResourceInstancesID:1653]  found 2 RIs
[main] [ 2013-06-24 08:11:53.212 CST ] [CRSNative.getResourceInstancesID:1655]  	ora.LISTENER.lsnr rac1 1
[main] [ 2013-06-24 08:11:53.214 CST ] [CRSNative.getResourceInstancesID:1655]  	ora.LISTENER.lsnr rac2 1
[main] [ 2013-06-24 08:11:53.217 CST ] [CRSNative.getResourceInstancesID:1645]  Looking for RIs using filter: ((NAME == ora.LISTENER.lsnr) && (LAST_SERVER == rac1))
[main] [ 2013-06-24 08:11:53.258 CST ] [CRSNative.getResourceInstancesID:1653]  found 1 RIs
[main] [ 2013-06-24 08:11:53.258 CST ] [CRSNative.getResourceInstancesID:1655]  	ora.LISTENER.lsnr rac1 1
[main] [ 2013-06-24 08:11:53.259 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER.lsnr rac1 1, type: 5, node: rac1
[main] [ 2013-06-24 08:11:53.260 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:53.262 CST ] [CRSNative.getStat:1451]  		'ORACLE_HOME'
[main] [ 2013-06-24 08:11:53.293 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:53.294 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME'; Value: '/u01/11.2.0/grid'
[main] [ 2013-06-24 08:11:53.296 CST ] [ASMUtils.initialize:180]  ASM Listener Port: 1521
[main] [ 2013-06-24 08:11:53.297 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName

[main] [ 2013-06-24 08:11:53.297 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodenumber: 1

[main] [ 2013-06-24 08:11:53.301 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getLocalNodeName:nodename: rac1

[main] [ 2013-06-24 08:11:53.302 CST ] [ASMUtils.initialize:190]  ASM Local Node: rac1
[main] [ 2013-06-24 08:11:53.303 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:53.307 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:53.309 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/11.2.0/grid,1
[main] [ 2013-06-24 08:11:53.322 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: null
[main] [ 2013-06-24 08:11:53.324 CST ] [OracleHome.getVersion:964]  using sqlplus: /u01/11.2.0/grid/bin/sqlplus
[main] [ 2013-06-24 08:11:53.326 CST ] [OracleHome.getVersion:996]  adding oracle home to sqlplus env
[main] [ 2013-06-24 08:11:53.327 CST ] [OracleHome.getVersion:1000]  LD_LIBRARY_PATH=/u01/11.2.0/grid/lib:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:11:53.328 CST ] [OracleHome.getVersion:1000]  ORACLE_HOME=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:53.376 CST ] [OracleHome.getVersion:1005]  /u01/11.2.0/grid/bin/sqlplus Banner: 

SQL*Plus: Release 11.2.0.3.0 Production

[main] [ 2013-06-24 08:11:53.381 CST ] [OracleHome.getVersion:1023]  Current version from sqlplus: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.382 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.394 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.395 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.396 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.396 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.397 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:53.398 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:53.398 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:53.399 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:53.418 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:53.419 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:53.688 CST ] [ASMUtils.validateASMConnection:250]  query to see if connection is ok
[main] [ 2013-06-24 08:11:53.691 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:53.694 CST ] [ASMUtils.loadDiskGroups:783]  sql to be executed:=select NAME||'|'||round(TOTAL_MB)||'|'||round(USABLE_FILE_MB)||'|'||nvl(TYPE, 'DBCA_NULL')||'|'||STATE from v$asm_diskgroup order by NAME using sqlengine 
[main] [ 2013-06-24 08:11:53.694 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:53.696 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:53.696 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/11.2.0/grid,1
[main] [ 2013-06-24 08:11:53.697 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: null
[main] [ 2013-06-24 08:11:53.698 CST ] [OracleHome.getVersion:964]  using sqlplus: /u01/11.2.0/grid/bin/sqlplus
[main] [ 2013-06-24 08:11:53.698 CST ] [OracleHome.getVersion:996]  adding oracle home to sqlplus env
[main] [ 2013-06-24 08:11:53.699 CST ] [OracleHome.getVersion:1000]  LD_LIBRARY_PATH=/u01/11.2.0/grid/lib:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:11:53.699 CST ] [OracleHome.getVersion:1000]  ORACLE_HOME=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:53.734 CST ] [OracleHome.getVersion:1005]  /u01/11.2.0/grid/bin/sqlplus Banner: 

SQL*Plus: Release 11.2.0.3.0 Production

[main] [ 2013-06-24 08:11:53.735 CST ] [OracleHome.getVersion:1023]  Current version from sqlplus: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.736 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.737 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.738 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.738 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.738 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:53.739 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:53.740 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:53.741 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:53.742 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:53.750 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:53.751 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:54.172 CST ] [ASMUtils.loadDiskGroups:792]  diskgroups loaded using the sql
[main] [ 2013-06-24 08:11:54.173 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:54.177 CST ] [ASMUtils.loadDiskGroups:818]  Loading  the diskgroups...
[main] [ 2013-06-24 08:11:54.178 CST ] [ASMUtils.loadDiskGroups:826]  diskgroup: ASMDATA|10228|5001|EXTERN|MOUNTED
[main] [ 2013-06-24 08:11:54.196 CST ] [ASMUtils.loadDiskGroups:826]  diskgroup: DATA|4094|3207|EXTERN|MOUNTED
[main] [ 2013-06-24 08:11:54.201 CST ] [ASMUtils.setBestDiskGroup:996]  sql to be executed:=select name from v$asm_diskgroup where free_mb= (select max(free_mb) from v$asm_diskgroup)
[main] [ 2013-06-24 08:11:54.204 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:54.208 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:54.210 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/11.2.0/grid,1
[main] [ 2013-06-24 08:11:54.213 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: null
[main] [ 2013-06-24 08:11:54.215 CST ] [OracleHome.getVersion:964]  using sqlplus: /u01/11.2.0/grid/bin/sqlplus
[main] [ 2013-06-24 08:11:54.217 CST ] [OracleHome.getVersion:996]  adding oracle home to sqlplus env
[main] [ 2013-06-24 08:11:54.219 CST ] [OracleHome.getVersion:1000]  LD_LIBRARY_PATH=/u01/11.2.0/grid/lib:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:11:54.221 CST ] [OracleHome.getVersion:1000]  ORACLE_HOME=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:54.337 CST ] [OracleHome.getVersion:1005]  /u01/11.2.0/grid/bin/sqlplus Banner: 

SQL*Plus: Release 11.2.0.3.0 Production

[main] [ 2013-06-24 08:11:54.339 CST ] [OracleHome.getVersion:1023]  Current version from sqlplus: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.340 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.342 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.344 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.346 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.348 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.349 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:54.351 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:54.353 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:54.357 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:54.373 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:54.382 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:54.659 CST ] [ASMUtils.setBestDiskGroup:1005]  diskgroups loaded using the sql
[main] [ 2013-06-24 08:11:54.660 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:54.662 CST ] [ASMUtils.setBestDiskGroup:1034]  Setting best diskgroup....
[main] [ 2013-06-24 08:11:54.662 CST ] [ASMUtils.setBestDiskGroup:1038]  Setting best diskgroup....ASMDATA
[main] [ 2013-06-24 08:11:54.664 CST ] [SQLEngine.doSQLSubstitution:2414]  The substituted sql statement:=select t1.name from v$asm_template t1, v$asm_diskgroup t2 where t1.group_number=t2.group_number and t2.name='ASMDATA'
[main] [ 2013-06-24 08:11:54.665 CST ] [ASMUtils.setTemplates:898]  sql to be executed:=select t1.name from v$asm_template t1, v$asm_diskgroup t2 where t1.group_number=t2.group_number and t2.name='ASMDATA'
[main] [ 2013-06-24 08:11:54.667 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:54.667 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:54.668 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/11.2.0/grid,1
[main] [ 2013-06-24 08:11:54.669 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: null
[main] [ 2013-06-24 08:11:54.670 CST ] [OracleHome.getVersion:964]  using sqlplus: /u01/11.2.0/grid/bin/sqlplus
[main] [ 2013-06-24 08:11:54.672 CST ] [OracleHome.getVersion:996]  adding oracle home to sqlplus env
[main] [ 2013-06-24 08:11:54.672 CST ] [OracleHome.getVersion:1000]  LD_LIBRARY_PATH=/u01/11.2.0/grid/lib:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:11:54.673 CST ] [OracleHome.getVersion:1000]  ORACLE_HOME=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:54.726 CST ] [OracleHome.getVersion:1005]  /u01/11.2.0/grid/bin/sqlplus Banner: 

SQL*Plus: Release 11.2.0.3.0 Production

[main] [ 2013-06-24 08:11:54.728 CST ] [OracleHome.getVersion:1023]  Current version from sqlplus: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.730 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.731 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.732 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.732 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.734 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:54.737 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:54.741 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:54.742 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:54.744 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:54.764 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:54.765 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:55.242 CST ] [ASMUtils.setTemplates:908]  templates loaded using the sql
[main] [ 2013-06-24 08:11:55.244 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:55.246 CST ] [ASMUtils.setTemplates:934]  Getting templates for diskgroup: oracle.sysman.assistants.util.asm.DiskGroup@68ed662d
[main] [ 2013-06-24 08:11:55.247 CST ] [ASMUtils.setTemplates:942]  template: PARAMETERFILE
[main] [ 2013-06-24 08:11:55.252 CST ] [ASMUtils.setTemplates:942]  template: ASMPARAMETERFILE
[main] [ 2013-06-24 08:11:55.259 CST ] [ASMUtils.setTemplates:942]  template: OCRFILE
[main] [ 2013-06-24 08:11:55.261 CST ] [ASMUtils.setTemplates:942]  template: DATAGUARDCONFIG
[main] [ 2013-06-24 08:11:55.262 CST ] [ASMUtils.setTemplates:942]  template: FLASHBACK
[main] [ 2013-06-24 08:11:55.272 CST ] [ASMUtils.setTemplates:942]  template: CHANGETRACKING
[main] [ 2013-06-24 08:11:55.273 CST ] [ASMUtils.setTemplates:942]  template: XTRANSPORT
[main] [ 2013-06-24 08:11:55.275 CST ] [ASMUtils.setTemplates:942]  template: AUTOBACKUP
[main] [ 2013-06-24 08:11:55.277 CST ] [ASMUtils.setTemplates:942]  template: BACKUPSET
[main] [ 2013-06-24 08:11:55.277 CST ] [ASMUtils.setTemplates:942]  template: TEMPFILE
[main] [ 2013-06-24 08:11:55.278 CST ] [ASMUtils.setTemplates:942]  template: DATAFILE
[main] [ 2013-06-24 08:11:55.278 CST ] [ASMUtils.setTemplates:942]  template: ONLINELOG
[main] [ 2013-06-24 08:11:55.279 CST ] [ASMUtils.setTemplates:942]  template: ARCHIVELOG
[main] [ 2013-06-24 08:11:55.280 CST ] [ASMUtils.setTemplates:942]  template: FLASHFILE
[main] [ 2013-06-24 08:11:55.281 CST ] [ASMUtils.setTemplates:942]  template: CONTROLFILE
[main] [ 2013-06-24 08:11:55.283 CST ] [ASMUtils.setTemplates:942]  template: DUMPSET
[main] [ 2013-06-24 08:11:55.284 CST ] [LocalNodeCheck.checkLocalNode:180]  Comparing the source and target oracle home versions
[main] [ 2013-06-24 08:11:55.287 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.288 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.290 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.290 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.291 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.293 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.294 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:55.295 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:55.296 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:55.296 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:55.299 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:55.310 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:55.311 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:55.441 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:55.442 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:11:55.443 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:55.443 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:11:55.458 CST ] [DBInstance.prepareStandby:888]  DB status = OPEN
[main] [ 2013-06-24 08:11:55.458 CST ] [OracleHome.getNodeNames:324]  inside getNodeNames, inventory loc null
[main] [ 2013-06-24 08:11:55.459 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:55.460 CST ] [ClusterCheck.checkCluster:171]  OUI Node Names Length=2
[main] [ 2013-06-24 08:11:55.462 CST ] [ClusterCheck.checkCluster:174]  OUI Node List Length=2
[main] [ 2013-06-24 08:11:55.463 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:55.464 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome

[main] [ 2013-06-24 08:11:55.471 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome crs_home=/u01/11.2.0/grid(**)

[main] [ 2013-06-24 08:11:55.473 CST ] [HASContext.getCRSHome:579]  /u01/11.2.0/grid
[main] [ 2013-06-24 08:11:55.475 CST ] [Util.getCRSHome:580]  getCRSHome: ret=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:55.477 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:55.480 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:55.482 CST ] [ClusterInfo.<init>:241]  m_olsnodesPath=/u01/11.2.0/grid/bin/olsnodes
[main] [ 2013-06-24 08:11:55.483 CST ] [UnixSystem.isNodeAccessible:1014]  Checking accessibility of node: rac1
[main] [ 2013-06-24 08:11:55.484 CST ] [UnixSystem.checkRemoteExecutionSetup:2184]  checkRemoteExecutionSetup:: Checking user equivalence using Secured Shell '/usr/bin/ssh'
[main] [ 2013-06-24 08:11:55.485 CST ] [UnixSystem.checkRemoteExecutionSetup:2186]  checkRemoteExecutionSetup:: Running Unix command: /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0 rac1 /bin/true
[main] [ 2013-06-24 08:11:55.486 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:55.487 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:11:55.488 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.489 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:11:55.489 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.491 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:11:55.492 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.493 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:11:55.500 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.501 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:11:55.502 CST ] [RuntimeExec.runCommand:77]  rac1 
[main] [ 2013-06-24 08:11:55.503 CST ] [RuntimeExec.runCommand:77]  /bin/true 
[main] [ 2013-06-24 08:11:55.517 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-29] [ 2013-06-24 08:11:55.519 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-30] [ 2013-06-24 08:11:55.520 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:55.737 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:55.738 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:55.745 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:55.752 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:55.763 CST ] [UnixSystem.checkRemoteExecutionSetup:2292]  Using Remote Shell Command: '/usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0 '
[main] [ 2013-06-24 08:11:55.769 CST ] [UnixSystem.checkRemoteExecutionSetup:2293]  Using Remote Copy Command: '/usr/bin/scp'
[main] [ 2013-06-24 08:11:55.772 CST ] [UnixSystem.isNodeAccessible:1020]  isNodeAccessible:: Running Unix command: /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac1 -n /bin/true
[main] [ 2013-06-24 08:11:55.773 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:55.778 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:11:55.780 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.781 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:11:55.782 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.783 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:11:55.784 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.785 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:11:55.785 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:55.786 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:11:55.787 CST ] [RuntimeExec.runCommand:77]  rac1 
[main] [ 2013-06-24 08:11:55.789 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:11:55.790 CST ] [RuntimeExec.runCommand:77]  /bin/true 
[Thread-32] [ 2013-06-24 08:11:55.801 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:55.803 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-31] [ 2013-06-24 08:11:55.804 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:56.002 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:56.004 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:56.005 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:56.007 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:56.008 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1|
[main] [ 2013-06-24 08:11:56.010 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:11:56.010 CST ] [UnixSystem.isNodeAccessible:1014]  Checking accessibility of node: rac2
[main] [ 2013-06-24 08:11:56.011 CST ] [UnixSystem.isNodeAccessible:1020]  isNodeAccessible:: Running Unix command: /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/true
[main] [ 2013-06-24 08:11:56.012 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:56.012 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:11:56.013 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.013 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:11:56.014 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.015 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:11:56.015 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.016 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:11:56.017 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.018 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:11:56.019 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:11:56.020 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:11:56.020 CST ] [RuntimeExec.runCommand:77]  /bin/true 
[Thread-34] [ 2013-06-24 08:11:56.031 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:56.033 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-33] [ 2013-06-24 08:11:56.045 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:56.364 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:56.367 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:56.369 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:56.370 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:56.371 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1|
[main] [ 2013-06-24 08:11:56.372 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:11:56.415 CST ] [ClusterConfig.<init>:230]  ClusterConfig:Number of workers = 0
[Worker 0] [ 2013-06-24 08:11:56.422 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 0 m_count=0
[main] [ 2013-06-24 08:11:56.424 CST ] [ClusterConfig.createWorkers:315]  Started worker threads count=2
[Worker 1] [ 2013-06-24 08:11:56.424 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 1 m_count=0
[main] [ 2013-06-24 08:11:56.426 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:56.427 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:56.428 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:56.428 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:56.429 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:56.429 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:56.430 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:56.431 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:56.432 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:56.432 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:56.433 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:56.434 CST ] [ClusterConfig.init:423]  Returning same instance to clientmain
[main] [ 2013-06-24 08:11:56.443 CST ] [ClusterConfig.submit:488]  Entering submit, cmdCount=2
[main] [ 2013-06-24 08:11:56.445 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:11:56.446 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[Worker 0] [ 2013-06-24 08:11:56.448 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 0 m_count=2
[Worker 0] [ 2013-06-24 08:11:56.449 CST ] [UnixSystem.isNodeAccessible:1014]  Checking accessibility of node: rac1
[Worker 0] [ 2013-06-24 08:11:56.452 CST ] [UnixSystem.isNodeAccessible:1020]  isNodeAccessible:: Running Unix command: /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac1 -n /bin/true
[Worker 0] [ 2013-06-24 08:11:56.453 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 0] [ 2013-06-24 08:11:56.454 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:11:56.455 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:11:56.456 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[main] [ 2013-06-24 08:11:56.457 CST ] [ClusterConfig.submit:523]  submitted commands=2
[Worker 1] [ 2013-06-24 08:11:56.457 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 1 m_count=2
[main] [ 2013-06-24 08:11:56.458 CST ] [ClusterConfig.block:596]  block called by thread main commandNum 2
[Worker 1] [ 2013-06-24 08:11:56.458 CST ] [UnixSystem.isNodeAccessible:1014]  Checking accessibility of node: rac2
[main] [ 2013-06-24 08:11:56.460 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 1] [ 2013-06-24 08:11:56.461 CST ] [UnixSystem.isNodeAccessible:1020]  isNodeAccessible:: Running Unix command: /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/true
[Worker 1] [ 2013-06-24 08:11:56.462 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 1] [ 2013-06-24 08:11:56.464 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[Worker 1] [ 2013-06-24 08:11:56.465 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:11:56.461 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:11:56.466 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 0] [ 2013-06-24 08:11:56.468 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 1] [ 2013-06-24 08:11:56.468 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:11:56.470 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:11:56.470 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 0] [ 2013-06-24 08:11:56.471 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 1] [ 2013-06-24 08:11:56.472 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:11:56.473 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:11:56.474 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 0] [ 2013-06-24 08:11:56.474 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 1] [ 2013-06-24 08:11:56.475 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:11:56.476 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 1] [ 2013-06-24 08:11:56.478 CST ] [RuntimeExec.runCommand:77]  rac2 
[Worker 0] [ 2013-06-24 08:11:56.475 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:11:56.479 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 0] [ 2013-06-24 08:11:56.479 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 1] [ 2013-06-24 08:11:56.480 CST ] [RuntimeExec.runCommand:77]  /bin/true 
[Worker 0] [ 2013-06-24 08:11:56.481 CST ] [RuntimeExec.runCommand:77]  rac1 
[Worker 0] [ 2013-06-24 08:11:56.483 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 0] [ 2013-06-24 08:11:56.502 CST ] [RuntimeExec.runCommand:77]  /bin/true 
[Worker 1] [ 2013-06-24 08:11:56.511 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-36] [ 2013-06-24 08:11:56.512 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-35] [ 2013-06-24 08:11:56.514 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-38] [ 2013-06-24 08:11:56.533 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 0] [ 2013-06-24 08:11:56.538 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-37] [ 2013-06-24 08:11:56.542 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 1] [ 2013-06-24 08:11:56.761 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 1] [ 2013-06-24 08:11:56.762 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 1] [ 2013-06-24 08:11:56.763 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 1] [ 2013-06-24 08:11:56.764 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 1] [ 2013-06-24 08:11:56.766 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1|
[Worker 1] [ 2013-06-24 08:11:56.766 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 1] [ 2013-06-24 08:11:56.767 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=0 is full=false
[Worker 1] [ 2013-06-24 08:11:56.769 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 1 m_count=100
[Worker 1] [ 2013-06-24 08:11:56.769 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 1 m_count=1
[Worker 1] [ 2013-06-24 08:11:56.771 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 1] [ 2013-06-24 08:11:56.772 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 1] [ 2013-06-24 08:11:56.772 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 1] [ 2013-06-24 08:11:56.773 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 1 m_count=1
[Worker 1] [ 2013-06-24 08:11:56.773 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 1
[main] [ 2013-06-24 08:11:56.775 CST ] [ClusterConfig.block:608]  block acquired semnum=0
[Worker 1] [ 2013-06-24 08:11:56.775 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 1 m_count=0
[main] [ 2013-06-24 08:11:56.775 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 0] [ 2013-06-24 08:11:56.805 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 0] [ 2013-06-24 08:11:56.805 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 0] [ 2013-06-24 08:11:56.806 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 0] [ 2013-06-24 08:11:56.807 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 0] [ 2013-06-24 08:11:56.807 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1|
[Worker 0] [ 2013-06-24 08:11:56.807 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 0] [ 2013-06-24 08:11:56.808 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=1 is full=false
[Worker 0] [ 2013-06-24 08:11:56.808 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 0 m_count=99
[Worker 0] [ 2013-06-24 08:11:56.809 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 0 m_count=2
[Worker 0] [ 2013-06-24 08:11:56.809 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 0] [ 2013-06-24 08:11:56.809 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 0] [ 2013-06-24 08:11:56.810 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 0] [ 2013-06-24 08:11:56.810 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 0 m_count=1
[main] [ 2013-06-24 08:11:56.812 CST ] [ClusterConfig.block:608]  block acquired semnum=1
[Worker 0] [ 2013-06-24 08:11:56.811 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 0
[main] [ 2013-06-24 08:11:56.813 CST ] [ClusterConfig.submit:557]  Out of block
[Worker 0] [ 2013-06-24 08:11:56.813 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 0 m_count=0
[main] [ 2013-06-24 08:11:56.814 CST ] [ClusterConfig.submit:574]  status=true
[main] [ 2013-06-24 08:11:56.815 CST ] [ClusterConfig.destroy:452]  destroying resources for client thread Thread[main,5,main]
[main] [ 2013-06-24 08:11:56.822 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:56.823 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:56.824 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:56.825 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:56.826 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[0]=rac1
[main] [ 2013-06-24 08:11:56.826 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[1]=rac2
[main] [ 2013-06-24 08:11:56.827 CST ] [Cluster.verifyNodeList:1152]  nodeList[0]=rac1
[main] [ 2013-06-24 08:11:56.827 CST ] [Cluster.verifyNodeList:1152]  nodeList[1]=rac2
[main] [ 2013-06-24 08:11:56.828 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:56.829 CST ] [Cluster.isSharedPath:1071]  NodeList=[rac1, rac2]
[main] [ 2013-06-24 08:11:56.830 CST ] [Cluster.isSharedPath:1107]  pathName=/u01/app/oracle/product/11.2.0/db_1/ dirPath = /u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:56.831 CST ] [UnixSystem.isSharedPath:1591]  dirPath=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:11:56.844 CST ] [UnixSystem.isSharedPath:1596]  UnixSystem.isShared: pathName=/u01/app/oracle/product/11.2.0/db_1 tempFile=CFSFileName13720327168316735528810897752267.tmp
[main] [ 2013-06-24 08:11:56.844 CST ] [UnixSystem.isSharedPath:1601]  UnixSystem.isShared: dirPathName is /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp
[main] [ 2013-06-24 08:11:56.845 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmpon  rac2
[main] [ 2013-06-24 08:11:56.849 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:11:56.850 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:56.851 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:11:56.852 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.853 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:11:56.855 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.858 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:11:56.859 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.861 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:11:56.862 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:56.864 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:11:56.865 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:11:56.866 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:11:56.868 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:11:56.869 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:11:56.870 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp 
[Thread-40] [ 2013-06-24 08:11:56.880 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:56.881 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-39] [ 2013-06-24 08:11:56.881 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.108 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:57.111 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:57.112 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:57.113 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:57.114 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/rm -f /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp]
[main] [ 2013-06-24 08:11:57.114 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[main] [ 2013-06-24 08:11:57.115 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[main] [ 2013-06-24 08:11:57.116 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:11:57.117 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:11:57.118 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmpon  rac1
[main] [ 2013-06-24 08:11:57.118 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:57.119 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:11:57.119 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:11:57.120 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp 
[Thread-42] [ 2013-06-24 08:11:57.131 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.132 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-41] [ 2013-06-24 08:11:57.132 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.140 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:57.143 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:57.144 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:57.145 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:57.147 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/rm -f /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp]
[main] [ 2013-06-24 08:11:57.148 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:11:57.148 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:11:57.149 CST ] [UnixSystem.isSharedPath:1610]  UnixSystem.isShared: creating file /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp
[main] [ 2013-06-24 08:11:57.151 CST ] [UnixSystem.testCFSFile:1705]  The unix command is /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/sh -c "/bin/ls /u01/app/oracle/product/11.2.0/db_1 > /dev/null 2>&1  && /bin/cat /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp"
[main] [ 2013-06-24 08:11:57.152 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:57.153 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:11:57.154 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:57.154 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:11:57.155 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:57.156 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:11:57.156 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:57.157 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:11:57.158 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:11:57.159 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:11:57.159 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:11:57.160 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:11:57.161 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:11:57.162 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:11:57.163 CST ] [RuntimeExec.runCommand:77]  "/bin/ls 
[main] [ 2013-06-24 08:11:57.163 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1 
[main] [ 2013-06-24 08:11:57.164 CST ] [RuntimeExec.runCommand:77]  > 
[main] [ 2013-06-24 08:11:57.165 CST ] [RuntimeExec.runCommand:77]  /dev/null 
[main] [ 2013-06-24 08:11:57.165 CST ] [RuntimeExec.runCommand:77]  2>&1 
[main] [ 2013-06-24 08:11:57.166 CST ] [RuntimeExec.runCommand:77]  && 
[main] [ 2013-06-24 08:11:57.166 CST ] [RuntimeExec.runCommand:77]  /bin/cat 
[main] [ 2013-06-24 08:11:57.167 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp" 
[Thread-44] [ 2013-06-24 08:11:57.183 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.184 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-43] [ 2013-06-24 08:11:57.185 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-44] [ 2013-06-24 08:11:57.428 CST ] [StreamReader.run:65]  ERROR>/bin/cat: /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp: No such file or directory
[main] [ 2013-06-24 08:11:57.431 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 1
[main] [ 2013-06-24 08:11:57.432 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:57.433 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:57.433 CST ] [RuntimeExec.runCommand:173]  /bin/cat: /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp: No such file or directory
[main] [ 2013-06-24 08:11:57.434 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:57.435 CST ] [UnixSystem.testCFSFile:1717]  Command output is empty
[main] [ 2013-06-24 08:11:57.436 CST ] [UnixSystem.testCFSFile:1718]  ERROR: /bin/cat: /u01/app/oracle/product/11.2.0/db_1/CFSFileName13720327168316735528810897752267.tmp: No such file or directory from node rac2
[main] [ 2013-06-24 08:11:57.438 CST ] [ClusterUtils.areSharedPaths:591]  Got shared=false from SRVM call
[main] [ 2013-06-24 08:11:57.471 CST ] [ClusterCheck.checkOratabPermission:293]  verifying permission on node =rac1
[main] [ 2013-06-24 08:11:57.472 CST ] [Oratab.getTempFile:804]  Temp oratab: /tmp/oratab
[main] [ 2013-06-24 08:11:57.472 CST ] [OratabOPS.checkWritePermission:619]  tempOratabFileName=/tmp/oratab.rac1
[main] [ 2013-06-24 08:11:57.477 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:57.477 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:57.478 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:57.478 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:57.479 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:57.480 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:57.480 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:57.480 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:57.481 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:57.481 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:57.482 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:57.482 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:57.482 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:57.484 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:57.484 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:57.485 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:57.489 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:57.490 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:57.490 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:57.491 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:57.492 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:57.495 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/etc/oratab to localnode:/tmp/oratab.rac1
[main] [ 2013-06-24 08:11:57.495 CST ] [UnixSystem.copyFile:685]  UnixSystem: /bin/cp -p /etc/oratab /tmp/oratab.rac1
[main] [ 2013-06-24 08:11:57.496 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:57.501 CST ] [RuntimeExec.runCommand:77]  /bin/cp 
[main] [ 2013-06-24 08:11:57.503 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:11:57.504 CST ] [RuntimeExec.runCommand:77]  /etc/oratab 
[main] [ 2013-06-24 08:11:57.505 CST ] [RuntimeExec.runCommand:77]  /tmp/oratab.rac1 
[Thread-46] [ 2013-06-24 08:11:57.628 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-45] [ 2013-06-24 08:11:57.629 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.631 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Finalizer] [ 2013-06-24 08:11:57.634 CST ] [Util.finalize:126]  Util: finalized called for oracle.ops.mgmt.has.Util@286e4365
[Finalizer] [ 2013-06-24 08:11:57.639 CST ] [ClusterUtil.finalize:102]  ClusterUtil: finalized called for oracle.ops.mgmt.has.ClusterUtil@5f0ab09f
[main] [ 2013-06-24 08:11:57.636 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:57.642 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:57.643 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:57.646 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:57.648 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/cp -p /etc/oratab /tmp/oratab.rac1]
[main] [ 2013-06-24 08:11:57.650 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:11:57.651 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:11:57.654 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:11:57.656 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:11:57.659 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:11:57.661 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:11:57.662 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:57.664 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:57.665 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:57.666 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:57.670 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:57.672 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:57.676 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:57.677 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:57.678 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:57.680 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:57.692 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:57.694 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:57.695 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:57.697 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:57.698 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:57.709 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:57.711 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:57.714 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:57.715 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:57.719 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:57.719 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:57.719 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/tmp/oratab.rac1 to localnode:/etc/oratab
[main] [ 2013-06-24 08:11:57.720 CST ] [UnixSystem.copyFile:685]  UnixSystem: /bin/cp -p /tmp/oratab.rac1 /etc/oratab
[main] [ 2013-06-24 08:11:57.726 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:57.728 CST ] [RuntimeExec.runCommand:77]  /bin/cp 
[main] [ 2013-06-24 08:11:57.730 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:11:57.733 CST ] [RuntimeExec.runCommand:77]  /tmp/oratab.rac1 
[main] [ 2013-06-24 08:11:57.733 CST ] [RuntimeExec.runCommand:77]  /etc/oratab 
[Thread-48] [ 2013-06-24 08:11:57.764 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.772 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-47] [ 2013-06-24 08:11:57.779 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.789 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:57.790 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:57.793 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:57.795 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:57.797 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/cp -p /tmp/oratab.rac1 /etc/oratab]
[main] [ 2013-06-24 08:11:57.805 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:11:57.806 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:11:57.807 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:11:57.809 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:11:57.809 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:11:57.810 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:11:57.814 CST ] [ClusterCheck.checkOratabPermission:293]  verifying permission on node =rac2
[main] [ 2013-06-24 08:11:57.817 CST ] [Oratab.getTempFile:804]  Temp oratab: /tmp/oratab
[main] [ 2013-06-24 08:11:57.819 CST ] [OratabOPS.checkWritePermission:619]  tempOratabFileName=/tmp/oratab.rac2
[main] [ 2013-06-24 08:11:57.821 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:57.822 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:57.824 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:57.825 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:57.826 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:57.829 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:57.830 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:57.831 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:57.833 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:57.834 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:57.835 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:57.835 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:57.837 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:57.837 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:57.838 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:57.839 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:57.840 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:57.841 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:57.842 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:57.843 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:57.845 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:57.846 CST ] [UnixSystem.copyFile:659]  Copy file rac2:/etc/oratab to localnode:/tmp/oratab.rac2
[main] [ 2013-06-24 08:11:57.851 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:11:57.852 CST ] [UnixSystem.remoteCopyFile:636]  Copying files rac2/etc/oratab localnode/tmp/oratab.rac2
[main] [ 2013-06-24 08:11:57.855 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:11:57.863 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:11:57.867 CST ] [UnixSystem.remoteCopyFile:653]  UnixSystem: /usr/bin/scp -p rac2:'/etc/oratab' /tmp/oratab.rac2
[main] [ 2013-06-24 08:11:57.869 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:57.869 CST ] [RuntimeExec.runCommand:77]  /usr/bin/scp 
[main] [ 2013-06-24 08:11:57.870 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:11:57.871 CST ] [RuntimeExec.runCommand:77]  rac2:'/etc/oratab' 
[main] [ 2013-06-24 08:11:57.872 CST ] [RuntimeExec.runCommand:77]  /tmp/oratab.rac2 
[Thread-50] [ 2013-06-24 08:11:57.924 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:57.939 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-49] [ 2013-06-24 08:11:57.940 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:58.157 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:58.158 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:58.166 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:58.174 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:58.175 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/scp -p rac2:'/etc/oratab' /tmp/oratab.rac2]
[main] [ 2013-06-24 08:11:58.182 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/scp is present.
[main] [ 2013-06-24 08:11:58.202 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/scp is a file.
[main] [ 2013-06-24 08:11:58.203 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:11:58.206 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:11:58.207 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:11:58.207 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:11:58.208 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:11:58.217 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:11:58.220 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:58.222 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:58.225 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:58.226 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:58.228 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:58.230 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:58.232 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:58.232 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:58.235 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:58.236 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:58.237 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:11:58.239 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:11:58.240 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:11:58.241 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:11:58.243 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:11:58.244 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:11:58.245 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:11:58.247 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:11:58.247 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:11:58.251 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:11:58.252 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:58.254 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/tmp/oratab.rac2 to rac2:/etc/oratab
[main] [ 2013-06-24 08:11:58.258 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:11:58.258 CST ] [UnixSystem.remoteCopyFile:636]  Copying files localnode/tmp/oratab.rac2 rac2/etc/oratab
[main] [ 2013-06-24 08:11:58.260 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:11:58.260 CST ] [UnixSystem.remoteCopyFile:653]  UnixSystem: /usr/bin/scp -p /tmp/oratab.rac2 rac2:'/etc/oratab'
[main] [ 2013-06-24 08:11:58.261 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:11:58.262 CST ] [RuntimeExec.runCommand:77]  /usr/bin/scp 
[main] [ 2013-06-24 08:11:58.262 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:11:58.263 CST ] [RuntimeExec.runCommand:77]  /tmp/oratab.rac2 
[main] [ 2013-06-24 08:11:58.264 CST ] [RuntimeExec.runCommand:77]  rac2:'/etc/oratab' 
[Thread-52] [ 2013-06-24 08:11:58.288 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:58.300 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-51] [ 2013-06-24 08:11:58.303 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:11:58.480 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:11:58.481 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:11:58.481 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:11:58.484 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:11:58.484 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/scp -p /tmp/oratab.rac2 rac2:'/etc/oratab']
[main] [ 2013-06-24 08:11:58.485 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/scp is present.
[main] [ 2013-06-24 08:11:58.485 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/scp is a file.
[main] [ 2013-06-24 08:11:58.485 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:11:58.486 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:11:58.486 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:11:58.487 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:11:58.487 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:11:58.488 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:11:58.507 CST ] [ScanFactoryImpl.getScanListeners:1231]  Calling searchResources to get the listeners
[main] [ 2013-06-24 08:11:58.523 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType resource, nodeName null, filter (TYPE == ora.scan_listener.type)
[main] [ 2013-06-24 08:11:58.567 CST ] [CRSNative.internalQueryResources:1585]  found 1 resources
[main] [ 2013-06-24 08:11:58.567 CST ] [CRSNative.internalQueryResources:1587]  	ora.LISTENER_SCAN1.lsnr
[main] [ 2013-06-24 08:11:58.568 CST ] [ScanFactoryImpl.getScanListeners:1236]  The number of listeners is 1
[main] [ 2013-06-24 08:11:58.568 CST ] [ScanFactoryImpl.getScanListener:1205]  Calling new ScanListenerImpl for oracle.cluster.impl.crs.ResourceAttribute@75be16f5
[main] [ 2013-06-24 08:11:58.573 CST ] [ScanListenerImpl.<init>:146]  displayName is LISTENER_SCAN1
[main] [ 2013-06-24 08:11:58.601 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER_SCAN1.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:58.601 CST ] [ScanFactoryImpl.getScanListener:1208]  Calling scanLsnr.crsResource()
[main] [ 2013-06-24 08:11:58.641 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER_SCAN1.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:58.641 CST ] [ScanFactoryImpl.getScanListener:1210]  Return from scanLsnr.crsResource()
[main] [ 2013-06-24 08:11:58.642 CST ] [ScanFactoryImpl.getScanListeners:1231]  Calling searchResources to get the listeners
[main] [ 2013-06-24 08:11:58.644 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType resource, nodeName null, filter (TYPE == ora.scan_listener.type)
[main] [ 2013-06-24 08:11:58.683 CST ] [CRSNative.internalQueryResources:1585]  found 1 resources
[main] [ 2013-06-24 08:11:58.684 CST ] [CRSNative.internalQueryResources:1587]  	ora.LISTENER_SCAN1.lsnr
[main] [ 2013-06-24 08:11:58.685 CST ] [ScanFactoryImpl.getScanListeners:1236]  The number of listeners is 1
[main] [ 2013-06-24 08:11:58.685 CST ] [ScanFactoryImpl.getScanListener:1205]  Calling new ScanListenerImpl for oracle.cluster.impl.crs.ResourceAttribute@6490832e
[main] [ 2013-06-24 08:11:58.685 CST ] [ScanListenerImpl.<init>:146]  displayName is LISTENER_SCAN1
[main] [ 2013-06-24 08:11:58.718 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER_SCAN1.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:58.718 CST ] [ScanFactoryImpl.getScanListener:1208]  Calling scanLsnr.crsResource()
[main] [ 2013-06-24 08:11:58.757 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER_SCAN1.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:58.757 CST ] [ScanFactoryImpl.getScanListener:1210]  Return from scanLsnr.crsResource()
[main] [ 2013-06-24 08:11:58.759 CST ] [CRSNative.getResourceInstancesID:1645]  Looking for RIs using filter: ((NAME == ora.LISTENER_SCAN1.lsnr) && ((STATE == ONLINE) || (STATE == INTERMEDIATE)))
[main] [ 2013-06-24 08:11:58.796 CST ] [CRSNative.getResourceInstancesID:1653]  found 1 RIs
[main] [ 2013-06-24 08:11:58.797 CST ] [CRSNative.getResourceInstancesID:1655]  	ora.LISTENER_SCAN1.lsnr 1 1
[main] [ 2013-06-24 08:11:58.832 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:58.871 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:58.872 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER.lsnr, type: 1, node: null
[main] [ 2013-06-24 08:11:58.872 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:58.872 CST ] [CRSNative.getStat:1451]  		'TYPE'
[main] [ 2013-06-24 08:11:58.908 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:58.908 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE'; Value: 'ora.listener.type'
[main] [ 2013-06-24 08:11:58.908 CST ] [NodeAppsFactoryImpl.getListener:1132]  Resource type is ora.listener.type
[main] [ 2013-06-24 08:11:58.909 CST ] [ListenerImpl.getOracleHome:566]  m_crsResource = oracle.cluster.impl.crs.CRSResourceImpl@6c69d02b
[main] [ 2013-06-24 08:11:58.910 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER.lsnr, type: 1, node: null
[main] [ 2013-06-24 08:11:58.911 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:58.912 CST ] [CRSNative.getStat:1451]  		'ORACLE_HOME'
[main] [ 2013-06-24 08:11:58.946 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:58.946 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME'; Value: '%CRS_HOME%'
[main] [ 2013-06-24 08:11:58.982 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:59.020 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:11:59.020 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER.lsnr, type: 1, node: null
[main] [ 2013-06-24 08:11:59.020 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:59.021 CST ] [CRSNative.getStat:1451]  		'TYPE'
[main] [ 2013-06-24 08:11:59.055 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:59.056 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE'; Value: 'ora.listener.type'
[main] [ 2013-06-24 08:11:59.056 CST ] [NodeAppsFactoryImpl.getListener:1132]  Resource type is ora.listener.type
[main] [ 2013-06-24 08:11:59.058 CST ] [CRSNative.getResourceInstancesID:1645]  Looking for RIs using filter: ((NAME == ora.LISTENER.lsnr) && ((STATE == ONLINE) || (STATE == INTERMEDIATE)))
[main] [ 2013-06-24 08:11:59.098 CST ] [CRSNative.getResourceInstancesID:1653]  found 2 RIs
[main] [ 2013-06-24 08:11:59.099 CST ] [CRSNative.getResourceInstancesID:1655]  	ora.LISTENER.lsnr rac1 1
[main] [ 2013-06-24 08:11:59.099 CST ] [CRSNative.getResourceInstancesID:1655]  	ora.LISTENER.lsnr rac2 1
[main] [ 2013-06-24 08:11:59.111 CST ] [ServerPoolImpl.<init>:148]  m_name = Generic, m_displayName = Generic
[main] [ 2013-06-24 08:11:59.139 CST ] [CRSNative.isEntityRegistered:737]  entity: Generic, type: 3, registered: true
[main] [ 2013-06-24 08:11:59.141 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: Generic, type: 3, node: null
[main] [ 2013-06-24 08:11:59.141 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:59.142 CST ] [CRSNative.getStat:1451]  		'ACTIVE_SERVERS'
[main] [ 2013-06-24 08:11:59.181 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:59.182 CST ] [CRSNative.getStat:1474]  	Name: 'ACTIVE_SERVERS'; Value: 'rac1 rac2'
[main] [ 2013-06-24 08:11:59.183 CST ] [ServerPoolImpl.serversHelper2:675]  attrValue=rac1 rac2
[main] [ 2013-06-24 08:11:59.233 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac1', 'ACTIVE_POOLS':'Generic ora.racdb'
[main] [ 2013-06-24 08:11:59.234 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac1', 'NAME':'rac1'
[main] [ 2013-06-24 08:11:59.235 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:11:59.236 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac1', 'STATE_DETAILS':''
[main] [ 2013-06-24 08:11:59.236 CST ] [CRSNative.searchEntities:1010]  found 1 entities
[main] [ 2013-06-24 08:11:59.271 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac2', 'ACTIVE_POOLS':'Generic ora.racdb'
[main] [ 2013-06-24 08:11:59.272 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac2', 'NAME':'rac2'
[main] [ 2013-06-24 08:11:59.275 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac2', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:11:59.276 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'rac2', 'STATE_DETAILS':''
[main] [ 2013-06-24 08:11:59.277 CST ] [CRSNative.searchEntities:1010]  found 1 entities
[main] [ 2013-06-24 08:11:59.279 CST ] [ServerPoolImpl.<init>:148]  m_name = Free, m_displayName = Free
[main] [ 2013-06-24 08:11:59.308 CST ] [CRSNative.isEntityRegistered:737]  entity: Free, type: 3, registered: true
[main] [ 2013-06-24 08:11:59.309 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: Free, type: 3, node: null
[main] [ 2013-06-24 08:11:59.310 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:11:59.310 CST ] [CRSNative.getStat:1451]  		'ACTIVE_SERVERS'
[main] [ 2013-06-24 08:11:59.346 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:11:59.346 CST ] [CRSNative.getStat:1474]  	Name: 'ACTIVE_SERVERS'; Value: ''
[main] [ 2013-06-24 08:11:59.348 CST ] [ServerPoolImpl.serversHelper2:675]  attrValue=
[main] [ 2013-06-24 08:11:59.350 CST ] [Environment.validateInstances:357]  Is Cluster Database=true
[main] [ 2013-06-24 08:11:59.395 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:59.396 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:11:59.397 CST ] [Environment.validateInstances:363]  startThreadNum=2
[main] [ 2013-06-24 08:11:59.397 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:11:59.403 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:11:59.406 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:11:59.411 CST ] [RawDeviceConfig.init:149]  RawDeviceConfig instance is null
[main] [ 2013-06-24 08:11:59.411 CST ] [RawDeviceConfig.init:152]  Creating a RawDeviceConfigHA instance
[main] [ 2013-06-24 08:11:59.413 CST ] [RawDeviceConfig.<init>:118]  initializing RawDeviceConfig
[main] [ 2013-06-24 08:11:59.413 CST ] [OCRTree.init:188]  in OCRTree.init, version = 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.413 CST ] [RawDeviceConfigHA.<init>:66]  initializing RawDeviceConfig
[main] [ 2013-06-24 08:11:59.415 CST ] [OCRTree.init:188]  in OCRTree.init, version = 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.415 CST ] [OCRTree.listDatabases:600]  Acquiring shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:11:59.415 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:11:59.428 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES)
[main] [ 2013-06-24 08:11:59.429 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES)

[main] [ 2013-06-24 08:11:59.433 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:11:59.435 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:11:59.436 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.DATABASES)
[main] [ 2013-06-24 08:11:59.437 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.DATABASES]

[main] [ 2013-06-24 08:11:59.441 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:11:59.442 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:11:59.445 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 16

[main] [ 2013-06-24 08:11:59.447 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is -1

[main] [ 2013-06-24 08:11:59.447 CST ] [OCR.listSubKeys:659]  got null subKeys
[main] [ 2013-06-24 08:11:59.448 CST ] [OCRTree.listDatabases:615]  Releasing shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:11:59.449 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:11:59.455 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:11:59.464 CST ] [Storage.extractDiskGroup:402]  index of /=-1
[main] [ 2013-06-24 08:11:59.465 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:11:59.467 CST ] [SQLEngine.doSQLSubstitution:2414]  The substituted sql statement:=select DATABASE_COMPATIBILITY from v$asm_diskgroup where name='ASMDATA'
[main] [ 2013-06-24 08:11:59.468 CST ] [ASMUtils.getDiskGroupCompatibility:1252]  sql to be executed:=select DATABASE_COMPATIBILITY from v$asm_diskgroup where name='ASMDATA'
[main] [ 2013-06-24 08:11:59.469 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:59.472 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:59.473 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/11.2.0/grid,1
[main] [ 2013-06-24 08:11:59.476 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: null
[main] [ 2013-06-24 08:11:59.477 CST ] [OracleHome.getVersion:964]  using sqlplus: /u01/11.2.0/grid/bin/sqlplus
[main] [ 2013-06-24 08:11:59.478 CST ] [OracleHome.getVersion:996]  adding oracle home to sqlplus env
[main] [ 2013-06-24 08:11:59.478 CST ] [OracleHome.getVersion:1000]  LD_LIBRARY_PATH=/u01/11.2.0/grid/lib:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:11:59.478 CST ] [OracleHome.getVersion:1000]  ORACLE_HOME=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:59.511 CST ] [OracleHome.getVersion:1005]  /u01/11.2.0/grid/bin/sqlplus Banner: 

SQL*Plus: Release 11.2.0.3.0 Production

[main] [ 2013-06-24 08:11:59.511 CST ] [OracleHome.getVersion:1023]  Current version from sqlplus: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.512 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.512 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.513 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.514 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.514 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.514 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:59.515 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:59.515 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:59.516 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:59.522 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:59.522 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:11:59.697 CST ] [ASMUtils.getDiskGroupCompatibility:1262]  Diskgroup version query executed
[main] [ 2013-06-24 08:11:59.697 CST ] [ASMUtils.getDiskGroupCompatibility:1267]  DiskGroup =ASMDATA Version=10.1.0.0.0
[main] [ 2013-06-24 08:11:59.697 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:11:59.699 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:11:59.704 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:11:59.736 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:11:59.737 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:11:59.771 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:11:59.771 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:11:59.772 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:11:59.810 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:11:59.811 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:11:59.811 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:11:59.812 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:11:59.812 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:11:59.813 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:11:59.814 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:11:59.814 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:11:59.815 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:11:59.815 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:11:59.817 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:11:59.817 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:11:59.818 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:11:59.818 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:11:59.819 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:11:59.819 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:11:59.819 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:11:59.820 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:11:59.820 CST ] [Storage.extractDiskGroup:402]  index of /=-1
[main] [ 2013-06-24 08:11:59.820 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:11:59.820 CST ] [SQLEngine.doSQLSubstitution:2414]  The substituted sql statement:=select DATABASE_COMPATIBILITY from v$asm_diskgroup where name='ASMDATA'
[main] [ 2013-06-24 08:11:59.821 CST ] [ASMUtils.getDiskGroupCompatibility:1252]  sql to be executed:=select DATABASE_COMPATIBILITY from v$asm_diskgroup where name='ASMDATA'
[main] [ 2013-06-24 08:11:59.822 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: null
[main] [ 2013-06-24 08:11:59.825 CST ] [InventoryUtil.getOUIInvSession:347]  setting OUI READ level to ACCESSLEVEL_READ_LOCKLESS
[main] [ 2013-06-24 08:11:59.827 CST ] [OracleHome.getVersion:908]  Homeinfo /u01/11.2.0/grid,1
[main] [ 2013-06-24 08:11:59.828 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: null
[main] [ 2013-06-24 08:11:59.829 CST ] [OracleHome.getVersion:964]  using sqlplus: /u01/11.2.0/grid/bin/sqlplus
[main] [ 2013-06-24 08:11:59.838 CST ] [OracleHome.getVersion:996]  adding oracle home to sqlplus env
[main] [ 2013-06-24 08:11:59.838 CST ] [OracleHome.getVersion:1000]  LD_LIBRARY_PATH=/u01/11.2.0/grid/lib:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:11:59.839 CST ] [OracleHome.getVersion:1000]  ORACLE_HOME=/u01/11.2.0/grid
[main] [ 2013-06-24 08:11:59.915 CST ] [OracleHome.getVersion:1005]  /u01/11.2.0/grid/bin/sqlplus Banner: 

SQL*Plus: Release 11.2.0.3.0 Production

[main] [ 2013-06-24 08:11:59.921 CST ] [OracleHome.getVersion:1023]  Current version from sqlplus: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.921 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.922 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.923 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.924 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.925 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:11:59.925 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:11:59.929 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:59.931 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:11:59.935 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:11:59.952 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:11:59.954 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:00.092 CST ] [ASMUtils.getDiskGroupCompatibility:1262]  Diskgroup version query executed
[main] [ 2013-06-24 08:12:00.093 CST ] [ASMUtils.getDiskGroupCompatibility:1267]  DiskGroup =ASMDATA Version=10.1.0.0.0
[main] [ 2013-06-24 08:12:00.095 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:00.102 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:00.102 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:00.154 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:00.156 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:00.192 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:00.192 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:00.193 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:12:00.244 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:00.246 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:00.247 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:00.248 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:00.259 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:00.261 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:00.262 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:00.264 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:00.266 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:00.274 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:00.275 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:00.278 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:00.279 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:00.280 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:00.281 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:00.282 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:00.296 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:00.296 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:00.300 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.303 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.304 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.305 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.306 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.307 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.307 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.315 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:00.322 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.322 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.327 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:00.350 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:00.356 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:00.420 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.422 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:00.422 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.422 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:00.470 CST ] [DBInstance.getDataAndControlFiles:581]  Number of DataAndControlFiles =6
[main] [ 2013-06-24 08:12:00.471 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:00.471 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.474 CST ] [SharedStorageCheck.checkSpace:434]  Required DataFile Space = 0
[main] [ 2013-06-24 08:12:00.474 CST ] [Storage.extractDiskGroup:402]  index of /=-1
[main] [ 2013-06-24 08:12:00.475 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:00.476 CST ] [ASMUtils.getFreeDiskSpace:1131]  Diskgroup for space check oracle.sysman.assistants.util.asm.DiskGroup@68ed662d
[main] [ 2013-06-24 08:12:00.476 CST ] [ASMUtils.getFreeDiskSpace:1135]  availableSpace 5001
[main] [ 2013-06-24 08:12:00.477 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.486 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.486 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.487 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.488 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.490 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.491 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.491 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:00.494 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.495 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.498 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:00.510 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:00.510 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:00.578 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.579 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:00.579 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.580 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:00.706 CST ] [DBInstance.getRecoveryFiles:491]  Number of recovery_dest =1
[main] [ 2013-06-24 08:12:00.707 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:00.708 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.708 CST ] [SharedStorageCheck.checkSpace:464]  recovery_file 1 =+ASMDATA
[main] [ 2013-06-24 08:12:00.709 CST ] [SharedStorageCheck.checkSpace:468]  Required Recovery Space = 0
[main] [ 2013-06-24 08:12:00.709 CST ] [Storage.extractDiskGroup:402]  index of /=-1
[main] [ 2013-06-24 08:12:00.709 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:00.710 CST ] [ASMUtils.getFreeDiskSpace:1131]  Diskgroup for space check oracle.sysman.assistants.util.asm.DiskGroup@68ed662d
[main] [ 2013-06-24 08:12:00.710 CST ] [ASMUtils.getFreeDiskSpace:1135]  availableSpace 5001
[main] [ 2013-06-24 08:12:00.711 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.711 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.711 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.711 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.712 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.712 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.712 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.712 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:00.712 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.713 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.713 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:00.719 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:00.720 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:00.786 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.787 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:00.788 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.789 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:00.803 CST ] [DBInstance.getLocalStorageType:400]  Number of records =2
[main] [ 2013-06-24 08:12:00.806 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:00.807 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:00.840 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.846 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.852 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.853 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.856 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.860 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.862 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:00.863 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:00.867 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.871 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:00.874 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:00.923 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:00.926 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:01.135 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.137 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:01.138 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.145 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:01.161 CST ] [DBInstance.getArchiveLogDests:521]  Results from get_log_archive_dest
[main] [ 2013-06-24 08:12:01.162 CST ] [DBInstance.getArchiveLogDests:527]  Local dest1 = USE_DB_RECOVERY_FILE_DEST
[main] [ 2013-06-24 08:12:01.164 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:01.165 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.169 CST ] [Storage.areFilesAccessible:544]  Checking file:
[main] [ 2013-06-24 08:12:01.170 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.171 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.172 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.173 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.176 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.177 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.179 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.180 CST ] [Storage.areFilesAccessible:544]  Checking file:null
[main] [ 2013-06-24 08:12:01.209 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.212 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.220 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.222 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.223 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.225 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.226 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.230 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:01.233 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.234 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.238 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:01.269 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:01.271 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:01.451 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.452 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:01.452 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.452 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:01.457 CST ] [RAC.<init>:184]  Existing instance orahome=/u01/app/oracle/product/11.2.0/db_1
new instance orahome=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:12:01.458 CST ] [RAC.<init>:186]  New Instance dbDomain=
[main] [ 2013-06-24 08:12:01.521 CST ] [DBInstance.prepareStandby:888]  DB status = OPEN
[main] [ 2013-06-24 08:12:01.534 CST ] [StorageManagement.callAdapterForStandbyDB:1938]  Thread Info Array Length....1
[main] [ 2013-06-24 08:12:01.534 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:01.534 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.537 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.537 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.542 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.542 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.543 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.543 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.544 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.545 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:01.549 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.550 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.553 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:01.564 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:01.565 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:01.714 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.716 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:01.716 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.717 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:01.724 CST ] [DBInstance.getLocalStorageType:400]  Number of records =2
[main] [ 2013-06-24 08:12:01.725 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:01.726 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.727 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.728 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.729 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.730 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.731 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.732 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.733 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.734 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:01.737 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.739 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.747 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:01.759 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:01.760 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:01.888 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.889 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:01.890 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.890 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:01.915 CST ] [DBInstance.getSPFile:469]  value of spfile to start with=+DATA/lunar/parameterfile/spfile.267.818928205
[main] [ 2013-06-24 08:12:01.915 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:01.916 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:01.918 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.918 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.919 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.920 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.921 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.922 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.922 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:01.923 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:01.925 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.926 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:01.927 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:01.936 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:01.937 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:02.051 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:02.051 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:02.052 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:02.052 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:02.151 CST ] [DBInstance.getDataAndControlFiles:581]  Number of DataAndControlFiles =6
[main] [ 2013-06-24 08:12:02.151 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:02.151 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:02.152 CST ] [OptionsCheck.getLocalStorageStatusForDBArea:346]  length of data  =6
[main] [ 2013-06-24 08:12:02.153 CST ] [Storage.areFilesAccessible:544]  Checking file:+ASMDATA/lunar/control01.ctl
[main] [ 2013-06-24 08:12:02.153 CST ] [Storage.areFilesAccessible:563]  localStorageType=ASM
[main] [ 2013-06-24 08:12:02.155 CST ] [Storage.areFilesAccessible:568]  Get ASM Nodes
[main] [ 2013-06-24 08:12:02.304 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:12:02.305 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:12:02.330 CST ] [OCR.init:297]  Resetting OCR access version
[main] [ 2013-06-24 08:12:02.331 CST ] [ClusterLock.<init>:64]  ClusterLock Instance created.
[main] [ 2013-06-24 08:12:02.343 CST ] [ASMTree.init:149]  Out of ASMTree constructor.
[main] [ 2013-06-24 08:12:02.344 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.ASM)
[main] [ 2013-06-24 08:12:02.346 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.ASM)

[main] [ 2013-06-24 08:12:02.353 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:12:02.356 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:12:02.357 CST ] [ASMTree.getNodes:1241]  DATABASE.ASM does exist
[main] [ 2013-06-24 08:12:02.358 CST ] [ASMTree.getNodes:1242]  Acquiring shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:02.360 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:02.382 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.ASM)
[main] [ 2013-06-24 08:12:02.383 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.ASM]

[main] [ 2013-06-24 08:12:02.390 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:12:02.391 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:12:02.414 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 0

[main] [ 2013-06-24 08:12:02.414 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is 1

[main] [ 2013-06-24 08:12:02.426 CST ] [nativesystem.OCRNative.Native]  listSubKeys: subkey[1] = [rac2]

[main] [ 2013-06-24 08:12:02.427 CST ] [nativesystem.OCRNative.Native]  listSubKeys: after setobjectarrayelement

[main] [ 2013-06-24 08:12:02.430 CST ] [OCR.listSubKeys:662]  got 2 subKeys
[main] [ 2013-06-24 08:12:02.431 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac1)
[main] [ 2013-06-24 08:12:02.436 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:02.457 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:02.458 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac1] dtype = 3

[main] [ 2013-06-24 08:12:02.459 CST ] [OCR.listSubKeys:669]  subKeys[0]=[rac1], val=[rac1]
[main] [ 2013-06-24 08:12:02.461 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac2)
[main] [ 2013-06-24 08:12:02.477 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:02.481 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:02.484 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac2] dtype = 3

[main] [ 2013-06-24 08:12:02.484 CST ] [OCR.listSubKeys:669]  subKeys[1]=[rac2], val=[rac2]
[main] [ 2013-06-24 08:12:02.486 CST ] [ASMTree.getNodes:1276]  Releasing shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:02.490 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:12:02.521 CST ] [GetASMNodeListOperation.run:78]  Got nodes=[Ljava.lang.String;@466355dc
[main] [ 2013-06-24 08:12:02.523 CST ] [GetASMNodeListOperation.run:91]  result status 0
[main] [ 2013-06-24 08:12:02.524 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:12:02.525 CST ] [Storage.areFilesAccessible:570]  Nodes having asm instances=2
[main] [ 2013-06-24 08:12:02.526 CST ] [Storage.areFilesAccessible:591]  DiskGroup for Files=+ASMDATA/lunar/control01.ctl
[main] [ 2013-06-24 08:12:02.526 CST ] [Storage.extractDiskGroup:402]  index of /=8
[main] [ 2013-06-24 08:12:02.527 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:02.529 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:02.531 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:02.602 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:02.603 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:02.686 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:02.687 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:02.688 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:12:02.782 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:02.784 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:02.785 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:02.787 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:02.788 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:02.790 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:02.793 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:02.794 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:02.797 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:02.802 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:02.804 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:02.807 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:02.809 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:02.812 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:02.814 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:02.815 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:02.817 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:02.819 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:02.821 CST ] [Storage.areFilesAccessible:544]  Checking file:+ASMDATA/lunar/datafile/sysaux.318.818912517
[main] [ 2013-06-24 08:12:02.822 CST ] [Storage.areFilesAccessible:563]  localStorageType=ASM
[main] [ 2013-06-24 08:12:02.824 CST ] [Storage.areFilesAccessible:568]  Get ASM Nodes
[main] [ 2013-06-24 08:12:02.825 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:12:02.828 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:12:02.834 CST ] [ASMTree.init:153]  Returning an existing instance of ASMTree
[main] [ 2013-06-24 08:12:02.836 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.ASM)
[main] [ 2013-06-24 08:12:02.837 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.ASM)

[main] [ 2013-06-24 08:12:02.842 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:12:02.843 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:12:02.844 CST ] [ASMTree.getNodes:1241]  DATABASE.ASM does exist
[main] [ 2013-06-24 08:12:02.846 CST ] [ASMTree.getNodes:1242]  Acquiring shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:02.847 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:02.858 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.ASM)
[main] [ 2013-06-24 08:12:02.863 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.ASM]

[main] [ 2013-06-24 08:12:02.868 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:12:02.869 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:12:02.873 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 0

[main] [ 2013-06-24 08:12:02.874 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is 1

[main] [ 2013-06-24 08:12:02.875 CST ] [nativesystem.OCRNative.Native]  listSubKeys: subkey[1] = [rac2]

[main] [ 2013-06-24 08:12:02.876 CST ] [nativesystem.OCRNative.Native]  listSubKeys: after setobjectarrayelement

[main] [ 2013-06-24 08:12:02.876 CST ] [OCR.listSubKeys:662]  got 2 subKeys
[main] [ 2013-06-24 08:12:02.876 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac1)
[main] [ 2013-06-24 08:12:02.878 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:02.882 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:02.882 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac1] dtype = 3

[main] [ 2013-06-24 08:12:02.882 CST ] [OCR.listSubKeys:669]  subKeys[0]=[rac1], val=[rac1]
[main] [ 2013-06-24 08:12:02.883 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac2)
[main] [ 2013-06-24 08:12:02.885 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:02.888 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:02.889 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac2] dtype = 3

[main] [ 2013-06-24 08:12:02.890 CST ] [OCR.listSubKeys:669]  subKeys[1]=[rac2], val=[rac2]
[main] [ 2013-06-24 08:12:02.891 CST ] [ASMTree.getNodes:1276]  Releasing shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:02.891 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:12:02.901 CST ] [GetASMNodeListOperation.run:78]  Got nodes=[Ljava.lang.String;@456dfa45
[main] [ 2013-06-24 08:12:02.902 CST ] [GetASMNodeListOperation.run:91]  result status 0
[main] [ 2013-06-24 08:12:02.903 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:12:02.904 CST ] [Storage.areFilesAccessible:570]  Nodes having asm instances=2
[main] [ 2013-06-24 08:12:02.905 CST ] [Storage.areFilesAccessible:591]  DiskGroup for Files=+ASMDATA/lunar/datafile/sysaux.318.818912517
[main] [ 2013-06-24 08:12:02.906 CST ] [Storage.extractDiskGroup:402]  index of /=8
[main] [ 2013-06-24 08:12:02.908 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:02.909 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:02.909 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:02.960 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:02.961 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.006 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.006 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:03.007 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:12:03.064 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.065 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.066 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.069 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:03.069 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.070 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.071 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.073 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:03.074 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:03.075 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.076 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.077 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.078 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.078 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.078 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.079 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:03.080 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:03.080 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:03.081 CST ] [Storage.areFilesAccessible:544]  Checking file:+ASMDATA/lunar/datafile/system.317.818912513
[main] [ 2013-06-24 08:12:03.081 CST ] [Storage.areFilesAccessible:563]  localStorageType=ASM
[main] [ 2013-06-24 08:12:03.081 CST ] [Storage.areFilesAccessible:568]  Get ASM Nodes
[main] [ 2013-06-24 08:12:03.082 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:12:03.082 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:12:03.083 CST ] [ASMTree.init:153]  Returning an existing instance of ASMTree
[main] [ 2013-06-24 08:12:03.083 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.084 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.ASM)

[main] [ 2013-06-24 08:12:03.088 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:12:03.089 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:12:03.089 CST ] [ASMTree.getNodes:1241]  DATABASE.ASM does exist
[main] [ 2013-06-24 08:12:03.090 CST ] [ASMTree.getNodes:1242]  Acquiring shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.091 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:03.101 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.105 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.ASM]

[main] [ 2013-06-24 08:12:03.109 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:12:03.109 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:12:03.114 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 0

[main] [ 2013-06-24 08:12:03.115 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is 1

[main] [ 2013-06-24 08:12:03.115 CST ] [nativesystem.OCRNative.Native]  listSubKeys: subkey[1] = [rac2]

[main] [ 2013-06-24 08:12:03.116 CST ] [nativesystem.OCRNative.Native]  listSubKeys: after setobjectarrayelement

[main] [ 2013-06-24 08:12:03.118 CST ] [OCR.listSubKeys:662]  got 2 subKeys
[main] [ 2013-06-24 08:12:03.119 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac1)
[main] [ 2013-06-24 08:12:03.122 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.127 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.127 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac1] dtype = 3

[main] [ 2013-06-24 08:12:03.128 CST ] [OCR.listSubKeys:669]  subKeys[0]=[rac1], val=[rac1]
[main] [ 2013-06-24 08:12:03.128 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac2)
[main] [ 2013-06-24 08:12:03.131 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.139 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.140 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac2] dtype = 3

[main] [ 2013-06-24 08:12:03.142 CST ] [OCR.listSubKeys:669]  subKeys[1]=[rac2], val=[rac2]
[main] [ 2013-06-24 08:12:03.142 CST ] [ASMTree.getNodes:1276]  Releasing shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.143 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:12:03.151 CST ] [GetASMNodeListOperation.run:78]  Got nodes=[Ljava.lang.String;@3a289d2e
[main] [ 2013-06-24 08:12:03.152 CST ] [GetASMNodeListOperation.run:91]  result status 0
[main] [ 2013-06-24 08:12:03.153 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:12:03.154 CST ] [Storage.areFilesAccessible:570]  Nodes having asm instances=2
[main] [ 2013-06-24 08:12:03.157 CST ] [Storage.areFilesAccessible:591]  DiskGroup for Files=+ASMDATA/lunar/datafile/system.317.818912513
[main] [ 2013-06-24 08:12:03.158 CST ] [Storage.extractDiskGroup:402]  index of /=8
[main] [ 2013-06-24 08:12:03.158 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:03.161 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:03.161 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.240 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.242 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.293 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.294 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:03.294 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:12:03.362 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.364 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.365 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.366 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:03.368 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.368 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.369 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.371 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:03.371 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:03.372 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.372 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.373 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.375 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.376 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.377 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.377 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:03.378 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:03.378 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:03.380 CST ] [Storage.areFilesAccessible:544]  Checking file:+ASMDATA/lunar/datafile/undotbs1.319.818912523
[main] [ 2013-06-24 08:12:03.381 CST ] [Storage.areFilesAccessible:563]  localStorageType=ASM
[main] [ 2013-06-24 08:12:03.382 CST ] [Storage.areFilesAccessible:568]  Get ASM Nodes
[main] [ 2013-06-24 08:12:03.382 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:12:03.382 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:12:03.383 CST ] [ASMTree.init:153]  Returning an existing instance of ASMTree
[main] [ 2013-06-24 08:12:03.383 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.383 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.ASM)

[main] [ 2013-06-24 08:12:03.386 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:12:03.386 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:12:03.387 CST ] [ASMTree.getNodes:1241]  DATABASE.ASM does exist
[main] [ 2013-06-24 08:12:03.387 CST ] [ASMTree.getNodes:1242]  Acquiring shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.388 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:03.394 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.395 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.ASM]

[main] [ 2013-06-24 08:12:03.398 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:12:03.399 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:12:03.402 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 0

[main] [ 2013-06-24 08:12:03.402 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is 1

[main] [ 2013-06-24 08:12:03.403 CST ] [nativesystem.OCRNative.Native]  listSubKeys: subkey[1] = [rac2]

[main] [ 2013-06-24 08:12:03.404 CST ] [nativesystem.OCRNative.Native]  listSubKeys: after setobjectarrayelement

[main] [ 2013-06-24 08:12:03.405 CST ] [OCR.listSubKeys:662]  got 2 subKeys
[main] [ 2013-06-24 08:12:03.405 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac1)
[main] [ 2013-06-24 08:12:03.408 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.411 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.411 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac1] dtype = 3

[main] [ 2013-06-24 08:12:03.412 CST ] [OCR.listSubKeys:669]  subKeys[0]=[rac1], val=[rac1]
[main] [ 2013-06-24 08:12:03.412 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac2)
[main] [ 2013-06-24 08:12:03.414 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.416 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.417 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac2] dtype = 3

[main] [ 2013-06-24 08:12:03.418 CST ] [OCR.listSubKeys:669]  subKeys[1]=[rac2], val=[rac2]
[main] [ 2013-06-24 08:12:03.418 CST ] [ASMTree.getNodes:1276]  Releasing shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.419 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:12:03.424 CST ] [GetASMNodeListOperation.run:78]  Got nodes=[Ljava.lang.String;@5ddc0e7a
[main] [ 2013-06-24 08:12:03.425 CST ] [GetASMNodeListOperation.run:91]  result status 0
[main] [ 2013-06-24 08:12:03.427 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:12:03.428 CST ] [Storage.areFilesAccessible:570]  Nodes having asm instances=2
[main] [ 2013-06-24 08:12:03.429 CST ] [Storage.areFilesAccessible:591]  DiskGroup for Files=+ASMDATA/lunar/datafile/undotbs1.319.818912523
[main] [ 2013-06-24 08:12:03.432 CST ] [Storage.extractDiskGroup:402]  index of /=8
[main] [ 2013-06-24 08:12:03.433 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:03.434 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:03.434 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.470 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.470 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.510 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.511 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:03.511 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:12:03.552 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.554 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.555 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.555 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:03.556 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.557 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.557 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.557 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:03.558 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:03.559 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.560 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.560 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.561 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.562 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.562 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.563 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:03.563 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:03.565 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:03.565 CST ] [Storage.areFilesAccessible:544]  Checking file:+ASMDATA/lunar/datafile/users.316.818912513
[main] [ 2013-06-24 08:12:03.565 CST ] [Storage.areFilesAccessible:563]  localStorageType=ASM
[main] [ 2013-06-24 08:12:03.565 CST ] [Storage.areFilesAccessible:568]  Get ASM Nodes
[main] [ 2013-06-24 08:12:03.566 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:12:03.566 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:12:03.566 CST ] [ASMTree.init:153]  Returning an existing instance of ASMTree
[main] [ 2013-06-24 08:12:03.566 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.567 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.ASM)

[main] [ 2013-06-24 08:12:03.569 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:12:03.569 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:12:03.570 CST ] [ASMTree.getNodes:1241]  DATABASE.ASM does exist
[main] [ 2013-06-24 08:12:03.570 CST ] [ASMTree.getNodes:1242]  Acquiring shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.570 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:03.579 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.580 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.ASM]

[main] [ 2013-06-24 08:12:03.584 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:12:03.585 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:12:03.587 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 0

[main] [ 2013-06-24 08:12:03.587 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is 1

[main] [ 2013-06-24 08:12:03.588 CST ] [nativesystem.OCRNative.Native]  listSubKeys: subkey[1] = [rac2]

[main] [ 2013-06-24 08:12:03.588 CST ] [nativesystem.OCRNative.Native]  listSubKeys: after setobjectarrayelement

[main] [ 2013-06-24 08:12:03.589 CST ] [OCR.listSubKeys:662]  got 2 subKeys
[main] [ 2013-06-24 08:12:03.589 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac1)
[main] [ 2013-06-24 08:12:03.591 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.595 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.595 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac1] dtype = 3

[main] [ 2013-06-24 08:12:03.595 CST ] [OCR.listSubKeys:669]  subKeys[0]=[rac1], val=[rac1]
[main] [ 2013-06-24 08:12:03.596 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac2)
[main] [ 2013-06-24 08:12:03.597 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.600 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.601 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac2] dtype = 3

[main] [ 2013-06-24 08:12:03.602 CST ] [OCR.listSubKeys:669]  subKeys[1]=[rac2], val=[rac2]
[main] [ 2013-06-24 08:12:03.602 CST ] [ASMTree.getNodes:1276]  Releasing shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.602 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:12:03.609 CST ] [GetASMNodeListOperation.run:78]  Got nodes=[Ljava.lang.String;@4963f7a1
[main] [ 2013-06-24 08:12:03.610 CST ] [GetASMNodeListOperation.run:91]  result status 0
[main] [ 2013-06-24 08:12:03.610 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:12:03.611 CST ] [Storage.areFilesAccessible:570]  Nodes having asm instances=2
[main] [ 2013-06-24 08:12:03.611 CST ] [Storage.areFilesAccessible:591]  DiskGroup for Files=+ASMDATA/lunar/datafile/users.316.818912513
[main] [ 2013-06-24 08:12:03.612 CST ] [Storage.extractDiskGroup:402]  index of /=8
[main] [ 2013-06-24 08:12:03.612 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:12:03.613 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:03.615 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.654 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.656 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:12:03.711 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.711 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:03.712 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.ASMDATA.dg
[main] [ 2013-06-24 08:12:03.779 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.781 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.782 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.782 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:03.784 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:03.785 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:03.786 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:03.787 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.ASMDATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:03.788 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:03.789 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.790 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.792 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.793 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.ASMDATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:03.794 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.ASMDATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:03.795 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:03.795 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:03.796 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:03.796 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:03.798 CST ] [Storage.areFilesAccessible:544]  Checking file:+DATA/lunar/control02.ctl
[main] [ 2013-06-24 08:12:03.798 CST ] [Storage.areFilesAccessible:563]  localStorageType=ASM
[main] [ 2013-06-24 08:12:03.799 CST ] [Storage.areFilesAccessible:568]  Get ASM Nodes
[main] [ 2013-06-24 08:12:03.799 CST ] [Operation.<init>:63]  Setting to be a synchronized operation
[main] [ 2013-06-24 08:12:03.800 CST ] [LocalCommand.execute:61]  LocalCommand.execute: Calling run method
[main] [ 2013-06-24 08:12:03.800 CST ] [ASMTree.init:153]  Returning an existing instance of ASMTree
[main] [ 2013-06-24 08:12:03.801 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.801 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.ASM)

[main] [ 2013-06-24 08:12:03.805 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 0 

[main] [ 2013-06-24 08:12:03.806 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_close_key retval = 0 

[main] [ 2013-06-24 08:12:03.808 CST ] [ASMTree.getNodes:1241]  DATABASE.ASM does exist
[main] [ 2013-06-24 08:12:03.809 CST ] [ASMTree.getNodes:1242]  Acquiring shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.810 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:03.820 CST ] [OCR.listSubKeys:643]  OCR.listSubKeys(DATABASE.ASM)
[main] [ 2013-06-24 08:12:03.821 CST ] [nativesystem.OCRNative.Native]  listSubKeys: key_name=[DATABASE.ASM]

[main] [ 2013-06-24 08:12:03.824 CST ] [nativesystem.OCRNative.Native]  listSubKeys: open key retval = 0

[main] [ 2013-06-24 08:12:03.825 CST ] [nativesystem.OCRNative.Native]  listSubKeys: setting num_remaining_subkey to -1

[main] [ 2013-06-24 08:12:03.830 CST ] [nativesystem.OCRNative.Native]  listSubKeys: procr_enum_subkey retval = 0

[main] [ 2013-06-24 08:12:03.831 CST ] [nativesystem.OCRNative.Native]  listSubKeys: num of remaining subkeys is 1

[main] [ 2013-06-24 08:12:03.832 CST ] [nativesystem.OCRNative.Native]  listSubKeys: subkey[1] = [rac2]

[main] [ 2013-06-24 08:12:03.833 CST ] [nativesystem.OCRNative.Native]  listSubKeys: after setobjectarrayelement

[main] [ 2013-06-24 08:12:03.833 CST ] [OCR.listSubKeys:662]  got 2 subKeys
[main] [ 2013-06-24 08:12:03.834 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac1)
[main] [ 2013-06-24 08:12:03.837 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.841 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.841 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac1] dtype = 3

[main] [ 2013-06-24 08:12:03.841 CST ] [OCR.listSubKeys:669]  subKeys[0]=[rac1], val=[rac1]
[main] [ 2013-06-24 08:12:03.842 CST ] [OCR.getKeyValue:439]  OCR.getKeyValue(DATABASE.ASM.rac2)
[main] [ 2013-06-24 08:12:03.844 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_open_key retval = 0

[main] [ 2013-06-24 08:12:03.847 CST ] [nativesystem.OCRNative.Native]  getKeyValue: procr_get_value retval = 0, size = 5

[main] [ 2013-06-24 08:12:03.848 CST ] [nativesystem.OCRNative.Native]  getKeyValue: value is [rac2] dtype = 3

[main] [ 2013-06-24 08:12:03.849 CST ] [OCR.listSubKeys:669]  subKeys[1]=[rac2], val=[rac2]
[main] [ 2013-06-24 08:12:03.850 CST ] [ASMTree.getNodes:1276]  Releasing shared CSS lock SRVM.ASM.DATABASE.ASM
[main] [ 2013-06-24 08:12:03.850 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

[main] [ 2013-06-24 08:12:03.858 CST ] [GetASMNodeListOperation.run:78]  Got nodes=[Ljava.lang.String;@7ba85d38
[main] [ 2013-06-24 08:12:03.859 CST ] [GetASMNodeListOperation.run:91]  result status 0
[main] [ 2013-06-24 08:12:03.861 CST ] [LocalCommand.execute:63]  LocalCommand.execute: Returned from run method
[main] [ 2013-06-24 08:12:03.861 CST ] [Storage.areFilesAccessible:570]  Nodes having asm instances=2
[main] [ 2013-06-24 08:12:03.862 CST ] [Storage.areFilesAccessible:591]  DiskGroup for Files=+DATA/lunar/control02.ctl
[main] [ 2013-06-24 08:12:03.863 CST ] [Storage.extractDiskGroup:402]  index of /=5
[main] [ 2013-06-24 08:12:03.864 CST ] [Storage.extractDiskGroup:415]  Extracted Value=DATA
[main] [ 2013-06-24 08:12:03.865 CST ] [HAASMUtils.isDiskGroupMounted:230]   entering isDiskGroupMounted
[main] [ 2013-06-24 08:12:03.867 CST ] [DiskGroupImpl.<init>:108]  name = ora.DATA.dg, display name = DATA
[main] [ 2013-06-24 08:12:03.911 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.DATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.912 CST ] [DiskGroupImpl.<init>:138]  name = ora.DATA.dg, display name = DATA
[main] [ 2013-06-24 08:12:03.957 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.DATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:12:03.957 CST ] [HAASMUtils.isDiskGroupMounted:246]   before fetchRunningNodes
[main] [ 2013-06-24 08:12:03.958 CST ] [CRSNative.doFetchRunningNodeNames:881]  Looking for nodes: resource ora.DATA.dg
[main] [ 2013-06-24 08:12:04.007 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac1 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:04.009 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac1 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:04.010 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac1 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:04.011 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:12:04.012 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac2 1', 'STATE':'ONLINE'
[main] [ 2013-06-24 08:12:04.013 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac2 1', 'TARGET':'ONLINE'
[main] [ 2013-06-24 08:12:04.013 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac2 1', 'INTERNAL_STATE':'STABLE'
[main] [ 2013-06-24 08:12:04.014 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.DATA.dg rac2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:12:04.015 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:12:04.016 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.DATA.dg rac1 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:04.017 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.DATA.dg rac1 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:04.018 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac1, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:04.019 CST ] [CRSNative.getRIStatus:1702]  	RI: 'ora.DATA.dg rac2 1', state: 'ONLINE', target: 'ONLINE'
[main] [ 2013-06-24 08:12:04.019 CST ] [CRSNative.getInternalState:1676]  	RI: 'ora.DATA.dg rac2 1', internalState: 'STABLE'
[main] [ 2013-06-24 08:12:04.020 CST ] [CRSNative.doFetchRunningNodeNames:908]  	node: rac2, status ONLINE_ONLINE 
[main] [ 2013-06-24 08:12:04.021 CST ] [HAASMUtils.isDiskGroupMounted:248]   dg nodes size 2
[main] [ 2013-06-24 08:12:04.021 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac1
[main] [ 2013-06-24 08:12:04.021 CST ] [HAASMUtils.isDiskGroupMounted:255]  Adding to dg node listrac2
[main] [ 2013-06-24 08:12:04.022 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.022 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.023 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.025 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.025 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.026 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.026 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.026 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:04.027 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:04.027 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:04.030 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:04.039 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:04.041 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:04.119 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:04.119 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:04.120 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:04.121 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:04.154 CST ] [Storage.setCurrentDataArea:308]  Current Data Area set to=+ASMDATA
[main] [ 2013-06-24 08:12:04.154 CST ] [Storage.setCurrentRecoveryArea:320]  Current Recovery Area set to=+ASMDATA
[main] [ 2013-06-24 08:12:04.841 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:12:04.841 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:04.842 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.845 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.845 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.846 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.846 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.847 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.847 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:12:04.848 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:12:04.848 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:04.849 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:12:04.852 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:12:04.859 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:12:04.860 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:05.026 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:05.026 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:12:05.026 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:12:05.026 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:12:05.027 CST ] [StorageManagement.createBaseStorage:139]  **** DEFAULT SPFILE TO START WITH=+DATA/lunar/parameterfile/spfile.267.818928205
[main] [ 2013-06-24 08:12:05.027 CST ] [Storage.isRecoveryAreaTransferRequired:344]  Current RecoveryArea=+ASMDATA
[main] [ 2013-06-24 08:12:06.287 CST ] [StorageManagement.createBaseStorage:171]  **** shutdown immediate
[main] [ 2013-06-24 08:12:27.242 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:12:27.243 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:12:27.244 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:12:27.245 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:12:27.317 CST ] [CRSNative.searchEntities:1010]  found 0 entities
[main] [ 2013-06-24 08:12:27.318 CST ] [DatabaseFactoryImpl.getDatabase:742]  Checking for pre database
[main] [ 2013-06-24 08:12:27.319 CST ] [OCRTree.init:214]  calling OCRTree.init
[main] [ 2013-06-24 08:12:27.320 CST ] [OCRTree.isDatabaseConfigured:691]  Acquiring shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:12:27.322 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:12:27.334 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:12:27.336 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:12:27.363 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:12:27.364 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:12:27.364 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:12:27.383 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:12:27.384 CST ] [OCRTree.isDatabaseConfigured:721]  Releasing shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:12:27.385 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

PRCD-1120 : The resource for database lunar could not be found.
PRCR-1001 : Resource ora.lunar.db does not exist
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:830)
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:687)
	at oracle.cluster.database.DatabaseFactory.getDatabase(DatabaseFactory.java:371)
	at oracle.sysman.assistants.rconfig.engine.StorageManagement.createBaseStorage(StorageManagement.java:178)
	at oracle.sysman.assistants.rconfig.engine.Convert.runStep(Convert.java:311)
	at oracle.sysman.assistants.rconfig.engine.RACConvertStep.execute(RACConvertStep.java:191)
	at oracle.sysman.assistants.rconfig.engine.Request.execute(Request.java:79)
	at oracle.sysman.assistants.rconfig.engine.RConfigEngine.execute(RConfigEngine.java:66)
	at oracle.sysman.assistants.rconfig.RConfig.<init>(RConfig.java:97)
	at oracle.sysman.assistants.rconfig.RConfig.<init>(RConfig.java:62)
	at oracle.sysman.assistants.rconfig.RConfig.main(RConfig.java:145)
Caused by: PRCR-1001 : Resource ora.lunar.db does not exist
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:761)
	... 10 more
[main] [ 2013-06-24 08:12:27.434 CST ] [StorageManagement.createBaseStorage:198]  **** create pfile
[main] [ 2013-06-24 08:12:27.443 CST ] [StorageManagement.createBaseStorage:206]  **** startup mount
[main] [ 2013-06-24 08:12:48.390 CST ] [StorageManagement.createBaseStorage:208]  **** alter database archivelog
[main] [ 2013-06-24 08:12:48.491 CST ] [StorageManagement.createBaseStorage:212]  **** alter system reset local_listener  scope=spfile sid= '*' 
[Thread-79] [ 2013-06-24 08:12:48.525 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-79] [ 2013-06-24 08:12:48.527 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-79] [ 2013-06-24 08:12:48.528 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-32010: cannot find entry to delete in SPFILE
[Thread-79] [ 2013-06-24 08:12:48.529 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:474]  Ignoring error during reset. This error simply indicates the entry is not present in spfile
[main] [ 2013-06-24 08:12:48.530 CST ] [StorageManagement.createBaseStorage:220]  **** alter system reset remote_listener  scope=spfile sid= '*' 
[Thread-79] [ 2013-06-24 08:12:48.544 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-79] [ 2013-06-24 08:12:48.544 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-79] [ 2013-06-24 08:12:48.546 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-32010: cannot find entry to delete in SPFILE
[Thread-79] [ 2013-06-24 08:12:48.546 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:474]  Ignoring error during reset. This error simply indicates the entry is not present in spfile
[main] [ 2013-06-24 08:12:48.547 CST ] [Storage.isRecoveryAreaTransferRequired:344]  Current RecoveryArea=+ASMDATA
[main] [ 2013-06-24 08:12:48.548 CST ] [StorageManagement.createBaseStorage:284]  **** backup
[main] [ 2013-06-24 08:12:48.592 CST ] [RMANEngine.initialize:183]  Execing RMAN process from initialize...
[main] [ 2013-06-24 08:12:48.618 CST ] [RMANEngine.initialize:209]  Created RMAN process from initialize...
[main] [ 2013-06-24 08:12:48.619 CST ] [RMANEngine.initialize:216]  Starting Reader Thread... 
[main] [ 2013-06-24 08:12:48.621 CST ] [RMANEngine.initialize:220]  Started reader thread for RMAN process in initialize...
[Thread-81] [ 2013-06-24 08:12:48.623 CST ] [RMANEngine.run:715]  Started reader thread for RMAN process from initialize...
[Thread-81] [ 2013-06-24 08:12:48.624 CST ] [RMANEngine.run:719]  Set m_bReaderStarted  to true  in initialize...
[main] [ 2013-06-24 08:12:48.629 CST ] [RMANEngine.initialize:228]  Started error thread for RMAN process from initialize...
[main] [ 2013-06-24 08:12:48.631 CST ] [RMANEngine.initialize:233]  Created output writer for RMAN process from initialize...
[main] [ 2013-06-24 08:12:48.632 CST ] [RMANEngine.initialize:271]  Created Log writer for RMAN process from initialize...
[main] [ 2013-06-24 08:12:48.632 CST ] [RMANEngine.initialize:276]  Value of m_bReaderStarted in initialize=true
[main] [ 2013-06-24 08:12:48.633 CST ] [RMANEngine.initialize:291]  Made sure reader has started for RMAN process from initialize...
[main] [ 2013-06-24 08:12:48.634 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:12:48.635 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=connect target sys/******
[main] [ 2013-06-24 08:12:48.635 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-81] [ 2013-06-24 08:12:49.447 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:49.450 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Recovery Manager: Release 11.2.0.3.0 - Production on Mon Jun 24 08:12:49 2013
[Thread-81] [ 2013-06-24 08:12:49.450 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:49.452 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
[Thread-81] [ 2013-06-24 08:12:50.010 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:50.011 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> 
[Thread-81] [ 2013-06-24 08:12:54.047 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=connected to target database: LUNAR (DBID=2874070637, not open)
[Thread-81] [ 2013-06-24 08:12:54.064 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:54.128 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> 
[Thread-81] [ 2013-06-24 08:12:54.132 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-81] [ 2013-06-24 08:12:54.134 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:12:54.136 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:12:54.137 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=connect target sys/******
[Thread-81] [ 2013-06-24 08:12:54.139 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:12:54.154 CST ] [Instance.getRMANEngine:315]  RMANEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/rmanLog
[main] [ 2013-06-24 08:12:54.156 CST ] [Instance.setControlAutoBackupOff:519]  CONFIGURE CONTROLFILE AUTOBACKUP OFF 
[main] [ 2013-06-24 08:12:54.158 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:12:54.160 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=set nocfau;
[main] [ 2013-06-24 08:12:54.161 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-81] [ 2013-06-24 08:12:54.162 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:54.242 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set nocfau;
[Thread-81] [ 2013-06-24 08:12:54.245 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=executing command: SET NOCFAU
[Thread-81] [ 2013-06-24 08:12:55.013 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=using target database control file instead of recovery catalog
[Thread-81] [ 2013-06-24 08:12:55.961 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:55.981 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:55.997 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-81] [ 2013-06-24 08:12:55.998 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:55.999 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-81] [ 2013-06-24 08:12:55.999 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-81] [ 2013-06-24 08:12:55.999 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:12:56.000 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:12:56.000 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=set nocfau;
[main] [ 2013-06-24 08:12:56.001 CST ] [StorageManagement.createBaseStorage:293]  **** Checking the sharedness of spfile : +DATA/lunar/parameterfile/spfile.267.818928205 : true
[main] [ 2013-06-24 08:12:56.014 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:12:56.014 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=backup as copy database to destination  '+ASMDATA';
[main] [ 2013-06-24 08:12:56.014 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-81] [ 2013-06-24 08:12:56.015 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:12:56.090 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> backup as copy database to destination  '+ASMDATA';
[Thread-81] [ 2013-06-24 08:12:56.173 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Starting backup at 24-JUN-13
[Thread-81] [ 2013-06-24 08:12:56.793 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=allocated channel: ORA_DISK_1
[Thread-81] [ 2013-06-24 08:12:56.802 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: SID=19 instance=lunar1 device type=DISK
[Thread-81] [ 2013-06-24 08:12:59.169 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: starting datafile copy
[Thread-81] [ 2013-06-24 08:12:59.430 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=input datafile file number=00004 name=+ASMDATA/lunar/datafile/users.316.818912513
[Thread-81] [ 2013-06-24 08:15:24.683 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=output file name=+ASMDATA/lunar/datafile/users.322.818928779 tag=TAG20130624T081258 RECID=1 STAMP=818928915
[Thread-81] [ 2013-06-24 08:15:24.689 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: datafile copy complete, elapsed time: 00:02:25
[Thread-81] [ 2013-06-24 08:15:24.974 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: starting datafile copy
[Thread-81] [ 2013-06-24 08:15:25.070 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=input datafile file number=00001 name=+ASMDATA/lunar/datafile/system.317.818912513
[Thread-81] [ 2013-06-24 08:16:10.130 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=output file name=+ASMDATA/lunar/datafile/system.323.818928925 tag=TAG20130624T081258 RECID=2 STAMP=818928965
[Thread-81] [ 2013-06-24 08:16:10.137 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
[Thread-81] [ 2013-06-24 08:16:10.694 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: starting datafile copy
[Thread-81] [ 2013-06-24 08:16:11.100 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=input datafile file number=00002 name=+ASMDATA/lunar/datafile/sysaux.318.818912517
[Thread-81] [ 2013-06-24 08:16:36.203 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=output file name=+ASMDATA/lunar/datafile/sysaux.324.818928971 tag=TAG20130624T081258 RECID=3 STAMP=818928995
[Thread-81] [ 2013-06-24 08:16:36.210 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:25
[Thread-81] [ 2013-06-24 08:16:36.935 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: starting datafile copy
[Thread-81] [ 2013-06-24 08:16:37.311 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=input datafile file number=00003 name=+ASMDATA/lunar/datafile/undotbs1.319.818912523
[Thread-81] [ 2013-06-24 08:16:52.443 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=output file name=+ASMDATA/lunar/datafile/undotbs1.325.818928997 tag=TAG20130624T081258 RECID=4 STAMP=818929011
[Thread-81] [ 2013-06-24 08:16:52.445 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
[Thread-81] [ 2013-06-24 08:16:52.458 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Finished backup at 24-JUN-13
[Thread-81] [ 2013-06-24 08:16:56.649 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:16:56.691 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:16:56.712 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-81] [ 2013-06-24 08:16:56.715 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:16:56.718 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-81] [ 2013-06-24 08:16:56.718 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-81] [ 2013-06-24 08:16:56.719 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:16:56.722 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:16:56.723 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=backup as copy database to destination  '+ASMDATA';
[main] [ 2013-06-24 08:16:56.727 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:16:56.730 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=backup as backupset reuse spfile format  '+ASMDATA/sp_lunar1_backup';
[main] [ 2013-06-24 08:16:56.733 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-81] [ 2013-06-24 08:16:56.735 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:16:56.932 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> backup as backupset reuse spfile format  '+ASMDATA/sp_lunar1_backup';
[Thread-81] [ 2013-06-24 08:16:56.994 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Starting backup at 24-JUN-13
[Thread-81] [ 2013-06-24 08:16:57.278 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=using channel ORA_DISK_1
[Thread-81] [ 2013-06-24 08:16:57.782 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: starting full datafile backup set
[Thread-81] [ 2013-06-24 08:16:57.785 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: specifying datafile(s) in backup set
[Thread-81] [ 2013-06-24 08:16:57.849 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=including current SPFILE in backup set
[Thread-81] [ 2013-06-24 08:16:57.853 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: starting piece 1 at 24-JUN-13
[Thread-81] [ 2013-06-24 08:16:58.869 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: finished piece 1 at 24-JUN-13
[Thread-81] [ 2013-06-24 08:16:58.870 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=piece handle=+ASMDATA/sp_lunar1_backup tag=TAG20130624T081657 comment=NONE
[Thread-81] [ 2013-06-24 08:16:58.873 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
[Thread-81] [ 2013-06-24 08:16:58.879 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Finished backup at 24-JUN-13
[Thread-81] [ 2013-06-24 08:17:01.476 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:17:01.523 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:17:01.555 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-81] [ 2013-06-24 08:17:01.558 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-81] [ 2013-06-24 08:17:01.560 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-81] [ 2013-06-24 08:17:01.561 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-81] [ 2013-06-24 08:17:01.562 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:01.562 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:01.563 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=backup as backupset reuse spfile format  '+ASMDATA/sp_lunar1_backup';
[Thread-79] [ 2013-06-24 08:17:01.567 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-79] [ 2013-06-24 08:17:01.568 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-79] [ 2013-06-24 08:17:01.569 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01109: database not open
[Thread-79] [ 2013-06-24 08:17:01.569 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:461]  Ignoring shutdown error : database not open
[main] [ 2013-06-24 08:17:01.571 CST ] [RMANEngine.done:1466]  Done called
[main] [ 2013-06-24 08:17:01.571 CST ] [RMANEngine.spoolOff:1352]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/rmanLog
[main] [ 2013-06-24 08:17:01.572 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:01.573 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=exit;
[main] [ 2013-06-24 08:17:01.573 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-81] [ 2013-06-24 08:17:01.574 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=falsem_bReaderDone=truem_bFatalErrorOccured=false
[Thread-81] [ 2013-06-24 08:17:01.575 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=null
[main] [ 2013-06-24 08:17:01.580 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:01.580 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=exit;
[main] [ 2013-06-24 08:17:01.601 CST ] [StorageManagement.createBaseStorage:339]  **** shutdown immediate
[Thread-79] [ 2013-06-24 08:17:03.681 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-79] [ 2013-06-24 08:17:03.681 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-79] [ 2013-06-24 08:17:03.682 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01109: database not open
[Thread-79] [ 2013-06-24 08:17:03.682 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:461]  Ignoring shutdown error : database not open
[main] [ 2013-06-24 08:17:10.416 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:17:10.416 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:17:10.418 CST ] [StorageManagement.createBaseStorage:348]  **** restore files using new SID: 
[main] [ 2013-06-24 08:17:10.419 CST ] [RMANEngine.initialize:183]  Execing RMAN process from initialize...
[main] [ 2013-06-24 08:17:10.438 CST ] [RMANEngine.initialize:209]  Created RMAN process from initialize...
[main] [ 2013-06-24 08:17:10.439 CST ] [RMANEngine.initialize:216]  Starting Reader Thread... 
[main] [ 2013-06-24 08:17:10.441 CST ] [RMANEngine.initialize:220]  Started reader thread for RMAN process in initialize...
[Thread-83] [ 2013-06-24 08:17:10.443 CST ] [RMANEngine.run:715]  Started reader thread for RMAN process from initialize...
[Thread-83] [ 2013-06-24 08:17:10.444 CST ] [RMANEngine.run:719]  Set m_bReaderStarted  to true  in initialize...
[main] [ 2013-06-24 08:17:10.444 CST ] [RMANEngine.initialize:228]  Started error thread for RMAN process from initialize...
[main] [ 2013-06-24 08:17:10.444 CST ] [RMANEngine.initialize:233]  Created output writer for RMAN process from initialize...
[main] [ 2013-06-24 08:17:10.445 CST ] [RMANEngine.initialize:271]  Created Log writer for RMAN process from initialize...
[main] [ 2013-06-24 08:17:10.445 CST ] [RMANEngine.initialize:276]  Value of m_bReaderStarted in initialize=true
[main] [ 2013-06-24 08:17:10.445 CST ] [RMANEngine.initialize:291]  Made sure reader has started for RMAN process from initialize...
[main] [ 2013-06-24 08:17:10.445 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:10.446 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=connect target sys/******
[main] [ 2013-06-24 08:17:10.447 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:10.463 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.463 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Recovery Manager: Release 11.2.0.3.0 - Production on Mon Jun 24 08:17:10 2013
[Thread-83] [ 2013-06-24 08:17:10.464 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.464 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
[Thread-83] [ 2013-06-24 08:17:10.626 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.627 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> 
[Thread-83] [ 2013-06-24 08:17:10.670 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=connected to target database (not started)
[Thread-83] [ 2013-06-24 08:17:10.670 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.671 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> 
[Thread-83] [ 2013-06-24 08:17:10.671 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-83] [ 2013-06-24 08:17:10.671 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-83] [ 2013-06-24 08:17:10.672 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:10.672 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:10.673 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=connect target sys/******
[main] [ 2013-06-24 08:17:10.674 CST ] [Instance.getRMANEngine:315]  RMANEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/rmanLog
[main] [ 2013-06-24 08:17:10.675 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:10.676 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=set DBID=2874070637;
[main] [ 2013-06-24 08:17:10.676 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:10.677 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.677 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set DBID=2874070637;
[Thread-83] [ 2013-06-24 08:17:10.677 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=executing command: SET DBID
[Thread-83] [ 2013-06-24 08:17:10.678 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.678 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.678 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-83] [ 2013-06-24 08:17:10.679 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.679 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-83] [ 2013-06-24 08:17:10.679 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:17:10.681 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[Thread-83] [ 2013-06-24 08:17:10.681 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:10.681 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=set DBID=2874070637;
[main] [ 2013-06-24 08:17:10.682 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:10.682 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=startup force nomount pfile='/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora';
[main] [ 2013-06-24 08:17:10.683 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:10.683 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:10.685 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> startup force nomount pfile='/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora';
[Thread-83] [ 2013-06-24 08:17:21.503 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Oracle instance started
[Thread-83] [ 2013-06-24 08:17:22.702 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:22.703 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Total System Global Area     626327552 bytes
[Thread-83] [ 2013-06-24 08:17:22.708 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:22.709 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Fixed Size                     2230952 bytes
[Thread-83] [ 2013-06-24 08:17:22.709 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Variable Size                247465304 bytes
[Thread-83] [ 2013-06-24 08:17:22.710 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Database Buffers             369098752 bytes
[Thread-83] [ 2013-06-24 08:17:22.710 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Redo Buffers                   7532544 bytes
[Thread-83] [ 2013-06-24 08:17:22.806 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:22.806 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:22.807 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-83] [ 2013-06-24 08:17:22.807 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:22.808 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-83] [ 2013-06-24 08:17:22.808 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-83] [ 2013-06-24 08:17:22.808 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:22.809 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:22.810 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=startup force nomount pfile='/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora';
[main] [ 2013-06-24 08:17:22.810 CST ] [Instance.setControlAutoBackupOff:519]  CONFIGURE CONTROLFILE AUTOBACKUP OFF 
[main] [ 2013-06-24 08:17:22.811 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:22.814 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=set nocfau;
[main] [ 2013-06-24 08:17:22.815 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:22.815 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:22.816 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set nocfau;
[Thread-83] [ 2013-06-24 08:17:22.816 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=executing command: SET NOCFAU
[Thread-83] [ 2013-06-24 08:17:22.829 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=using target database control file instead of recovery catalog
[Thread-83] [ 2013-06-24 08:17:23.395 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:23.397 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:23.397 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-83] [ 2013-06-24 08:17:23.397 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:23.398 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-83] [ 2013-06-24 08:17:23.398 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-83] [ 2013-06-24 08:17:23.398 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:23.399 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:23.400 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=set nocfau;
[main] [ 2013-06-24 08:17:23.401 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:23.402 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=restore spfile to  '+ASMDATA/spfilelunar1.ora'  from  '+ASMDATA/sp_lunar1_backup';
[main] [ 2013-06-24 08:17:23.402 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:23.403 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:23.404 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> restore spfile to  '+ASMDATA/spfilelunar1.ora'  from  '+ASMDATA/sp_lunar1_backup';
[Thread-83] [ 2013-06-24 08:17:23.405 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Starting restore at 24-JUN-13
[Thread-83] [ 2013-06-24 08:17:23.546 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=allocated channel: ORA_DISK_1
[Thread-83] [ 2013-06-24 08:17:23.552 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: SID=18 instance=lunar1 device type=DISK
[Thread-83] [ 2013-06-24 08:17:23.906 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:24.331 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: restoring spfile from AUTOBACKUP +ASMDATA/sp_lunar1_backup
[Thread-83] [ 2013-06-24 08:17:25.358 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: SPFILE restore from AUTOBACKUP complete
[Thread-83] [ 2013-06-24 08:17:25.359 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Finished restore at 24-JUN-13
[Thread-83] [ 2013-06-24 08:17:25.440 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:25.441 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:25.441 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-83] [ 2013-06-24 08:17:25.441 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:25.441 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-83] [ 2013-06-24 08:17:25.442 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-83] [ 2013-06-24 08:17:25.442 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:25.443 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:25.443 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=restore spfile to  '+ASMDATA/spfilelunar1.ora'  from  '+ASMDATA/sp_lunar1_backup';
[main] [ 2013-06-24 08:17:25.444 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:25.444 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=shutdown immediate;
[main] [ 2013-06-24 08:17:25.444 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:25.445 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:25.445 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> shutdown immediate;
[Thread-83] [ 2013-06-24 08:17:34.039 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Oracle instance shut down
[Thread-83] [ 2013-06-24 08:17:34.040 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:34.041 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:34.041 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-83] [ 2013-06-24 08:17:34.042 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-83] [ 2013-06-24 08:17:34.042 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-83] [ 2013-06-24 08:17:34.043 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:17:34.043 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:34.044 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=shutdown immediate;
[main] [ 2013-06-24 08:17:34.045 CST ] [RMANEngine.done:1466]  Done called
[main] [ 2013-06-24 08:17:34.046 CST ] [RMANEngine.spoolOff:1352]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/rmanLog
[main] [ 2013-06-24 08:17:34.047 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:34.047 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=exit;
[main] [ 2013-06-24 08:17:34.053 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-83] [ 2013-06-24 08:17:34.057 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[Thread-83] [ 2013-06-24 08:17:34.058 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=falsem_bReaderDone=truem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:17:34.059 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:34.060 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=exit;
[main] [ 2013-06-24 08:17:34.060 CST ] [StorageManagement.createBaseStorage:389]  Spfile location :+ASMDATA/spfilelunar1.ora
[main] [ 2013-06-24 08:17:34.061 CST ] [StorageManagement.createBaseStorage:393]  **** create initfiles
[Thread-83] [ 2013-06-24 08:17:34.063 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=null
[main] [ 2013-06-24 08:17:34.063 CST ] [InstanceManagement.createInitFiles:359]  Create Init files for 2 instances
[main] [ 2013-06-24 08:17:34.065 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:17:34.066 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:17:34.067 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:17:34.067 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:17:34.069 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:17:34.069 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:17:34.070 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:17:34.072 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:17:34.072 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:17:34.073 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:17:34.074 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:17:34.074 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:17:34.075 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:17:34.076 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:17:34.076 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:17:34.077 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:17:34.078 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:17:34.078 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:17:34.079 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:17:34.080 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:17:34.081 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:17:34.088 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:17:34.089 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:17:34.090 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:17:34.090 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:17:34.093 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora to rac2:/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar2.ora
[main] [ 2013-06-24 08:17:34.094 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:17:34.095 CST ] [UnixSystem.remoteCopyFile:636]  Copying files localnode/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora rac2/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar2.ora
[main] [ 2013-06-24 08:17:34.096 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:17:34.097 CST ] [UnixSystem.remoteCopyFile:653]  UnixSystem: /usr/bin/scp -p /u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora rac2:'/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar2.ora'
[main] [ 2013-06-24 08:17:34.098 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:17:34.099 CST ] [RuntimeExec.runCommand:77]  /usr/bin/scp 
[main] [ 2013-06-24 08:17:34.099 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:17:34.100 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora 
[main] [ 2013-06-24 08:17:34.101 CST ] [RuntimeExec.runCommand:77]  rac2:'/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar2.ora' 
[Thread-86] [ 2013-06-24 08:17:34.119 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:17:34.120 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-85] [ 2013-06-24 08:17:34.122 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:17:34.410 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:17:34.411 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:17:34.412 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:17:34.414 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:17:34.414 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/scp -p /u01/app/oracle/product/11.2.0/db_1/dbs/initlunar1.ora rac2:'/u01/app/oracle/product/11.2.0/db_1/dbs/initlunar2.ora']
[main] [ 2013-06-24 08:17:34.415 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/scp is present.
[main] [ 2013-06-24 08:17:34.416 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/scp is a file.
[main] [ 2013-06-24 08:17:34.417 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:17:34.417 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:17:34.418 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:17:34.418 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:17:34.419 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:17:34.420 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:17:34.422 CST ] [StorageManagement.createBaseStorage:399]  **** restore files using new SID: 
[main] [ 2013-06-24 08:17:34.425 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.426 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.428 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.429 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.432 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.434 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.434 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:17:34.436 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:17:34.439 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:17:34.440 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:17:34.442 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:17:34.453 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:17:34.453 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:17:34.547 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:17:34.548 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:17:34.550 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:17:34.550 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[Thread-87] [ 2013-06-24 08:17:49.955 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-87] [ 2013-06-24 08:17:49.955 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-87] [ 2013-06-24 08:17:49.956 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01507: database not mounted
[Thread-87] [ 2013-06-24 08:17:49.957 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:456]  Ignoring shutdown error : database not mounted
[main] [ 2013-06-24 08:17:56.340 CST ] [RMANEngine.initialize:183]  Execing RMAN process from initialize...
[main] [ 2013-06-24 08:17:56.359 CST ] [RMANEngine.initialize:209]  Created RMAN process from initialize...
[main] [ 2013-06-24 08:17:56.362 CST ] [RMANEngine.initialize:216]  Starting Reader Thread... 
[main] [ 2013-06-24 08:17:56.365 CST ] [RMANEngine.initialize:220]  Started reader thread for RMAN process in initialize...
[Thread-89] [ 2013-06-24 08:17:56.368 CST ] [RMANEngine.run:715]  Started reader thread for RMAN process from initialize...
[Thread-89] [ 2013-06-24 08:17:56.369 CST ] [RMANEngine.run:719]  Set m_bReaderStarted  to true  in initialize...
[main] [ 2013-06-24 08:17:56.370 CST ] [RMANEngine.initialize:228]  Started error thread for RMAN process from initialize...
[main] [ 2013-06-24 08:17:56.371 CST ] [RMANEngine.initialize:233]  Created output writer for RMAN process from initialize...
[main] [ 2013-06-24 08:17:56.374 CST ] [RMANEngine.initialize:271]  Created Log writer for RMAN process from initialize...
[main] [ 2013-06-24 08:17:56.375 CST ] [RMANEngine.initialize:276]  Value of m_bReaderStarted in initialize=true
[main] [ 2013-06-24 08:17:56.376 CST ] [RMANEngine.initialize:291]  Made sure reader has started for RMAN process from initialize...
[main] [ 2013-06-24 08:17:56.377 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:56.379 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=connect target sys/******
[main] [ 2013-06-24 08:17:56.379 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:17:56.438 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:17:56.439 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Recovery Manager: Release 11.2.0.3.0 - Production on Mon Jun 24 08:17:56 2013
[Thread-89] [ 2013-06-24 08:17:56.439 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:17:56.440 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
[Thread-89] [ 2013-06-24 08:17:56.780 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:17:56.780 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> 
[Thread-89] [ 2013-06-24 08:17:56.836 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=connected to target database (not started)
[Thread-89] [ 2013-06-24 08:17:56.837 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:17:56.837 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> 
[Thread-89] [ 2013-06-24 08:17:56.838 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:17:56.838 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:17:56.839 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:17:56.839 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:17:56.840 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=connect target sys/******
[main] [ 2013-06-24 08:17:56.841 CST ] [Instance.getRMANEngine:315]  RMANEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/rmanLog
[main] [ 2013-06-24 08:17:56.842 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:17:56.843 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=startup nomount;
[main] [ 2013-06-24 08:17:56.844 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:17:56.845 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:17:56.845 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> startup nomount;
[Thread-89] [ 2013-06-24 08:18:09.924 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Oracle instance started
[Thread-89] [ 2013-06-24 08:18:10.736 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:10.736 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Total System Global Area     626327552 bytes
[Thread-89] [ 2013-06-24 08:18:10.739 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:10.739 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Fixed Size                     2230952 bytes
[Thread-89] [ 2013-06-24 08:18:10.740 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Variable Size                247465304 bytes
[Thread-89] [ 2013-06-24 08:18:10.740 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Database Buffers             369098752 bytes
[Thread-89] [ 2013-06-24 08:18:10.740 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Redo Buffers                   7532544 bytes
[Thread-89] [ 2013-06-24 08:18:10.847 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:10.848 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:10.849 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:10.850 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:10.850 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:10.850 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:18:10.851 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:18:10.851 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:10.851 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=startup nomount;
[main] [ 2013-06-24 08:18:10.852 CST ] [Instance.setControlAutoBackupOff:519]  CONFIGURE CONTROLFILE AUTOBACKUP OFF 
[main] [ 2013-06-24 08:18:10.852 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:10.853 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=set nocfau;
[main] [ 2013-06-24 08:18:10.853 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:10.854 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:10.854 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set nocfau;
[Thread-89] [ 2013-06-24 08:18:10.854 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=executing command: SET NOCFAU
[Thread-89] [ 2013-06-24 08:18:10.867 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=using target database control file instead of recovery catalog
[Thread-89] [ 2013-06-24 08:18:11.295 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:11.296 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:11.296 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:11.296 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:11.296 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:11.296 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:18:11.297 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:18:11.297 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:11.297 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=set nocfau;
[main] [ 2013-06-24 08:18:11.298 CST ] [StorageManagement.createBaseStorage:416]  Control File=+ASMDATA/lunar/control01.ctl
[main] [ 2013-06-24 08:18:11.298 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:11.298 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=restore controlfile from  '+ASMDATA/lunar/control01.ctl';
[main] [ 2013-06-24 08:18:11.299 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:11.299 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:11.300 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> restore controlfile from  '+ASMDATA/lunar/control01.ctl';
[Thread-89] [ 2013-06-24 08:18:11.300 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Starting restore at 24-JUN-13
[Thread-89] [ 2013-06-24 08:18:11.419 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=allocated channel: ORA_DISK_1
[Thread-89] [ 2013-06-24 08:18:11.426 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: SID=14 instance=lunar1 device type=DISK
[Thread-89] [ 2013-06-24 08:18:11.737 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:18.564 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: copied control file copy
[Thread-89] [ 2013-06-24 08:18:18.565 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=output file name=+DATA/lunar/controlfile/current.268.818929095
[Thread-89] [ 2013-06-24 08:18:18.568 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Finished restore at 24-JUN-13
[Thread-89] [ 2013-06-24 08:18:18.634 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:18.635 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:18.635 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:18.635 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:18.635 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:18.635 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:18:18.636 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:18:18.636 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:18.637 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=restore controlfile from  '+ASMDATA/lunar/control01.ctl';
[main] [ 2013-06-24 08:18:18.637 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:18.638 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=alter database mount;
[main] [ 2013-06-24 08:18:18.638 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:18.639 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:18.640 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> alter database mount;
[Thread-89] [ 2013-06-24 08:18:24.216 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=database mounted
[Thread-89] [ 2013-06-24 08:18:24.426 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=released channel: ORA_DISK_1
[Thread-89] [ 2013-06-24 08:18:25.347 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:25.363 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:25.375 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:25.376 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:25.377 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:25.377 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:18:25.377 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:25.378 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=alter database mount;
[main] [ 2013-06-24 08:18:25.379 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:25.380 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=switch database to copy;
[main] [ 2013-06-24 08:18:25.381 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:25.382 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[Thread-89] [ 2013-06-24 08:18:25.383 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:25.415 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> switch database to copy;
[Thread-89] [ 2013-06-24 08:18:26.714 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile 1 switched to datafile copy "+ASMDATA/lunar/datafile/system.323.818928925"
[Thread-89] [ 2013-06-24 08:18:27.168 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile 2 switched to datafile copy "+ASMDATA/lunar/datafile/sysaux.324.818928971"
[Thread-89] [ 2013-06-24 08:18:27.591 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile 3 switched to datafile copy "+ASMDATA/lunar/datafile/undotbs1.325.818928997"
[Thread-89] [ 2013-06-24 08:18:28.015 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile 4 switched to datafile copy "+ASMDATA/lunar/datafile/users.322.818928779"
[Thread-89] [ 2013-06-24 08:18:29.324 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:29.357 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:29.379 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:29.380 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:29.383 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:29.383 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:18:29.384 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:29.384 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=switch database to copy;
[main] [ 2013-06-24 08:18:29.385 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:29.385 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=change copy of database uncatalog;
[main] [ 2013-06-24 08:18:29.386 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:29.386 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[Thread-89] [ 2013-06-24 08:18:29.386 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:29.460 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> change copy of database uncatalog;
[Thread-89] [ 2013-06-24 08:18:32.138 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=uncataloged datafile copy
[Thread-89] [ 2013-06-24 08:18:32.139 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile copy file name=+ASMDATA/lunar/datafile/system.317.818912513 RECID=5 STAMP=818929106
[Thread-89] [ 2013-06-24 08:18:32.182 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=uncataloged datafile copy
[Thread-89] [ 2013-06-24 08:18:32.183 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile copy file name=+ASMDATA/lunar/datafile/sysaux.318.818912517 RECID=6 STAMP=818929107
[Thread-89] [ 2013-06-24 08:18:32.240 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=uncataloged datafile copy
[Thread-89] [ 2013-06-24 08:18:32.240 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile copy file name=+ASMDATA/lunar/datafile/undotbs1.319.818912523 RECID=7 STAMP=818929107
[Thread-89] [ 2013-06-24 08:18:32.331 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=uncataloged datafile copy
[Thread-89] [ 2013-06-24 08:18:32.332 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=datafile copy file name=+ASMDATA/lunar/datafile/users.316.818912513 RECID=8 STAMP=818929107
[Thread-89] [ 2013-06-24 08:18:32.333 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Uncataloged 4 objects
[Thread-89] [ 2013-06-24 08:18:32.334 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:32.545 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:32.562 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:32.574 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:32.574 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:32.575 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:32.576 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:18:32.576 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:18:32.576 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:32.577 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=change copy of database uncatalog;
[main] [ 2013-06-24 08:18:32.577 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:32.578 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=recover database;
[main] [ 2013-06-24 08:18:32.578 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:32.579 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:32.609 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> recover database;
[Thread-89] [ 2013-06-24 08:18:32.659 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Starting recover at 24-JUN-13
[Thread-89] [ 2013-06-24 08:18:32.963 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=allocated channel: ORA_DISK_1
[Thread-89] [ 2013-06-24 08:18:32.969 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=channel ORA_DISK_1: SID=14 instance=lunar1 device type=DISK
[Thread-89] [ 2013-06-24 08:18:34.508 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:34.983 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=starting media recovery
[Thread-89] [ 2013-06-24 08:18:35.560 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=media recovery complete, elapsed time: 00:00:01
[Thread-89] [ 2013-06-24 08:18:35.720 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:35.849 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Finished recover at 24-JUN-13
[Thread-89] [ 2013-06-24 08:18:36.003 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:36.014 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:36.025 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:36.026 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:36.027 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:36.027 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:18:36.027 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:18:36.027 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:36.027 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=recover database;
[main] [ 2013-06-24 08:18:36.028 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:18:36.028 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=shutdown immediate;
[main] [ 2013-06-24 08:18:36.028 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:18:36.029 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:36.055 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> shutdown immediate;
[Thread-89] [ 2013-06-24 08:18:38.578 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=database dismounted
[Thread-89] [ 2013-06-24 08:18:44.797 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=Oracle instance shut down
[Thread-89] [ 2013-06-24 08:18:44.798 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:44.798 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:44.799 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=RMAN> set echo on
[Thread-89] [ 2013-06-24 08:18:44.799 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=
[Thread-89] [ 2013-06-24 08:18:44.799 CST ] [RMANEngine.readSqlOutput:801]  Log RMAN Output=echo set on
[Thread-89] [ 2013-06-24 08:18:44.800 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=truem_bReaderDone=falsem_bFatalErrorOccured=false
[main] [ 2013-06-24 08:18:44.800 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:18:44.800 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=shutdown immediate;
[main] [ 2013-06-24 08:18:44.801 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.802 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.802 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.803 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.803 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.803 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.804 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:18:44.805 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:18:44.805 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:18:44.806 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[Thread-89] [ 2013-06-24 08:18:44.807 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=echo set on
[main] [ 2013-06-24 08:18:44.822 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:18:44.859 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:18:44.860 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:18:44.944 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:18:44.945 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:18:44.946 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:18:44.946 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[Thread-91] [ 2013-06-24 08:19:05.618 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-91] [ 2013-06-24 08:19:05.620 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-91] [ 2013-06-24 08:19:05.621 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01109: database not open
[Thread-91] [ 2013-06-24 08:19:05.622 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:461]  Ignoring shutdown error : database not open
[main] [ 2013-06-24 08:19:12.112 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:19:12.113 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:12.114 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:19:12.115 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:12.119 CST ] [RMANEngine.done:1466]  Done called
[main] [ 2013-06-24 08:19:12.123 CST ] [RMANEngine.spoolOff:1352]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/rmanLog
[main] [ 2013-06-24 08:19:12.123 CST ] [RMANEngine.executeImpl:1098]  m_bExecQuery=false
[main] [ 2013-06-24 08:19:12.124 CST ] [RMANEngine.executeImpl:1106]  Command being written to rman process=exit;
[main] [ 2013-06-24 08:19:12.130 CST ] [RMANEngine.executeImpl:1134]  Notify reader to start reading
[Thread-89] [ 2013-06-24 08:19:12.130 CST ] [RMANEngine.readSqlOutput:945]  Notifying writer to proceed because m_bInterrupted=falsebNotify=falsem_bReaderDone=truem_bFatalErrorOccured=false
[Thread-89] [ 2013-06-24 08:19:12.131 CST ] [RMANEngine.run:729]  Return Value from readSqlOutput=null
[main] [ 2013-06-24 08:19:12.134 CST ] [RMANEngine.executeImpl:1146]  Completed wait from reader
[main] [ 2013-06-24 08:19:12.135 CST ] [RMANEngine.executeImpl:1193]  DONE EXECUTING GIVEN COMMAND=exit;
[main] [ 2013-06-24 08:19:12.136 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.136 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.139 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.139 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.140 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.141 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.142 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:19:12.142 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:19:12.143 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:19:12.143 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:19:12.147 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:19:12.160 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:19:12.161 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:19:12.254 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:12.255 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:19:12.255 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:12.256 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:19:12.256 CST ] [InstanceManagement.createDBInstances:158]  **** startup mount
[main] [ 2013-06-24 08:19:31.572 CST ] [InstanceManagement.createDBInstances:160]  **** alter system set cluster_database=true scope=spfile
[main] [ 2013-06-24 08:19:31.687 CST ] [InstanceManagement.createDBInstances:164]  **** Number of instances to be created=2
[main] [ 2013-06-24 08:19:31.688 CST ] [InstanceManagement.createDBInstances:175]  **** setting instance_number=1 for instance=lunar1
[main] [ 2013-06-24 08:19:31.722 CST ] [InstanceManagement.createDBInstances:181]  **** setting thread=1 for instance=lunar1
[main] [ 2013-06-24 08:19:31.773 CST ] [InstanceManagement.createDBInstances:175]  **** setting instance_number=2 for instance=lunar2
[main] [ 2013-06-24 08:19:31.817 CST ] [InstanceManagement.createDBInstances:181]  **** setting thread=2 for instance=lunar2
[main] [ 2013-06-24 08:19:31.864 CST ] [InstanceManagement.createDBInstances:191]  **** alter system reset instance_name  scope=spfile sid= '*' 
[Thread-93] [ 2013-06-24 08:19:31.883 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-93] [ 2013-06-24 08:19:31.884 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-93] [ 2013-06-24 08:19:31.885 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-32010: cannot find entry to delete in SPFILE
[Thread-93] [ 2013-06-24 08:19:31.886 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:474]  Ignoring error during reset. This error simply indicates the entry is not present in spfile
[main] [ 2013-06-24 08:19:31.887 CST ] [InstanceManagement.createDBInstances:200]  **** alter system reset instance_number  scope=spfile sid= '*' 
[Thread-93] [ 2013-06-24 08:19:31.902 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-93] [ 2013-06-24 08:19:31.903 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-93] [ 2013-06-24 08:19:31.903 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-32010: cannot find entry to delete in SPFILE
[Thread-93] [ 2013-06-24 08:19:31.903 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:474]  Ignoring error during reset. This error simply indicates the entry is not present in spfile
[main] [ 2013-06-24 08:19:31.905 CST ] [InstanceManagement.createDBInstances:218]  **** shutdown immediate
[Thread-93] [ 2013-06-24 08:19:34.056 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-93] [ 2013-06-24 08:19:34.058 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-93] [ 2013-06-24 08:19:34.058 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01109: database not open
[Thread-93] [ 2013-06-24 08:19:34.067 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:461]  Ignoring shutdown error : database not open
[main] [ 2013-06-24 08:19:40.846 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:19:40.849 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:40.852 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.853 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.854 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.856 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.858 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.860 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.861 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:19:40.862 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:19:40.864 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:19:40.865 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:19:40.870 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:19:40.895 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:19:40.897 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:19:41.101 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:41.102 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:19:41.102 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:41.103 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:19:41.104 CST ] [StorageManagement.createRedoLogs:557]  Existing si database has maxGrp=4
[main] [ 2013-06-24 08:19:41.105 CST ] [StorageManagement.createRedoLogs:558]  Existing si database has logs.length=4
[main] [ 2013-06-24 08:19:41.105 CST ] [StorageManagement.createRedoLogs:559]  Existing si database has RedoGroups.length=4
[main] [ 2013-06-24 08:19:41.106 CST ] [StorageManagement.createRedoLogs:560]  Number of threads :1
[main] [ 2013-06-24 08:19:41.108 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.108 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.109 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.110 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.110 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.111 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.111 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:19:41.112 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:19:41.114 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:19:41.114 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:19:41.117 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:19:41.145 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:19:41.146 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:19:41.290 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:41.290 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:19:41.291 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:19:41.291 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:19:41.292 CST ] [StorageManagement.createRedoLogs:564]  **** (new instance) open restrict
[main] [ 2013-06-24 08:20:12.076 CST ] [StorageManagement.createRedoLogs:619]  **** (new instance) redo loc = null
[main] [ 2013-06-24 08:20:12.077 CST ] [StorageManagement.createRedoLogs:657]  instanceLength2
[main] [ 2013-06-24 08:20:12.078 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=5 path=null bytes=52428800
[main] [ 2013-06-24 08:20:16.157 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=6 path=null bytes=52428800
[main] [ 2013-06-24 08:20:18.767 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=7 path=null bytes=52428800
[main] [ 2013-06-24 08:20:21.527 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=8 path=null bytes=104857600
[main] [ 2013-06-24 08:20:26.633 CST ] [StorageManagement.createRedoLogs:726]  **** processing 1st instance (data transfer case)
[main] [ 2013-06-24 08:20:26.636 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group1
[main] [ 2013-06-24 08:20:27.225 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group2
[main] [ 2013-06-24 08:20:27.379 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group3
[Thread-97] [ 2013-06-24 08:20:27.517 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-97] [ 2013-06-24 08:20:27.517 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:2
[Thread-97] [ 2013-06-24 08:20:27.518 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01623: log 3 is current log for instance lunar1 (thread 1) - cannot drop
[Thread-97] [ 2013-06-24 08:20:27.518 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-00312: online log 3 thread 1: '+DATA/lunar/onlinelog/group_3.264.818915255'
[main] [ 2013-06-24 08:20:27.519 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:20:27.520 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:27.521 CST ] [StorageManagement.dropOnLineLogGroup:1106]  got exception, while trying to drop current log=ORA-01623: log 3 is current log for instance lunar1 (thread 1) - cannot drop
ORA-00312: online log 3 thread 1: '+DATA/lunar/onlinelog/group_3.264.818915255'

[main] [ 2013-06-24 08:20:27.524 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:20:27.528 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.529 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.530 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.531 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.531 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.532 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.549 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:20:27.550 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:20:27.551 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:27.551 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:27.562 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:20:27.585 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:20:27.587 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:20:28.020 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:28.021 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:20:28.021 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:28.022 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:20:28.023 CST ] [StorageManagement.dropOnLineLogGroup:1114]  Handling ORA-01623
[main] [ 2013-06-24 08:20:32.058 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group4
[main] [ 2013-06-24 08:20:32.059 CST ] [SQLEngine.reInitialize:738]  Reinitializing SQLEngine...
[main] [ 2013-06-24 08:20:32.060 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.061 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.062 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.063 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.071 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.073 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.075 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.076 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:20:32.080 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:32.081 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:32.084 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:20:32.097 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:20:32.098 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:20:32.104 CST ] [SQLEngine.initialize:415]  Waiting for m_bReaderStarted to be true 
[Thread-101] [ 2013-06-24 08:20:32.597 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-101] [ 2013-06-24 08:20:32.597 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:2
[Thread-101] [ 2013-06-24 08:20:32.597 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01623: log 4 is current log for instance lunar1 (thread 1) - cannot drop
[Thread-101] [ 2013-06-24 08:20:32.598 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-00312: online log 4 thread 1: '+DATA/lunar/onlinelog/group_4.265.818915257'
[main] [ 2013-06-24 08:20:32.599 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:20:32.599 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:32.600 CST ] [StorageManagement.dropOnLineLogGroup:1106]  got exception, while trying to drop current log=ORA-01623: log 4 is current log for instance lunar1 (thread 1) - cannot drop
ORA-00312: online log 4 thread 1: '+DATA/lunar/onlinelog/group_4.265.818915257'

[main] [ 2013-06-24 08:20:32.601 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:20:32.601 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:32.604 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.609 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.610 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.611 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.613 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.613 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.614 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:20:32.614 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:20:32.615 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:32.617 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:32.628 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:20:32.677 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:20:32.679 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:20:32.824 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:32.824 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:20:32.825 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:32.825 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:20:32.825 CST ] [StorageManagement.dropOnLineLogGroup:1114]  Handling ORA-01623
[main] [ 2013-06-24 08:20:38.821 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=1 path=null bytes=52428800
[main] [ 2013-06-24 08:20:38.822 CST ] [SQLEngine.reInitialize:738]  Reinitializing SQLEngine...
[main] [ 2013-06-24 08:20:38.822 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.824 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.824 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.825 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.825 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.825 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.826 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:20:38.826 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:20:38.826 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:38.827 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:38.828 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:20:38.840 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:20:38.841 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:20:38.847 CST ] [SQLEngine.initialize:415]  Waiting for m_bReaderStarted to be true 
[main] [ 2013-06-24 08:20:40.834 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=2 path=null bytes=52428800
[main] [ 2013-06-24 08:20:42.344 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=3 path=null bytes=52428800
[main] [ 2013-06-24 08:20:43.846 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=1 Group=4 path=null bytes=104857600
[main] [ 2013-06-24 08:20:46.656 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group8
[main] [ 2013-06-24 08:20:46.923 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group7
[main] [ 2013-06-24 08:20:47.049 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group6
[main] [ 2013-06-24 08:20:47.148 CST ] [StorageManagement.dropOnLineLogGroup:1095]  **** Drop online group5
[Thread-105] [ 2013-06-24 08:20:47.208 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-105] [ 2013-06-24 08:20:47.209 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:2
[Thread-105] [ 2013-06-24 08:20:47.211 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01623: log 5 is current log for instance lunar1 (thread 1) - cannot drop
[Thread-105] [ 2013-06-24 08:20:47.212 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-00312: online log 5 thread 1: '+DATA/lunar/onlinelog/group_5.269.818929213'
[main] [ 2013-06-24 08:20:47.214 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:20:47.215 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:47.216 CST ] [StorageManagement.dropOnLineLogGroup:1106]  got exception, while trying to drop current log=ORA-01623: log 5 is current log for instance lunar1 (thread 1) - cannot drop
ORA-00312: online log 5 thread 1: '+DATA/lunar/onlinelog/group_5.269.818929213'

[main] [ 2013-06-24 08:20:47.216 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:20:47.217 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:47.251 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.252 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.254 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.255 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.256 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.257 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.258 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:20:47.259 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:20:47.260 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:47.261 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:47.265 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:20:47.278 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:20:47.279 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:20:47.427 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:47.429 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:20:47.429 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:20:47.430 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:20:47.430 CST ] [StorageManagement.dropOnLineLogGroup:1114]  Handling ORA-01623
[main] [ 2013-06-24 08:20:51.528 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=2 Group=5 path=null bytes=52428800
[main] [ 2013-06-24 08:20:51.530 CST ] [SQLEngine.reInitialize:738]  Reinitializing SQLEngine...
[main] [ 2013-06-24 08:20:51.531 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.532 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.533 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.535 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.540 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.543 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.546 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:20:51.549 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:20:51.557 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:51.559 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:20:51.567 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:20:51.602 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:20:51.602 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:20:51.606 CST ] [SQLEngine.initialize:415]  Waiting for m_bReaderStarted to be true 
[main] [ 2013-06-24 08:20:53.392 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=2 Group=6 path=null bytes=52428800
[main] [ 2013-06-24 08:20:56.021 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=2 Group=7 path=null bytes=52428800
[main] [ 2013-06-24 08:20:57.296 CST ] [StorageManagement.addOnLineLog:1044]  **** Add Logfile to thread=2 Group=8 path=null bytes=104857600
[main] [ 2013-06-24 08:21:00.026 CST ] [StorageManagement.createRedoLogs:768]  **** (new instance) shutdown immediate
[main] [ 2013-06-24 08:21:14.991 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:21:14.993 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:21:14.994 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:21:14.995 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:21:15.002 CST ] [InstanceManagement.enableInstances:240]  Enabling instances
[main] [ 2013-06-24 08:21:15.005 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.006 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.007 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.008 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.008 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.013 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.013 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:21:15.014 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:21:15.017 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:21:15.018 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:21:15.023 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:21:15.062 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:21:15.062 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:21:15.178 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:21:15.178 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:21:15.179 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:21:15.179 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:21:50.491 CST ] [InstanceManagement.enableInstances:246]  instances.length2
[main] [ 2013-06-24 08:21:50.492 CST ] [InstanceManagement.enableInstances:254]  instanceLength2
[main] [ 2013-06-24 08:21:50.492 CST ] [InstanceManagement.enableInstances:258]  Enabling thread : alter database enable public thread 2
[main] [ 2013-06-24 08:22:09.211 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:22:09.212 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:22:09.215 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.221 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.222 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.222 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.223 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.224 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.225 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:22:09.226 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:22:09.227 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:22:09.228 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:22:09.231 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:22:09.243 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:22:09.245 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:22:09.369 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:22:09.370 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:22:09.370 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:22:09.371 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:22:44.934 CST ] [StorageManagement.createTempFiles:1200]  **** (new instance) creating tempfiles
[main] [ 2013-06-24 08:22:44.935 CST ] [StorageManagement.createTempFiles:1210]  **** (new instance) creating tempfiles MAXSIZE 0 0 50
[main] [ 2013-06-24 08:22:49.731 CST ] [StorageManagement.createTempFiles:1227]  **** (new instance) shutdown immediate
[main] [ 2013-06-24 08:23:04.512 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:23:04.514 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:23:04.517 CST ] [StorageManagement.createUndoTablespaces:1265]  Original undo log filesize=158720K  filename=+ASMDATA/lunar/datafile/undotbs1.319.818912523
[main] [ 2013-06-24 08:23:04.519 CST ] [StorageManagement.createUndoTablespaces:1267]  **** Set undo log filesize=158720K  filename=+ASMDATA/lunar/datafile/undotbs1.319.818912523
[main] [ 2013-06-24 08:23:04.520 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.528 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.530 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.536 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.541 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.542 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.543 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:23:04.546 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:23:04.550 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:23:04.552 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:23:04.556 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:23:04.582 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:23:04.584 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:23:04.724 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:23:04.725 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:23:04.726 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:23:04.727 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:23:04.728 CST ] [StorageManagement.createUndoTablespaces:1271]  **** (new instance) startup open
[main] [ 2013-06-24 08:23:39.251 CST ] [StorageManagement.createUndoTablespaces:1278]  **** (new instance) setting undoLoc
[main] [ 2013-06-24 08:23:39.253 CST ] [StorageManagement.createUndoTablespaces:1294]  **** (new instance) undo loc = null
[main] [ 2013-06-24 08:23:39.253 CST ] [StorageManagement.createUndoTablespaces:1309]  instanceLength2
[main] [ 2013-06-24 08:23:39.410 CST ] [StorageManagement.addUndoTablespace:1394]  undotbsLoc=null
[main] [ 2013-06-24 08:23:39.412 CST ] [StorageManagement.addUndoTablespace:1422]  undotbsLoc=
[main] [ 2013-06-24 08:23:39.415 CST ] [StorageManagement.addUndoTablespace:1423]  **** (new instance) create undo tablespace UNDOTBS2 datafile  size 158720K  AUTOEXTEND ON MAXSIZE UNLIMITED 
[main] [ 2013-06-24 08:23:52.536 CST ] [StorageManagement.createUndoTablespaces:1346]  **** (new instance) alter system reset undo_tablespace  scope=spfile sid= '*' 
[Thread-115] [ 2013-06-24 08:23:52.571 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-115] [ 2013-06-24 08:23:52.571 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-115] [ 2013-06-24 08:23:52.572 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-32010: cannot find entry to delete in SPFILE
[Thread-115] [ 2013-06-24 08:23:52.573 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:474]  Ignoring error during reset. This error simply indicates the entry is not present in spfile
[main] [ 2013-06-24 08:23:52.574 CST ] [StorageManagement.createUndoTablespaces:1363]  **** (new instance) shutdown immediate
[main] [ 2013-06-24 08:24:11.701 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:24:11.702 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:24:11.708 CST ] [StorageManagement.mkdir:1675]  Making dir :/u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:11.725 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.726 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.727 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.728 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.730 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.733 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.733 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:24:11.735 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:24:11.735 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:24:11.736 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:24:11.738 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:24:11.757 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:24:11.759 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:24:11.910 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:24:11.911 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:24:11.912 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:24:11.912 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:24:23.182 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/admin/lunar/pfile
[main] [ 2013-06-24 08:24:23.182 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/admin/lunar
[main] [ 2013-06-24 08:24:23.183 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/admin/lunar
[main] [ 2013-06-24 08:24:23.183 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:23.184 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[0]=rac1
[main] [ 2013-06-24 08:24:23.184 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[1]=rac2
[main] [ 2013-06-24 08:24:23.186 CST ] [Cluster.verifyNodeList:1152]  nodeList[0]=rac1
[main] [ 2013-06-24 08:24:23.186 CST ] [Cluster.verifyNodeList:1152]  nodeList[1]=rac2
[main] [ 2013-06-24 08:24:23.186 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:23.187 CST ] [Cluster.isSharedPath:1071]  NodeList=[rac1, rac2]
[main] [ 2013-06-24 08:24:23.187 CST ] [Cluster.isSharedPath:1107]  pathName=/u01/app/oracle/admin/lunar/ dirPath = /u01/app/oracle/admin/lunar
[main] [ 2013-06-24 08:24:23.187 CST ] [UnixSystem.isSharedPath:1591]  dirPath=/u01/app/oracle/admin/lunar
[main] [ 2013-06-24 08:24:23.188 CST ] [UnixSystem.isSharedPath:1596]  UnixSystem.isShared: pathName=/u01/app/oracle/admin/lunar tempFile=CFSFileName13720334631885908818341115308358.tmp
[main] [ 2013-06-24 08:24:23.189 CST ] [UnixSystem.isSharedPath:1601]  UnixSystem.isShared: dirPathName is /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp
[main] [ 2013-06-24 08:24:23.190 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmpon  rac2
[main] [ 2013-06-24 08:24:23.191 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:23.192 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:23.192 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:23.192 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.193 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:23.193 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.193 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:23.194 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.195 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:23.195 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.195 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:23.196 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:23.196 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:23.197 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:23.197 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:23.198 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp 
[Thread-120] [ 2013-06-24 08:24:23.220 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:23.221 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-119] [ 2013-06-24 08:24:23.223 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:23.505 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:23.520 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:23.521 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:23.532 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:23.535 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/rm -f /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp]
[main] [ 2013-06-24 08:24:23.537 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[main] [ 2013-06-24 08:24:23.539 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[main] [ 2013-06-24 08:24:23.543 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:23.545 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:23.546 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmpon  rac1
[main] [ 2013-06-24 08:24:23.561 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:23.562 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:23.563 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:23.564 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp 
[Thread-122] [ 2013-06-24 08:24:23.585 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:23.588 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-121] [ 2013-06-24 08:24:23.596 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:23.606 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:23.608 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:23.611 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:23.614 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:23.617 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/rm -f /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp]
[main] [ 2013-06-24 08:24:23.627 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:24:23.629 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:23.630 CST ] [UnixSystem.isSharedPath:1610]  UnixSystem.isShared: creating file /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp
[main] [ 2013-06-24 08:24:23.636 CST ] [UnixSystem.testCFSFile:1705]  The unix command is /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/sh -c "/bin/ls /u01/app/oracle/admin/lunar > /dev/null 2>&1  && /bin/cat /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp"
[main] [ 2013-06-24 08:24:23.653 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:23.655 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:23.656 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.657 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:23.659 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.660 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:23.661 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.664 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:23.665 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:23.666 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:23.667 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:23.668 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:23.669 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:24:23.671 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:24:23.672 CST ] [RuntimeExec.runCommand:77]  "/bin/ls 
[main] [ 2013-06-24 08:24:23.673 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar 
[main] [ 2013-06-24 08:24:23.674 CST ] [RuntimeExec.runCommand:77]  > 
[main] [ 2013-06-24 08:24:23.675 CST ] [RuntimeExec.runCommand:77]  /dev/null 
[main] [ 2013-06-24 08:24:23.676 CST ] [RuntimeExec.runCommand:77]  2>&1 
[main] [ 2013-06-24 08:24:23.677 CST ] [RuntimeExec.runCommand:77]  && 
[main] [ 2013-06-24 08:24:23.678 CST ] [RuntimeExec.runCommand:77]  /bin/cat 
[main] [ 2013-06-24 08:24:23.679 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp" 
[Thread-124] [ 2013-06-24 08:24:23.698 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:23.700 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-123] [ 2013-06-24 08:24:23.702 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-124] [ 2013-06-24 08:24:24.146 CST ] [StreamReader.run:65]  ERROR>/bin/cat: /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp: No such file or directory
[main] [ 2013-06-24 08:24:24.147 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 1
[main] [ 2013-06-24 08:24:24.148 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:24.150 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:24.150 CST ] [RuntimeExec.runCommand:173]  /bin/cat: /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp: No such file or directory
[main] [ 2013-06-24 08:24:24.151 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:24.153 CST ] [UnixSystem.testCFSFile:1717]  Command output is empty
[main] [ 2013-06-24 08:24:24.153 CST ] [UnixSystem.testCFSFile:1718]  ERROR: /bin/cat: /u01/app/oracle/admin/lunar/CFSFileName13720334631885908818341115308358.tmp: No such file or directory from node rac2
[main] [ 2013-06-24 08:24:24.157 CST ] [ClusterUtils.areSharedPaths:591]  Got shared=false from SRVM call
[main] [ 2013-06-24 08:24:24.159 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:24.159 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:24.160 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:24.160 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:24.161 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:24.177 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:24.178 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:24.179 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:24.185 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:24.186 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:24:24.189 CST ] [has.UtilNative.Native]  prsr_trace: Native: hasHAPrivilege

[main] [ 2013-06-24 08:24:24.190 CST ] [ClusterAlias.<init>:89]  ClusterAlias Instance created.
[main] [ 2013-06-24 08:24:24.191 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:24.191 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:24.192 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:24.193 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:24.194 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:24.195 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:24.196 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:24.196 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:24.197 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:24.218 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:24.219 CST ] [OsUtilsBaseOPS.createDirectory:369]  Remote Node  = rac2
[main] [ 2013-06-24 08:24:24.220 CST ] [OsUtilsBaseOPS.addEscapeChar:435]  The directory path is :/u01/app/oracle/admin/lunar/pfile
[main] [ 2013-06-24 08:24:24.221 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:24.221 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:24.222 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:24.222 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:24.223 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:24.224 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:24.225 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:24.226 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:24.227 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:24.228 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:24.229 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:24.230 CST ] [ClusterConfig.init:423]  Returning same instance to clientmain
[Worker 2] [ 2013-06-24 08:24:24.231 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 2 m_count=0
[main] [ 2013-06-24 08:24:24.238 CST ] [ClusterConfig.createWorkers:317]  Started additional worker threads count=2
[main] [ 2013-06-24 08:24:24.239 CST ] [ClusterConfig.createDirInNode:1694]  Creating dir in nodes: rac2, /u01/app/oracle/admin/lunar/pfile, false, null
[Worker 3] [ 2013-06-24 08:24:24.243 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 3 m_count=0
[main] [ 2013-06-24 08:24:24.243 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:24:24.244 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[main] [ 2013-06-24 08:24:24.250 CST ] [ClusterConfig.block:596]  block called by thread main commandNum 1
[main] [ 2013-06-24 08:24:24.252 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 1] [ 2013-06-24 08:24:24.253 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 1 m_count=2
[Worker 1] [ 2013-06-24 08:24:24.254 CST ] [DirCreateCommand.execute:67]  In DirCreateCommand.execute, recurseFlag=false, modeFlag=false
[Worker 1] [ 2013-06-24 08:24:24.257 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[Worker 1] [ 2013-06-24 08:24:24.257 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 1] [ 2013-06-24 08:24:24.258 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[Worker 1] [ 2013-06-24 08:24:24.260 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:24.261 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 1] [ 2013-06-24 08:24:24.261 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:24.262 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 1] [ 2013-06-24 08:24:24.262 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:24.267 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 1] [ 2013-06-24 08:24:24.269 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:24.270 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 1] [ 2013-06-24 08:24:24.271 CST ] [RuntimeExec.runCommand:77]  rac2 
[Worker 1] [ 2013-06-24 08:24:24.272 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 1] [ 2013-06-24 08:24:24.272 CST ] [RuntimeExec.runCommand:77]  /bin/mkdir 
[Worker 1] [ 2013-06-24 08:24:24.273 CST ] [RuntimeExec.runCommand:77]  -p 
[Worker 1] [ 2013-06-24 08:24:24.273 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/pfile 
[Thread-126] [ 2013-06-24 08:24:24.290 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 1] [ 2013-06-24 08:24:24.291 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-125] [ 2013-06-24 08:24:24.293 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 1] [ 2013-06-24 08:24:24.695 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 1] [ 2013-06-24 08:24:24.698 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 1] [ 2013-06-24 08:24:24.699 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 1] [ 2013-06-24 08:24:24.699 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 1] [ 2013-06-24 08:24:24.700 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/mkdir -p /u01/app/oracle/admin/lunar/pfile]
[Worker 1] [ 2013-06-24 08:24:24.701 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[Worker 1] [ 2013-06-24 08:24:24.701 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[Worker 1] [ 2013-06-24 08:24:24.701 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[Worker 1] [ 2013-06-24 08:24:24.703 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[Worker 1] [ 2013-06-24 08:24:24.703 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[Worker 1] [ 2013-06-24 08:24:24.704 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 1] [ 2013-06-24 08:24:24.704 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[Worker 1] [ 2013-06-24 08:24:24.705 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=0 is full=false
[Worker 1] [ 2013-06-24 08:24:24.705 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 1 m_count=100
[Worker 1] [ 2013-06-24 08:24:24.705 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 1 m_count=1
[Worker 1] [ 2013-06-24 08:24:24.706 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 1] [ 2013-06-24 08:24:24.706 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 1] [ 2013-06-24 08:24:24.706 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 1] [ 2013-06-24 08:24:24.707 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 1 m_count=1
[Worker 1] [ 2013-06-24 08:24:24.708 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 1
[Worker 1] [ 2013-06-24 08:24:24.709 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 1 m_count=0
[main] [ 2013-06-24 08:24:24.710 CST ] [ClusterConfig.block:608]  block acquired semnum=0
[main] [ 2013-06-24 08:24:24.711 CST ] [ClusterConfig.destroy:452]  destroying resources for client thread Thread[main,5,main]
[main] [ 2013-06-24 08:24:24.711 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:24:24.713 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:24:24.713 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:24:24.713 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:24.714 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[0]=rac1
[main] [ 2013-06-24 08:24:24.715 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[1]=rac2
[main] [ 2013-06-24 08:24:24.715 CST ] [Cluster.verifyNodeList:1152]  nodeList[0]=rac1
[main] [ 2013-06-24 08:24:24.715 CST ] [Cluster.verifyNodeList:1152]  nodeList[1]=rac2
[main] [ 2013-06-24 08:24:24.715 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:24.716 CST ] [Cluster.isSharedPath:1071]  NodeList=[rac1, rac2]
[main] [ 2013-06-24 08:24:24.716 CST ] [Cluster.isSharedPath:1107]  pathName=/u01/app/oracle/admin/lunar/adump/ dirPath = /u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:24:24.717 CST ] [UnixSystem.isSharedPath:1591]  dirPath=/u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:24:24.718 CST ] [UnixSystem.isSharedPath:1596]  UnixSystem.isShared: pathName=/u01/app/oracle/admin/lunar/adump tempFile=CFSFileName13720334647172959285053978383936.tmp
[main] [ 2013-06-24 08:24:24.718 CST ] [UnixSystem.isSharedPath:1601]  UnixSystem.isShared: dirPathName is /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp
[main] [ 2013-06-24 08:24:24.718 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmpon  rac2
[main] [ 2013-06-24 08:24:24.719 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:24.719 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:24.719 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:24.720 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:24.721 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:24.721 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:24.721 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:24.722 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:24.722 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:24.722 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:24.723 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:24.723 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:24.723 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:24.724 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:24.724 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:24.724 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp 
[main] [ 2013-06-24 08:24:24.733 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-127] [ 2013-06-24 08:24:24.735 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-128] [ 2013-06-24 08:24:24.736 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:25.203 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:25.205 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:25.205 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:25.206 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:25.207 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/rm -f /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp]
[main] [ 2013-06-24 08:24:25.208 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[main] [ 2013-06-24 08:24:25.209 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[main] [ 2013-06-24 08:24:25.209 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:25.211 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:25.211 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmpon  rac1
[main] [ 2013-06-24 08:24:25.213 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:25.215 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:25.216 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:25.217 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp 
[Thread-130] [ 2013-06-24 08:24:25.273 CST ] [StreamReader.run:61]  In StreamReader.run 
[Finalizer] [ 2013-06-24 08:24:25.276 CST ] [ClusterAlias.finalize:117]  ClusterAlias: finalized called for oracle.ops.mgmt.has.ClusterAlias@5076e8a7
[Finalizer] [ 2013-06-24 08:24:25.277 CST ] [Util.finalize:126]  Util: finalized called for oracle.ops.mgmt.has.Util@2ea45536
[main] [ 2013-06-24 08:24:25.279 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[main] [ 2013-06-24 08:24:25.287 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Thread-129] [ 2013-06-24 08:24:25.288 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:25.290 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:25.291 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:25.293 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:25.294 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/rm -f /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp]
[main] [ 2013-06-24 08:24:25.296 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:24:25.297 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:25.298 CST ] [UnixSystem.isSharedPath:1610]  UnixSystem.isShared: creating file /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp
[main] [ 2013-06-24 08:24:25.299 CST ] [UnixSystem.testCFSFile:1705]  The unix command is /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/sh -c "/bin/ls /u01/app/oracle/admin/lunar/adump > /dev/null 2>&1  && /bin/cat /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp"
[main] [ 2013-06-24 08:24:25.301 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:25.301 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:25.302 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:25.303 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:25.304 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:25.306 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:25.306 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:25.307 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:25.308 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:25.309 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:25.311 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:25.311 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:25.312 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:24:25.313 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:24:25.314 CST ] [RuntimeExec.runCommand:77]  "/bin/ls 
[main] [ 2013-06-24 08:24:25.315 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/adump 
[main] [ 2013-06-24 08:24:25.317 CST ] [RuntimeExec.runCommand:77]  > 
[main] [ 2013-06-24 08:24:25.317 CST ] [RuntimeExec.runCommand:77]  /dev/null 
[main] [ 2013-06-24 08:24:25.318 CST ] [RuntimeExec.runCommand:77]  2>&1 
[main] [ 2013-06-24 08:24:25.320 CST ] [RuntimeExec.runCommand:77]  && 
[main] [ 2013-06-24 08:24:25.320 CST ] [RuntimeExec.runCommand:77]  /bin/cat 
[main] [ 2013-06-24 08:24:25.321 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp" 
[Thread-132] [ 2013-06-24 08:24:25.339 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:25.344 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-131] [ 2013-06-24 08:24:25.346 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-132] [ 2013-06-24 08:24:25.922 CST ] [StreamReader.run:65]  ERROR>/bin/cat: /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp: No such file or directory
[main] [ 2013-06-24 08:24:25.924 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 1
[main] [ 2013-06-24 08:24:25.928 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:25.929 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:25.931 CST ] [RuntimeExec.runCommand:173]  /bin/cat: /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp: No such file or directory
[main] [ 2013-06-24 08:24:25.932 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:25.936 CST ] [UnixSystem.testCFSFile:1717]  Command output is empty
[main] [ 2013-06-24 08:24:25.936 CST ] [UnixSystem.testCFSFile:1718]  ERROR: /bin/cat: /u01/app/oracle/admin/lunar/adump/CFSFileName13720334647172959285053978383936.tmp: No such file or directory from node rac2
[main] [ 2013-06-24 08:24:25.937 CST ] [ClusterUtils.areSharedPaths:591]  Got shared=false from SRVM call
[main] [ 2013-06-24 08:24:25.938 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:25.939 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:25.940 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:25.941 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:25.942 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:25.943 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:25.944 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:25.944 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:25.945 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:25.946 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:24:25.946 CST ] [has.UtilNative.Native]  prsr_trace: Native: hasHAPrivilege

[main] [ 2013-06-24 08:24:25.947 CST ] [ClusterAlias.<init>:89]  ClusterAlias Instance created.
[main] [ 2013-06-24 08:24:25.947 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:25.948 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:25.953 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:25.955 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:25.957 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:25.959 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:25.961 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:25.962 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:25.964 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:25.965 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:25.966 CST ] [OsUtilsBaseOPS.createDirectory:369]  Remote Node  = rac2
[main] [ 2013-06-24 08:24:25.967 CST ] [OsUtilsBaseOPS.addEscapeChar:435]  The directory path is :/u01/app/oracle/admin/lunar/adump
[main] [ 2013-06-24 08:24:25.968 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:25.969 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:25.970 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:25.971 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:25.972 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:25.973 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:25.975 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:25.976 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:25.977 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:25.978 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:25.983 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:25.985 CST ] [ClusterConfig.init:423]  Returning same instance to clientmain
[main] [ 2013-06-24 08:24:25.993 CST ] [ClusterConfig.createDirInNode:1694]  Creating dir in nodes: rac2, /u01/app/oracle/admin/lunar/adump, false, null
[main] [ 2013-06-24 08:24:25.993 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:24:25.995 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[Worker 0] [ 2013-06-24 08:24:25.996 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 0 m_count=2
[Worker 0] [ 2013-06-24 08:24:25.998 CST ] [DirCreateCommand.execute:67]  In DirCreateCommand.execute, recurseFlag=false, modeFlag=false
[Worker 0] [ 2013-06-24 08:24:26.002 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[Worker 0] [ 2013-06-24 08:24:26.007 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 0] [ 2013-06-24 08:24:26.008 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:26.013 CST ] [ClusterConfig.block:596]  block called by thread main commandNum 1
[main] [ 2013-06-24 08:24:26.014 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 0] [ 2013-06-24 08:24:26.014 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:24:26.016 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 0] [ 2013-06-24 08:24:26.016 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:24:26.017 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 0] [ 2013-06-24 08:24:26.019 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:24:26.028 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 0] [ 2013-06-24 08:24:26.029 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 0] [ 2013-06-24 08:24:26.030 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 0] [ 2013-06-24 08:24:26.032 CST ] [RuntimeExec.runCommand:77]  rac2 
[Worker 0] [ 2013-06-24 08:24:26.033 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 0] [ 2013-06-24 08:24:26.034 CST ] [RuntimeExec.runCommand:77]  /bin/mkdir 
[Worker 0] [ 2013-06-24 08:24:26.035 CST ] [RuntimeExec.runCommand:77]  -p 
[Worker 0] [ 2013-06-24 08:24:26.044 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/adump 
[Thread-134] [ 2013-06-24 08:24:26.077 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 0] [ 2013-06-24 08:24:26.079 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-133] [ 2013-06-24 08:24:26.079 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 0] [ 2013-06-24 08:24:26.404 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 0] [ 2013-06-24 08:24:26.404 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 0] [ 2013-06-24 08:24:26.405 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 0] [ 2013-06-24 08:24:26.406 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 0] [ 2013-06-24 08:24:26.406 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/mkdir -p /u01/app/oracle/admin/lunar/adump]
[Worker 0] [ 2013-06-24 08:24:26.407 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[Worker 0] [ 2013-06-24 08:24:26.408 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[Worker 0] [ 2013-06-24 08:24:26.409 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[Worker 0] [ 2013-06-24 08:24:26.409 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[Worker 0] [ 2013-06-24 08:24:26.410 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[Worker 0] [ 2013-06-24 08:24:26.410 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 0] [ 2013-06-24 08:24:26.411 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[Worker 0] [ 2013-06-24 08:24:26.411 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=0 is full=false
[Worker 0] [ 2013-06-24 08:24:26.411 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 0 m_count=100
[Worker 0] [ 2013-06-24 08:24:26.412 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 0 m_count=1
[Worker 0] [ 2013-06-24 08:24:26.412 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 0] [ 2013-06-24 08:24:26.413 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 0] [ 2013-06-24 08:24:26.413 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 0] [ 2013-06-24 08:24:26.413 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 0 m_count=1
[Worker 0] [ 2013-06-24 08:24:26.414 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 0
[main] [ 2013-06-24 08:24:26.417 CST ] [ClusterConfig.block:608]  block acquired semnum=0
[Worker 0] [ 2013-06-24 08:24:26.417 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 0 m_count=0
[main] [ 2013-06-24 08:24:26.418 CST ] [ClusterConfig.destroy:452]  destroying resources for client thread Thread[main,5,main]
[main] [ 2013-06-24 08:24:26.420 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle
[main] [ 2013-06-24 08:24:26.420 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle
[main] [ 2013-06-24 08:24:26.421 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle
[main] [ 2013-06-24 08:24:26.422 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:26.423 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[0]=rac1
[main] [ 2013-06-24 08:24:26.423 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[1]=rac2
[main] [ 2013-06-24 08:24:26.423 CST ] [Cluster.verifyNodeList:1152]  nodeList[0]=rac1
[main] [ 2013-06-24 08:24:26.424 CST ] [Cluster.verifyNodeList:1152]  nodeList[1]=rac2
[main] [ 2013-06-24 08:24:26.424 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:26.425 CST ] [Cluster.isSharedPath:1071]  NodeList=[rac1, rac2]
[main] [ 2013-06-24 08:24:26.425 CST ] [Cluster.isSharedPath:1107]  pathName=/u01/app/oracle/ dirPath = /u01/app/oracle
[main] [ 2013-06-24 08:24:26.426 CST ] [UnixSystem.isSharedPath:1591]  dirPath=/u01/app/oracle
[main] [ 2013-06-24 08:24:26.444 CST ] [UnixSystem.isSharedPath:1596]  UnixSystem.isShared: pathName=/u01/app/oracle tempFile=CFSFileName1372033466426464681128583704568.tmp
[main] [ 2013-06-24 08:24:26.444 CST ] [UnixSystem.isSharedPath:1601]  UnixSystem.isShared: dirPathName is /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp
[main] [ 2013-06-24 08:24:26.445 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmpon  rac2
[main] [ 2013-06-24 08:24:26.446 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:26.446 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:26.449 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:26.451 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.452 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:26.453 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.454 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:26.455 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.456 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:26.459 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.460 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:26.463 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:26.464 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:26.466 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:26.467 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:26.468 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp 
[main] [ 2013-06-24 08:24:26.499 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-135] [ 2013-06-24 08:24:26.505 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-136] [ 2013-06-24 08:24:26.509 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:26.761 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:26.763 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:26.764 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:26.764 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:26.765 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/rm -f /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp]
[main] [ 2013-06-24 08:24:26.767 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[main] [ 2013-06-24 08:24:26.767 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[main] [ 2013-06-24 08:24:26.768 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:26.768 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:26.768 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmpon  rac1
[main] [ 2013-06-24 08:24:26.768 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:26.769 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:26.769 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:26.769 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp 
[Thread-138] [ 2013-06-24 08:24:26.778 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:26.778 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-137] [ 2013-06-24 08:24:26.779 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:26.785 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:26.785 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:26.786 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:26.786 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:26.787 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/rm -f /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp]
[main] [ 2013-06-24 08:24:26.788 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:24:26.788 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:26.788 CST ] [UnixSystem.isSharedPath:1610]  UnixSystem.isShared: creating file /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp
[main] [ 2013-06-24 08:24:26.811 CST ] [UnixSystem.testCFSFile:1705]  The unix command is /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/sh -c "/bin/ls /u01/app/oracle > /dev/null 2>&1  && /bin/cat /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp"
[main] [ 2013-06-24 08:24:26.811 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:26.812 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:26.812 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.813 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:26.813 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.813 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:26.813 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.814 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:26.814 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:26.814 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:26.814 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:26.815 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:26.815 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:24:26.815 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:24:26.815 CST ] [RuntimeExec.runCommand:77]  "/bin/ls 
[main] [ 2013-06-24 08:24:26.815 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle 
[main] [ 2013-06-24 08:24:26.816 CST ] [RuntimeExec.runCommand:77]  > 
[main] [ 2013-06-24 08:24:26.816 CST ] [RuntimeExec.runCommand:77]  /dev/null 
[main] [ 2013-06-24 08:24:26.816 CST ] [RuntimeExec.runCommand:77]  2>&1 
[main] [ 2013-06-24 08:24:26.817 CST ] [RuntimeExec.runCommand:77]  && 
[main] [ 2013-06-24 08:24:26.817 CST ] [RuntimeExec.runCommand:77]  /bin/cat 
[main] [ 2013-06-24 08:24:26.817 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp" 
[Thread-140] [ 2013-06-24 08:24:26.825 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:26.826 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-139] [ 2013-06-24 08:24:26.827 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-140] [ 2013-06-24 08:24:27.068 CST ] [StreamReader.run:65]  ERROR>/bin/cat: /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp: No such file or directory
[main] [ 2013-06-24 08:24:27.072 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 1
[main] [ 2013-06-24 08:24:27.074 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:27.074 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:27.075 CST ] [RuntimeExec.runCommand:173]  /bin/cat: /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp: No such file or directory
[main] [ 2013-06-24 08:24:27.076 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:27.076 CST ] [UnixSystem.testCFSFile:1717]  Command output is empty
[main] [ 2013-06-24 08:24:27.076 CST ] [UnixSystem.testCFSFile:1718]  ERROR: /bin/cat: /u01/app/oracle/CFSFileName1372033466426464681128583704568.tmp: No such file or directory from node rac2
[main] [ 2013-06-24 08:24:27.078 CST ] [ClusterUtils.areSharedPaths:591]  Got shared=false from SRVM call
[main] [ 2013-06-24 08:24:27.079 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.079 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.079 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.080 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.080 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:27.081 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:27.082 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:27.082 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:27.082 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:27.082 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:24:27.083 CST ] [has.UtilNative.Native]  prsr_trace: Native: hasHAPrivilege

[main] [ 2013-06-24 08:24:27.083 CST ] [ClusterAlias.<init>:89]  ClusterAlias Instance created.
[main] [ 2013-06-24 08:24:27.083 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.083 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.084 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.084 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.084 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:27.085 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:27.085 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:27.085 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:27.086 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:27.087 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:27.087 CST ] [OsUtilsBaseOPS.createDirectory:369]  Remote Node  = rac2
[main] [ 2013-06-24 08:24:27.087 CST ] [OsUtilsBaseOPS.addEscapeChar:435]  The directory path is :/u01/app/oracle
[main] [ 2013-06-24 08:24:27.087 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:27.088 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.088 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.088 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.089 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.089 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:27.089 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:27.089 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:27.090 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:27.090 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:27.090 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:27.090 CST ] [ClusterConfig.init:423]  Returning same instance to clientmain
[main] [ 2013-06-24 08:24:27.090 CST ] [ClusterConfig.createDirInNode:1694]  Creating dir in nodes: rac2, /u01/app/oracle, false, null
[main] [ 2013-06-24 08:24:27.091 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:24:27.091 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[main] [ 2013-06-24 08:24:27.093 CST ] [ClusterConfig.block:596]  block called by thread main commandNum 1
[Worker 2] [ 2013-06-24 08:24:27.094 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 2 m_count=2
[main] [ 2013-06-24 08:24:27.094 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 2] [ 2013-06-24 08:24:27.094 CST ] [DirCreateCommand.execute:67]  In DirCreateCommand.execute, recurseFlag=false, modeFlag=false
[Worker 2] [ 2013-06-24 08:24:27.095 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[Worker 2] [ 2013-06-24 08:24:27.096 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 2] [ 2013-06-24 08:24:27.096 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[Worker 2] [ 2013-06-24 08:24:27.096 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 2] [ 2013-06-24 08:24:27.096 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 2] [ 2013-06-24 08:24:27.097 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 2] [ 2013-06-24 08:24:27.097 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 2] [ 2013-06-24 08:24:27.097 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 2] [ 2013-06-24 08:24:27.097 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 2] [ 2013-06-24 08:24:27.098 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 2] [ 2013-06-24 08:24:27.098 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 2] [ 2013-06-24 08:24:27.098 CST ] [RuntimeExec.runCommand:77]  rac2 
[Worker 2] [ 2013-06-24 08:24:27.098 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 2] [ 2013-06-24 08:24:27.099 CST ] [RuntimeExec.runCommand:77]  /bin/mkdir 
[Worker 2] [ 2013-06-24 08:24:27.099 CST ] [RuntimeExec.runCommand:77]  -p 
[Worker 2] [ 2013-06-24 08:24:27.100 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle 
[Worker 2] [ 2013-06-24 08:24:27.110 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-141] [ 2013-06-24 08:24:27.112 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-142] [ 2013-06-24 08:24:27.112 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 2] [ 2013-06-24 08:24:27.301 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 2] [ 2013-06-24 08:24:27.301 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 2] [ 2013-06-24 08:24:27.302 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 2] [ 2013-06-24 08:24:27.302 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 2] [ 2013-06-24 08:24:27.303 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/mkdir -p /u01/app/oracle]
[Worker 2] [ 2013-06-24 08:24:27.305 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[Worker 2] [ 2013-06-24 08:24:27.305 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[Worker 2] [ 2013-06-24 08:24:27.305 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[Worker 2] [ 2013-06-24 08:24:27.306 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[Worker 2] [ 2013-06-24 08:24:27.306 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[Worker 2] [ 2013-06-24 08:24:27.306 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 2] [ 2013-06-24 08:24:27.307 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[Worker 2] [ 2013-06-24 08:24:27.307 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=0 is full=false
[Worker 2] [ 2013-06-24 08:24:27.307 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 2 m_count=100
[Worker 2] [ 2013-06-24 08:24:27.308 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 2 m_count=1
[Worker 2] [ 2013-06-24 08:24:27.308 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 2] [ 2013-06-24 08:24:27.308 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 2] [ 2013-06-24 08:24:27.309 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 2] [ 2013-06-24 08:24:27.309 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 2 m_count=1
[Worker 2] [ 2013-06-24 08:24:27.310 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 2
[Worker 2] [ 2013-06-24 08:24:27.311 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 2 m_count=0
[main] [ 2013-06-24 08:24:27.312 CST ] [ClusterConfig.block:608]  block acquired semnum=0
[main] [ 2013-06-24 08:24:27.313 CST ] [ClusterConfig.destroy:452]  destroying resources for client thread Thread[main,5,main]
[main] [ 2013-06-24 08:24:27.313 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:27.313 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:27.313 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:27.314 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:27.314 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[0]=rac1
[main] [ 2013-06-24 08:24:27.314 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[1]=rac2
[main] [ 2013-06-24 08:24:27.314 CST ] [Cluster.verifyNodeList:1152]  nodeList[0]=rac1
[main] [ 2013-06-24 08:24:27.315 CST ] [Cluster.verifyNodeList:1152]  nodeList[1]=rac2
[main] [ 2013-06-24 08:24:27.315 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:27.315 CST ] [Cluster.isSharedPath:1071]  NodeList=[rac1, rac2]
[main] [ 2013-06-24 08:24:27.316 CST ] [Cluster.isSharedPath:1107]  pathName=/u01/app/oracle/admin/lunar/hadump/ dirPath = /u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:27.317 CST ] [UnixSystem.isSharedPath:1591]  dirPath=/u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:27.317 CST ] [UnixSystem.isSharedPath:1596]  UnixSystem.isShared: pathName=/u01/app/oracle/admin/lunar/hadump tempFile=CFSFileName13720334673177426679882009859816.tmp
[main] [ 2013-06-24 08:24:27.318 CST ] [UnixSystem.isSharedPath:1601]  UnixSystem.isShared: dirPathName is /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp
[main] [ 2013-06-24 08:24:27.318 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmpon  rac2
[main] [ 2013-06-24 08:24:27.319 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:27.320 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:27.320 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:27.321 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.321 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:27.322 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.322 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:27.323 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.323 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:27.323 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.323 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:27.324 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:27.324 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:27.324 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:27.324 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:27.324 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp 
[Thread-144] [ 2013-06-24 08:24:27.333 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:27.334 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-143] [ 2013-06-24 08:24:27.334 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:27.507 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:27.508 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:27.509 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:27.510 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:27.511 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/rm -f /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp]
[main] [ 2013-06-24 08:24:27.514 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[main] [ 2013-06-24 08:24:27.514 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[main] [ 2013-06-24 08:24:27.515 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:27.515 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:27.515 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmpon  rac1
[main] [ 2013-06-24 08:24:27.515 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:27.516 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:27.516 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:27.516 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp 
[Thread-146] [ 2013-06-24 08:24:27.526 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:27.526 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-145] [ 2013-06-24 08:24:27.528 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:27.533 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:27.534 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:27.535 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:27.535 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:27.535 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/rm -f /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp]
[main] [ 2013-06-24 08:24:27.536 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:24:27.536 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:27.536 CST ] [UnixSystem.isSharedPath:1610]  UnixSystem.isShared: creating file /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp
[main] [ 2013-06-24 08:24:27.537 CST ] [UnixSystem.testCFSFile:1705]  The unix command is /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/sh -c "/bin/ls /u01/app/oracle/admin/lunar/hadump > /dev/null 2>&1  && /bin/cat /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp"
[main] [ 2013-06-24 08:24:27.537 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:27.537 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:27.538 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.538 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:27.538 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.538 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:27.538 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.539 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:27.539 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:27.540 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:27.540 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:27.541 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:27.541 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:24:27.541 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:24:27.541 CST ] [RuntimeExec.runCommand:77]  "/bin/ls 
[main] [ 2013-06-24 08:24:27.541 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/hadump 
[main] [ 2013-06-24 08:24:27.542 CST ] [RuntimeExec.runCommand:77]  > 
[main] [ 2013-06-24 08:24:27.542 CST ] [RuntimeExec.runCommand:77]  /dev/null 
[main] [ 2013-06-24 08:24:27.542 CST ] [RuntimeExec.runCommand:77]  2>&1 
[main] [ 2013-06-24 08:24:27.542 CST ] [RuntimeExec.runCommand:77]  && 
[main] [ 2013-06-24 08:24:27.542 CST ] [RuntimeExec.runCommand:77]  /bin/cat 
[main] [ 2013-06-24 08:24:27.543 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/hadump/CFSFileName13720334673177426679882009859816.tmp" 
[Thread-148] [ 2013-06-24 08:24:27.563 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:27.564 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-147] [ 2013-06-24 08:24:27.564 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:27.798 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 2
[main] [ 2013-06-24 08:24:27.798 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:27.799 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:27.799 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:27.799 CST ] [UnixSystem.testCFSFile:1717]  Command output is empty
[main] [ 2013-06-24 08:24:27.799 CST ] [UnixSystem.testCFSFile:1718]  ERROR:  from node rac2
[main] [ 2013-06-24 08:24:27.800 CST ] [ClusterUtils.areSharedPaths:591]  Got shared=false from SRVM call
[main] [ 2013-06-24 08:24:27.801 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.801 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.801 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.801 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.802 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:27.802 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:27.802 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:27.802 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:27.803 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:27.803 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:24:27.803 CST ] [has.UtilNative.Native]  prsr_trace: Native: hasHAPrivilege

[main] [ 2013-06-24 08:24:27.804 CST ] [ClusterAlias.<init>:89]  ClusterAlias Instance created.
[main] [ 2013-06-24 08:24:27.804 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.804 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.805 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.805 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.805 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:27.805 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:27.806 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:27.806 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:27.806 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:27.806 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:27.806 CST ] [OsUtilsBaseOPS.createDirectory:369]  Remote Node  = rac2
[main] [ 2013-06-24 08:24:27.807 CST ] [OsUtilsBaseOPS.addEscapeChar:435]  The directory path is :/u01/app/oracle/admin/lunar/hadump
[main] [ 2013-06-24 08:24:27.807 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:27.807 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.808 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.808 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.808 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.808 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:27.809 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:27.810 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:27.810 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:27.810 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:27.810 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:27.810 CST ] [ClusterConfig.init:423]  Returning same instance to clientmain
[main] [ 2013-06-24 08:24:27.811 CST ] [ClusterConfig.createDirInNode:1694]  Creating dir in nodes: rac2, /u01/app/oracle/admin/lunar/hadump, false, null
[main] [ 2013-06-24 08:24:27.811 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:24:27.811 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[Worker 3] [ 2013-06-24 08:24:27.812 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 3 m_count=2
[Worker 3] [ 2013-06-24 08:24:27.812 CST ] [DirCreateCommand.execute:67]  In DirCreateCommand.execute, recurseFlag=false, modeFlag=false
[main] [ 2013-06-24 08:24:27.812 CST ] [ClusterConfig.block:596]  block called by thread main commandNum 1
[main] [ 2013-06-24 08:24:27.813 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 3] [ 2013-06-24 08:24:27.813 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[Worker 3] [ 2013-06-24 08:24:27.814 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 3] [ 2013-06-24 08:24:27.814 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[Worker 3] [ 2013-06-24 08:24:27.814 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 3] [ 2013-06-24 08:24:27.815 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 3] [ 2013-06-24 08:24:27.815 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 3] [ 2013-06-24 08:24:27.815 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 3] [ 2013-06-24 08:24:27.815 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 3] [ 2013-06-24 08:24:27.816 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 3] [ 2013-06-24 08:24:27.816 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 3] [ 2013-06-24 08:24:27.816 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 3] [ 2013-06-24 08:24:27.816 CST ] [RuntimeExec.runCommand:77]  rac2 
[Worker 3] [ 2013-06-24 08:24:27.816 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 3] [ 2013-06-24 08:24:27.816 CST ] [RuntimeExec.runCommand:77]  /bin/mkdir 
[Worker 3] [ 2013-06-24 08:24:27.817 CST ] [RuntimeExec.runCommand:77]  -p 
[Worker 3] [ 2013-06-24 08:24:27.817 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/hadump 
[Worker 3] [ 2013-06-24 08:24:27.825 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-149] [ 2013-06-24 08:24:27.826 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-150] [ 2013-06-24 08:24:27.826 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 3] [ 2013-06-24 08:24:27.989 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 3] [ 2013-06-24 08:24:27.989 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 3] [ 2013-06-24 08:24:27.991 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 3] [ 2013-06-24 08:24:27.991 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 3] [ 2013-06-24 08:24:27.991 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/mkdir -p /u01/app/oracle/admin/lunar/hadump]
[Worker 3] [ 2013-06-24 08:24:27.992 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[Worker 3] [ 2013-06-24 08:24:27.992 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[Worker 3] [ 2013-06-24 08:24:27.993 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[Worker 3] [ 2013-06-24 08:24:27.993 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[Worker 3] [ 2013-06-24 08:24:27.993 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[Worker 3] [ 2013-06-24 08:24:27.993 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 3] [ 2013-06-24 08:24:27.994 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[Worker 3] [ 2013-06-24 08:24:27.994 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=0 is full=false
[Worker 3] [ 2013-06-24 08:24:27.994 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 3 m_count=100
[Worker 3] [ 2013-06-24 08:24:27.994 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 3 m_count=1
[Worker 3] [ 2013-06-24 08:24:27.994 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 3] [ 2013-06-24 08:24:27.995 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 3] [ 2013-06-24 08:24:27.995 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 3] [ 2013-06-24 08:24:27.995 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 3 m_count=1
[Worker 3] [ 2013-06-24 08:24:27.996 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 3
[Worker 3] [ 2013-06-24 08:24:27.996 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 3 m_count=0
[main] [ 2013-06-24 08:24:27.997 CST ] [ClusterConfig.block:608]  block acquired semnum=0
[main] [ 2013-06-24 08:24:27.997 CST ] [ClusterConfig.destroy:452]  destroying resources for client thread Thread[main,5,main]
[main] [ 2013-06-24 08:24:27.997 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/admin/lunar/dpdump
[main] [ 2013-06-24 08:24:27.998 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/admin/lunar
[main] [ 2013-06-24 08:24:27.998 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/admin/lunar
[main] [ 2013-06-24 08:24:27.998 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:24:27.999 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:27.999 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:27.999 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:27.999 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:27.999 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:28.000 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:28.001 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:28.001 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:28.001 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:28.002 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:24:28.002 CST ] [has.UtilNative.Native]  prsr_trace: Native: hasHAPrivilege

[main] [ 2013-06-24 08:24:28.002 CST ] [ClusterAlias.<init>:89]  ClusterAlias Instance created.
[main] [ 2013-06-24 08:24:28.002 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:28.003 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:28.003 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:28.003 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:28.003 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:28.004 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:28.004 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:28.004 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:28.004 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:28.004 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:28.005 CST ] [OsUtilsBaseOPS.createDirectory:369]  Remote Node  = rac2
[main] [ 2013-06-24 08:24:28.005 CST ] [OsUtilsBaseOPS.addEscapeChar:435]  The directory path is :/u01/app/oracle/admin/lunar/dpdump
[main] [ 2013-06-24 08:24:28.005 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:28.005 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:28.005 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:28.005 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:28.006 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:28.006 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:28.006 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:28.006 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:28.007 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:28.007 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:28.007 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:28.007 CST ] [ClusterConfig.init:423]  Returning same instance to clientmain
[main] [ 2013-06-24 08:24:28.007 CST ] [ClusterConfig.createDirInNode:1694]  Creating dir in nodes: rac2, /u01/app/oracle/admin/lunar/dpdump, false, null
[main] [ 2013-06-24 08:24:28.008 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread main m_count=2
[main] [ 2013-06-24 08:24:28.008 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread main m_count=1
[main] [ 2013-06-24 08:24:28.008 CST ] [ClusterConfig.block:596]  block called by thread main commandNum 1
[main] [ 2013-06-24 08:24:28.009 CST ] [Semaphore.acquire:109]  ClientResource Constructor:Blocking Semaphore owned by main:Acquire called by thread main m_count=0
[Worker 1] [ 2013-06-24 08:24:28.009 CST ] [Semaphore.release:85]  SyncBufferEmpty:Release called by thread Worker 1 m_count=2
[Worker 1] [ 2013-06-24 08:24:28.010 CST ] [DirCreateCommand.execute:67]  In DirCreateCommand.execute, recurseFlag=false, modeFlag=false
[Worker 1] [ 2013-06-24 08:24:28.010 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[Worker 1] [ 2013-06-24 08:24:28.010 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[Worker 1] [ 2013-06-24 08:24:28.011 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[Worker 1] [ 2013-06-24 08:24:28.011 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:28.011 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  -o 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  rac2 
[Worker 1] [ 2013-06-24 08:24:28.012 CST ] [RuntimeExec.runCommand:77]  -n 
[Worker 1] [ 2013-06-24 08:24:28.013 CST ] [RuntimeExec.runCommand:77]  /bin/mkdir 
[Worker 1] [ 2013-06-24 08:24:28.013 CST ] [RuntimeExec.runCommand:77]  -p 
[Worker 1] [ 2013-06-24 08:24:28.013 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/admin/lunar/dpdump 
[Thread-152] [ 2013-06-24 08:24:28.021 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 1] [ 2013-06-24 08:24:28.022 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-151] [ 2013-06-24 08:24:28.022 CST ] [StreamReader.run:61]  In StreamReader.run 
[Worker 1] [ 2013-06-24 08:24:28.190 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[Worker 1] [ 2013-06-24 08:24:28.190 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[Worker 1] [ 2013-06-24 08:24:28.191 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[Worker 1] [ 2013-06-24 08:24:28.191 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[Worker 1] [ 2013-06-24 08:24:28.192 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/mkdir -p /u01/app/oracle/admin/lunar/dpdump]
[Worker 1] [ 2013-06-24 08:24:28.192 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[Worker 1] [ 2013-06-24 08:24:28.192 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[Worker 1] [ 2013-06-24 08:24:28.193 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[Worker 1] [ 2013-06-24 08:24:28.193 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[Worker 1] [ 2013-06-24 08:24:28.193 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[Worker 1] [ 2013-06-24 08:24:28.193 CST ] [NativeResult.<init>:99]  The status string is: 1
[Worker 1] [ 2013-06-24 08:24:28.193 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[Worker 1] [ 2013-06-24 08:24:28.194 CST ] [ClusterConfig$ExecuteCommand.returnCommandToClient:2951]  returnCommandToClient; fillCount=0 is full=false
[Worker 1] [ 2013-06-24 08:24:28.194 CST ] [Semaphore.acquire:109]  SyncBufferEmpty:Acquire called by thread Worker 1 m_count=100
[Worker 1] [ 2013-06-24 08:24:28.194 CST ] [Semaphore.release:85]  SyncBufferFull:Release called by thread Worker 1 m_count=1
[Worker 1] [ 2013-06-24 08:24:28.194 CST ] [ClientResource.getListener:157]  Calling getListener
[Worker 1] [ 2013-06-24 08:24:28.194 CST ] [ClusterConfig$ExecuteCommand.run:3046]  Owner Thread name of the blocking Semaphore main
[Worker 1] [ 2013-06-24 08:24:28.195 CST ] [ClusterConfig$ExecuteCommand.run:3054]  Obtained Semaphore
[Worker 1] [ 2013-06-24 08:24:28.195 CST ] [Semaphore.release:85]  ClientResource Constructor:Blocking Semaphore owned by main:Release called by thread Worker 1 m_count=1
[Worker 1] [ 2013-06-24 08:24:28.195 CST ] [ClusterConfig$ExecuteCommand.run:3069]  Released Semaphore by worker=Worker 1
[Worker 1] [ 2013-06-24 08:24:28.196 CST ] [Semaphore.acquire:109]  SyncBufferFull:Acquire called by thread Worker 1 m_count=0
[main] [ 2013-06-24 08:24:28.197 CST ] [ClusterConfig.block:608]  block acquired semnum=0
[main] [ 2013-06-24 08:24:28.197 CST ] [ClusterConfig.destroy:452]  destroying resources for client thread Thread[main,5,main]
[Thread-117] [ 2013-06-24 08:24:30.954 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-117] [ 2013-06-24 08:24:30.954 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-117] [ 2013-06-24 08:24:30.956 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01507: database not mounted
[Thread-117] [ 2013-06-24 08:24:30.957 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:456]  Ignoring shutdown error : database not mounted
[main] [ 2013-06-24 08:24:36.333 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:24:36.334 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:24:36.335 CST ] [Storage.isRecoveryAreaTransferRequired:344]  Current RecoveryArea=+ASMDATA
[main] [ 2013-06-24 08:24:36.336 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.337 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.337 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.338 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:24:36.338 CST ] [InstanceManagement.deleteSidsFromRegistry:735]  deleting sid=lunar1 from registry of node=rac1
[main] [ 2013-06-24 08:24:36.338 CST ] [InstanceManagement.deleteSidsFromRegistry:735]  deleting sid=lunar2 from registry of node=rac2
[main] [ 2013-06-24 08:24:36.338 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.339 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.339 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.341 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:24:36.341 CST ] [InstanceManagement.addSidsToRegistry:470]  adding sid=lunar1 to registry of node=rac1
[main] [ 2013-06-24 08:24:36.342 CST ] [Oratab.getTempFile:804]  Temp oratab: /tmp/oratab
[main] [ 2013-06-24 08:24:36.356 CST ] [InstanceManagement.addSidsToRegistry:470]  adding sid=lunar2 to registry of node=rac2
[main] [ 2013-06-24 08:24:36.357 CST ] [Oratab.getTempFile:804]  Temp oratab: /tmp/oratab
[main] [ 2013-06-24 08:24:36.357 CST ] [OratabOPS.addEntry:364]  tempOratabFileName=/tmp/oratab.rac2
[main] [ 2013-06-24 08:24:36.357 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:36.358 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:36.358 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:36.358 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:36.359 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:36.359 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:36.360 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:36.361 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:36.362 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:36.362 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:36.362 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:36.362 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:36.363 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:36.363 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:36.366 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:36.367 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:36.367 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:36.368 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:36.368 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:36.368 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:36.368 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:36.371 CST ] [UnixSystem.copyFile:659]  Copy file rac2:/etc/oratab to localnode:/tmp/oratab.rac2
[main] [ 2013-06-24 08:24:36.373 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:36.373 CST ] [UnixSystem.remoteCopyFile:636]  Copying files rac2/etc/oratab localnode/tmp/oratab.rac2
[main] [ 2013-06-24 08:24:36.373 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:36.374 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:36.375 CST ] [UnixSystem.remoteCopyFile:653]  UnixSystem: /usr/bin/scp -p rac2:'/etc/oratab' /tmp/oratab.rac2
[main] [ 2013-06-24 08:24:36.375 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:36.375 CST ] [RuntimeExec.runCommand:77]  /usr/bin/scp 
[main] [ 2013-06-24 08:24:36.375 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:24:36.376 CST ] [RuntimeExec.runCommand:77]  rac2:'/etc/oratab' 
[main] [ 2013-06-24 08:24:36.376 CST ] [RuntimeExec.runCommand:77]  /tmp/oratab.rac2 
[Thread-154] [ 2013-06-24 08:24:36.385 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:36.391 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-153] [ 2013-06-24 08:24:36.391 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:36.706 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:36.709 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:36.710 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:36.710 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:36.710 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/scp -p rac2:'/etc/oratab' /tmp/oratab.rac2]
[main] [ 2013-06-24 08:24:36.711 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/scp is present.
[main] [ 2013-06-24 08:24:36.711 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/scp is a file.
[main] [ 2013-06-24 08:24:36.711 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:36.712 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:36.712 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:24:36.712 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:24:36.713 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:24:36.713 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:24:36.714 CST ] [OratabOPS.addEntry:384]  copy file status = true
[main] [ 2013-06-24 08:24:36.714 CST ] [Oratab.getTempFile:804]  Temp oratab: /tmp/oratab
[main] [ 2013-06-24 08:24:36.715 CST ] [OratabOPS.addEntry:392]  addEntry status=true
[main] [ 2013-06-24 08:24:36.716 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:36.716 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:36.716 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:36.717 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:36.718 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:36.719 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:36.719 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:36.720 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:36.720 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:36.721 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:36.721 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:36.721 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:36.722 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:36.722 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:36.722 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:36.722 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:36.723 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:36.723 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:36.723 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:36.724 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:36.724 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:36.724 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/tmp/oratab.rac2 to rac2:/etc/oratab
[main] [ 2013-06-24 08:24:36.725 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:36.725 CST ] [UnixSystem.remoteCopyFile:636]  Copying files localnode/tmp/oratab.rac2 rac2/etc/oratab
[main] [ 2013-06-24 08:24:36.726 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:36.726 CST ] [UnixSystem.remoteCopyFile:653]  UnixSystem: /usr/bin/scp -p /tmp/oratab.rac2 rac2:'/etc/oratab'
[main] [ 2013-06-24 08:24:36.726 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:36.726 CST ] [RuntimeExec.runCommand:77]  /usr/bin/scp 
[main] [ 2013-06-24 08:24:36.727 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:24:36.727 CST ] [RuntimeExec.runCommand:77]  /tmp/oratab.rac2 
[main] [ 2013-06-24 08:24:36.727 CST ] [RuntimeExec.runCommand:77]  rac2:'/etc/oratab' 
[Thread-156] [ 2013-06-24 08:24:36.739 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:36.740 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-155] [ 2013-06-24 08:24:36.740 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:36.952 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:36.954 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:36.954 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:36.955 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:36.956 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/scp -p /tmp/oratab.rac2 rac2:'/etc/oratab']
[main] [ 2013-06-24 08:24:36.957 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/scp is present.
[main] [ 2013-06-24 08:24:36.957 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/scp is a file.
[main] [ 2013-06-24 08:24:36.958 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:36.958 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:36.958 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:24:36.959 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:24:36.959 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:24:36.960 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:24:36.961 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.961 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.962 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.962 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:24:36.971 CST ] [InstanceManagement.createPasswordFiles:570]  sourcePwdFileLocation=/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1
[main] [ 2013-06-24 08:24:36.971 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.972 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.972 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.972 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:24:36.973 CST ] [InstanceManagement.createPasswordFiles:597]  localPwdFileLocation=/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1
[main] [ 2013-06-24 08:24:36.973 CST ] [InstanceManagement.createPasswordFiles:604]  Copying source password file: /u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 to /u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1
[main] [ 2013-06-24 08:24:36.973 CST ] [OsUtilsBase.copyFile:1565]  OsUtilsBase.copyFile: 
[main] [ 2013-06-24 08:24:36.973 CST ] [OsUtilsBase.copyFile:1570]  True if copy at same location.. 
[main] [ 2013-06-24 08:24:36.973 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.974 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.974 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:24:36.974 CST ] [ClusterUtils.areSharedPaths:586]  Got shared=false from map
[main] [ 2013-06-24 08:24:36.975 CST ] [ClusterUtils.areSharedPaths:556]  1. path=/u01/app/oracle/product/11.2.0/db_1/dbs
[main] [ 2013-06-24 08:24:36.975 CST ] [ClusterUtils.areSharedPaths:577]  2. path=/u01/app/oracle/product/11.2.0/db_1/dbs
[main] [ 2013-06-24 08:24:36.976 CST ] [ClusterUtils.areSharedPaths:582]  hashKey = [rac1, rac2]/u01/app/oracle/product/11.2.0/db_1/dbs
[main] [ 2013-06-24 08:24:36.976 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:36.976 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[0]=rac1
[main] [ 2013-06-24 08:24:36.977 CST ] [Cluster.verifyNodeList:1147]  clusterNodes[1]=rac2
[main] [ 2013-06-24 08:24:36.977 CST ] [Cluster.verifyNodeList:1152]  nodeList[0]=rac1
[main] [ 2013-06-24 08:24:36.977 CST ] [Cluster.verifyNodeList:1152]  nodeList[1]=rac2
[main] [ 2013-06-24 08:24:36.978 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:36.978 CST ] [Cluster.isSharedPath:1071]  NodeList=[rac1, rac2]
[main] [ 2013-06-24 08:24:36.978 CST ] [Cluster.isSharedPath:1107]  pathName=/u01/app/oracle/product/11.2.0/db_1/dbs/ dirPath = /u01/app/oracle/product/11.2.0/db_1/dbs
[main] [ 2013-06-24 08:24:36.979 CST ] [UnixSystem.isSharedPath:1591]  dirPath=/u01/app/oracle/product/11.2.0/db_1/dbs
[main] [ 2013-06-24 08:24:36.979 CST ] [UnixSystem.isSharedPath:1596]  UnixSystem.isShared: pathName=/u01/app/oracle/product/11.2.0/db_1/dbs tempFile=CFSFileName1372033476979750764675612332992.tmp
[main] [ 2013-06-24 08:24:36.980 CST ] [UnixSystem.isSharedPath:1601]  UnixSystem.isShared: dirPathName is /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp
[main] [ 2013-06-24 08:24:36.980 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmpon  rac2
[main] [ 2013-06-24 08:24:36.980 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:36.981 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:36.981 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:36.982 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:36.982 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:36.982 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:36.983 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:36.984 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:36.984 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:36.984 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:36.984 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:36.985 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:36.985 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:36.985 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:36.986 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:36.986 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp 
[Thread-158] [ 2013-06-24 08:24:36.993 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:36.994 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-157] [ 2013-06-24 08:24:36.994 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:37.194 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:37.195 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:37.196 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:37.197 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:37.197 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/ssh -o FallBackToRsh=no -o PasswordAuthentication=no -o StrictHostKeyChecking=yes -o NumberOfPasswordPrompts=0 rac2 -n /bin/rm -f /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp]
[main] [ 2013-06-24 08:24:37.198 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/ssh is present.
[main] [ 2013-06-24 08:24:37.199 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/ssh is a file.
[main] [ 2013-06-24 08:24:37.200 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:37.200 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:37.201 CST ] [UnixSystem.isSharedPath:1605]  UnixSystem.isShared: removing file /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmpon  rac1
[main] [ 2013-06-24 08:24:37.201 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:37.201 CST ] [RuntimeExec.runCommand:77]  /bin/rm 
[main] [ 2013-06-24 08:24:37.202 CST ] [RuntimeExec.runCommand:77]  -f 
[main] [ 2013-06-24 08:24:37.202 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp 
[Thread-160] [ 2013-06-24 08:24:37.212 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:37.213 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-159] [ 2013-06-24 08:24:37.214 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:37.218 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:37.219 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:37.219 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:37.220 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:37.221 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/bin/rm -f /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp]
[main] [ 2013-06-24 08:24:37.221 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned false
[main] [ 2013-06-24 08:24:37.222 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:37.222 CST ] [UnixSystem.isSharedPath:1610]  UnixSystem.isShared: creating file /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp
[main] [ 2013-06-24 08:24:37.224 CST ] [UnixSystem.testCFSFile:1705]  The unix command is /usr/bin/ssh -o FallBackToRsh=no  -o PasswordAuthentication=no  -o StrictHostKeyChecking=yes  -o NumberOfPasswordPrompts=0  rac2 -n /bin/sh -c "/bin/ls /u01/app/oracle/product/11.2.0/db_1/dbs > /dev/null 2>&1  && /bin/cat /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp"
[main] [ 2013-06-24 08:24:37.224 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:37.224 CST ] [RuntimeExec.runCommand:77]  /usr/bin/ssh 
[main] [ 2013-06-24 08:24:37.225 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:37.225 CST ] [RuntimeExec.runCommand:77]  FallBackToRsh=no 
[main] [ 2013-06-24 08:24:37.225 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:37.225 CST ] [RuntimeExec.runCommand:77]  PasswordAuthentication=no 
[main] [ 2013-06-24 08:24:37.226 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:37.226 CST ] [RuntimeExec.runCommand:77]  StrictHostKeyChecking=yes 
[main] [ 2013-06-24 08:24:37.227 CST ] [RuntimeExec.runCommand:77]  -o 
[main] [ 2013-06-24 08:24:37.227 CST ] [RuntimeExec.runCommand:77]  NumberOfPasswordPrompts=0 
[main] [ 2013-06-24 08:24:37.227 CST ] [RuntimeExec.runCommand:77]  rac2 
[main] [ 2013-06-24 08:24:37.228 CST ] [RuntimeExec.runCommand:77]  -n 
[main] [ 2013-06-24 08:24:37.228 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:24:37.229 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:24:37.229 CST ] [RuntimeExec.runCommand:77]  "/bin/ls 
[main] [ 2013-06-24 08:24:37.229 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/dbs 
[main] [ 2013-06-24 08:24:37.230 CST ] [RuntimeExec.runCommand:77]  > 
[main] [ 2013-06-24 08:24:37.230 CST ] [RuntimeExec.runCommand:77]  /dev/null 
[main] [ 2013-06-24 08:24:37.231 CST ] [RuntimeExec.runCommand:77]  2>&1 
[main] [ 2013-06-24 08:24:37.232 CST ] [RuntimeExec.runCommand:77]  && 
[main] [ 2013-06-24 08:24:37.232 CST ] [RuntimeExec.runCommand:77]  /bin/cat 
[main] [ 2013-06-24 08:24:37.232 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp" 
[Thread-162] [ 2013-06-24 08:24:37.242 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:37.243 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-161] [ 2013-06-24 08:24:37.243 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-162] [ 2013-06-24 08:24:37.492 CST ] [StreamReader.run:65]  ERROR>/bin/cat: /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp: No such file or directory
[main] [ 2013-06-24 08:24:37.498 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 1
[main] [ 2013-06-24 08:24:37.500 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:37.500 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:37.501 CST ] [RuntimeExec.runCommand:173]  /bin/cat: /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp: No such file or directory
[main] [ 2013-06-24 08:24:37.501 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:37.501 CST ] [UnixSystem.testCFSFile:1717]  Command output is empty
[main] [ 2013-06-24 08:24:37.502 CST ] [UnixSystem.testCFSFile:1718]  ERROR: /bin/cat: /u01/app/oracle/product/11.2.0/db_1/dbs/CFSFileName1372033476979750764675612332992.tmp: No such file or directory from node rac2
[main] [ 2013-06-24 08:24:37.502 CST ] [ClusterUtils.areSharedPaths:591]  Got shared=false from SRVM call
[main] [ 2013-06-24 08:24:37.503 CST ] [CommonUtils.createOPSPasswordFiles:751]  sharedPwdFile=false
[main] [ 2013-06-24 08:24:37.505 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:37.505 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:37.506 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:37.507 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:37.507 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:37.507 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:37.508 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:37.508 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:37.509 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:37.510 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:37.510 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:37.510 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:37.511 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:37.511 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:37.511 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:37.511 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:37.512 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:37.513 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:37.513 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:37.514 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:37.514 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:37.515 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 to localnode:/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1
[main] [ 2013-06-24 08:24:37.515 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1|making self copy no-op'
[main] [ 2013-06-24 08:24:37.515 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1|making self copy no-op
[main] [ 2013-06-24 08:24:37.516 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:24:37.517 CST ] [NativeResult.<init>:112]  The result string is: making self copy no-op 1
[main] [ 2013-06-24 08:24:37.517 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:37.517 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:37.518 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:37.518 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:37.518 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:37.519 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:37.519 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:37.519 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:37.521 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:37.521 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:37.521 CST ] [ClusterConfig.isClusterInstalled:363]  hasJarPresent=true
[main] [ 2013-06-24 08:24:37.522 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:24:37.522 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:24:37.523 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:24:37.523 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:24:37.524 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:24:37.524 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:24:37.524 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:24:37.525 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:24:37.525 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:24:37.525 CST ] [GetActiveNodes.create:226]  Returning an existing instance of GetActiveNodes
[main] [ 2013-06-24 08:24:37.526 CST ] [UnixSystem.copyFile:659]  Copy file localnode:/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 to rac2:/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar2
[main] [ 2013-06-24 08:24:37.527 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:37.528 CST ] [UnixSystem.remoteCopyFile:636]  Copying files localnode/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 rac2/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar2
[main] [ 2013-06-24 08:24:37.528 CST ] [Utils.getLocalHost:480]  Hostname retrieved: rac1, returned: rac1
[main] [ 2013-06-24 08:24:37.529 CST ] [UnixSystem.remoteCopyFile:653]  UnixSystem: /usr/bin/scp -p /u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 rac2:'/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar2'
[main] [ 2013-06-24 08:24:37.530 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:24:37.530 CST ] [RuntimeExec.runCommand:77]  /usr/bin/scp 
[main] [ 2013-06-24 08:24:37.530 CST ] [RuntimeExec.runCommand:77]  -p 
[main] [ 2013-06-24 08:24:37.531 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 
[main] [ 2013-06-24 08:24:37.531 CST ] [RuntimeExec.runCommand:77]  rac2:'/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar2' 
[Thread-164] [ 2013-06-24 08:24:37.544 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:37.545 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-163] [ 2013-06-24 08:24:37.546 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:24:37.842 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:24:37.843 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:24:37.843 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:24:37.844 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:24:37.844 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[/usr/bin/scp -p /u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar1 rac2:'/u01/app/oracle/product/11.2.0/db_1/dbs/orapwlunar2']
[main] [ 2013-06-24 08:24:37.844 CST ] [NativeSystem.isCmdScv:549]  isCmdScv: /usr/bin/scp is present.
[main] [ 2013-06-24 08:24:37.845 CST ] [NativeSystem.isCmdScv:551]  isCmdScv: /usr/bin/scp is a file.
[main] [ 2013-06-24 08:24:37.845 CST ] [NativeSystem.isCmdScv:568]  isCmdScv: returned true
[main] [ 2013-06-24 08:24:37.845 CST ] [NativeSystem.rununixcmd:1149]  NativeSystem.rununixcmd: RetString 1| :successful
[main] [ 2013-06-24 08:24:37.846 CST ] [CopyCommand.execute:79]  CopyCommand.execute: native copyFile returns `1| :successful'
[main] [ 2013-06-24 08:24:37.847 CST ] [NativeResult.<init>:91]  NativeResult: The String obtained is1| :successful
[main] [ 2013-06-24 08:24:37.847 CST ] [NativeResult.<init>:99]  The status string is: 1
[main] [ 2013-06-24 08:24:37.847 CST ] [NativeResult.<init>:112]  The result string is:  :successful 1
[main] [ 2013-06-24 08:24:37.923 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType resource, nodeName null, filter (TYPE == ora.scan_vip.type)
[main] [ 2013-06-24 08:24:37.958 CST ] [CRSNative.internalQueryResources:1585]  found 1 resources
[main] [ 2013-06-24 08:24:37.958 CST ] [CRSNative.internalQueryResources:1587]  	ora.scan1.vip
[main] [ 2013-06-24 08:24:37.992 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.scan1.vip, type: 1, registered: true
[main] [ 2013-06-24 08:24:37.993 CST ] [ScanVIPImpl.<init>:165]  ordinal number is 1
[main] [ 2013-06-24 08:24:38.035 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.scan1.vip, type: 1, registered: true
[main] [ 2013-06-24 08:24:38.035 CST ] [ScanFactoryImpl.getScanListeners:1231]  Calling searchResources to get the listeners
[main] [ 2013-06-24 08:24:38.035 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType resource, nodeName null, filter (TYPE == ora.scan_listener.type)
[main] [ 2013-06-24 08:24:38.075 CST ] [CRSNative.internalQueryResources:1585]  found 1 resources
[main] [ 2013-06-24 08:24:38.075 CST ] [CRSNative.internalQueryResources:1587]  	ora.LISTENER_SCAN1.lsnr
[main] [ 2013-06-24 08:24:38.075 CST ] [ScanFactoryImpl.getScanListeners:1236]  The number of listeners is 1
[main] [ 2013-06-24 08:24:38.075 CST ] [ScanFactoryImpl.getScanListener:1205]  Calling new ScanListenerImpl for oracle.cluster.impl.crs.ResourceAttribute@3677eaf8
[main] [ 2013-06-24 08:24:38.076 CST ] [ScanListenerImpl.<init>:146]  displayName is LISTENER_SCAN1
[main] [ 2013-06-24 08:24:38.113 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER_SCAN1.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:24:38.113 CST ] [ScanFactoryImpl.getScanListener:1208]  Calling scanLsnr.crsResource()
[main] [ 2013-06-24 08:24:38.150 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.LISTENER_SCAN1.lsnr, type: 1, registered: true
[main] [ 2013-06-24 08:24:38.150 CST ] [ScanFactoryImpl.getScanListener:1210]  Return from scanLsnr.crsResource()
[main] [ 2013-06-24 08:24:38.151 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.scan1.vip, type: 1, node: null
[main] [ 2013-06-24 08:24:38.151 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:24:38.151 CST ] [CRSNative.getStat:1451]  		'SCAN_NAME'
[main] [ 2013-06-24 08:24:38.188 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:24:38.189 CST ] [CRSNative.getStat:1474]  	Name: 'SCAN_NAME'; Value: 'scan'
[main] [ 2013-06-24 08:24:38.189 CST ] [ScanVIPImpl.getScanName:487]  The scanName is scan
[main] [ 2013-06-24 08:24:38.189 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.scan1.vip, type: 1, node: null
[main] [ 2013-06-24 08:24:38.190 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:24:38.190 CST ] [CRSNative.getStat:1451]  		'START_DEPENDENCIES'
[main] [ 2013-06-24 08:24:38.226 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:24:38.227 CST ] [CRSNative.getStat:1474]  	Name: 'START_DEPENDENCIES'; Value: 'hard(ora.net1.network) dispersion:active(type:ora.scan_vip.type) pullup(global:ora.net1.network)'
[main] [ 2013-06-24 08:24:38.287 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.net1.network, type: 1, registered: true
[main] [ 2013-06-24 08:24:38.288 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.net1.network, type: 1, node: null
[main] [ 2013-06-24 08:24:38.288 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:24:38.289 CST ] [CRSNative.getStat:1451]  		'USR_ORA_AUTO'
[main] [ 2013-06-24 08:24:38.321 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:24:38.322 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_AUTO'; Value: 'static'
[main] [ 2013-06-24 08:24:38.322 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.LISTENER_SCAN1.lsnr, type: 1, node: null
[main] [ 2013-06-24 08:24:38.322 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:24:38.323 CST ] [CRSNative.getStat:1451]  		'ENDPOINTS'
[main] [ 2013-06-24 08:24:38.358 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:24:38.358 CST ] [CRSNative.getStat:1474]  	Name: 'ENDPOINTS'; Value: 'TCP:1521'
[main] [ 2013-06-24 08:24:38.358 CST ] [EndpointsImpl.<init>:276]  Get listener endpoints from TCP:1521
[main] [ 2013-06-24 08:24:38.359 CST ] [EndpointsImpl.<init>:302]  Token count is 1
[main] [ 2013-06-24 08:24:38.359 CST ] [EndpointsImpl.<init>:324]  LsnrProtocol type = TCP, values = 1521
[main] [ 2013-06-24 08:24:38.359 CST ] [EndpointsImpl$LsnrProtocol.addPortValue:86]  Calling parseInt to check 1521
[main] [ 2013-06-24 08:24:38.359 CST ] [EndpointsImpl$LsnrProtocol.addPortValue:97]  Get port number 1521
[main] [ 2013-06-24 08:24:38.359 CST ] [ScanListenerImpl.getEndpoints:358]  scanEndpoints =TCP:1521
[main] [ 2013-06-24 08:24:38.359 CST ] [NetConfig.configureListenerParameters:513]  Inside configure listener
[main] [ 2013-06-24 08:24:38.360 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.360 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.360 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.360 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.360 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.361 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.361 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:24:38.361 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:24:38.362 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:24:38.362 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:24:38.363 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:24:38.371 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:24:38.371 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:24:38.551 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:24:38.553 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:24:38.554 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:24:38.555 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[Thread-165] [ 2013-06-24 08:24:53.440 CST ] [Instance$RConfigErrorListener.gotError:435]  Got error
[Thread-165] [ 2013-06-24 08:24:53.441 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:450]  Number of ERRORS:1
[Thread-165] [ 2013-06-24 08:24:53.441 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:453]  ERROR=ORA-01507: database not mounted
[Thread-165] [ 2013-06-24 08:24:53.441 CST ] [Instance$RConfigErrorListener.handleNonIgnorableError:456]  Ignoring shutdown error : database not mounted
[main] [ 2013-06-24 08:25:00.138 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:25:00.139 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:00.140 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:25:00.141 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:25:00.210 CST ] [CRSNative.searchEntities:1010]  found 0 entities
[main] [ 2013-06-24 08:25:00.211 CST ] [DatabaseFactoryImpl.getDatabase:742]  Checking for pre database
[main] [ 2013-06-24 08:25:00.212 CST ] [OCRTree.init:214]  calling OCRTree.init
[main] [ 2013-06-24 08:25:00.212 CST ] [OCRTree.isDatabaseConfigured:691]  Acquiring shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:25:00.213 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:25:00.229 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:25:00.230 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:25:00.244 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:25:00.245 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:25:00.246 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:25:00.258 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:25:00.258 CST ] [OCRTree.isDatabaseConfigured:721]  Releasing shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:25:00.259 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

PRCD-1120 : The resource for database lunar could not be found.
PRCR-1001 : Resource ora.lunar.db does not exist
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:830)
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:687)
	at oracle.cluster.database.DatabaseFactory.getDatabase(DatabaseFactory.java:371)
	at oracle.sysman.assistants.rconfig.engine.CRSConfig.destroyRAC(CRSConfig.java:523)
	at oracle.sysman.assistants.rconfig.engine.Convert.runStep(Convert.java:387)
	at oracle.sysman.assistants.rconfig.engine.RACConvertStep.execute(RACConvertStep.java:191)
	at oracle.sysman.assistants.rconfig.engine.Request.execute(Request.java:79)
	at oracle.sysman.assistants.rconfig.engine.RConfigEngine.execute(RConfigEngine.java:66)
	at oracle.sysman.assistants.rconfig.RConfig.<init>(RConfig.java:97)
	at oracle.sysman.assistants.rconfig.RConfig.<init>(RConfig.java:62)
	at oracle.sysman.assistants.rconfig.RConfig.main(RConfig.java:145)
Caused by: PRCR-1001 : Resource ora.lunar.db does not exist
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:761)
	... 10 more
[main] [ 2013-06-24 08:25:00.270 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:25:00.270 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:00.273 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:25:00.274 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:25:00.326 CST ] [CRSNative.searchEntities:1010]  found 0 entities
[main] [ 2013-06-24 08:25:00.326 CST ] [DatabaseFactoryImpl.getDatabase:742]  Checking for pre database
[main] [ 2013-06-24 08:25:00.327 CST ] [OCRTree.init:214]  calling OCRTree.init
[main] [ 2013-06-24 08:25:00.328 CST ] [OCRTree.isDatabaseConfigured:691]  Acquiring shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:25:00.328 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: acquireShared

[main] [ 2013-06-24 08:25:00.338 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:25:00.340 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:25:00.352 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:25:00.353 CST ] [OCR.keyExists:692]  OCR.keyExists(DATABASE.DATABASES.lunar)
[main] [ 2013-06-24 08:25:00.353 CST ] [nativesystem.OCRNative.Native]  keyExists: calling procr_open_key(DATABASE.DATABASES.lunar)

[main] [ 2013-06-24 08:25:00.367 CST ] [nativesystem.OCRNative.Native]  keyExists: procr_open_key retval = 4 

[main] [ 2013-06-24 08:25:00.367 CST ] [OCRTree.isDatabaseConfigured:721]  Releasing shared CSS lock SRVM.DATABASE.DATABASES
[main] [ 2013-06-24 08:25:00.368 CST ] [has.ClusterLockNative.Native]  prsr_trace: Native: unlock

PRCD-1120 : The resource for database lunar could not be found.
PRCR-1001 : Resource ora.lunar.db does not exist
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:830)
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:687)
	at oracle.cluster.database.DatabaseFactory.getDatabase(DatabaseFactory.java:371)
	at oracle.sysman.assistants.rconfig.engine.CRSConfig.createRAC(CRSConfig.java:112)
	at oracle.sysman.assistants.rconfig.engine.Convert.runStep(Convert.java:388)
	at oracle.sysman.assistants.rconfig.engine.RACConvertStep.execute(RACConvertStep.java:191)
	at oracle.sysman.assistants.rconfig.engine.Request.execute(Request.java:79)
	at oracle.sysman.assistants.rconfig.engine.RConfigEngine.execute(RConfigEngine.java:66)
	at oracle.sysman.assistants.rconfig.RConfig.<init>(RConfig.java:97)
	at oracle.sysman.assistants.rconfig.RConfig.<init>(RConfig.java:62)
	at oracle.sysman.assistants.rconfig.RConfig.main(RConfig.java:145)
Caused by: PRCR-1001 : Resource ora.lunar.db does not exist
	at oracle.cluster.impl.database.DatabaseFactoryImpl.getDatabase(DatabaseFactoryImpl.java:761)
	... 10 more
[main] [ 2013-06-24 08:25:00.401 CST ] [Storage.extractDiskGroup:402]  index of /=-1
[main] [ 2013-06-24 08:25:00.401 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:25:00.402 CST ] [CRSConfig.createRAC:161]  Data Diskgroups ASMDATA
[main] [ 2013-06-24 08:25:00.402 CST ] [Storage.extractDiskGroup:402]  index of /=-1
[main] [ 2013-06-24 08:25:00.402 CST ] [Storage.extractDiskGroup:415]  Extracted Value=ASMDATA
[main] [ 2013-06-24 08:25:00.403 CST ] [DiskGroupImpl.<init>:108]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:25:00.456 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:25:00.457 CST ] [DiskGroupImpl.<init>:138]  name = ora.ASMDATA.dg, display name = ASMDATA
[main] [ 2013-06-24 08:25:00.458 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:25:00.459 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:25:00.459 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName

[main] [ 2013-06-24 08:25:00.459 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname length: 256

[main] [ 2013-06-24 08:25:00.465 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname: rac1

[main] [ 2013-06-24 08:25:00.466 CST ] [GetActiveNodes.getHostName:518]  hostname = rac1
[main] [ 2013-06-24 08:25:00.466 CST ] [Cluster.getHostName:1215]  hostname = rac1
[main] [ 2013-06-24 08:25:00.466 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:25:00.467 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:25:00.467 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName

[main] [ 2013-06-24 08:25:00.469 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname length: 256

[main] [ 2013-06-24 08:25:00.475 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname: rac2

[main] [ 2013-06-24 08:25:00.476 CST ] [GetActiveNodes.getHostName:518]  hostname = rac2
[main] [ 2013-06-24 08:25:00.476 CST ] [Cluster.getHostName:1215]  hostname = rac2
[main] [ 2013-06-24 08:25:00.477 CST ] [CRSConfig.createRAC:191]  Creating Legacy type server Group :lunar
[main] [ 2013-06-24 08:25:00.477 CST ] [ServerPoolImpl.<init>:148]  m_name = Generic, m_displayName = Generic
[main] [ 2013-06-24 08:25:00.516 CST ] [CRSNative.isEntityRegistered:737]  entity: Generic, type: 3, registered: true
[main] [ 2013-06-24 08:25:00.516 CST ] [ServerPoolImpl.<init>:148]  m_name = ora.lunar, m_displayName = lunar
[main] [ 2013-06-24 08:25:00.518 CST ] [CRSNative.register:1427]  About to register: name: ora.lunar, type: 3, update: false, force: false
[main] [ 2013-06-24 08:25:00.518 CST ] [CRSNative.register:1435]  	Name: 'NAME', Value: 'ora.lunar'
[main] [ 2013-06-24 08:25:00.519 CST ] [CRSNative.register:1435]  	Name: 'MIN_SIZE', Value: '0'
[main] [ 2013-06-24 08:25:00.519 CST ] [CRSNative.register:1435]  	Name: 'MAX_SIZE', Value: '-1'
[main] [ 2013-06-24 08:25:00.521 CST ] [CRSNative.register:1435]  	Name: 'IMPORTANCE', Value: '1'
[main] [ 2013-06-24 08:25:00.522 CST ] [CRSNative.register:1435]  	Name: 'PARENT_POOLS', Value: 'Generic'
[main] [ 2013-06-24 08:25:00.522 CST ] [CRSNative.register:1435]  	Name: 'SERVER_NAMES', Value: 'rac1 rac2'
[main] [ 2013-06-24 08:25:00.522 CST ] [CRSNative.register:1435]  	Name: 'EXCLUSIVE_POOLS', Value: ''
[main] [ 2013-06-24 08:25:01.220 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:25:01.221 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:25:01.223 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName

[main] [ 2013-06-24 08:25:01.224 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname length: 256

[main] [ 2013-06-24 08:25:01.237 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname: rac1

[main] [ 2013-06-24 08:25:01.238 CST ] [GetActiveNodes.getHostName:518]  hostname = rac1
[main] [ 2013-06-24 08:25:01.239 CST ] [Cluster.getHostName:1215]  hostname = rac1
[main] [ 2013-06-24 08:25:01.240 CST ] [ClusterUtil.<init>:72]  ClusterUtil Instance created
[main] [ 2013-06-24 08:25:01.242 CST ] [ClusterUtil.<init>:75]  ClusterUtil m_bSKGXN=true
[main] [ 2013-06-24 08:25:01.247 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName

[main] [ 2013-06-24 08:25:01.253 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname length: 256

[main] [ 2013-06-24 08:25:01.282 CST ] [has.ClusterUtilNative.Native]  prsr_trace: Native: getHostName:hostname: rac2

[main] [ 2013-06-24 08:25:01.283 CST ] [GetActiveNodes.getHostName:518]  hostname = rac2
[main] [ 2013-06-24 08:25:01.284 CST ] [Cluster.getHostName:1215]  hostname = rac2
[main] [ 2013-06-24 08:25:01.285 CST ] [CRSConfig.createRAC:211]  Trying to create dbcentric database: lunar OH=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:25:01.286 CST ] [CRSConfig.createRAC:216]  nodeNames[0]=rac1 gets instNames[0]=lunar1
[main] [ 2013-06-24 08:25:01.287 CST ] [CRSConfig.createRAC:216]  nodeNames[1]=rac2 gets instNames[1]=lunar2
[main] [ 2013-06-24 08:25:01.291 CST ] [ServerPoolImpl.<init>:148]  m_name = ora.lunar, m_displayName = lunar
[main] [ 2013-06-24 08:25:01.372 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar, type: 3, registered: true
[main] [ 2013-06-24 08:25:01.455 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:25:01.456 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:01.458 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:25:01.459 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:25:01.460 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:25:01.462 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:25:01.462 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:25:01.465 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:25:01.466 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:25:01.467 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:25:01.470 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome

[main] [ 2013-06-24 08:25:01.475 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCRSHome crs_home=/u01/11.2.0/grid(**)

[main] [ 2013-06-24 08:25:01.477 CST ] [HASContext.getCRSHome:579]  /u01/11.2.0/grid
[main] [ 2013-06-24 08:25:01.478 CST ] [Util.getCRSHome:580]  getCRSHome: ret=/u01/11.2.0/grid
[main] [ 2013-06-24 08:25:01.485 CST ] [SRVCTLUtil.<init>:80]  Check /u01/app/oracle/product/11.2.0/db_1/bin/srvctl
[main] [ 2013-06-24 08:25:01.491 CST ] [SRVCTLUtil.getVersion:121]  Env contains SRVM_TRACE: false
[main] [ 2013-06-24 08:25:01.492 CST ] [SRVCTLUtil.getVersion:123]  Env value of SRVM_TRACE is : null
[main] [ 2013-06-24 08:25:01.494 CST ] [SRVCTLUtil.getVersion:126]  After remove, Env value of SRVM_TRACEis : null
[main] [ 2013-06-24 08:25:01.495 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:25:01.496 CST ] [RuntimeExec.runCommand:77]  /u01/app/oracle/product/11.2.0/db_1/bin/srvctl 
[main] [ 2013-06-24 08:25:01.497 CST ] [RuntimeExec.runCommand:77]  -V 
[main] [ 2013-06-24 08:25:01.497 CST ] [RuntimeExec.runCommand:80]  runCommand: m_env = 
[main] [ 2013-06-24 08:25:01.498 CST ] [RuntimeExec.runCommand:82]   0:XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt
[main] [ 2013-06-24 08:25:01.499 CST ] [RuntimeExec.runCommand:82]   1:LANG=en_US.UTF-8
[main] [ 2013-06-24 08:25:01.502 CST ] [RuntimeExec.runCommand:82]   2:ORACLE_BASE=/u01/app/oracle
[main] [ 2013-06-24 08:25:01.503 CST ] [RuntimeExec.runCommand:82]   3:PWD=/home/oracle/test
[main] [ 2013-06-24 08:25:01.503 CST ] [RuntimeExec.runCommand:82]   4:_=/u01/app/oracle/product/11.2.0/db_1/jdk/jre/bin/java
[main] [ 2013-06-24 08:25:01.504 CST ] [RuntimeExec.runCommand:82]   5:TNS_ADMIN=
[main] [ 2013-06-24 08:25:01.505 CST ] [RuntimeExec.runCommand:82]   6:ORACLE_SID=lunar1
[main] [ 2013-06-24 08:25:01.507 CST ] [RuntimeExec.runCommand:82]   7:USER=oracle
[main] [ 2013-06-24 08:25:01.507 CST ] [RuntimeExec.runCommand:82]   8:NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat
[main] [ 2013-06-24 08:25:01.508 CST ] [RuntimeExec.runCommand:82]   9:CLASSPATH=/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/rt.jar:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/i18n.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/jlib/rconfigPatch.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/jlib/rconfig.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/jlib/assistantsCommon.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/ewt3.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/ewtcompat-3_3_15.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/share.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/help4.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/jewt4.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/oracle_ice5.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/kodiak.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/swingall-1_1_1.jar:/u01/app/oracle/product/11.2.0/db_1/lib/xmlparserv2.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n-mapping.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n-utility.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/orai18n-collation.jar::/u01/app/oracle/product/11.2.0/db_1/jlib/ldapjclnt11.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/netcfg.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/ojmisc.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/oraclepki103.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/opm.jar:/u01/app/oracle/product/11.2.0/db_1/jdbc/lib/ojdbc5.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/srvm.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/srvmhas.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/srvmasm.jar:/u01/app/oracle/product/11.2.0/db_1/classes:/u01/app/oracle/product/11.2.0/db_1/jlib/oemlt.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/emca.jar:/u01/app/oracle/product/11.2.0/db_1/sysman/jlib/emCORE.jar:/u01/app/oracle/product/11.2.0/db_1/oc4j/j2ee/home/oc4j.jar:/u01/app/oracle/product/11.2.0/db_1/oc4j/j2ee/home/db_oc4j_deploy.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/emConfigInstall.jar:/u01/app/oracle/product/11.2.0/db_1/oui/jlib/OraInstaller.jar:/u01/app/oracle/product/11.2.0/db_1/oui/jlib/OraPrereq.jar:/u01/app/oracle/product/11.2.0/db_1/inventory/prereqs/oui/OraPrereqChecks.jar:/u01/app/oracle/product/11.2.0/db_1/oui/jlib/OraPrereqChecks.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/cvu.jar:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/ext/sunjce_provider.jar:/u01/app/oracle/product/11.2.0/db_1/assistants/asmca/jlib/asmca.jar:/u01/app/oracle/product/11.2.0/db_1/jlib/gns.jar
[main] [ 2013-06-24 08:25:01.509 CST ] [RuntimeExec.runCommand:82]   10:G_BROKEN_FILENAMES=1
[main] [ 2013-06-24 08:25:01.510 CST ] [RuntimeExec.runCommand:82]   11:HOME=/home/oracle
[main] [ 2013-06-24 08:25:01.510 CST ] [RuntimeExec.runCommand:82]   12:HOSTNAME=rac1
[main] [ 2013-06-24 08:25:01.512 CST ] [RuntimeExec.runCommand:82]   13:LESSOPEN=|/usr/bin/lesspipe.sh %s
[main] [ 2013-06-24 08:25:01.513 CST ] [RuntimeExec.runCommand:82]   14:LD_LIBRARY_PATH=/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64/server:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/lib/amd64:/u01/app/oracle/product/11.2.0/db_1/jdk/jre/../lib/amd64:/u01/app/oracle/product/11.2.0/db_1/lib:/u01/app/oracle/product/11.2.0/db_1/network/lib:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib
[main] [ 2013-06-24 08:25:01.513 CST ] [RuntimeExec.runCommand:82]   15:SHELL=/bin/bash
[main] [ 2013-06-24 08:25:01.514 CST ] [RuntimeExec.runCommand:82]   16:SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
[main] [ 2013-06-24 08:25:01.515 CST ] [RuntimeExec.runCommand:82]   17:LOGNAME=oracle
[main] [ 2013-06-24 08:25:01.516 CST ] [RuntimeExec.runCommand:82]   18:ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
[main] [ 2013-06-24 08:25:01.516 CST ] [RuntimeExec.runCommand:82]   19:CVS_RSH=ssh
[main] [ 2013-06-24 08:25:01.517 CST ] [RuntimeExec.runCommand:82]   20:INPUTRC=/etc/inputrc
[main] [ 2013-06-24 08:25:01.519 CST ] [RuntimeExec.runCommand:82]   21:SHLVL=2
[main] [ 2013-06-24 08:25:01.520 CST ] [RuntimeExec.runCommand:82]   22:MAIL=/var/spool/mail/oracle
[main] [ 2013-06-24 08:25:01.520 CST ] [RuntimeExec.runCommand:82]   23:LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.sh=01;32:*.csh=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.cpio=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:
[main] [ 2013-06-24 08:25:01.521 CST ] [RuntimeExec.runCommand:82]   24:HISTSIZE=1000
[main] [ 2013-06-24 08:25:01.522 CST ] [RuntimeExec.runCommand:82]   25:TERM=vt100
[main] [ 2013-06-24 08:25:01.523 CST ] [RuntimeExec.runCommand:82]   26:PATH=/u01/app/oracle/product/11.2.0/db_1/OPatch:/u01/app/oracle/product/11.2.0/db_1/bin:/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/u01/app/oracle/product/11.2.0/db_1/bin:/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/oracle/bin
[Thread-168] [ 2013-06-24 08:25:01.541 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:25:01.544 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-167] [ 2013-06-24 08:25:01.545 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-167] [ 2013-06-24 08:25:02.496 CST ] [StreamReader.run:65]  OUTPUT>srvctl version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:02.558 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 0
[main] [ 2013-06-24 08:25:02.558 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:25:02.559 CST ] [RuntimeExec.runCommand:164]  srvctl version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:02.559 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:25:02.560 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:25:02.560 CST ] [SRVCTLUtil.getVersion:173]  Command output for SRVCTL -V issrvctl version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:02.561 CST ] [SRVCTLUtil.getVersionFromResult:208]  Parsing Output line:srvctl version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:02.561 CST ] [SRVCTLUtil.getVersionFromResult:226]  First Token is srvctl version, checking if it contains srvctl before the colon
[main] [ 2013-06-24 08:25:02.565 CST ] [Version$VersionEnum.getEnumMember:196]  Version Match Successful: returning version object 11.2.0.3
[main] [ 2013-06-24 08:25:02.565 CST ] [Util.<init>:95]  Util Instance created.
[main] [ 2013-06-24 08:25:02.566 CST ] [has.UtilNative.Native]  prsr_trace: Native: getOracleUser

[main] [ 2013-06-24 08:25:02.566 CST ] [has.UtilNative.Native]  prsr_trace: Native: prsr_getOracleUserID

[main] [ 2013-06-24 08:25:02.566 CST ] [has.UtilNative.Native]  prsr_trace: 	OH=/u01/app/oracle/product/11.2.0/db_1 SID=NULLSID

[main] [ 2013-06-24 08:25:02.568 CST ] [has.UtilNative.Native]  prsr_trace: scls returned=0

[main] [ 2013-06-24 08:25:02.569 CST ] [has.UtilNative.Native]  prsr_trace: Native: prsr_getUserName

[main] [ 2013-06-24 08:25:02.569 CST ] [has.UtilNative.Native]  prsr_trace: Native: prsr_allocUserName

[main] [ 2013-06-24 08:25:02.569 CST ] [has.UtilNative.Native]  prsr_trace: get_user_name_by_id ret=0, insz=32, sz=6, name=oracle

[main] [ 2013-06-24 08:25:02.570 CST ] [has.UtilNative.Native]  prsr_trace: Native: getCurrentUser

[main] [ 2013-06-24 08:25:02.570 CST ] [has.UtilNative.Native]  prsr_trace: Native: prsr_getUserName

[main] [ 2013-06-24 08:25:02.570 CST ] [has.UtilNative.Native]  prsr_trace: Native: prsr_allocUserName

[main] [ 2013-06-24 08:25:02.570 CST ] [has.UtilNative.Native]  prsr_trace: get_user_name_by_id ret=0, insz=32, sz=6, name=oracle

[main] [ 2013-06-24 08:25:02.571 CST ] [has.UtilNative.Native]  prsr_trace: got uname=oracle

[main] [ 2013-06-24 08:25:02.571 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:25:02.571 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:02.571 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:25:02.572 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:25:02.572 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:25:02.573 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:25:02.574 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:25:02.574 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:25:02.574 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:25:02.622 CST ] [CRSNativeResult.addComp:162]  add comp: name ora.lunar.db, rc 210, msg CRS-0210: Could not find resource 'ora.lunar.db'.
[main] [ 2013-06-24 08:25:02.626 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: false
[main] [ 2013-06-24 08:25:02.675 CST ] [CRSNativeResult.addComp:162]  add comp: name ora.lunar.db, rc 210, msg CRS-0210: Could not find resource 'ora.lunar.db'.
[main] [ 2013-06-24 08:25:02.676 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: false
[main] [ 2013-06-24 08:25:02.677 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:25:02.677 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:02.677 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:25:02.677 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:25:02.678 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:25:02.679 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:25:02.679 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:25:02.679 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:25:02.680 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:25:02.680 CST ] [DatabaseImpl.create:457]  Checking server group configuration
[main] [ 2013-06-24 08:25:02.681 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType server pool, nodeName null, filter (((NAME == ora.lunar) && (PARENT_POOLS != )) || (PARENT_POOLS CONTAINS ora.lunar))
[main] [ 2013-06-24 08:25:02.714 CST ] [CRSNative.internalQueryResources:1585]  found 1 resources
[main] [ 2013-06-24 08:25:02.714 CST ] [CRSNative.internalQueryResources:1587]  	ora.lunar
[main] [ 2013-06-24 08:25:02.715 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType resource, nodeName null, filter ((TYPE == ora.database.type) && (SERVER_POOLS CONTAINS ora.lunar))
[main] [ 2013-06-24 08:25:02.753 CST ] [CRSNative.internalQueryResources:1585]  found 0 resources
[main] [ 2013-06-24 08:25:02.753 CST ] [DatabaseFactoryImpl.getDatabases:1133]  No database was found hosted by server pool =ora.lunar
[main] [ 2013-06-24 08:25:02.763 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType resource, nodeName null, filter ((TYPE == ora.service.type) && (SERVER_POOLS CONTAINS ora.lunar))
[main] [ 2013-06-24 08:25:02.807 CST ] [CRSNative.internalQueryResources:1585]  found 0 resources
[main] [ 2013-06-24 08:25:02.807 CST ] [DatabaseFactoryImpl.getServices:2243]  No service was found hosted by server pool =ora.lunar
[main] [ 2013-06-24 08:25:02.808 CST ] [DatabaseImpl.create:515]  no existing db or service hosted by server group, lunar
[main] [ 2013-06-24 08:25:02.808 CST ] [DatabaseImpl.create:520]  Done with server group check: AdminManaged=true
[main] [ 2013-06-24 08:25:02.809 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:25:02.809 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:02.810 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:25:02.810 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:25:02.811 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:25:02.811 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:25:02.811 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:25:02.811 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:25:02.812 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:25:02.818 CST ] [NativeSystem.isCmdScv:499]  isCmdScv: cmd=[]
[main] [ 2013-06-24 08:25:02.818 CST ] [RuntimeExec.runCommand:75]  Calling Runtime.exec() with the command 
[main] [ 2013-06-24 08:25:02.819 CST ] [RuntimeExec.runCommand:77]  /bin/sh 
[main] [ 2013-06-24 08:25:02.819 CST ] [RuntimeExec.runCommand:77]  -c 
[main] [ 2013-06-24 08:25:02.819 CST ] [RuntimeExec.runCommand:77]  /sbin//acfsutil info fs -o mountpoints /u01/app/oracle/product/11.2.0/db_1 
[Thread-170] [ 2013-06-24 08:25:02.827 CST ] [StreamReader.run:61]  In StreamReader.run 
[main] [ 2013-06-24 08:25:02.829 CST ] [RuntimeExec.runCommand:142]  runCommand: Waiting for the process
[Thread-169] [ 2013-06-24 08:25:02.829 CST ] [StreamReader.run:61]  In StreamReader.run 
[Thread-170] [ 2013-06-24 08:25:02.835 CST ] [StreamReader.run:65]  ERROR>/bin/sh: /sbin//acfsutil: No such file or directory
[main] [ 2013-06-24 08:25:02.836 CST ] [RuntimeExec.runCommand:144]  runCommand: process returns 127
[main] [ 2013-06-24 08:25:02.836 CST ] [RuntimeExec.runCommand:161]  RunTimeExec: output>
[main] [ 2013-06-24 08:25:02.837 CST ] [RuntimeExec.runCommand:170]  RunTimeExec: error>
[main] [ 2013-06-24 08:25:02.837 CST ] [RuntimeExec.runCommand:173]  /bin/sh: /sbin//acfsutil: No such file or directory
[main] [ 2013-06-24 08:25:02.837 CST ] [RuntimeExec.runCommand:192]  Returning from RunTimeExec.runCommand
[main] [ 2013-06-24 08:25:02.837 CST ] [UnixSystem.dorunRemoteExecCmd:3198]  retval = 127
[main] [ 2013-06-24 08:25:02.838 CST ] [CmdToolUtil.doexecute:473]  nativeSystem.runRemoteExecCmd failed. Command = /sbin//acfsutil arguments = [info, fs, -o, mountpoints, /u01/app/oracle/product/11.2.0/db_1] env = null error = /bin/sh: /sbin//acfsutil: No such file or directory
[main] [ 2013-06-24 08:25:02.851 CST ] [DatabaseImpl.getACFS:3705]  non fatal, exception encountered when getting mountpoint for oracle home
[main] [ 2013-06-24 08:25:02.852 CST ] [DatabaseImpl.create:605]  instance Name = lunar2
[main] [ 2013-06-24 08:25:02.852 CST ] [DatabaseImpl.create:605]  instance Name = lunar1
[main] [ 2013-06-24 08:25:02.890 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.ASMDATA.dg, type: 1, registered: true
[main] [ 2013-06-24 08:25:02.890 CST ] [DatabaseImpl.create:632]  Checking for ora.database.type
[main] [ 2013-06-24 08:25:02.932 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.database.type, type: 2, registered: true
[main] [ 2013-06-24 08:25:02.932 CST ] [SoftwareModuleImpl.isTypeUpgradeNeeded:855]  name = ora.database.type
[main] [ 2013-06-24 08:25:02.932 CST ] [SoftwareModuleImpl.isTypeUpgradeNeeded:861]  type version = 3.2
[main] [ 2013-06-24 08:25:02.933 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.database.type, type: 2, node: null
[main] [ 2013-06-24 08:25:02.933 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:25:02.934 CST ] [CRSNative.getStat:1451]  		'TYPE_VERSION'
[main] [ 2013-06-24 08:25:02.970 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:25:02.971 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE_VERSION'; Value: '3.2'
[main] [ 2013-06-24 08:25:02.972 CST ] [DatabaseImpl.upgradeTypes:5251]  Database type need upgrading?: false
[main] [ 2013-06-24 08:25:02.972 CST ] [DatabaseImpl.upgradeTypes:5292]  Preparing to upgrade service type
[main] [ 2013-06-24 08:25:03.007 CST ] [CRSNativeResult.addComp:162]  add comp: name ora.service.type, rc 210, msg CRS-0210: Could not find resource 'ora.service.type'.
[main] [ 2013-06-24 08:25:03.008 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.service.type, type: 2, registered: false
[main] [ 2013-06-24 08:25:03.009 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.database.type, type: 2, node: null
[main] [ 2013-06-24 08:25:03.049 CST ] [CRSNative.getStat:1464]  crs found 35 attributes
[main] [ 2013-06-24 08:25:03.050 CST ] [CRSNative.getStat:1474]  	Name: 'AGENT_FILENAME'; Value: '%CRS_HOME%/bin/oraagent%CRS_EXE_SUFFIX%'
[main] [ 2013-06-24 08:25:03.051 CST ] [CRSNative.getStat:1474]  	Name: 'BASE_TYPE'; Value: 'ora.cluster_resource.type'
[main] [ 2013-06-24 08:25:03.051 CST ] [CRSNative.getStat:1474]  	Name: 'CHECK_INTERVAL'; Value: '1'
[main] [ 2013-06-24 08:25:03.051 CST ] [CRSNative.getStat:1474]  	Name: 'CHECK_TIMEOUT'; Value: '30'
[main] [ 2013-06-24 08:25:03.052 CST ] [CRSNative.getStat:1474]  	Name: 'CLUSTER_DATABASE'; Value: 'true'
[main] [ 2013-06-24 08:25:03.052 CST ] [CRSNative.getStat:1474]  	Name: 'DATABASE_TYPE'; Value: ''
[main] [ 2013-06-24 08:25:03.052 CST ] [CRSNative.getStat:1474]  	Name: 'DB_UNIQUE_NAME'; Value: ''
[main] [ 2013-06-24 08:25:03.052 CST ] [CRSNative.getStat:1474]  	Name: 'DEFAULT_TEMPLATE'; Value: 'PROPERTY(RESOURCE_CLASS=database) PROPERTY(DB_UNIQUE_NAME= CONCAT(PARSE(%NAME%, ., 2), %USR_ORA_DOMAIN%, .)) ELEMENT(INSTANCE_NAME= %GEN_USR_ORA_INST_NAME%)'
[main] [ 2013-06-24 08:25:03.053 CST ] [CRSNative.getStat:1474]  	Name: 'DESCRIPTION'; Value: 'CRS resource type definition for Oracle Database'
[main] [ 2013-06-24 08:25:03.053 CST ] [CRSNative.getStat:1474]  	Name: 'FAILURE_INTERVAL'; Value: '60'
[main] [ 2013-06-24 08:25:03.054 CST ] [CRSNative.getStat:1474]  	Name: 'FAILURE_THRESHOLD'; Value: '1'
[main] [ 2013-06-24 08:25:03.054 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_AUDIT_FILE_DEST'; Value: ''
[main] [ 2013-06-24 08:25:03.054 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_START_OPTIONS'; Value: ''
[main] [ 2013-06-24 08:25:03.055 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_USR_ORA_INST_NAME'; Value: ''
[main] [ 2013-06-24 08:25:03.055 CST ] [CRSNative.getStat:1474]  	Name: 'INSTANCE_FAILOVER'; Value: '1'
[main] [ 2013-06-24 08:25:03.056 CST ] [CRSNative.getStat:1474]  	Name: 'MANAGEMENT_POLICY'; Value: 'AUTOMATIC'
[main] [ 2013-06-24 08:25:03.058 CST ] [CRSNative.getStat:1474]  	Name: 'ONLINE_RELOCATION_TIMEOUT'; Value: '0'
[main] [ 2013-06-24 08:25:03.059 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME'; Value: ''
[main] [ 2013-06-24 08:25:03.060 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME_OLD'; Value: ''
[main] [ 2013-06-24 08:25:03.061 CST ] [CRSNative.getStat:1474]  	Name: 'RESTART_ATTEMPTS'; Value: '2'
[main] [ 2013-06-24 08:25:03.063 CST ] [CRSNative.getStat:1474]  	Name: 'ROLE'; Value: 'PRIMARY'
[main] [ 2013-06-24 08:25:03.065 CST ] [CRSNative.getStat:1474]  	Name: 'SERVER_POOLS'; Value: ''
[main] [ 2013-06-24 08:25:03.065 CST ] [CRSNative.getStat:1474]  	Name: 'SPFILE'; Value: ''
[main] [ 2013-06-24 08:25:03.066 CST ] [CRSNative.getStat:1474]  	Name: 'START_TIMEOUT'; Value: '600'
[main] [ 2013-06-24 08:25:03.068 CST ] [CRSNative.getStat:1474]  	Name: 'STOP_TIMEOUT'; Value: '600'
[main] [ 2013-06-24 08:25:03.070 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE_ACL'; Value: 'owner:oracle:rwx,pgrp:oinstall:rwx,other::r--'
[main] [ 2013-06-24 08:25:03.071 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE_NAME'; Value: 'ora.database.type'
[main] [ 2013-06-24 08:25:03.072 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE_VERSION'; Value: '3.2'
[main] [ 2013-06-24 08:25:03.072 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_DB_NAME'; Value: ''
[main] [ 2013-06-24 08:25:03.073 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_DOMAIN'; Value: ''
[main] [ 2013-06-24 08:25:03.074 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_FLAGS'; Value: ''
[main] [ 2013-06-24 08:25:03.076 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME'; Value: ''
[main] [ 2013-06-24 08:25:03.077 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_OPEN_MODE'; Value: 'open'
[main] [ 2013-06-24 08:25:03.078 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_OPI'; Value: 'false'
[main] [ 2013-06-24 08:25:03.081 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_STOP_MODE'; Value: 'immediate'
[main] [ 2013-06-24 08:25:03.114 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.listener.type, type: 2, registered: true
[main] [ 2013-06-24 08:25:03.150 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.scan_listener.type, type: 2, registered: true
[main] [ 2013-06-24 08:25:03.151 CST ] [DatabaseImpl.create:699]  Updating database attributes
[main] [ 2013-06-24 08:25:03.151 CST ] [DatabaseImpl.create:719]  dbUniqueName = lunar
[main] [ 2013-06-24 08:25:03.152 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:25:03.152 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:03.152 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:25:03.153 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:25:03.153 CST ] [DatabaseImpl.getServerGroupString:4863]  ==========server group name is ora.lunar
[main] [ 2013-06-24 08:25:03.153 CST ] [DatabaseImpl.create:878]  Creating USR_ORA_INST_NAME@NODENAME....
[main] [ 2013-06-24 08:25:03.154 CST ] [DatabaseImpl.create:885]  nodeName = rac2, instanceName = lunar2
[main] [ 2013-06-24 08:25:03.154 CST ] [DatabaseImpl.create:885]  nodeName = rac1, instanceName = lunar1
[main] [ 2013-06-24 08:25:03.155 CST ] [DatabaseImpl.create:906]  adding cardinality of size 2 to the admin managed db
[main] [ 2013-06-24 08:25:03.155 CST ] [DatabaseImpl.create:920]  Creating dependencies
[main] [ 2013-06-24 08:25:03.201 CST ] [DatabaseImpl.createStartDep:4524]  hardDep = hard(ora.ASMDATA.dg)
[main] [ 2013-06-24 08:25:03.202 CST ] [DatabaseImpl.createStartDep:4593]  pullDep = pullup(ora.ASMDATA.dg)
[main] [ 2013-06-24 08:25:03.203 CST ] [DatabaseImpl.createStopDep:4753]  creating stop dependencies
[main] [ 2013-06-24 08:25:03.204 CST ] [DatabaseImpl.createStopDep:4826]  stop dependencies = hard(intermediate:ora.asm,shutdown:ora.ASMDATA.dg)
[main] [ 2013-06-24 08:25:03.241 CST ] [CRSNativeResult.addComp:162]  add comp: name ora.lunar.db, rc 210, msg CRS-0210: Could not find resource 'ora.lunar.db'.
[main] [ 2013-06-24 08:25:03.242 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: false
[main] [ 2013-06-24 08:25:03.244 CST ] [CRSNative.register:1427]  About to register: name: ora.lunar.db, type: 1, update: false, force: false
[main] [ 2013-06-24 08:25:03.245 CST ] [CRSNative.register:1435]  	Name: 'AGENT_FILENAME', Value: '%CRS_HOME%/bin/oraagent%CRS_EXE_SUFFIX%'
[main] [ 2013-06-24 08:25:03.246 CST ] [CRSNative.register:1435]  	Name: 'CHECK_INTERVAL', Value: '1'
[main] [ 2013-06-24 08:25:03.247 CST ] [CRSNative.register:1435]  	Name: 'CHECK_TIMEOUT', Value: '30'
[main] [ 2013-06-24 08:25:03.248 CST ] [CRSNative.register:1435]  	Name: 'CLUSTER_DATABASE', Value: 'true'
[main] [ 2013-06-24 08:25:03.250 CST ] [CRSNative.register:1435]  	Name: 'DATABASE_TYPE', Value: 'RAC'
[main] [ 2013-06-24 08:25:03.252 CST ] [CRSNative.register:1435]  	Name: 'DB_UNIQUE_NAME', Value: 'lunar'
[main] [ 2013-06-24 08:25:03.253 CST ] [CRSNative.register:1435]  	Name: 'DEFAULT_TEMPLATE', Value: 'PROPERTY(RESOURCE_CLASS=database) PROPERTY(DB_UNIQUE_NAME= CONCAT(PARSE(%NAME%, ., 2), %USR_ORA_DOMAIN%, .)) ELEMENT(INSTANCE_NAME= %GEN_USR_ORA_INST_NAME%) ELEMENT(DATABASE_TYPE= %DATABASE_TYPE%)'
[main] [ 2013-06-24 08:25:03.254 CST ] [CRSNative.register:1435]  	Name: 'DESCRIPTION', Value: 'Oracle Database resource'
[main] [ 2013-06-24 08:25:03.256 CST ] [CRSNative.register:1435]  	Name: 'FAILURE_INTERVAL', Value: '60'
[main] [ 2013-06-24 08:25:03.258 CST ] [CRSNative.register:1435]  	Name: 'FAILURE_THRESHOLD', Value: '1'
[main] [ 2013-06-24 08:25:03.259 CST ] [CRSNative.register:1435]  	Name: 'GEN_AUDIT_FILE_DEST', Value: ''
[main] [ 2013-06-24 08:25:03.260 CST ] [CRSNative.register:1435]  	Name: 'GEN_START_OPTIONS', Value: ''
[main] [ 2013-06-24 08:25:03.261 CST ] [CRSNative.register:1435]  	Name: 'GEN_USR_ORA_INST_NAME', Value: ''
[main] [ 2013-06-24 08:25:03.261 CST ] [CRSNative.register:1435]  	Name: 'INSTANCE_FAILOVER', Value: '0'
[main] [ 2013-06-24 08:25:03.262 CST ] [CRSNative.register:1435]  	Name: 'MANAGEMENT_POLICY', Value: 'AUTOMATIC'
[main] [ 2013-06-24 08:25:03.263 CST ] [CRSNative.register:1435]  	Name: 'ONLINE_RELOCATION_TIMEOUT', Value: '0'
[main] [ 2013-06-24 08:25:03.263 CST ] [CRSNative.register:1435]  	Name: 'ORACLE_HOME', Value: '/u01/app/oracle/product/11.2.0/db_1'
[main] [ 2013-06-24 08:25:03.264 CST ] [CRSNative.register:1435]  	Name: 'ORACLE_HOME_OLD', Value: ''
[main] [ 2013-06-24 08:25:03.264 CST ] [CRSNative.register:1435]  	Name: 'RESTART_ATTEMPTS', Value: '2'
[main] [ 2013-06-24 08:25:03.264 CST ] [CRSNative.register:1435]  	Name: 'ROLE', Value: 'PRIMARY'
[main] [ 2013-06-24 08:25:03.265 CST ] [CRSNative.register:1435]  	Name: 'SERVER_POOLS', Value: 'ora.lunar'
[main] [ 2013-06-24 08:25:03.267 CST ] [CRSNative.register:1435]  	Name: 'SPFILE', Value: '+ASMDATA/spfilelunar1.ora'
[main] [ 2013-06-24 08:25:03.267 CST ] [CRSNative.register:1435]  	Name: 'START_TIMEOUT', Value: '600'
[main] [ 2013-06-24 08:25:03.268 CST ] [CRSNative.register:1435]  	Name: 'STOP_TIMEOUT', Value: '600'
[main] [ 2013-06-24 08:25:03.268 CST ] [CRSNative.register:1435]  	Name: 'TYPE', Value: 'ora.database.type'
[main] [ 2013-06-24 08:25:03.269 CST ] [CRSNative.register:1435]  	Name: 'TYPE_VERSION', Value: '3.2'
[main] [ 2013-06-24 08:25:03.269 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_DB_NAME', Value: 'lunar'
[main] [ 2013-06-24 08:25:03.270 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_DOMAIN', Value: ''
[main] [ 2013-06-24 08:25:03.271 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_FLAGS', Value: ''
[main] [ 2013-06-24 08:25:03.272 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_INST_NAME', Value: ''
[main] [ 2013-06-24 08:25:03.272 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_OPEN_MODE', Value: 'open'
[main] [ 2013-06-24 08:25:03.274 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_OPI', Value: 'false'
[main] [ 2013-06-24 08:25:03.274 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_STOP_MODE', Value: 'immediate'
[main] [ 2013-06-24 08:25:03.275 CST ] [CRSNative.register:1435]  	Name: 'VERSION', Value: '11.2.0.3.0'
[main] [ 2013-06-24 08:25:03.275 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_INST_NAME@SERVERNAME(rac2)', Value: 'lunar2'
[main] [ 2013-06-24 08:25:03.277 CST ] [CRSNative.register:1435]  	Name: 'USR_ORA_INST_NAME@SERVERNAME(rac1)', Value: 'lunar1'
[main] [ 2013-06-24 08:25:03.277 CST ] [CRSNative.register:1435]  	Name: 'CARDINALITY', Value: '2'
[main] [ 2013-06-24 08:25:03.278 CST ] [CRSNative.register:1435]  	Name: 'START_DEPENDENCIES', Value: 'hard(ora.ASMDATA.dg) weak(type:ora.listener.type,global:type:ora.scan_listener.type,uniform:ora.ons,global:ora.gns) pullup(ora.ASMDATA.dg)'
[main] [ 2013-06-24 08:25:03.278 CST ] [CRSNative.register:1435]  	Name: 'STOP_DEPENDENCIES', Value: 'hard(intermediate:ora.asm,shutdown:ora.ASMDATA.dg)'
[main] [ 2013-06-24 08:25:03.850 CST ] [DatabaseImpl.create:939]  Successfully creating database resource
[main] [ 2013-06-24 08:25:03.896 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:25:03.897 CST ] [CRSConfig.createRAC:235]  Completed Configuring Cluster
[main] [ 2013-06-24 08:25:03.897 CST ] [CRSConfig.createRAC:279]  Disable Resource
[main] [ 2013-06-24 08:25:03.898 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:25:03.899 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:25:03.900 CST ] [CRSNative.getStat:1451]  		'ENABLED'
[main] [ 2013-06-24 08:25:03.938 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:25:03.938 CST ] [CRSNative.getStat:1474]  	Name: 'ENABLED'; Value: '1'
[main] [ 2013-06-24 08:25:03.940 CST ] [CRSNative.register:1427]  About to register: name: ora.lunar.db, type: 1, update: true, force: false
[main] [ 2013-06-24 08:25:03.940 CST ] [CRSNative.register:1435]  	Name: 'ENABLED', Value: '0'
[main] [ 2013-06-24 08:25:04.231 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:25:04.275 CST ] [CRSNative.getStat:1464]  crs found 66 attributes
[main] [ 2013-06-24 08:25:04.275 CST ] [CRSNative.getStat:1474]  	Name: 'STATE'; Value: 'OFFLINE'
[main] [ 2013-06-24 08:25:04.275 CST ] [CRSNative.getStat:1474]  	Name: 'TARGET'; Value: 'OFFLINE'
[main] [ 2013-06-24 08:25:04.276 CST ] [CRSNative.getStat:1474]  	Name: 'ACL'; Value: 'owner:oracle:rwx,pgrp:oinstall:rwx,other::r--'
[main] [ 2013-06-24 08:25:04.276 CST ] [CRSNative.getStat:1474]  	Name: 'ACTION_FAILURE_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.276 CST ] [CRSNative.getStat:1474]  	Name: 'ACTION_SCRIPT'; Value: ''
[main] [ 2013-06-24 08:25:04.277 CST ] [CRSNative.getStat:1474]  	Name: 'ACTIVE_PLACEMENT'; Value: '1'
[main] [ 2013-06-24 08:25:04.277 CST ] [CRSNative.getStat:1474]  	Name: 'AGENT_FILENAME'; Value: '%CRS_HOME%/bin/oraagent%CRS_EXE_SUFFIX%'
[main] [ 2013-06-24 08:25:04.277 CST ] [CRSNative.getStat:1474]  	Name: 'AUTO_START'; Value: 'restore'
[main] [ 2013-06-24 08:25:04.278 CST ] [CRSNative.getStat:1474]  	Name: 'CARDINALITY'; Value: '2'
[main] [ 2013-06-24 08:25:04.278 CST ] [CRSNative.getStat:1474]  	Name: 'CARDINALITY_ID'; Value: '0'
[main] [ 2013-06-24 08:25:04.279 CST ] [CRSNative.getStat:1474]  	Name: 'CHECK_INTERVAL'; Value: '1'
[main] [ 2013-06-24 08:25:04.279 CST ] [CRSNative.getStat:1474]  	Name: 'CHECK_TIMEOUT'; Value: '30'
[main] [ 2013-06-24 08:25:04.279 CST ] [CRSNative.getStat:1474]  	Name: 'CLUSTER_DATABASE'; Value: 'true'
[main] [ 2013-06-24 08:25:04.280 CST ] [CRSNative.getStat:1474]  	Name: 'CREATION_SEED'; Value: '151'
[main] [ 2013-06-24 08:25:04.280 CST ] [CRSNative.getStat:1474]  	Name: 'DATABASE_TYPE'; Value: 'RAC'
[main] [ 2013-06-24 08:25:04.280 CST ] [CRSNative.getStat:1474]  	Name: 'DB_UNIQUE_NAME'; Value: 'lunar'
[main] [ 2013-06-24 08:25:04.280 CST ] [CRSNative.getStat:1474]  	Name: 'DEFAULT_TEMPLATE'; Value: 'PROPERTY(RESOURCE_CLASS=database) PROPERTY(DB_UNIQUE_NAME= CONCAT(PARSE(%NAME%, ., 2), %USR_ORA_DOMAIN%, .)) ELEMENT(INSTANCE_NAME= %GEN_USR_ORA_INST_NAME%) ELEMENT(DATABASE_TYPE= %DATABASE_TYPE%)'
[main] [ 2013-06-24 08:25:04.280 CST ] [CRSNative.getStat:1474]  	Name: 'DEGREE'; Value: '1'
[main] [ 2013-06-24 08:25:04.281 CST ] [CRSNative.getStat:1474]  	Name: 'DEGREE_ID'; Value: '0'
[main] [ 2013-06-24 08:25:04.281 CST ] [CRSNative.getStat:1474]  	Name: 'DESCRIPTION'; Value: 'Oracle Database resource'
[main] [ 2013-06-24 08:25:04.281 CST ] [CRSNative.getStat:1474]  	Name: 'ENABLED'; Value: '0'
[main] [ 2013-06-24 08:25:04.282 CST ] [CRSNative.getStat:1474]  	Name: 'FAILOVER_DELAY'; Value: '0'
[main] [ 2013-06-24 08:25:04.282 CST ] [CRSNative.getStat:1474]  	Name: 'FAILURE_INTERVAL'; Value: '60'
[main] [ 2013-06-24 08:25:04.282 CST ] [CRSNative.getStat:1474]  	Name: 'FAILURE_THRESHOLD'; Value: '1'
[main] [ 2013-06-24 08:25:04.282 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_AUDIT_FILE_DEST'; Value: ''
[main] [ 2013-06-24 08:25:04.283 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_START_OPTIONS'; Value: ''
[main] [ 2013-06-24 08:25:04.283 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_USR_ORA_INST_NAME'; Value: ''
[main] [ 2013-06-24 08:25:04.284 CST ] [CRSNative.getStat:1474]  	Name: 'HOSTING_MEMBERS'; Value: ''
[main] [ 2013-06-24 08:25:04.284 CST ] [CRSNative.getStat:1474]  	Name: 'ID'; Value: 'ora.lunar.db'
[main] [ 2013-06-24 08:25:04.285 CST ] [CRSNative.getStat:1474]  	Name: 'INSTANCE_FAILOVER'; Value: '0'
[main] [ 2013-06-24 08:25:04.285 CST ] [CRSNative.getStat:1474]  	Name: 'LOAD'; Value: '1'
[main] [ 2013-06-24 08:25:04.285 CST ] [CRSNative.getStat:1474]  	Name: 'LOGGING_LEVEL'; Value: '1'
[main] [ 2013-06-24 08:25:04.285 CST ] [CRSNative.getStat:1474]  	Name: 'MANAGEMENT_POLICY'; Value: 'AUTOMATIC'
[main] [ 2013-06-24 08:25:04.286 CST ] [CRSNative.getStat:1474]  	Name: 'NAME'; Value: 'ora.lunar.db'
[main] [ 2013-06-24 08:25:04.286 CST ] [CRSNative.getStat:1474]  	Name: 'NLS_LANG'; Value: ''
[main] [ 2013-06-24 08:25:04.286 CST ] [CRSNative.getStat:1474]  	Name: 'NOT_RESTARTING_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.286 CST ] [CRSNative.getStat:1474]  	Name: 'OFFLINE_CHECK_INTERVAL'; Value: '0'
[main] [ 2013-06-24 08:25:04.287 CST ] [CRSNative.getStat:1474]  	Name: 'ONLINE_RELOCATION_TIMEOUT'; Value: '0'
[main] [ 2013-06-24 08:25:04.287 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME'; Value: '/u01/app/oracle/product/11.2.0/db_1'
[main] [ 2013-06-24 08:25:04.287 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME_OLD'; Value: ''
[main] [ 2013-06-24 08:25:04.288 CST ] [CRSNative.getStat:1474]  	Name: 'PLACEMENT'; Value: 'restricted'
[main] [ 2013-06-24 08:25:04.288 CST ] [CRSNative.getStat:1474]  	Name: 'PROFILE_CHANGE_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.289 CST ] [CRSNative.getStat:1474]  	Name: 'RESTART_ATTEMPTS'; Value: '2'
[main] [ 2013-06-24 08:25:04.290 CST ] [CRSNative.getStat:1474]  	Name: 'ROLE'; Value: 'PRIMARY'
[main] [ 2013-06-24 08:25:04.291 CST ] [CRSNative.getStat:1474]  	Name: 'SCRIPT_TIMEOUT'; Value: '60'
[main] [ 2013-06-24 08:25:04.292 CST ] [CRSNative.getStat:1474]  	Name: 'SERVER_POOLS'; Value: 'ora.lunar'
[main] [ 2013-06-24 08:25:04.293 CST ] [CRSNative.getStat:1474]  	Name: 'SPFILE'; Value: '+ASMDATA/spfilelunar1.ora'
[main] [ 2013-06-24 08:25:04.294 CST ] [CRSNative.getStat:1474]  	Name: 'START_DEPENDENCIES'; Value: 'hard(ora.ASMDATA.dg) weak(type:ora.listener.type,global:type:ora.scan_listener.type,uniform:ora.ons,global:ora.gns) pullup(ora.ASMDATA.dg)'
[main] [ 2013-06-24 08:25:04.295 CST ] [CRSNative.getStat:1474]  	Name: 'START_TIMEOUT'; Value: '600'
[main] [ 2013-06-24 08:25:04.296 CST ] [CRSNative.getStat:1474]  	Name: 'STATE_CHANGE_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.297 CST ] [CRSNative.getStat:1474]  	Name: 'STOP_DEPENDENCIES'; Value: 'hard(intermediate:ora.asm,shutdown:ora.ASMDATA.dg)'
[main] [ 2013-06-24 08:25:04.299 CST ] [CRSNative.getStat:1474]  	Name: 'STOP_TIMEOUT'; Value: '600'
[main] [ 2013-06-24 08:25:04.299 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE'; Value: 'ora.database.type'
[main] [ 2013-06-24 08:25:04.301 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE_VERSION'; Value: '3.2'
[main] [ 2013-06-24 08:25:04.301 CST ] [CRSNative.getStat:1474]  	Name: 'UPTIME_THRESHOLD'; Value: '1h'
[main] [ 2013-06-24 08:25:04.301 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_DB_NAME'; Value: 'lunar'
[main] [ 2013-06-24 08:25:04.301 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_DOMAIN'; Value: ''
[main] [ 2013-06-24 08:25:04.302 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_ENV'; Value: ''
[main] [ 2013-06-24 08:25:04.302 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_FLAGS'; Value: ''
[main] [ 2013-06-24 08:25:04.302 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME'; Value: ''
[main] [ 2013-06-24 08:25:04.303 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME@SERVERNAME(rac1)'; Value: 'lunar1'
[main] [ 2013-06-24 08:25:04.303 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME@SERVERNAME(rac2)'; Value: 'lunar2'
[main] [ 2013-06-24 08:25:04.303 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_OPEN_MODE'; Value: 'open'
[main] [ 2013-06-24 08:25:04.304 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_OPI'; Value: 'false'
[main] [ 2013-06-24 08:25:04.304 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_STOP_MODE'; Value: 'immediate'
[main] [ 2013-06-24 08:25:04.304 CST ] [CRSNative.getStat:1474]  	Name: 'VERSION'; Value: '11.2.0.3.0'
[main] [ 2013-06-24 08:25:04.305 CST ] [CRSConfig.startRAC:320]  Enable Database HA Resource
[main] [ 2013-06-24 08:25:04.306 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:25:04.306 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:04.307 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:25:04.307 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:25:04.361 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db', 'DATABASE_TYPE':'RAC'
[main] [ 2013-06-24 08:25:04.362 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db', 'ORACLE_HOME':'/u01/app/oracle/product/11.2.0/db_1'
[main] [ 2013-06-24 08:25:04.362 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db', 'VERSION':'11.2.0.3.0'
[main] [ 2013-06-24 08:25:04.362 CST ] [CRSNative.searchEntities:1010]  found 1 entities
[main] [ 2013-06-24 08:25:04.363 CST ] [DatabaseFactoryImpl.getDatabase:768]  Checking for version mismatch
[main] [ 2013-06-24 08:25:04.363 CST ] [DatabaseFactoryImpl.getDatabase:774]  dbVersion4 = 11.2.0.3
[main] [ 2013-06-24 08:25:04.363 CST ] [DatabaseFactoryImpl.getDatabase:789]  db type RAC
[main] [ 2013-06-24 08:25:04.363 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:25:04.363 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:25:04.364 CST ] [Version.isPre112:414]  version to be checked 11.2.0.3.0 minor version to check against2
[main] [ 2013-06-24 08:25:04.364 CST ] [Version.isPre112:425]  isPre112 : Returning FALSE for minor version check
[main] [ 2013-06-24 08:25:04.364 CST ] [DatabaseFactoryImpl.getCardinalDatabase:1381]  Getting cardinal database for lunar
[main] [ 2013-06-24 08:25:04.407 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:25:04.408 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:25:04.409 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:25:04.409 CST ] [CRSNative.getStat:1451]  		'DB_UNIQUE_NAME'
[main] [ 2013-06-24 08:25:04.453 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:25:04.454 CST ] [CRSNative.getStat:1474]  	Name: 'DB_UNIQUE_NAME'; Value: 'lunar'
[main] [ 2013-06-24 08:25:04.495 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:25:04.496 CST ] [DatabaseImpl.crsResource:3415]  calling parent's crsResource
[main] [ 2013-06-24 08:25:04.542 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:25:04.542 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:25:04.543 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:25:04.544 CST ] [CRSNative.getStat:1451]  		'CLUSTER_DATABASE'
[main] [ 2013-06-24 08:25:04.587 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:25:04.587 CST ] [CRSNative.getStat:1474]  	Name: 'CLUSTER_DATABASE'; Value: 'true'
[main] [ 2013-06-24 08:25:04.587 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:25:04.588 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:25:04.589 CST ] [CRSNative.getStat:1451]  		'ENABLED'
[main] [ 2013-06-24 08:25:04.635 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:25:04.635 CST ] [CRSNative.getStat:1474]  	Name: 'ENABLED'; Value: '0'
[main] [ 2013-06-24 08:25:04.636 CST ] [CRSNative.register:1427]  About to register: name: ora.lunar.db, type: 1, update: true, force: false
[main] [ 2013-06-24 08:25:04.637 CST ] [CRSNative.register:1435]  	Name: 'ENABLED', Value: '1'
[main] [ 2013-06-24 08:25:04.849 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:25:04.895 CST ] [CRSNative.getStat:1464]  crs found 66 attributes
[main] [ 2013-06-24 08:25:04.895 CST ] [CRSNative.getStat:1474]  	Name: 'STATE'; Value: 'OFFLINE'
[main] [ 2013-06-24 08:25:04.896 CST ] [CRSNative.getStat:1474]  	Name: 'TARGET'; Value: 'OFFLINE'
[main] [ 2013-06-24 08:25:04.897 CST ] [CRSNative.getStat:1474]  	Name: 'ACL'; Value: 'owner:oracle:rwx,pgrp:oinstall:rwx,other::r--'
[main] [ 2013-06-24 08:25:04.897 CST ] [CRSNative.getStat:1474]  	Name: 'ACTION_FAILURE_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.897 CST ] [CRSNative.getStat:1474]  	Name: 'ACTION_SCRIPT'; Value: ''
[main] [ 2013-06-24 08:25:04.898 CST ] [CRSNative.getStat:1474]  	Name: 'ACTIVE_PLACEMENT'; Value: '1'
[main] [ 2013-06-24 08:25:04.898 CST ] [CRSNative.getStat:1474]  	Name: 'AGENT_FILENAME'; Value: '%CRS_HOME%/bin/oraagent%CRS_EXE_SUFFIX%'
[main] [ 2013-06-24 08:25:04.898 CST ] [CRSNative.getStat:1474]  	Name: 'AUTO_START'; Value: 'restore'
[main] [ 2013-06-24 08:25:04.898 CST ] [CRSNative.getStat:1474]  	Name: 'CARDINALITY'; Value: '2'
[main] [ 2013-06-24 08:25:04.900 CST ] [CRSNative.getStat:1474]  	Name: 'CARDINALITY_ID'; Value: '0'
[main] [ 2013-06-24 08:25:04.900 CST ] [CRSNative.getStat:1474]  	Name: 'CHECK_INTERVAL'; Value: '1'
[main] [ 2013-06-24 08:25:04.901 CST ] [CRSNative.getStat:1474]  	Name: 'CHECK_TIMEOUT'; Value: '30'
[main] [ 2013-06-24 08:25:04.901 CST ] [CRSNative.getStat:1474]  	Name: 'CLUSTER_DATABASE'; Value: 'true'
[main] [ 2013-06-24 08:25:04.902 CST ] [CRSNative.getStat:1474]  	Name: 'CREATION_SEED'; Value: '152'
[main] [ 2013-06-24 08:25:04.903 CST ] [CRSNative.getStat:1474]  	Name: 'DATABASE_TYPE'; Value: 'RAC'
[main] [ 2013-06-24 08:25:04.903 CST ] [CRSNative.getStat:1474]  	Name: 'DB_UNIQUE_NAME'; Value: 'lunar'
[main] [ 2013-06-24 08:25:04.903 CST ] [CRSNative.getStat:1474]  	Name: 'DEFAULT_TEMPLATE'; Value: 'PROPERTY(RESOURCE_CLASS=database) PROPERTY(DB_UNIQUE_NAME= CONCAT(PARSE(%NAME%, ., 2), %USR_ORA_DOMAIN%, .)) ELEMENT(INSTANCE_NAME= %GEN_USR_ORA_INST_NAME%) ELEMENT(DATABASE_TYPE= %DATABASE_TYPE%)'
[main] [ 2013-06-24 08:25:04.903 CST ] [CRSNative.getStat:1474]  	Name: 'DEGREE'; Value: '1'
[main] [ 2013-06-24 08:25:04.904 CST ] [CRSNative.getStat:1474]  	Name: 'DEGREE_ID'; Value: '0'
[main] [ 2013-06-24 08:25:04.904 CST ] [CRSNative.getStat:1474]  	Name: 'DESCRIPTION'; Value: 'Oracle Database resource'
[main] [ 2013-06-24 08:25:04.905 CST ] [CRSNative.getStat:1474]  	Name: 'ENABLED'; Value: '1'
[main] [ 2013-06-24 08:25:04.905 CST ] [CRSNative.getStat:1474]  	Name: 'FAILOVER_DELAY'; Value: '0'
[main] [ 2013-06-24 08:25:04.905 CST ] [CRSNative.getStat:1474]  	Name: 'FAILURE_INTERVAL'; Value: '60'
[main] [ 2013-06-24 08:25:04.905 CST ] [CRSNative.getStat:1474]  	Name: 'FAILURE_THRESHOLD'; Value: '1'
[main] [ 2013-06-24 08:25:04.906 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_AUDIT_FILE_DEST'; Value: ''
[main] [ 2013-06-24 08:25:04.907 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_START_OPTIONS'; Value: ''
[main] [ 2013-06-24 08:25:04.907 CST ] [CRSNative.getStat:1474]  	Name: 'GEN_USR_ORA_INST_NAME'; Value: ''
[main] [ 2013-06-24 08:25:04.907 CST ] [CRSNative.getStat:1474]  	Name: 'HOSTING_MEMBERS'; Value: ''
[main] [ 2013-06-24 08:25:04.907 CST ] [CRSNative.getStat:1474]  	Name: 'ID'; Value: 'ora.lunar.db'
[main] [ 2013-06-24 08:25:04.908 CST ] [CRSNative.getStat:1474]  	Name: 'INSTANCE_FAILOVER'; Value: '0'
[main] [ 2013-06-24 08:25:04.908 CST ] [CRSNative.getStat:1474]  	Name: 'LOAD'; Value: '1'
[main] [ 2013-06-24 08:25:04.909 CST ] [CRSNative.getStat:1474]  	Name: 'LOGGING_LEVEL'; Value: '1'
[main] [ 2013-06-24 08:25:04.909 CST ] [CRSNative.getStat:1474]  	Name: 'MANAGEMENT_POLICY'; Value: 'AUTOMATIC'
[main] [ 2013-06-24 08:25:04.909 CST ] [CRSNative.getStat:1474]  	Name: 'NAME'; Value: 'ora.lunar.db'
[main] [ 2013-06-24 08:25:04.910 CST ] [CRSNative.getStat:1474]  	Name: 'NLS_LANG'; Value: ''
[main] [ 2013-06-24 08:25:04.910 CST ] [CRSNative.getStat:1474]  	Name: 'NOT_RESTARTING_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.911 CST ] [CRSNative.getStat:1474]  	Name: 'OFFLINE_CHECK_INTERVAL'; Value: '0'
[main] [ 2013-06-24 08:25:04.911 CST ] [CRSNative.getStat:1474]  	Name: 'ONLINE_RELOCATION_TIMEOUT'; Value: '0'
[main] [ 2013-06-24 08:25:04.912 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME'; Value: '/u01/app/oracle/product/11.2.0/db_1'
[main] [ 2013-06-24 08:25:04.912 CST ] [CRSNative.getStat:1474]  	Name: 'ORACLE_HOME_OLD'; Value: ''
[main] [ 2013-06-24 08:25:04.912 CST ] [CRSNative.getStat:1474]  	Name: 'PLACEMENT'; Value: 'restricted'
[main] [ 2013-06-24 08:25:04.912 CST ] [CRSNative.getStat:1474]  	Name: 'PROFILE_CHANGE_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.913 CST ] [CRSNative.getStat:1474]  	Name: 'RESTART_ATTEMPTS'; Value: '2'
[main] [ 2013-06-24 08:25:04.913 CST ] [CRSNative.getStat:1474]  	Name: 'ROLE'; Value: 'PRIMARY'
[main] [ 2013-06-24 08:25:04.914 CST ] [CRSNative.getStat:1474]  	Name: 'SCRIPT_TIMEOUT'; Value: '60'
[main] [ 2013-06-24 08:25:04.914 CST ] [CRSNative.getStat:1474]  	Name: 'SERVER_POOLS'; Value: 'ora.lunar'
[main] [ 2013-06-24 08:25:04.915 CST ] [CRSNative.getStat:1474]  	Name: 'SPFILE'; Value: '+ASMDATA/spfilelunar1.ora'
[main] [ 2013-06-24 08:25:04.915 CST ] [CRSNative.getStat:1474]  	Name: 'START_DEPENDENCIES'; Value: 'hard(ora.ASMDATA.dg) weak(type:ora.listener.type,global:type:ora.scan_listener.type,uniform:ora.ons,global:ora.gns) pullup(ora.ASMDATA.dg)'
[main] [ 2013-06-24 08:25:04.916 CST ] [CRSNative.getStat:1474]  	Name: 'START_TIMEOUT'; Value: '600'
[main] [ 2013-06-24 08:25:04.916 CST ] [CRSNative.getStat:1474]  	Name: 'STATE_CHANGE_TEMPLATE'; Value: ''
[main] [ 2013-06-24 08:25:04.917 CST ] [CRSNative.getStat:1474]  	Name: 'STOP_DEPENDENCIES'; Value: 'hard(intermediate:ora.asm,shutdown:ora.ASMDATA.dg)'
[main] [ 2013-06-24 08:25:04.917 CST ] [CRSNative.getStat:1474]  	Name: 'STOP_TIMEOUT'; Value: '600'
[main] [ 2013-06-24 08:25:04.917 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE'; Value: 'ora.database.type'
[main] [ 2013-06-24 08:25:04.917 CST ] [CRSNative.getStat:1474]  	Name: 'TYPE_VERSION'; Value: '3.2'
[main] [ 2013-06-24 08:25:04.918 CST ] [CRSNative.getStat:1474]  	Name: 'UPTIME_THRESHOLD'; Value: '1h'
[main] [ 2013-06-24 08:25:04.918 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_DB_NAME'; Value: 'lunar'
[main] [ 2013-06-24 08:25:04.919 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_DOMAIN'; Value: ''
[main] [ 2013-06-24 08:25:04.920 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_ENV'; Value: ''
[main] [ 2013-06-24 08:25:04.920 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_FLAGS'; Value: ''
[main] [ 2013-06-24 08:25:04.921 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME'; Value: ''
[main] [ 2013-06-24 08:25:04.921 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME@SERVERNAME(rac1)'; Value: 'lunar1'
[main] [ 2013-06-24 08:25:04.922 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_INST_NAME@SERVERNAME(rac2)'; Value: 'lunar2'
[main] [ 2013-06-24 08:25:04.922 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_OPEN_MODE'; Value: 'open'
[main] [ 2013-06-24 08:25:04.922 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_OPI'; Value: 'false'
[main] [ 2013-06-24 08:25:04.923 CST ] [CRSNative.getStat:1474]  	Name: 'USR_ORA_STOP_MODE'; Value: 'immediate'
[main] [ 2013-06-24 08:25:04.923 CST ] [CRSNative.getStat:1474]  	Name: 'VERSION'; Value: '11.2.0.3.0'
[main] [ 2013-06-24 08:25:04.923 CST ] [CRSConfig.startRAC:323]  Starting Database HA Resource
[main] [ 2013-06-24 08:25:04.923 CST ] [CRSNative.internalStartResource:376]  About to start resource: Name: ora.lunar.db, force:true node: null, options: 0, filter null
[main] [ 2013-06-24 08:25:05.080 CST ] [CRSNativeResult.addLine:106]  callback: ora.lunar.db false CRS-2672: Attempting to start 'ora.lunar.db' on 'rac1'
[main] [ 2013-06-24 08:25:05.090 CST ] [CRSNativeResult.addLine:106]  callback: ora.lunar.db false CRS-2672: Attempting to start 'ora.lunar.db' on 'rac2'
[main] [ 2013-06-24 08:25:53.479 CST ] [CRSNativeResult.addLine:106]  callback: ora.lunar.db false CRS-2676: Start of 'ora.lunar.db' on 'rac1' succeeded
[main] [ 2013-06-24 08:25:59.049 CST ] [CRSNativeResult.addLine:106]  callback: ora.lunar.db false CRS-2676: Start of 'ora.lunar.db' on 'rac2' succeeded
[main] [ 2013-06-24 08:25:59.297 CST ] [CRSNative.internalStartResource:409]  Start resource completed: node: null
[main] [ 2013-06-24 08:25:59.299 CST ] [CRSNative.internalStartResource:412]  cmd output: CRS-2672: Attempting to start 'ora.lunar.db' on 'rac1'
[main] [ 2013-06-24 08:25:59.299 CST ] [CRSNative.internalStartResource:412]  cmd output: CRS-2672: Attempting to start 'ora.lunar.db' on 'rac2'
[main] [ 2013-06-24 08:25:59.300 CST ] [CRSNative.internalStartResource:412]  cmd output: CRS-2676: Start of 'ora.lunar.db' on 'rac1' succeeded
[main] [ 2013-06-24 08:25:59.300 CST ] [CRSNative.internalStartResource:412]  cmd output: CRS-2676: Start of 'ora.lunar.db' on 'rac2' succeeded
[main] [ 2013-06-24 08:25:59.301 CST ] [CRSConfig.startRAC:337]  Database HA Resource successfully started
[main] [ 2013-06-24 08:25:59.302 CST ] [CRSConfig.startRAC:339]  Cluster Started
[main] [ 2013-06-24 08:25:59.302 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:25:59.304 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:25:59.330 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.335 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.336 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.337 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.337 CST ] [OracleHome.getVersion:889]  OracleHome.getVersion called.  Current Version: 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.339 CST ] [OracleHome.getVersion:957]  Current Version From Inventory: 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.344 CST ] [SQLPlusEngine.getCmmdParams:222]  m_home 11.2.0.3.0
[main] [ 2013-06-24 08:25:59.352 CST ] [SQLPlusEngine.getCmmdParams:223]  version > 112 true
[main] [ 2013-06-24 08:25:59.353 CST ] [SQLEngine.getEnvParams:555]  Default NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:25:59.354 CST ] [SQLEngine.getEnvParams:565]  NLS_LANG: AMERICAN_AMERICA.AL32UTF8
[main] [ 2013-06-24 08:25:59.361 CST ] [SQLEngine.initialize:325]  Execing SQLPLUS/SVRMGR process...
[main] [ 2013-06-24 08:25:59.379 CST ] [SQLEngine.initialize:362]  m_bReaderStarted: false
[main] [ 2013-06-24 08:25:59.380 CST ] [SQLEngine.initialize:366]  Starting Reader Thread... 
[main] [ 2013-06-24 08:25:59.610 CST ] [Instance.getSQLEngine:381]  SQLEngine spooling to=/u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:25:59.611 CST ] [SQLEngine.setSpool:1967]  old Spool  = null
[main] [ 2013-06-24 08:25:59.611 CST ] [SQLEngine.setSpool:1968]  Setting Spool  = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:25:59.612 CST ] [SQLEngine.setSpool:1969]  Is spool appendable? --> true
[main] [ 2013-06-24 08:25:59.612 CST ] [CRSConfig.startRAC:349]  Re-enabling standby destinations
[main] [ 2013-06-24 08:25:59.614 CST ] [StorageManagement.createClusterViews:2117]  Creating cluster views...
[main] [ 2013-06-24 08:28:21.360 CST ] [StorageManagement.createClusterViews:2133]  Cluster views created suceessfully.
[main] [ 2013-06-24 08:28:21.360 CST ] [SQLEngine.done:2189]  Done called
[main] [ 2013-06-24 08:28:21.360 CST ] [SQLEngine.spoolOff:2035]  Setting spool off = /u01/app/oracle/cfgtoollogs/rconfig/lunar1/sqlLog
[main] [ 2013-06-24 08:28:21.361 CST ] [RACConvertStep.execute:193]  STEP Result=Operation Succeeded
[main] [ 2013-06-24 08:28:21.363 CST ] [RACConvertStep.execute:223]  Returning result:Operation Succeeded
[main] [ 2013-06-24 08:28:21.363 CST ] [RConfigEngine.execute:68]  bAsyncJob=false
[main] [ 2013-06-24 08:28:21.365 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:28:21.366 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:28:21.366 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:28:21.367 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:28:21.421 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db', 'DATABASE_TYPE':'RAC'
[main] [ 2013-06-24 08:28:21.422 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db', 'ORACLE_HOME':'/u01/app/oracle/product/11.2.0/db_1'
[main] [ 2013-06-24 08:28:21.422 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db', 'VERSION':'11.2.0.3.0'
[main] [ 2013-06-24 08:28:21.423 CST ] [CRSNative.searchEntities:1010]  found 1 entities
[main] [ 2013-06-24 08:28:21.423 CST ] [DatabaseFactoryImpl.getDatabase:768]  Checking for version mismatch
[main] [ 2013-06-24 08:28:21.423 CST ] [DatabaseFactoryImpl.getDatabase:774]  dbVersion4 = 11.2.0.3
[main] [ 2013-06-24 08:28:21.423 CST ] [DatabaseFactoryImpl.getDatabase:789]  db type RAC
[main] [ 2013-06-24 08:28:21.423 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:28:21.424 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:28:21.424 CST ] [Version.isPre112:414]  version to be checked 11.2.0.3.0 minor version to check against2
[main] [ 2013-06-24 08:28:21.424 CST ] [Version.isPre112:425]  isPre112 : Returning FALSE for minor version check
[main] [ 2013-06-24 08:28:21.424 CST ] [DatabaseFactoryImpl.getCardinalDatabase:1381]  Getting cardinal database for lunar
[main] [ 2013-06-24 08:28:21.462 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:28:21.463 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:28:21.463 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:28:21.464 CST ] [CRSNative.getStat:1451]  		'DB_UNIQUE_NAME'
[main] [ 2013-06-24 08:28:21.502 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:28:21.503 CST ] [CRSNative.getStat:1474]  	Name: 'DB_UNIQUE_NAME'; Value: 'lunar'
[main] [ 2013-06-24 08:28:21.546 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:28:21.550 CST ] [DatabaseImpl.crsResource:3415]  calling parent's crsResource
[main] [ 2013-06-24 08:28:21.582 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar.db, type: 1, registered: true
[main] [ 2013-06-24 08:28:21.583 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:28:21.583 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:28:21.583 CST ] [CRSNative.getStat:1451]  		'CLUSTER_DATABASE'
[main] [ 2013-06-24 08:28:21.626 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:28:21.626 CST ] [CRSNative.getStat:1474]  	Name: 'CLUSTER_DATABASE'; Value: 'true'
[main] [ 2013-06-24 08:28:21.626 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against11
[main] [ 2013-06-24 08:28:21.627 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:28:21.627 CST ] [Version.isPre11202:448]  version to be checked 11.2.0.3.0 minor version to check against2, patchset to check against 2
[main] [ 2013-06-24 08:28:21.627 CST ] [Version.isPre11202:467]  isPre11202 : Returning FALSE for patchset version check
[main] [ 2013-06-24 08:28:21.627 CST ] [Version.isPre:528]  version to be checked 11.2.0.3.0 major version to check against10
[main] [ 2013-06-24 08:28:21.628 CST ] [Version.isPre:539]  isPre.java: Returning FALSE
[main] [ 2013-06-24 08:28:21.628 CST ] [OCR.loadLibrary:312]  
 Inside constructor of OCR
[main] [ 2013-06-24 08:28:21.628 CST ] [OCR.isCluster:952]  Calling OCRNative for isCluster()
[main] [ 2013-06-24 08:28:21.628 CST ] [nativesystem.OCRNative.Native]  JNI: isCluster() Successfully initialized meta context
[main] [ 2013-06-24 08:28:21.629 CST ] [nativesystem.OCRNative.Native]  JNI: procr_get_conf() retValue = 0
[main] [ 2013-06-24 08:28:21.629 CST ] [nativesystem.OCRNative.Native]  The OCR file is configured  & local_only=false

[main] [ 2013-06-24 08:28:21.630 CST ] [OCR.isCluster:956]  OCR Result status = true
[main] [ 2013-06-24 08:28:21.631 CST ] [OCR.isCluster:968]  Bolean result = true
[main] [ 2013-06-24 08:28:21.631 CST ] [CRSNative.getStat:1447]  About to call crs stat: name: ora.lunar.db, type: 1, node: null
[main] [ 2013-06-24 08:28:21.631 CST ] [CRSNative.getStat:1449]  looking for following attributes:
[main] [ 2013-06-24 08:28:21.632 CST ] [CRSNative.getStat:1451]  		'SERVER_POOLS'
[main] [ 2013-06-24 08:28:21.669 CST ] [CRSNative.getStat:1464]  crs found 1 attributes
[main] [ 2013-06-24 08:28:21.670 CST ] [CRSNative.getStat:1474]  	Name: 'SERVER_POOLS'; Value: 'ora.lunar'
[main] [ 2013-06-24 08:28:21.670 CST ] [DatabaseImpl.serverPoolsHelper:3906]  list of server pool names =ora.lunar
[main] [ 2013-06-24 08:28:21.670 CST ] [ServerPoolImpl.<init>:148]  m_name = ora.lunar, m_displayName = lunar
[main] [ 2013-06-24 08:28:21.707 CST ] [CRSNative.isEntityRegistered:737]  entity: ora.lunar, type: 3, registered: true
[main] [ 2013-06-24 08:28:21.709 CST ] [CRSNative.internalQueryResources:1577]  About to doQueryResources: eType server pool, nodeName null, filter (((NAME == ora.lunar) && (PARENT_POOLS != )) || (PARENT_POOLS CONTAINS ora.lunar))
[main] [ 2013-06-24 08:28:21.773 CST ] [CRSNative.internalQueryResources:1585]  found 1 resources
[main] [ 2013-06-24 08:28:21.773 CST ] [CRSNative.internalQueryResources:1587]  	ora.lunar
[main] [ 2013-06-24 08:28:21.822 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'CLUSTER_DATABASE':'true'
[main] [ 2013-06-24 08:28:21.822 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'DATABASE_TYPE':'RAC'
[main] [ 2013-06-24 08:28:21.823 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'GEN_USR_ORA_INST_NAME':'lunar1'
[main] [ 2013-06-24 08:28:21.823 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'GEN_USR_ORA_INST_NAME@SERVERNAME(rac1)':'lunar1'
[main] [ 2013-06-24 08:28:21.824 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'GEN_USR_ORA_INST_NAME@SERVERNAME(rac2)':'lunar2'
[main] [ 2013-06-24 08:28:21.825 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'LAST_SERVER':'rac1'
[main] [ 2013-06-24 08:28:21.826 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'USR_ORA_INST_NAME':'lunar1'
[main] [ 2013-06-24 08:28:21.826 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'USR_ORA_INST_NAME@SERVERNAME(rac1)':'lunar1'
[main] [ 2013-06-24 08:28:21.826 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 1 1', 'USR_ORA_INST_NAME@SERVERNAME(rac2)':'lunar2'
[main] [ 2013-06-24 08:28:21.827 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'CLUSTER_DATABASE':'true'
[main] [ 2013-06-24 08:28:21.827 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'DATABASE_TYPE':'RAC'
[main] [ 2013-06-24 08:28:21.828 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'GEN_USR_ORA_INST_NAME':'lunar2'
[main] [ 2013-06-24 08:28:21.829 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'GEN_USR_ORA_INST_NAME@SERVERNAME(rac1)':'lunar1'
[main] [ 2013-06-24 08:28:21.830 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'GEN_USR_ORA_INST_NAME@SERVERNAME(rac2)':'lunar2'
[main] [ 2013-06-24 08:28:21.830 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'LAST_SERVER':'rac2'
[main] [ 2013-06-24 08:28:21.830 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'USR_ORA_INST_NAME':'lunar2'
[main] [ 2013-06-24 08:28:21.831 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'USR_ORA_INST_NAME@SERVERNAME(rac1)':'lunar1'
[main] [ 2013-06-24 08:28:21.831 CST ] [CRSNativeResult.addRIAttr:139]  addRIAttr: name 'ora.lunar.db 2 1', 'USR_ORA_INST_NAME@SERVERNAME(rac2)':'lunar2'
[main] [ 2013-06-24 08:28:21.832 CST ] [CRSNative.searchEntities:1010]  found 2 entities
[main] [ 2013-06-24 08:28:21.832 CST ] [DatabaseImpl.getDBInstances:1495]  riID=ora.lunar.db 1 1 result={CLUSTER_DATABASE=true, DATABASE_TYPE=RAC, GEN_USR_ORA_INST_NAME=lunar1, GEN_USR_ORA_INST_NAME@SERVERNAME(rac1)=lunar1, GEN_USR_ORA_INST_NAME@SERVERNAME(rac2)=lunar2, LAST_SERVER=rac1, USR_ORA_INST_NAME=lunar1, USR_ORA_INST_NAME@SERVERNAME(rac1)=lunar1, USR_ORA_INST_NAME@SERVERNAME(rac2)=lunar2}
[main] [ 2013-06-24 08:28:21.852 CST ] [DatabaseImpl.getDBInstances:1677]  ignoring gen instance lunar1
[main] [ 2013-06-24 08:28:21.853 CST ] [DatabaseImpl.getDBInstances:1677]  ignoring gen instance lunar2
[main] [ 2013-06-24 08:28:21.853 CST ] [DatabaseImpl.getDBInstances:1700]  Instances: <lunar1,rac1><lunar2,rac2>; GEN: 
[main] [ 2013-06-24 08:28:21.855 CST ] [RConfigEngine.execute:77]  Result=<?xml version="1.0" ?>
<RConfig version="1.1" >
<ConvertToRAC>
    <Convert>
      <Response>
        <Result code="0" >
          Operation Succeeded
        </Result>
      </Response>
      <ReturnValue type="object">
<Oracle_Home>
         /u01/app/oracle/product/11.2.0/db_1
       </Oracle_Home>
       <Database type="ADMIN_MANAGED"  >
         <InstanceList>
           <Instance SID="lunar1" Node="rac1"  >
           </Instance>
           <Instance SID="lunar2" Node="rac2"  >
           </Instance>
         </InstanceList>
       </Database>     </ReturnValue>
    </Convert>
  </ConvertToRAC></RConfig>

发表在 Database, Installation and Deinstall, RAC | 标签为 , | 留下评论