Identifying which Network Manager processes are running

To identify the processes that were started by the ncp_ctrl process, have finished starting up, and are currently running, issue a query to the services.inTray database table.

About this task

To identify which processes are running:

Procedure

  1. Log in to the Ctrl service using either the OQL Service Provider or the Management Database Access page:
    • Start the OQL Service Provider by typing a command similar to the following:
      ncp_oql -domain NCOMS -service Ctrl

      where NCOMS is the domain name. If authentication has been configured for the OQL Service Provider, enter your username and password.

    • Log in to the Management Database Access page and select the Ctrl service.
  2. Issue the following command:
    select serviceName, binaryName, domainName, processId
    from services.inTray
    where serviceState = 4 ;
    go
    Note:

    It can take a few minutes for some processes to fully start up after ncp_ctrl has started them. While a process is starting up, it is not returned by this query.

Example

The following example output shows that 12 processes were started by the ncp_ctrl process and are currently running:
...........
{
        binaryName='ncp_store';
        domainName='SCO099';
        processId=12129;
        serviceName='ncp_store';
}
{
        binaryName='ncp_class';
        domainName='SCO099';
        processId=12130;
        serviceName='ncp_class';
}
{
        binaryName='ncp_model';
        domainName='SCO099';
        processId=12384;
        serviceName='ncp_model';
}
{
        binaryName='ncp_disco';
        domainName='SCO099';
        processId=12488;
        serviceName='ncp_disco';
}
{
        binaryName='ncp_d_helpserv';
        domainName='SCO099';
        processId=12131;
        serviceName='ncp_d_helpserv';
}
{
        binaryName='ncp_config';
        domainName='SCO099';
        processId=12132;
        serviceName='ncp_config';
}
{
        binaryName='ncp_poller';
        domainName='SCO099';
        processId=12906;
        serviceName='ncp_poller_default';
}
{
        binaryName='ncp_poller';
        domainName='SCO099';
        processId=12907;
        serviceName='ncp_poller_admin';
}
{
        binaryName='nco_p_ncpmonitor';
        domainName='SCO099';
        processId=12133;
        serviceName='nco_p_ncpmonitor';
}
{
        binaryName='ncp_g_event';
        domainName='SCO099';
        processId=12552;
        serviceName='ncp_g_event';
}
{
        binaryName='ncp_webtool';
        domainName='SCO099';
        processId=12134;
        serviceName='ncp_webtool';
}
{
        binaryName='ncp_virtualdomain';
        domainName='SCO099';
        processId=13182;
        serviceName='ncp_virtualdomain';
}
( 12 record(s) : Transaction complete )