Add another Node EBS 11i

Hi all,
this thread is in continuation with thread. Re: EBS upgrade path
Applicaiotn=11.5.10.2
DB=10.2.0.5.0
OS= OEL 4.8
Nodes configuration is 1+1+1
i.e.
Node Name
erpapps (Admin+Web+Form+Concurrent)
erpdb db tier
erpdrdb standby database
<b>want to add another node
erpapps1 with (Admin+Web+Form+Concurrent)</b>
I followed following steps:
<b>1- prepare to source system, executed</b>
perl adpreclone.pl dbTier // although it has nothing to do with this activity
perl adpreclone.pl appsTier // on erpapps node
<b>2- Copy the appsTier from erpapps to erpapps1 </b>
<b>3- executed perl adcfgclone.pl appsTier </b>
adcfgclone completed successfully.
parameters entered for adcfgclone.pl are as
PROMPT :
Do you want to use a virtual hostname for the target node (y/n) [n] ?
ANSWER :
n
PROMPT :
Target system database SID [PROD]
ANSWER :
PROD
Default value found for s_contextname : PROD_erpapps1
PROMPT :
Target system database server node [erpdb]
ANSWER :
erpdb
PROMPT :
Target system database domain name [abc.def.com]
ANSWER :
abc.def.com
PROMPT :
Does the target system have more than one application tier server node (y/n) [y] ?
ANSWER :
y
PROMPT :
Does the target system application tier utilize multiple domain names (y/n) [n] ?
ANSWER :
n
PROMPT :
Target system concurrent processing node [erpapps]
ANSWER :
erpapps1
PROMPT :
Target system administration node [erpapps]
ANSWER :
erpapps1
PROMPT :
Target system forms server node [erpapps]
ANSWER :
erpapps1
PROMPT :
Target system web server node [erpapps]
ANSWER :
erpapps1
PROMPT :
Is the target system APPL_TOP divided into multiple mount points (y/n) [n] ?
ANSWER :
n
PROMPT :
Target system APPL_TOP mount point [/oracle/oraapps/prodappl]
ANSWER :
/oracle/oraapps/prodappl
PROMPT :
Target system COMMON_TOP directory [/oracle/oraapps/prodcomn]
ANSWER :
/oracle/oraapps/prodcomn
PROMPT :
Target system 8.0.6 ORACLE_HOME directory [/oracle/oraapps/prodora/8.0.6]
ANSWER :
/oracle/oraapps/prodora/8.0.6
PROMPT :
Target system iAS ORACLE_HOME directory [/oracle/oraapps/prodora/iAS]
ANSWER :
/oracle/oraapps/prodora/iAS
PROMPT :
Do you want to preserve the Display set to :0.0 (y/n) [y] ?
ANSWER :
y
at the end
The new context file has been created at:
        /oracle/oraapps/prodappl/admin/PROD_erpapps1.xml
then autconfig completed successfully and services started with one exception while starting services
Checking for FNDFS executable.
Starting listener process APPS_PROD.
adalnctl.sh: exiting with status 127<b>4- executed perl adaddnode.pl </b>
[oraapps@erpapps1 ~]$ more set_apps_env.sh
. /oracle/oraapps/prodappl/APPSPROD_erpapps1.env
[oraapps@erpapps1 ~]$ . set_apps_env.sh
[oraapps@erpapps1 ~]$ cd $COMMON_TOP/clone/bin
[oraapps@erpapps1 bin]$ ls
adaddnode.pl  adcfgclone.pl  adchkutl.sh  adclonectx.pl  adclone.pl
[oraapps@erpapps1 bin]$ perl adaddnode.pl
Enter the APPS username: APPS
Enter the APPS user password:
        Using CONTEXT_FILE : /oracle/oraapps/prodappl/admin/PROD_erpapps1.xml
        Using      CTXORIG : /oracle/oraapps/prodcomn/clone/bin/../context/apps/CTXORIG.xml
