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.

To identify which processes are running:

  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.