Skip to main content

Daemon Commands

Daemon commands are used for reviewing the Key Manager back-end and worker processes.

list-mgmt-daemons

Syntax:

ssh-mgr-client list-mgmt-daemons [options] [-F <filter>] [-vvv] \
[-U <url>] [-o <format>] [-C <columns>] [-H] [-O <sort-order>] \
[-S <start-from>] [-M <max-results>] [-E <delim>] [-B]

The default command lists the currently-running back-end and worker processes:

$ ssh-mgr-client list-mgmt-daemons

The following columns can be used for filtering (-F) and output formatting (-C):

daemon_type

Type of the daemon process

host_id

Id of the host this daemon is operating on

hostname

Hostname of the host this daemon is operating on

id

Numeric identifier of the daemon record

memory_usage

Current memory usage of the daemon process

pid

OS process id of the daemon process

product_version

Product version of the daemon process

progressed

When the daemon record was last updated

server

PrivX Key Manager server this daemon is running on

started

When the daemon was started

Example for listing all the back-end processes:

$ ssh-mgr-client list-mgmt-daemons -F "daemon_type=backend" -H

Example for displaying worker processes in (ascending) order of memory usage:

$ ssh-mgr-client list-mgmt-daemons -F "daemon_type=worker" -O memory_usage -H