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

联系:QQ(5163721)

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

作者:Lunar©版权所有[文章允许转载,但必须以链接方式注明源地址,否则追究法律责任.]

测试目的: 单实例数据库转换为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 分类目录,贴了 , 标签。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注