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:
- Log on to the host OS as a root user.
- Enter the following command:
docker ps | grep rdocker:6000
Start the service
To start Ops Center Administrator from a stopped state:
- Log on to the host OS as a root user.
- 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:
- Log on to the host OS as a root user.
- 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:
- Log on to the host OS as a root user.
- Enter the following command:
docker ps -a | grep rdocker:6000 | docker restart `awk '{print $1}'`