APPL_TOP name of the source system (old APPL_TOP name) : erpapps
APPL_TOP name of the target system (new APPL_TOP name) : erpapps1
Configuring snapshot information for the original (clone source) node...
Executing command:
sqlplus /nolog @/oracle/oraapps/prodappl/ad/11.5.0/patch/115/sql/adadmrat.sql APPS pals15 PROD PROD erpapps1 erpapps /oracle/oraapps/prodcomn/temp/adadmat_sql.spool
SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 21:52:17 2011
(c) Copyright 1999 Oracle Corporation.  All rights reserved.
Connected.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Current data
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APPL_TOP Names in AD_APPL_TOPS:
*PRESEEDED*
GLOBAL
erpapps
erpapps1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Updating tables...
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
declare
*<b>
ERROR at line 1:
ORA-00001: unique constraint (APPLSYS.AD_APPL_TOPS_U2) violated
ORA-06512: at line 16
</b>
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Error configuring snapshot information for the source node...cannot proceed with adding the node.[oraapps@erpapps1 bin]$
[oraapps@erpapps1 bin]$ sqlplus apps
SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 21:52:29 2011
(c) Copyright 1999 Oracle Corporation.  All rights reserved.
Enter password:
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
<b>followed thread  Error:ORA-00001: unique constraint (APPLSYS.AD_APPL_TOPS_U2) violated </b>
SQL> create table ad_timestamps_bak as select * from ad_timestamps;
Table created.
SQL> create table ad_appl_tops_bak as select * from ad_appl_tops;
Table created.
SQL> delete ad_appl_tops where name='erpapps1';
1 row deleted.
SQL> delete from ad_timestamps where attribute like '%erpapps1';
2 rows deleted.
SQL> commit;
SQL> exit<b>rerun perl adaddnode.pl</b>
Enter the APPS username: APPS
Enter the APPS user password:
        Using CONTEXT_FILE : /oracle/oraapps/prodappl/admin/PROD_erpapps1.xml
        Using      CTXORIG : /oracle/oraapps/prodcomn/clone/bin/../context/apps/CTXORIG.xml
APPL_TOP name of the source system (old APPL_TOP name) : erpapps
APPL_TOP name of the target system (new APPL_TOP name) : erpapps1
Configuring snapshot information for the original (clone source) node...
Executing command:
sqlplus /nolog @/oracle/oraapps/prodappl/ad/11.5.0/patch/115/sql/adadmrat.sql APPS pals15 PROD PROD erpapps1 erpapps /oracle/oraapps/prodcomn/temp/adadmat_sql.spool
SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 22:25:33 2011
(c) Copyright 1999 Oracle Corporation.  All rights reserved.
Connected.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Current data
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APPL_TOP Names in AD_APPL_TOPS:
*PRESEEDED*
GLOBAL
erpapps
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Updating tables...
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PL/SQL procedure successfully completed.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Updated data
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APPL_TOP Names in AD_APPL_TOPS:
*PRESEEDED*
GLOBAL
erpapps
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Commit complete.
Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Completed snapshot configuration on source node.
Configuring snapshot information for the new (clone target) node...
Executing command:
sqlplus /nolog @/oracle/oraapps/prodappl/ad/11.5.0/patch/115/sql/adadmdat.sql APPS pals15 PROD PROD erpapps erpapps1 /oracle/oraapps/prodcomn/temp/adadmdat_sql.spool
SQL*Plus: Release 8.0.6.0.0 - Production on Wed Sep 28 22:25:33 2011
(c) Copyright 1999 Oracle Corporation.  All rights reserved.
Connected.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Checking configuration...
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PL/SQL procedure successfully completed.
PL/SQL procedure successfully completed.
AOL Schema Name         : APPLSYS
Applications System Name: PROD
Source APPLTOP Name     : erpapps
Target APPLTOP Name     : erpapps1
ACTIVE_FLAG present?    : TRUE
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Current data
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APPL_TOP Names in AD_APPL_TOPS:
*PRESEEDED*
GLOBAL
erpapps
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Updating tables...
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
PL/SQL procedure successfully completed.
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Updated data
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
APPL_TOP Names in AD_APPL_TOPS:
*PRESEEDED*
GLOBAL
erpapps
erpapps1
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Done
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Commit complete.Following are the observations:
- concurrent is not starting on both nodes
- if access application through url http://erpapps.abc.def.com:8010/--- then till login page url remains for same host, but after successfull login url redirects to http://erpapps1.abc.def.com:8010/.
<b>
we want this setup
erpapps (Admin+Web+Form+Concurrent)
erpapps1 (Admin+Web+Form+Concurrent)
erpdb db tier
erpdrdb standby database
What I missed in the configuration?
</b>
Regards,
Asim

