Managing the Ops Center Administrator service with Docker

Ops Center Administrator User Guide

Version
10.9.x
File Size
6.6 MB
Audience
anonymous
Part Number
MK-99ADM001-17

In a Docker environment, you can manage the Ops Center Administrator service containers with the Docker command.

Check the service status

To check the Ops Center Administrator service status:

  1. Log on to the host OS as a root user.
  2. Enter the following command:
    docker ps | grep rdocker:6000

Start the service

To start Ops Center Administrator from a stopped state:

  1. Log on to the host OS as a root user.
  2. Enter the following command:
    docker ps -a | grep rdocker:6000 | docker start `awk '{print $1}'`

Stop the service

To stop Ops Center Administrator from a running state:

  1. Log on to the host OS as a root user.
  2. Enter the following command:
    docker ps -a | grep rdocker:6000 | docker stop `awk '{print $1}'`

Restart the service

To restart Ops Center Administrator from a running state:

  1. Log on to the host OS as a root user.
  2. Enter the following command:
    docker ps -a | grep rdocker:6000 | docker restart `awk '{print $1}'`