Communicate with diffrent j2ee nodes

Hi there
We've got a singleton on a j2ee which runs on about 3 nodes.
Is there any possibility to connect to the other nodes for example invalidating the singleton in all nodes?
Are there some framework-class available on which one we can connect through to get firstly the information how many nodes are available and then go in each one and invalidate the singleton?
(like you can do it in the NWA of the CE Server - "stop on all instances")
Thanks in advance
Regards
Marco

Hi Benny
I think this isn't realy my problem.
The JNDI is working on each node yes? Or just on the central-node?
I found some information in this document: https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/0eb4a790-0201-0010-86b7-c1b26be749d6
But nowhere is written, if the jndi service is only running on the central instance?!
And when i'm accessing the singleton over the jndi (in case there is just one jndi on the central-node) do i've got some problems because of the performance - whilce accessing objects in other nodes and containers?
Thanks in advance for your answer
Regards
Marco

Similar Messages

  • CRS-0184: Cannot communicate with the CRS daemon.

    I am getting teh foll error when starting up a database
    [oracle@linux2 ~]$ srvctl start database -d orcl
    PRKH-1010 : Unable to communicate with CRS services.
    [oracle@linux2 ~]$ product/crs/bin/crs_start -all
    CRS-0184: Cannot communicate with the CRS daemon.
    From the available information on the net, I have already tried the below steps.
    a) Deleted all the files from /var/tmp/.oracle
    b) Ensured that the deamon is running
    [oracle@linux2 ~]$ ps -ef | grep crs
    root 6192 1 0 15:31 ? 00:00:00 /bin/sh /etc/init.d/init.crsd run
    oracle 1284 9630 0 16:02 pts/1 00:00:00 grep crs
    c) The foll lines are already added to the /etc/inittab file
    h1:3:respawn:/sbin/init.d/init.evmd run >/dev/null 2>&1 </dev/null
    h2:3:respawn:/sbin/init.d/init.cssd fatal >/dev/null 2>&1 </dev/null
    h3:3:respawn:/sbin/init.d/init.crsd run >/dev/null 2>&1 </dev/null
    Plz help. I'm still getting the error on one node of the Cluster.

    [oracle@linux2 bin]$ crsctl check crs
    Failure 1 contacting CSS daemon
    Cannot communicate with CRS
    Cannot communicate with EVM
    The node is setup on RHEL 4u7 (2.6.9-78.0.13.ELsmp)
    The first error in the crsd.log file says
    2009-11-05 06:07:57.196: [  CRSOCR][3086907072]0OCR api procr_open_key failed for key CRS.CUR. OCR error code = 4 OCR error msg: PROC-4: The cluster registry key to be operated on does not exist.
    Also, I have the '/u02/oradata/orcl' for the OCR and the CSS Files. On thsi node this directory is empty.
    Whereas on the other node in the sam cluster, thsi directory contains the OCR and CSS files and their mirrors.
    Is my OCR corrupted on thsi node? How can I restore it??

  • How an aplications sever will communicate with  Oracle RAC?

    Hi, I wonder how the applacations server will communicate with the two nodes Oracle RAC. Do I have to install an Oracle client to the application server and configure tnsname.ora file to connect with the nodes?
    Have any one any experience to share and help me?

    That depends on the driver being used. Here are some examples for the JDBC connections
    url="jdbc:oracle:oci:@TNS_ALIAS"
    url="jdbc:oracle:oci:@(DESCRIPTION=
    (LOAD_BALANCE=on)
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-1vip)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-2vip)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-3vip)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-4vip)(PORT=1521))
    (CONNECT_DATA=(SERVICE_NAME=ERP)))"
    url="jdbc:oracle:oci:@(DESCRIPTION=
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusalias)(PORT=1521))
    (CONNECT_DATA=(SERVICE_NAME=ERP)))"
    url="jdbc:oracle:thin:@(DESCRIPTION=
    (LOAD_BALANCE=on)
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-1vip)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-2vip)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-3vip)(PORT=1521))
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusnode-4vip)(PORT=1521))
    (CONNECT_DATA=(SERVICE_NAME=ERP)))"
    url="jdbc:oracle:thin:@(DESCRIPTION=
    (ADDRESS=(PROTOCOL=TCP)(HOST=clusalias)(PORT=1521))
    (CONNECT_DATA=(SERVICE_NAME=ERP)))"
    If you are going to use FAN and FCF you may want to take a look at the following white paper.
    http://www.oracle.com/technology/products/database/clustering/pdf/twpracwkldmgmt.pdf

  • How do VB Winsock component communicate with J2EE server  by ServerSocket ?

    We are designing a thin client and server software system.
    The server is application server with java language, the client is application with VB language.
    The vb client program using Winsock component connect to the java application server of ServerSocket by specifying port.
    This system had been tested run for end user.
    Now, we would like the application server turn on j2ee platform. we don't know how the JavaTM 2 Platform, Enterprise Edition SDK version 1.3 can communicate with the vb client program?
    Who would like to tell us.

    Your problem is not uncommon. You do have an advantage: your server code is already in Java. You have some options here. However, I am guessing that either (a) you're running out of time to implement a solution or (b) you're running out of budget. In either case, the easiest solution will be to build a simple multiple socket server client to run on the server. You can create multiple threads to talk to multiple clients via server sockets. You could allocate a port range to use. The clients could then use a randomize algorithm to select a port in the range. If already in use, then go to the next one.
    There is a crude sample in the Sun Java Trails that can get you started.
    HTH

  • 2 J2EE RI servers which communicate with each other

    Hi all,
    I'm wondering whether the following scenario is possible, and if so, of course I would like to now how I have to achieve it.
    I want to run two j2ee ri application servers on two different machines. What I want, is that the applications on the two different servers can communicate with each other.
    Any help on this will be greatly appreciated.

    Greetings,
    that does the lookup, so I have the bean clasees in
    the classpath of the project (is that what you
    ment?).In addition to the bean classes, the client needs the stub files generated by deploytool - the reason for the ClassCastException is due to that the cast actually gets made against the server stub(s) which, in this case, isn't available to the client. The stubs are generated during deployment and have the same name as your interfaces with the suffix '_impl' (implementation). The first dialog of the deployment wizard has the option to "Return client jar" - select it (a checkbox) and add the resulting jar file (has the same name as your .ear file with the ending 'Client.jar'), to your client's CLASSPATH (just mount it as a filesystem in Forte4J ;). This file has the stubs along with the rest of your bean's associated classes.
    Can you help? I'm realy stuck.I hope this helps.
    Thanks.
    Oded "Shushu" HasidiRegards,
    Tony "Vee Schade" Cook

  • Right way to communicate with a socket server (TCP/IP)

    Hi,
    I used to write data from my J2ME socket client to a J2EE socket server with writeUTF(). In this way I can send (and receive) directly Strings.
    When I need an XML file I ask the server with something like os.writeUTF(GIVE_ME_XML_FILE) and I use an XML parser with this socket InputStream.
    I was wondering if it's the right way to proceed ....?
    How do you guys communicate with a server when you need "to talk" a lot ? Do you use only HTTP requests or (if you are allowed to) do you use Socket with writeUTF ?
    Just to know if I'm completely wrong....and if I gonna have unsolicited issues ...
    Thanks..

    AdrienD wrote:
    When I need an XML file I ask the server with something like os.writeUTF(GIVE_ME_XML_FILE) and I use an XML parser with this socket InputStream.
    I was wondering if it's the right way to proceed ....?No, it is not. Read the writeUTF api docs, and you'll know why!
    How do you guys communicate with a server when you need "to talk" a lot ? Do you use only HTTP requests or (if you are allowed to) do you use Socket with writeUTF ?There is answer to this question. it al depends on what data gets send where, how often, and how large..

  • Issue in Communication of SAP R/3 6.4C with SAP J2EE Engine 6.40.

    Hello,
    We have an application deployed in SAP J2EE engine 6.20. From SAP R3 (SAP R/3 version is 6.4C), We are communicating to the application deployed in SAP J2EE Engine 6.20 using RFC protocol. EJB module (Deployed in SAP J2EE Engine 6.20) which is being invoked from a Function Module using RFC protocol has the same name as the Function Module name. We were able to communicate to SAP J2EE Engine 6.20 this way.
    Currently, I have deployed the same application in SAP J2EE Engine 6.40. I have followed the same procedure which i have used while depolying and working with SAP J2EE Engine 6.20. But, it is not working, and i was not able to communicate to SAP J2EE 6.40, the same way i did in SAP J2EE Engine 6.20.
    Please let me know whether the procedure for communicating to SAP J2EE Engine 6.40 has changed in comparison with SAP J2EE Engine 6.20.
    Also,Any pointers regarding RFC and JCO implementation in SAP J2EE Engine 6.40 willl be helpful.
    Thank you.
    Regards,
    -Shabir Rahim.

    Hi,
    compare to 4.7
    1.New ABAP editor added like if u write code  in abap editor ,using if coditions and select statments it automatically shows the link endif,  like if .. endif,select ...endselect.
    2.New abap debugger compare to the classic debugger.
    3.DBACOCKPIT
       Missing indexes of various database tablesu2019 and the transaction to reactivate all the missing indexes  is u2018DBACOCKPITu2019. Below is the screenshot of the transaction DBACOCKPIT.
    Regards,
    Madhu

  • Webutil error "unable to communicate with runtime process."

    Hi,
    Yesterday I configured webutil with Developer 10g (9.0.4).
    I used webutil_106.zip and jacob_18.zip.
    I succesfully deploy a form that display the selection file dialog with the function:
    CLIENT_GET_FILE_NAME
    Today I tried to test again the form, and I got an error when the form is opening, I review the log and I find "unable to communicate with runtime process.".....
    I didn't change any configuration... what I'm doing wrong..... It just work great yesterday!!!!
    I tried signing again the jacob.jar and frmwebutil.jar files..... However I still have the error.......
    Any help is welcome....
    The error in the log:
    09/03/25 10:57:45 Started
    09/03/25 10:57:55 forms90web: jsp: init
    09/03/25 10:57:55 forms90web: f90servlet: init
    09/03/25 10:57:55 forms90web: FormsServlet init():
    configFileName: c:\dev10g/forms90/server/formsweb.cfg
    testMode: false
    09/03/25 10:57:55 forms90web: 9.0.4.0.0 Started
    09/03/25 10:57:56 forms90web: l90servlet: init
    09/03/25 10:57:56 forms90web: ListenerServlet init()
    09/03/25 10:58:02 forms90web: Forms session <1> aborted: unable to communicate with runtime process.
    09/03/25 10:58:02 forms90web: Forms session <1> exception stack trace:
    java.io.IOException: FRM-93000: Unexpected internal error.
    Details : No HTTP headers received from runform
         at oracle.forms.servlet.ListenerServlet.forwardResponseFromRunform(Unknown Source)
         at oracle.forms.servlet.ListenerServlet.doPost(Unknown Source)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)
    09/03/25 11:00:58 forms90web: l90servlet: destroy
    09/03/25 11:00:58 forms90web: 9.0.4.0.0 Stopped
    09/03/25 11:00:58 Stopped (Shutdown executed by jazn.com/admin from 127.0.0.1 (localhost))
    Edited by: Santiago on 25/03/2009 11:23 AM

    I Find the way, It's OK now.
    When I use the webutil.olb in a form. I chose "Subclass", It's necessary to choose "Copy".

  • Adding additional j2ee node

    Hello,
    we are running BI 7 - abap+java stacks with 16 GB ram (recently added)
    i would like to know what is the thumb rule for adding additional j2ee node?
    when is it neccassary to add additional j2ee node?
    Regards,
    Moshe

    Hi,
    The JLaunch starts a Java program. It loads the JVM into its own address space and then represents the required cluster element. The program can receive notification from the JControl process via named pipes to stop the cluster element, and terminates, if the JControl stops running (fork emulation under Windows).
    So Jlaunch consuming high CPU time means that server, dispatcher or bootstrap process consume it. If there are not enough system or application threads avaliable means that the engine must buffering requests for web application or system processes. Things to check in this case are:
    SAP NOTE 1016241 - J2EE Engine hangs because of unsufficient system threads
    SAP note: 716604  and upgrade JDK.
    SAP note: 723909 -> set correct VM parameters
    and if issue persists, then you will need to analyse the application causing teh leak...
    SAP note: 1259465: Memory analyser.
    Regards,
    Hemanth

  • VIPCA and CRS-0184: Cannot communicate with CRS daemon

    I have some strange issue during Clusterware installation. I've installed software on 2 nodes, and have ran root.sh on both. On second node I've had problem with interfaces but it came through after using oifcfg for both public and private interface. Silent vipca executed by root.sh failed, but as it is said in docs it's ok. I need to run vipca on second node manually. But when I'm running it I'm receiving CRS-0184 Cannot communicate with CRS daemon. Daemons are running, there's no error running crs_start -all. I don't have any idea what can I do now.
    Clusterware 10.2.0.1
    SUSE Linux Enterprise Server 10 SP2

    10/26/2008 17:56:08
    ./ocrdump.bin
    [SYSTEM]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.interfaces]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth0]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth0.172|d16|d216|d0]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth0.172|d16|d216|d0.1]
    ORATEXT : public
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth0.172|d216|d16|d0]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth0.172|d216|d16|d0.1]
    ORATEXT : public
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth1]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth1.192|d168|d0|d0]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.interfaces.global.eth1.192|d168|d0|d0.1]
    ORATEXT : cluster_interconnect
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [SYSTEM.css.clustername]
    ORATEXT : crs
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.misscount]
    UB4 (10) : 60
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.diskfile]
    ORATEXT : /dev/raw/raw2
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.configured_node_map]
    BYTESTREAM (16) : 6
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_names]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_names.slesorange]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_names.slesorange.nodenum]
    UB4 (10) : 1
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_names.slesred]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_names.slesred.nodenum]
    UB4 (10) : 2
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node1]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node1.nodename]
    ORATEXT : slesorange
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node1.privatename]
    ORATEXT : slesorange-priv
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node1.hostname]
    ORATEXT : slesorange
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node1.nsendpoint]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesorange-priv)(PORT=49895))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node2]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node2.nodename]
    ORATEXT : slesred
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node2.privatename]
    ORATEXT : slesred-priv
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node2.hostname]
    ORATEXT : slesred
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.node_numbers.node2.nsendpoint]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesred-priv)(PORT=49895))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.privatenames]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.privatenames.slesorange-priv]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.privatenames.slesorange-priv.nodenum]
    UB4 (10) : 1
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.privatenames.slesred-priv]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.privatenames.slesred-priv.nodenum]
    UB4 (10) : 2
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.hostnames]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.hostnames.slesorange]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.hostnames.slesorange.nodenum]
    UB4 (10) : 1
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.hostnames.slesred]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.css.hostnames.slesred.nodenum]
    UB4 (10) : 2
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.language]
    ORATEXT : AMERICAN_AMERICA.WE8ISO8859P1
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.version]
    UB4 (10) : 3
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.version.node_numbers]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.version.node_numbers.node1]
    ORATEXT : 10.2.0.1.0
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.version.node_numbers.node2]
    ORATEXT : 10.2.0.1.0
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.version.activeversion]
    ORATEXT : 10.2.0.1.0
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.versionstring]
    ORATEXT : 10G Release 2
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.ORA_CRS_HOME]
    ORATEXT : /u01/oracle/product/10.2.0/crs
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.local_only]
    ORATEXT : false
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmkey]
    ORATEXT : 17536746
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.rmport]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.rmport.localhost]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=49897))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.rmport.slesorange]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesorange-priv)(PORT=49897))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.rmport.slesred]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesred-priv)(PORT=49897))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmport]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmport.slesorange]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesorange-priv)(PORT=49898))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmport.slesred]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesred-priv)(PORT=49898))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.acceptor]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.acceptor.slesorange]
    ORATEXT : (ADDRESS=(PROTOCOL=ipc)(KEY=Aslesorange_crs_evm))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.acceptor.slesred]
    ORATEXT : (ADDRESS=(PROTOCOL=ipc)(KEY=Aslesred_crs_evm))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmipc]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmipc.slesorange]
    ORATEXT : (ADDRESS=(PROTOCOL=ipc)(KEY=Cslesorange_crs_evm))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.evm.cevmipc.slesred]
    ORATEXT : (ADDRESS=(PROTOCOL=ipc)(KEY=Cslesred_crs_evm))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.usersecurity]
    ORATEXT : 1
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.deny]
    ORATEXT :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.user_default_dir]
    ORATEXT : /u01/oracle/product/10.2.0/crs/crs/public
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.e2eport]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.e2eport.slesorange]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesorange-priv)(PORT=49896))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.e2eport.slesred]
    ORATEXT : (ADDRESS=(PROTOCOL=tcp)(HOST=slesred-priv)(PORT=49896))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.uiport]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.uiport.slesorange]
    ORATEXT : (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.crs.uiport.slesred]
    ORATEXT : (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.0]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.0.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.0.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.0.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.1]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.1.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.1.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.1.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.2]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.2.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.2.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.2.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY_]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY_.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY_.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.DAY_.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK_]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK_.NODENAME]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK_.TIMESTAMP]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [SYSTEM.OCR.BACKUP.WEEK_.LOC]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}
    [DATABASE]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_CREATE_SUB_KEY, USER_NAME : root, GROUP_NAME : root}
    [DATABASE.NODEAPPS]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_CREATE_SUB_KEY, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_CREATE_SUB_KEY, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.VIP_RANGE]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_CREATE_SUB_KEY, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_CREATE_SUB_KEY, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.LOG]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_ALL_ACCESS, OTHER_PERMISSION : PROCR_ALL_ACCESS, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ASM]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_CREATE_SUB_KEY, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.DATABASES]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_CREATE_SUB_KEY, GROUP_PERMISSION : PROCR_CREATE_SUB_KEY, OTHER_PERMISSION : PROCR_CREATE_SUB_KEY, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.slesorange]
    ORATEXT : slesorange
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.slesorange.PORT]
    ORATEXT : 6200
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.slesred]
    ORATEXT : slesred
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [DATABASE.ONS_HOSTS.slesred.PORT]
    ORATEXT : 6200
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : oracle, GROUP_NAME : oinstall}
    [CRS]
    UNDEF :
    SECURITY : {USER_PERMISSION : PROCR_ALL_ACCESS, GROUP_PERMISSION : PROCR_READ, OTHER_PERMISSION : PROCR_READ, USER_NAME : root, GROUP_NAME : root}

  • CRS-4535: Cannot communicate with Cluster Ready Services

    [oracle@bnl11237dat01 ~]$ /u01/app/11.2.0/grid/bin/cluvfy stage -post crsinst -n bnl11237dat01,bnl11237dat02 -verbose
    Performing post-checks for cluster services setup
    Checking node reachability...
    Check: Node reachability from node "bnl11237dat01"
    Destination Node Reachable?
    bnl11237dat01 yes
    bnl11237dat02 yes
    Result: Node reachability check passed from node "bnl11237dat01"
    Checking user equivalence...
    Check: User equivalence for user "oracle"
    Node Name Comment
    bnl11237dat02 passed
    bnl11237dat01 passed
    Result: User equivalence check passed for user "oracle"
    ERROR:
    Unable to obtain network interface list from Oracle Clusterware (OIFCFG)
    Verification cannot proceed
    Post-check for cluster services setup was unsuccessful on all the nodes.
    [oracle@bnl11237dat01 ~]$ oifcfg iflist
    bond1 10.32.25.160
    bond2 10.32.17.200
    bond2 169.254.0.0
    bond0.1515 10.32.24.0
    bond0.1536 172.16.7.0
    [oracle@bnl11237dat01 ~]$ oifcfg iflist -p
    bond1 10.32.25.160 PRIVATE
    bond2 10.32.17.200 PRIVATE
    bond2 169.254.0.0 UNKNOWN
    bond0.1515 10.32.24.0 PRIVATE
    bond0.1536 172.16.7.0 PRIVATE
    [oracle@bnl11237dat01 ~]$ oifcfg iflist -p -n
    bond1 10.32.25.160 PRIVATE 255.255.255.240
    bond2 10.32.17.200 PRIVATE 255.255.255.248
    bond2 169.254.0.0 UNKNOWN 255.255.0.0
    bond0.1515 10.32.24.0 PRIVATE 255.255.255.192
    bond0.1536 172.16.7.0 PRIVATE 255.255.255.0
    [oracle@bnl11237dat01 ~]$ /u01/app/11.2.0/grid/bin/onsctl debug
    HTTP/1.1 200 OK
    Content-Length: 1923
    Content-Type: text/html
    Response:
    == bnl11237dat01:6200 8732 11/05/19 11:44:09 ==
    Home: /u01/app/11.2.0/grid
    ======== ONS ========
    IP ADDRESS PORT TIME SEQUENCE FLAGS
    127.0.0.1 6200 4dd4f2a3 00000000 00000008
    Listener:
    TYPE BIND ADDRESS PORT SOCKET
    Local 127.0.0.1 6100 5
    Remote any 6200 7
    Remote any 6200 -
    Connection Topology: (1)
    IP PORT VERS TIME
    127.0.0.1 6200 4 4dd4f2a3=
    Client connections:
    ID CONNECTION ADDRESS PORT FLAGS SENDQ REF SUB W
    0 internal 0 01008a 00000 001 002
    2 127.0.0.1 6100 01001a 00000 001 001
    1 127.0.0.1 6100 01001a 00000 001 001
    3 127.0.0.1 6100 01001a 00000 001 001
    4 127.0.0.1 6100 01001a 00000 001 001
    7 127.0.0.1 6100 01001a 00000 001 000
    request 127.0.0.1 6100 03201a 00000 001 000
    Worker Ticket: 10/10, Last: 11/05/19 11:42:21
    THREAD FLAGS
    40460940 00000012
    405b4940 00000012
    41280940 00000012
    Resources:
    Notifications:
    Received: Total 0 (Internal 0), in Receive Q: 0
    Processed: Total 0, in Process Q: 0
    Pool Counts:
    Message: 1, Link: 1, Ack: 1, Match: 1
    [oracle@bnl11237dat01 ~]$
    [root@bnl11237dat01 ~]# /u01/app/11.2.0/grid/bin/crsctl stop crs
    CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.crsd' on 'bnl11237dat01'
    CRS-2790: Starting shutdown of Cluster Ready Services-managed resources on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.bnl11237dat01.vip' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.oc4j' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.cvu' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER_SCAN1.lsnr' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER.lsnr' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER_SCAN3.lsnr' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.LISTENER_SCAN2.lsnr' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.bnl11237dat01.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.cvu' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.LISTENER_SCAN1.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.scan1.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.LISTENER.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.bnl11237dat02.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.LISTENER_SCAN3.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.scan3.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.LISTENER_SCAN2.lsnr' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.scan2.vip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.scan1.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.bnl11237dat02.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.scan3.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.scan2.vip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.oc4j' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.ons' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.ons' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.net1.network' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.net1.network' on 'bnl11237dat01' succeeded
    CRS-2792: Shutdown of Cluster Ready Services-managed resources on 'bnl11237dat01' has completed
    CRS-2677: Stop of 'ora.crsd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.mdnsd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.crf' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.ctssd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.evmd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.mdnsd' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.crf' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.evmd' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.ctssd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.cssd' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.cssd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.gipcd' on 'bnl11237dat01'
    CRS-2673: Attempting to stop 'ora.diskmon' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.gipcd' on 'bnl11237dat01' succeeded
    CRS-2673: Attempting to stop 'ora.gpnpd' on 'bnl11237dat01'
    CRS-2677: Stop of 'ora.diskmon' on 'bnl11237dat01' succeeded
    CRS-2677: Stop of 'ora.gpnpd' on 'bnl11237dat01' succeeded
    CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'bnl11237dat01' has completed
    CRS-4133: Oracle High Availability Services has been stopped.
    [root@bnl11237dat01 ~]# /u01/app/11.2.0/grid/bin/crsctl start crs
    CRS-4123: Oracle High Availability Services has been started.
    [root@bnl11237dat01 ~]# /u01/app/11.2.0/grid/bin/crsctl check crs
    CRS-4638: Oracle High Availability Services is online
    CRS-4535: Cannot communicate with Cluster Ready Services
    CRS-4530: Communications failure contacting Cluster Synchronization Services daemon
    CRS-4534: Cannot communicate with Event Manager
    I am unable to start Oracle Cluster Service on 11.2.0.2. Please can I know what the problem is and how to start CRS
    thanks.

    Hi,
    after the crsctl start crs you have to wait a while till the clusterstack is up. You just issued crsctl check crs a little to early.
    To see the startup stack do a crsctl stat res -t -init.
    If not everything in crsctl stat res -t -init goes to online after a while, then you have a problem, which has to be analyzed.
    However if crsctl stat res -t -init show everything is started use crsctl stat res -t to see the other processes coming online.
    Can you post the crsctl stat res -t -init (if not everything is online) or a crsctl stat res -t.
    Only thing which I find strange is that oifcfg does not list a PUBLIC interface...
    Regards
    Sebastian

  • Memeber server in a domain connected with external trust. The agent operation failed, DPM could not communicate with the DPM agent. Error ID 270

    I manually installed the agent on a member server in a domain (domainB) that has an external trust with the domain the DPM 2010 server, mydpmserver.domainA.int,  is in.
    I pointed the agent on myprotectedserver with setdpmserver -dpmservername mydpmserver.domainA.int
    I successfully ran attach-productionserver.ps1 in DPM Management Shell.
    When I click refresh in DPM 2010 Administrator Console/Management/Agents I get error id: 270
    The agent operation failed on myprotectedserver.domainB.int because DPM could not communicate with the DPM protection agent. The computer may be protected by another DPM server, or the protection agent may have been uninstalled on the protected computer.
    If myprotectedserver.domainB.int is a workgroup server, the password for the DPM user account could have been changed or may have expired.
    I can ping myprotectedserver.domainB.int from mydpmserver.domainA.int
    DPM 2010 backup of the domain_controller.domainB.int works fine.
    The application log on myprotectedserver.domainB.int does not show any DPMRA related event logged.
    The firewall on myprotectedserver is off.
    Computers in domainA and domainB use their own networks connected through a router.
    from mydpmserver
    net view \\myprotectedserver.domainB.int /all - successfull
    sc \\myprotectedserver.domainB.int query  OpenSCManager FAILED 5, Access is denied
    wmic /node:myprotectedserver.domainB.int OS list brief Error 0x80070005, Access is denied
    from domaincontroller.domainB.int:
    sc \\myprotectedserver.domainB.int query  successfull
    wmic /node:myprotectedserver.domainB.int OS list successfull
    Any suggestions on how can I fix this?

    Hi
    I know this is old but are you still having a problem?

  • VIPCA problem: PRKH-1010 : Unable to communicate with CRS services.

    I have installed clusterware across 2 nodes recently in a virtual environment. I have been following a guide on how to do this and everything has gone as expected apart from when i try to run VIPCA manually (as detailed in the guide). When trying to run VIPCA on node 1 i get the following error:
    C:\Documents and Settings\Administrator>cd c:\oracle\product\10.2.0\crs\bin
    C:\oracle\product\10.2.0\crs\BIN>vipca.bat
    PRKH-1010 : Unable to communicate with CRS services.
    [OCR Error(Native: prsr_initCLSS:[21])]
    PRKH-1010 : Unable to communicate with CRS services.
    [OCR Error(Native: prsr_initCLSS:[21])]
    PRKH-1010 : Unable to communicate with CRS services.
    [OCR Error(Native: prsr_initCLSS:[21])]
    C:\oracle\product\10.2.0\crs\BIN>
    I was wondering if anyone had experienced the following error before and might be able to shed some light on why I am receiving it and how to resolve it to get VIPCA to run properly.
    Cheers Edd
    Message was edited by:
    user601455

    Followed a metalink note which told me to use opmd.exe to set all the services created by oracle to manual. this utility also created a new service - Oracle Process Manager, which i take it controls all the other services that clusterware uses.
    This is working fine however the OracleCSService is unable to start, it simply hangs at 'starting' and doesnt do anything from there... this i think is the route of my VIPCA problems, so if anyone knows how to sort this out that would be great.

  • Unity Service - Error: Unable to communicate with service control center

    Hi Guys,
    I have a CUC Cluster of 2 nodes at 9.1.2  I did a Cobra restore and since the cobra I have an issue when I go to Unity Connection Servicability and then
    If I go in service Management I have this error :  " Error: Unable to communicate with service control center  "
    I am not the only one who got that Issue.. the documentation is not so clean from cisco..
    http://www.cisco.com/c/en/us/support/docs/voice-unified-communications/unified-communications-manager-version-70/110587-cuc-credential-error.html#Controlcenter
    Here is what I did and the result
    admin:run cuc dbquery unitydirdb select alias, displayname, objectid  from vw_user where alias ='adminunity'
    alias       displayname  objectid
    adminunity  adminunity   2774a94d-052d-49e9-9288-bf447a4b1532
    admin : run cuc dbquery unitydirdb select objectid, userobjectid, credentialtype, encryptiontype from tbl_credential where userobjectid = "2774a94d-052d-49e9-9288-bf447a4b1532"
    objectid                              userobjectid                          credentialtype        encryptiontype
    1255f7f7-5d15-4406-ab54-df5f248e30bf  2774a94d-052d-49e9-9288-bf447a4b1532  3               3
    5ace4b8f-dbeb-4e46-8d7c-146b13db5499  2774a94d-052d-49e9-9288-bf447a4b1532  4               3
    admin : run cuc dbquery unitydirdb update tbl_credential set encryptiontype = "3" where objectid ="1255f7f7-5d15-4406-ab54-df5f248e30bf"
    admin run cuc dbquery unitydirdb update tbl_credential set encryptiontype = "3" where objectid ="5ace4b8f-dbeb-4e46-8d7c-146b13db5499"
    admin:run cuc dbquery unitydirdb select objectid, userobjectid, credentialtype, encryptiontype from tbl_credential where userobjectid = "2774a94d-052d-49e9-9288-bf447a4b1532"
    objectid                              userobjectid                          credentialtype  encryptiontype
    1255f7f7-5d15-4406-ab54-df5f248e30bf  2774a94d-052d-49e9-9288-bf447a4b1532  3               3
    5ace4b8f-dbeb-4e46-8d7c-146b13db5499  2774a94d-052d-49e9-9288-bf447a4b1532  4               3
    but once I did that, I wasn't able to login anymore with my user, so I put it back to 4.
    anyone ?

    I make the right configuration of my network (eth0 and eth1) and I reboot my server the start CRS service automaticaly...
    The problem is that my server don't stop rebooting automaticaly!!!
    In /var/log messages I have this " oracle CSSD failure. Rebooting for cluster integrity" !!!
    some one can help?

  • Datasource Connection Pooling - Per environment or per J2EE node?

    Hi all,
    I have a question about the JDBC service regarding the connection pooling.
    For external datasources, we have specified a max. pool size of 25.
    Now, is this value per J2EE server node per Dialog Instance, or is this a global setting?
    In other words, say we have 5 dialog instances each with 4 server nodes, do we have pools with a total size of 200 maximum connections, or just 25?
    Thanks in advance!
    Robin van het Hof

    Hi Dagfinn,
    The below mentioned exception is thrown the most:
    [code]
    com.shell.gep.service.employee.jdbc.JDBCEmployeeServiceNew#sap.com/irj#com.shell.gep.service.employee.jdbc.JDBCEmployeeServiceNew#Niels.Dijksman#502#####Thread[PRT-Async 16,5,PRT-Async]##0#0#Fatal##Plain###Unable to execute query: /* com.shell.gep.service.employee.jdbc.JDBCEmployeeServiceNew */SELECT NVL(WWW, 'Y') FROM PROVISIONING.SHELLDETAILS WHERE SAMACCOUNTNAME = ?, cause: Closed Connection#
         at com.shell.gep.service.employee.jdbc.JDBCEmployeeServiceNew.doMasterQuery(JDBCEmployeeServiceNew.java:410)#
         at com.shell.gep.service.employee.jdbc.JDBCEmployeeServiceNew.internalGetProperty(JDBCEmployeeServiceNew.java:361)#
         at com.shell.gep.service.employee.jdbc.JDBCEmployeeServiceNew.getProperty(JDBCEmployeeServiceNew.java:66)#
         at com.shell.gep.service.employee.AggregatedEmployeeService.getProperty(AggregatedEmployeeService.java:153)#
         at com.shell.gep.service.employee.AggregatedEmployeeService.getProperty(AggregatedEmployeeService.java:153)#
         at com.shell.gep.service.employee.EmployeeServiceImpl.getProperty(EmployeeServiceImpl.java:116)#
         at com.shell.gep.news.iviews.dynpage.NewsDynPage.getMyExternal(NewsDynPage.java:143)#
         at com.shell.gep.news.iviews.dynpage.NewsDynPage.doProcessBeforeOutput(NewsDynPage.java:114)#
         at com.sapportals.htmlb.page.PageProcessor.handleRequest(PageProcessor.java:123)#
         at com.sapportals.portal.htmlb.page.PageProcessorComponent.doContent(PageProcessorComponent.java:134)#
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)#
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)#
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java:328)#
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java:136)#
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable$1$DoDispatchRequest.run(AsyncIncludeRunnable.java:377)#
         at java.security.AccessController.doPrivileged(Native Method)#
         at com.sapportals.portal.prt.core.async.AsyncIncludeRunnable.run(AsyncIncludeRunnable.java:390)#
         at com.sapportals.portal.prt.core.async.ThreadContextRunnable.run(ThreadContextRunnable.java:164)#
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:729)#
         at java.lang.Thread.run(Thread.java:534)#
    java.sql.SQLException: Closed Connection#
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)#
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)#
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:269)#
         at oracle.jdbc.driver.OracleConnection.privatePrepareStatement(OracleConnection.java:962)#
         at oracle.jdbc.driver.OracleConnection.prepareStatement(OracleConnection.java:869)#
    [/code]
    So it apears it's an Oracle problem rather than a SAP problem indeed

Maybe you are looking for