cocurrent error at node ERPAPPS1
Could not contact Service Manager FNDSM_ERPAPPS_PROD. The TNS alias could not be located, the listener process on ERPAPPS could not be contacted, or the listener failed to spawn the Service Manager process.
Could not contact Service Manager FNDSM_ERPAPPS1_PROD. The TNS alias could not be located, the listener process on ERPAPPS1 could not be contacted, or the listener failed to spawn the Service Manager process.concurrent error for node ERPAPPS, eralier it was working fine
Routine &ROUTINE has attempted to start the internal concurrent manager.  The ICM is already running.  Contact you system administrator for further assistance.afpdlrq received an unsuccessful result from PL/SQL procedure or function FND_DCP.Request_Session_Lock.
Routine FND_DCP.REQUEST_SESSION_LOCK received a result code of 1 from the call to DBMS_LOCK.Request.
Possible DBMS_LOCK.Request resultCall to establish_icm failed
The Internal Concurrent Manager has encountered an error.
Review concurrent manager log file for more detailed information. : 28-SEP-2011 23:07:59 -
Shutting down Internal Concurrent Manager : 28-SEP-2011 23:07:59
List of errors encountered:
_ 1 _
Routine AFPCSQ encountered an ORACLE error. .
Review your error messages for the cause of the error. (=<POINTER>)
List of errors encountered:
_ 1 _
Routine AFPCAL received failure code while parsing or running your
concurrent program CPMGR
Review your concurrent request log file for more detailed information.
Make sure you are passing arguments in the correct format.
The PROD_0928@PROD internal concurrent manager has terminated with status 1 - giving up.<b>Do you have PCP implemented?</b>
No, till now we haven't done that.

