cpwd_admin list

Description

Prints the status of all WatchDog monitored processes on the screen.

Syntax

cpwd_admin list [-full]

Parameters

Parameter

Description

-full

Shows the verbose output.

Output

Column

Description

APP

Shows the WatchDog name of the monitored process.

PID

Shows the PID of the monitored process.

STAT

Shows the status of the monitored process:

  • E - executing

  • T - terminated

#START

Shows how many times the WatchDog started the monitored process.

START_TIME

Shows the time when the WatchDog started the monitored process for the last time.

SLP/LIMIT

In verbose output, shows the values of the sleep_timeout and no_limit configuration parameters (see cpwd_admin config).

MON

Shows how the WatchDog monitors this process (see the explanation for the cpwd_admin):

  • Y - Active monitoring

  • N - Passive monitoring

COMMAND

Shows the command the WatchDog run to start this process.

Example 1 - Standard output

[Expert@HostName]# cpwd_admin list
APP        PID    STAT  #START  START_TIME             MON  COMMAND
RNGD       3076   E     1       [16:03:47] 14/9/2021   N    /pfrm2.0/bin/jitterentropy_rngd -v
DROPBEAR   11318  E     1       [16:03:51] 16/9/2021   N    dropbear -F -j -k -p 22 -r /pfrm2.0/etc/dropbear_rsa_host_key -b /opt/fw1/conf/sshd_banner.txt
cposd      3834   E     1       [16:03:53] 14/9/2021   N    cposd
RTDB       3868   E     1       [16:03:54] 14/9/2021   N    rtdbd
SFWD       10983  E     1       [16:04:55] 14/9/2021   N    fw sfwd
[Expert@HostName]#

Example 2 - Verbose output

[Expert@HostName]# cpwd_admin list -full   
APP        PID    STAT  #START  START_TIME             SLP/LIMIT  MON 
--------------------------------------------------------------------------------
RNGD       3076   E     1       [16:03:47] 14/9/2021   60/5       N   
           PATH = /pfrm2.0/bin/jitterentropy_rngd
           COMMAND = /pfrm2.0/bin/jitterentropy_rngd -v
--------------------------------------------------------------------------------
DROPBEAR   11318  E     1       [16:03:51] 16/9/2021   60/5       N   
           PATH = /pfrm2.0/bin/dropbear
           COMMAND = dropbear -F -j -k -p 22 -r /pfrm2.0/etc/dropbear_rsa_host_key -b /opt/fw1/conf/sshd_banner.txt
--------------------------------------------------------------------------------
cposd      3834   E     1       [16:03:53] 14/9/2021   60/5       N   
           PATH = /pfrm2.0/bin/cposd
           COMMAND = cposd
           ENV = SECORM_SKIP_ATTACHED_DBS=1
--------------------------------------------------------------------------------
RTDB       3868   E     1       [16:03:54] 14/9/2021   60/5       N   
           PATH = /pfrm2.0/bin/rtdbd
           COMMAND = rtdbd 
--------------------------------------------------------------------------------
SFWD       10983  E     1       [16:04:55] 14/9/2021   60/5       N   
           PATH = /opt/fw1/bin/fw
           COMMAND = fw sfwd
[Expert@HostName]#