Thursday 2 May 2013

Concurrent Manager cannot find error description for CONC-System Node?(OR) Name not Registered?

ICM Not Starting: Node Name not Registered [ID 602942.1]

Error in concurrent manager logfile
=======================


Concurrent Manager cannot find error description for CONC-System Node
Name not Registered

Contact your support representative.
.............................................................................

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 ebsdev@ebsdev internal concurrent manager has terminated with status 1 - giving up.
~

solution:
======

SQL> select node_name from fnd_nodes;

NODE_NAME
------------------------------
AUTHENTICATION
ebsdev

====


Go to cd $COMMON_TOP/admin/install/$CONTEXT_NAME

Check for this file afcpnode.sql  which will registor the concurrent manager recognizable node and update
the entry in fnd_nodes.

My physical linux server name is ctssp.user.com.physical linux server can has mutliple database like i
have ebsdev and ebstest.

My db name is ebsdev and concurrent manager is running on ebsdev.user.com.
ebsdev and ebstest are the virtual names.

now back to the point.
afcpnode.sql  file change entry host_name ebsdev to ctssp and connect to database as apps schema and run it which in turn registor the node in fnd_nodes table.

The below script will take three parameters.
1) username apps
2)apps schema password
3)database name


SQL> @afcpnode_ctssp.sql
Enter value for 1: apps
Enter value for 2: *******
Enter value for 3: ebsdev
Connected.

Register a node ...

11 args...
Registered Node - ctssp - as Concurrent Manager recognizable node

PL/SQL procedure successfully completed.


Commit complete.

Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
appdev@ctssp $


SQL> select node_name from fnd_nodes;

NODE_NAME
------------------------------
AUTHENTICATION
ebsdev
ctssp
SQL>

Concurrent manager unable to start as the node is not registor in the fnd_nodes table.

i have started the concurrent manager .Below are the details.

[applmgr@apps scripts]$ ps -fu applmgr|grep -i fnd|wc -l
12
[applmgr@apps scripts]$




No comments:

Post a Comment