Similar Messages

  • Best failover strategy for 2 node EBS 11i?

    Environment: 11.5.10.2
    Number of Node : 2
    DB& Concurrent Manager on 1 Node
    APPS on another node
    Concurrent Manager and APPS are using SHARED APPL_TOP.
    When DB node / APPS nodes are fails, what is the best failover method can be adopted for E-Business suite?

    John,
    With the current setup you have, high availability cannot be achieved for the following reasons:
    If Node 1 fails --> Database is down and you cannot run it on Node 2
    If Node 2 fails --> You will need to run all application services on Node 1 (as a single node installation), and this is not feasible as lots of changes need to be done in the application context file
    To achieve high availability you need to have RAC and/or Data Guard implemented. The following notes provide details about RAC and Data Guard implementation with Oracle E-Business Suite:
    Note: 341437.1 - Business Continuity for Oracle Applications Release 11i Using Oracle Real Application Clusters and Physical Standby Database
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=341437.1
    Note: 403347.1 - MAA Roadmap for the E-Business Suite
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=403347.1
    If you cannot afford implementing RAC and/or Data Guard, you may go with OS cluster (contact your vendor for details), but again this will not protect you if both servers and/or the shared storage goes down.

  • Add Second Node in DMZ

    Hi,
    We are on EBS 12.1.3 and have single application node accessible over intranet. We want to add another node. I know all the steps to add the node by cloning but have some confusions so would like to clarify.
    While cloning the second node autoconfig will run automatically. This will add the node in FND nodes so now we will have two apps tier in FND nodes.
    1) Do we need to still run adaddnode.pl; if yes then why?. if no then what is the use of adaddnode?
    2) After the autoconfig run 2nd node will become the primary node and application will be accessible only though 2nd node url. 2nd Node URL will be mapped to a virtual host in Load Balancer. and DMZ configuration will be over but which url will be used by the intranet users.
    I want to separate URL basically. If only one url is required then i can use the virutal host names in the context of both nodes and autoconfig will do the rest. But i need two URLs and both should be working.
    Prompt replies will be much appreciated.
    regards,

    Hi;
    Please check below which could be helpful for your issue:
    How to Add Node/Instance or Remove Node/Instance in 10gR2, 11gR1 and 11gR2 Oracle Clusterware and RAC [ID 1332451.1]
    Re: How to add new node in 11gR2 RAC
    Regard
    Helios

  • Add tree node problem

    Hi guys, I'm trying to add nodes programatically but I have the same wrong behavior:
    1. I displayed a tree which will be updated from a data block and Selected say NODE1.
    2. After I displayed it I EXECUTE QUERY on the DATA BLOCK next to it, so I can choose a candidate record to belong to the tree structure.
    3. I add the record via a button which has the addMyNode code.
    4. It adds the node correctly. (say NODE11).
    5. I add another node just behind the new node (NODE11) say NODE 111.
    6. With my mouse I selected the father(NODE1) of NODE11 and add a brother of NODE 11, say NODE12, but this node is added next to NODE111.
    7. If I navigate a little while through the tree after step number 5, and then return to NODE1 with my mouse, I can add it perfectly.
    What's wrong with my code:??
    AddMyNode (in a PushButton):
    PROCEDURE AddMyNode IS
    htree ITEM;
    top_node FTREE.NODE;
    new_node FTREE.NODE;
    item_value VARCHAR2(120);
    num_selected NUMBER;
    current_node FTREE.NODE;
    ncl_centro      NUMBER;
    BEGIN
    htree := Find_Item('DB_ARBOL.HT_ARBOL');
    num_selected := Ftree.Get_Tree_Property(htree, Ftree.SELECTION_COUNT);
    FOR j IN 1..num_selected LOOP
    current_node := Ftree.Get_Tree_Selection(htree, j); Long postings are being truncated to ~1 kB at this time.

    Hi guys, I'm trying to add nodes programatically but I have the same wrong behavior:
    1. I displayed a tree which will be updated from a data block and Selected say NODE1.
    2. After I displayed it I EXECUTE QUERY on the DATA BLOCK next to it, so I can choose a candidate record to belong to the tree structure.
    3. I add the record via a button which has the addMyNode code.
    4. It adds the node correctly. (say NODE11).
    5. I add another node just behind the new node (NODE11) say NODE 111.
    6. With my mouse I selected the father(NODE1) of NODE11 and add a brother of NODE 11, say NODE12, but this node is added next to NODE111.
    7. If I navigate a little while through the tree after step number 5, and then return to NODE1 with my mouse, I can add it perfectly.
    What's wrong with my code:??
    AddMyNode (in a PushButton):
    PROCEDURE AddMyNode IS
    htree ITEM;
    top_node FTREE.NODE;
    new_node FTREE.NODE;
    item_value VARCHAR2(120);
    num_selected NUMBER;
    current_node FTREE.NODE;
    ncl_centro      NUMBER;
    BEGIN
    htree := Find_Item('DB_ARBOL.HT_ARBOL');
    num_selected := Ftree.Get_Tree_Property(htree, Ftree.SELECTION_COUNT);
    FOR j IN 1..num_selected LOOP
    current_node := Ftree.Get_Tree_Selection(htree, j); Long postings are being truncated to ~1 kB at this time.

  • Add / remove node RAC 9i

    Good days and pardon for my Englishman, I am involved in a project to remove a node of rac 9i 9.2.0.5 and to add another node. Gurus, can to indicate myself like I can realize the tasks or if there exists algun document to which I could refer, have installed several RAC of her(it) 10g but it is my first experience on RAC 9i.
    Thank you very much for everything

    Here you go for step by step inst..
    Metalink Doc-id :270901.1 (How to Dynamically Add a New Node to an Existing 9.2.0 RAC Cluster)
    http://download-east.oracle.com/docs/cd/B10501_01/rac.920/a96596/addmig.htm
    Hope this helps,
    Please reward good answers by marking them correct or helpful...

  • EBS 11i Disaster Recovery using tape backup on alternate Unix Server.

    Hi,
    I would really appreciate if you could please share with us what is the process to recovery EBS 11i environment to an alternate DR server using the latest tape backup in case any disaster happens to the existing production server.
    I need to prepare and test disaster recovery plan document using the latest tape backups.
    We have single node EBS 11i environment with Apps and DB installed on the same AIX Unix Server.
    We also have full database RMAN backup every night.
    The new alternate DR Unix server will have different hostname and IP address.
    Thanks in advance.
    Regards.

    Please refer to the following docs.
    Business Continuity for Oracle Applications Release 11i, Database Releases 9i and 10g [ID 216212.1]
    Business Continuity for Oracle E-Business Release 11i Using Oracle 11g Physical Standby Database - Single Instance and Oracle RAC [ID 1068913.1]
    Thanks,
    Hussein

  • Add another listener to database

    Hi expert
    I have EBS v 11.5.10.2 with Database 9.2.0.6 and on this database I have one listener and all employees connect throw this listener with 1521 port , I am thinking to add another listener with 1531 port in database .
    How can the application see the both listener in the same time.
    Regards
    Mohammed

    Mohammed,
    If you are asking about load balancing, the following documents should be helpful.
    Note: 217368.1 - Advanced Configurations and Topologies for Enterprise Deployments of E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=217368.1
    Note: 306653.1 - Installing and Configuring Web Cache 10.1.2 and Oracle E-Business Suite 11i
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=306653.1
    For PCP, refer to:
    Note: 388495.1 - How to Set Up Parallel Concurrent Processing (PCP) in Apps 11i?
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=388495.1
    Regards,
    Hussein

  • EBS 11i Aix install error

    Hi Hussein,
    I am installing again EBS 11i (11.5.10.2) on Aix, and I got this pitpall again everytime I have this installed.
    I onften stuck up at the RW-50004 "Can not create control file error" ORA-1031: Insufficient privileges.
    I tried to remove all the tmp file at /var/tmp and chmod 777 and also rm -R .oracle, but the error persist.
    I also tried as "oracle" owner > sqlplus / as sysdba ....and I got ORA-1031 too. :(
    But I just copied the settings of my oracle owner to the existing one.
    The existing is "oraprod" using and I create anothe "oramgr" from my new instance.
    Its weird bacuase oraprod can sqlplus / as sysdba ....while oramgr can not.
    Please help.....
    Thanks

    Thanks hussein,
    By the way, as I can remember, there is not so much in the log files. Its just the usual thing similar error like
    RW-50004 external thing error, then when you see the log file, it stops on the creating of database / of course
    the first is the control file to hit the error. Then I found out that "oramgr" can not sqlplus / sysdba.
    So what I did is to add "dba" group and let the "oramgr" member of it. then I restarted the failed installation.
    Then it was able to continue, but I didnt see it completed becuase i left it running. But before that.
    I tried to login the "oracle" user owner of the existing PROD instance. True enough my suspicions is correct.
    Its the one now the cannot connect sqlplus / as sysdba or ora-1031 error.
    So my workaround will be (maybe I hope it worked) and not corrupts the existing PROD setup.
    If i use "oracle" and have to drop the "dba" group again. and if I use "oramgr" or PROD2 instance, I will add again
    the "dba" group .....whewwww what a setup :)

  • EBS 11i  ORA-1653

    Hi Friends,
    EBS 11i
    Oracle DB 9.2.0.6
    RHEL 4.6
    I just encountered error in our database ora-1653 in the tablespace APPS_TS_QUEUES, and it has two datafiles namely:
    SQL> select file_name, AUTOEXTENSIBLE from dba_data_files where tablespace_name='APPS_TS_QUEUES';
    FILE_NAME                                          AUT
    /u02/oracle/oaproddata/a_queue02.dbf               YES
    /u02/oracle/oaproddata/a_queue01.dbf               YESBased on the metalink notes, I did the command:
    alter database datafile '/u02/oracle/oaproddata/a_queue01.dbf ' autoextend on;
    alter database datafile '/u02/oracle/oaproddata/a_queue02.dbf ' autoextend on;
    But it did not solve the issue :(
    Do you think I need to bounce back the database of let the users exit from their login Forms data entry?
    I tried doing this :
    alter tablespace APPS_TS_QUEUES add datafile '/u02/oracle/oaproddata/a_queue03.dbf' size 500M ;
    and the problem was solved.
    I just can not understand why "autoextend" did not work :(
    Please clear my doubts ...
    Thanks a lot,
    Ms K

    Hussein,
    Do you think that even if I made the all tablespace1 "autoextend on" I will still get Ora-1653?
    I have another mistake too :( I cleared up all logs after I fixed the ora error becase the are lots and lots of logs in the database background dump files accumulated for the past years. I decided to clear to so that I can fresh see new logs.
    I also reset the altertPROD.log huhuhuh. And now the support wants what exact time did the error occured. And I can not give it. This is the logs in the bdump database side.
    Can I get logs for the error at the APPS tier side? where can I get the applications log when it hit Ora-1653 while the user was processing the Order Management module?
    Thansk a lot
    Edited by: user_unlimited on Oct 11, 2010 5:31 PM

  • [SOLVED] Can't add a node to the cluster with error (Exchange 2010 SP3 DAG Windows Server 2012)

    Hi there!
    I have a problem which makes me very angry already :)
    I have two servers Exchange 2010 SP3 with MB role started on Windows Server 2012. I decided to create a DAG.
    I have created the prestaged AD object for the cluster called msc-co-exc-01c, assigned necessary permissions and disabled it. Allowed through the Windows Firewall traffic between nodes and prepared the File Share Witness server.
    Then I have tried to add nodes. The first node has been added successfully, but the second node doesn't want to be added :). Now I can add only one node to the DAG. I tried to add different servers first, but only the first one was added.
    LOGS on the second nodes: 
    Application Log
    "Failed to initialize cluster with error 0x80004005." (MSExchangeIS)
    Failover Clustering Diagnostic Log
    "[VER] Could not read version data from database for node msc-co-exc-04v (id 1)."
    CMDLET Error:
    Summary: 1 item(s). 0 succeeded, 1 failed.
    Elapsed time: 00:06:21
    MSC-CO-EXC-02V
    Failed
    Error:
    A database availability group administrative operation failed. Error: The operation failed. CreateCluster errors may result from incorrectly configured static addresses. Error: An error occurred while attempting a cluster operation. Error: Cluster API '"AddClusterNode()
    (MaxPercentage=100) failed with 0x5b4. Error: This operation returned because the timeout period expired"' failed. [Server: msc-co-exc-04v.int.krls.ru]
    An Active Manager operation failed. Error An error occurred while attempting a cluster operation. Error: Cluster API '"AddClusterNode() (MaxPercentage=100) failed with 0x5b4. Error: This operation returned because the timeout period expired"' failed..
    This operation returned because the timeout period expired
    Click here for help... http://technet.microsoft.com/en-US/library/ms.exch.err.default(EXCHG.141).aspx?v=14.3.174.1&t=exchgf1&e=ms.exch.err.ExC9C315
    Warning:
    Network name 'msc-co-exc-01c' is not online. Please check that the IP address configuration for the database availability group is correct.
    Warning:
    The operation wasn't successful because an error was encountered. You may find more details in log file "C:\ExchangeSetupLogs\DagTasks\dagtask_2014-11-17_13-54-56.543_add-databaseavailabiltygroupserver.log".
    Exchange Management Shell command attempted:
    Add-DatabaseAvailabilityGroupServer -MailboxServer 'MSC-CO-EXC-02V' -Identity 'msc-co-exc-01c'
    Elapsed Time: 00:06:21
    UPD:
    when Exchange servers ran on the same Hyper-V node, the DAG is working well, but if I move one of VM to another node, It stops working.
    I have installed Wireshark and captured trafic of cluster interface. When DAG members on the same HV-node, there is inbound and outbound traffic on the cluster interface, but if I move one of DAG member to another node, in Wireshark I see only outbound traffic
    on both nodes.
    It's confused me, because there is normal connectivity between these DAG members through the main interface.
    Please, help me if you can.

    Hi, Jared! Thank you for the reply.
    Of course I did it already :) I have new info:
    when Exchange servers ran on the same Hyper-V node, the DAG is working well, but if I move one of VM to another node, It stops working.
    I have installed Wireshark and captured trafic of cluster interface. When DAG members on the same HV-node, there is inbound and outbound traffic on the cluster interface, but if I move one of DAG member to another node, in Wireshark I see only outbound traffic
    on both nodes.
    It's confused me, because there is normal connectivity between these DAG members through the main interface.

  • RHEL 6 for EBS 11i (11.5.10.2)

    Hi hussein,
    I posted a thread in here before about our company buying or upgrading to a newer server which is of higher-end and with bigger CPUs and Memories.
    We are currently running EBS 11i (11.5.10.2) on the current server which is about 6 years old. This is single node only and running RHEL 4.6.
    Now, due to performance degradation, we are buying newer machines which will be a two-node configuration. The machine vendor said that the O.S. that it runs on will be RHEL 6.
    My question is....Is RHEL 6 supported in EBS 11i? Can I clone the existing PROD EBS 11i which is on RHEL 4.6 to
    the new target servers running on RHEL 6?
    Thanks a lot,
    Ms Inday

    My question is....Is RHEL 6 supported in EBS 11i? No, you either need to install RHEL4 or RHEL5.
    Can I clone the existing PROD EBS 11i which is on RHEL 4.6 to
    the new target servers running on RHEL 6?If you install RHEL5, you can use Rapid Clone to clone from RHEL4 to RHEL5.
    Please see these docs for the list of pre-req. software and packages on RHEL5/OEL5
    Oracle Applications Installation Update Notes, Release 11i (11.5.10.2) [ID 316806.1]
    Oracle Applications 11i Installation on OEL5 or RHEL5 [ID 730444.1]
    Recommendations to Install Oracle Applications 11i [ID 294932.1]
    Oracle Database on Unix AIX,HP-UX,Linux,Mac OS X,Solaris,Tru64 Unix Operating Systems Installation and Configuration Requirements Quick Reference (8.0.5 to 11.2) [ID 169706.1]
    You may relink relink the executable files as per the docs referenced in this thread (it is optional as Rapid Clone will do this for you).
    Need clarification on Solaris 10 upgrade for E Business suite application
    Need clarification on Solaris 10 upgrade for E Business suite application
    Thanks,
    Hussein
    Thanks,
    Hussein

  • One of cloud doesn't work in failover with Event ID 1205 and 1069 and unable to move services and application another node

    Any one please respond.
    I've been working on creating a windows server 2008 R2 cluster for about a month now and I keep getting an error whenever I try to add a 2nd node. I keep
    getting The cluster node is not reachable. However, when I validate the configuration, everything goes through success. I created and destroyed the cluster a couple of times, but no luck. I even re-installed Windows Server 2008 R2 on both servers, re-configured
    the iSCSI, and the same warning keeps coming up. 
    I installed a new a new SQL Server 2008R2 Named Instance on an exisiting SQL Server cluster node (Node 1 &Node2). When I try to manually fail
    over 
    the Services and applications  to another node (Node1 to node2) using Failover Cluster Manager, I get the errors
    The cluster has these Events:
    Event ID
    1069: Cluster resource 'IP Address xx.xx.xx.xx' in clustered service or application 'ClusterDtc' failed.
    Event ID 1205:The Cluster service failed to bring clustered service or application 'ClusterDtc' completely online
    or offline. One or more resources may be in a failed state. This may impact the availability of the clustered service or application..
    Why the cloud server doesn’t move to node2? you can see screen shorts below.
    1.
    in system configuration-
    3. in
    system configuration---->warning--->Validate All Drivers Signed
    after creating cluster I got below errors.
    Any info you might know would be really helpful.

    Dear Ravikumar
    From clone support they given reply mail...
    mail from Ramu...
    That would be a typical work around in this situation. But what we intend to do cannot be accomplished through this work around as we need the validations to complete successfully.
     We are looking for an option either to get the driver signed or use a different signed adapter for the same. Could you please suggest us something on that line. 
    Mail from Support....
    Hello,
    Unfortunately this is not something that we would be able to do in a virtual environment; You are welcome to try different drivers however we would not be able to provide any support 
    for untrusted drivers. The only true solution would be to upgrade from a VM to a dedicated server where you would have control of all the drivers as there is no virtualization layer to
     contend with. Stepping into the territory of untested drivers for a custom configuration in a virtual environment will certainly prove to be an uphill battle.
     I would advise contacting Microsoft's support for additional assistance as they will be able to provide the most accurate information regarding this concern. 
    Regards
    Systems Administrator

  • Upgrade Linux Server for EBS 11i

    Hi All,
    EBS 11i
    RHEL 4.6
    Our EBS 11i is currently running on HP server with RHEL 4.6 OS and a single node only. This server was bought 6 years ago and lately it is showing performance degradation. We want to migrate/upgrade to a higher end latest model of HP and make it a multi-node. But the latest HP model only support a minimum RHEL 5 version.
    My question is, is cloning EBS 11i from RHEL 4.6 to RHEL 5 supported? How do I migrate EBS 11i with this kind of scenario?
    Thanks a lot
    Sis Inday

    Hi,
    My question is, is cloning EBS 11i from RHEL 4.6 to RHEL 5 supported? How do I migrate EBS 11i with this kind of scenario?It is supported -- Use Rapid Clone (go through the docs referenced in this thread).
    Cloning EBS 11.5.10.2 from RHEL 4 (32 bit) to RHEL 5 (32 bit)
    Re: Cloning EBS 11.5.10.2 from RHEL 4 (32 bit) to RHEL 5 (32 bit)
    Thanks,
    Hussein

  • How send Email of PO for approval from EBS 11i?

    HI,
    We are currently sending PO approvals through emails in Oracle EBS 11i (11.5.10.2).
    When our users are approving PO from their laptops and desktop using Outlook everything is OK.
    But when the same emails are received on Mobile phones we are facing issue as below:
    ===============
    1: Received Email like:
    ===============
    From
    abc
    To
    xyz
    Sent
    26-JAN-13 17:26:34
    ID
    268759
    Standard Purchase Order 7347 for PKR requires your approval..
    Standard Purchase Order 7347 Amount: PKR 501.00; Tax: PKR .
    Supplier: USMAN FAZAL - IT
    Supplier Site: EMPLOYEE
    Description:
    Forwarded From: Akram, Mr. Azeem
    Preparer: Akram, Mr. Azeem
    Operating Unit: company
    Note: Usman, Please Approve for Testing
    Purchase Order Lines
    Line
    Item Number
    Rev.
    Item Description
    UOM
    Quantity
    Unit Price
    Line Amount
    1
    Test by Usman on 26-Jan
    Number
    501
    1
    501.00
    Approval Sequence
    Sequence
    Who
    Action
    Date
    Note
    2
    Akhtar, Mr. Ghazi
    1
    Akram, Mr. Azeem
    Forward
    26-JAN-13
    Usman, Please Approve for Testing
    0
    Akram, Mr. Azeem
    Submit
    26-JAN-13
    Usman, Please Approve for Testing
    For additional details please open the document.
    Please click on one of the following choices to automatically generate an E-mail response. Before sending the E-mail response to close this notification, ensure all response prompts include a desired response value within quotes.
    Please Approve or Reject the Document
    Approval Action: Approve Approve And Forward Forward Reject Request Information
    ===========
    =============================================
    2: And when click on Approve the the reply window should be like this:
    =============================================
    Approval Action: 'Approve'
    If forwarding this document to another person, please enter their user-id
    below.
    Forward To: ''
    Note: 'Usman, Please Approve for Testing'
    NID[268759/247349034039357663459406147086995777702@WFMAIL]
    ==============================================
    ===============================================
    3: But following message appear when clicking on approve on mobile device.
    ===============================================
    wf.erptest@domansubject=%20Action%20Required:%20xxx%20Bxxxx%20%28Pvt%29%20Ltd%20%2d%20%20Standard%20Purchase%20Order%207341%20%20for%20PKR%20%20%20requires%20your%20approval%2e%20&body=%20Approval%20Action:%20%27Approve%27%0D%0A%0D%0AIf%20forwarding%20this%20document%20to%20another%20person%2c%20please%20enter%20their%20user%2did%0D%0Abelow%2e%0D%0AForward%20To:%20%27%27%0D%0A%0D%0ANote:%20%27Note%20For%20Email%27%0D%0A%0D%0A%0D%0A%0D%0ANID%5b268736%2f145556754912374155206051047175595483913%40WFMAIL%5d;
    Regards,
    Edited by: fahmedarain on Jan 26, 2013 4:25 AM

    Hi,
    Please see
    Blackberry Displays the Emails with HTML Tags in the Email Body [ID 802225.1]
    Thanks

  • Dynamic add tree node and thread

    Hi,
    I implemented a thread by using SwingWorker class to execute the time-consuming file loading and processing task instead of the event-dispatching thread. However, I need to dynamically add node to a tree by using data returned by the file loader in my project's main frame like following:
    if (source == loadAffyItem) {
        //load affy file data to the application
        loader = new AffyFileLoader();
        //dynamically add node to the tree after data loading
        rawDataNode = treePanel.addObject(null, "Raw Data");
        DefaultMutableTreeNode node = new DefaultMutableTreeNode(new UserData("Pixel",   loader.getPixelMatrix()));
        pixelNode = treePanel.addObject(rawDataNode, node);
        node = new DefaultMutableTreeNode(new UserData("Signal", loader.getSignalMatrix()));
        signalNode = treePanel.addObject(rawDataNode, node);
    }However, I always get a NullPointer error by doing this way since the code to dynamically add node to the tree using data returned from loader, but the loader is executed
    in another thread and not finished yet. How could I make that code executed after the loader class is finished? Hope you could enlight me about this issue?
    thanks in advance!
    Jenny

    You'll have to redesign a bit. You could either have the separate thread add the node when it's finished (using SwingUtilities invokeLater to ensure you're updating the GUI in the Event Dispatch thread), or you could have the separate thread call-back or send an event when it's finished (and your main thread would listen).

Maybe you are looking for

  • What is event handler in oopsand why we need it  and how to use it ?

    Hi  everyone , I am new to sdn.I did not understand event handler  in oops .Please replay to this . Thanks & Regards, Sudeep Subudhi. Moderator Message: Welcome to SDN. Please read the [Forum Rules of Engagment|Welcome and Rules of Engagement; before

  • Report 10g Crashed when i run report on spreadsheet

    Hi gurus, I am running report in 10g from a form its working fine when i set DESTFORMAT as PDF, but when i set DESFORMAT as SPREADSHEET the browser is crashing. could you please advise me why it is happening. same thing is happening in -windows XP pr

  • Why are the following not being backup?

    EtreCheck reports that the following are not backed up, what up with that? jmf Time Machine details may not be accurate.           All volumes being backed up may not be listed.           /sbin excluded from backup!           /usr excluded from backu

  • Work Book Favorites

    Hello Experts, I have a workbook saved as a user favorite that is referencing a query that no longer exists. This workbook is has all the right drill downs. Is it possible to keep the workbook template but point the query to the new one without havin

  • Suddenly. cant send email messages in Firefox but can in IE

    ''Suddenly'', when I try to mail any message or save it as a draft using Peoplepc webmail and MS Outlook Express via FireFox I get a message "Sendmail error. Your message may not have been sent. Try again" If I use IE Explorer everything works fine.