Troubleshooting and Maintenanc...
Container Service Management
Container Status Operations
1 min
you can use the following commands to manage the operational state of docker containers these commands allow you to start, stop, or restart kron pam services as needed during troubleshooting or maintenance activities log in to kron pam cli interface navigate to folder /pam/docker mgmt \[pamuser\@kronpam ]# cd /pam/docker mgmt to bring all containers to the up state, you can run the following command note, however, that this action may also start containers that are not licensed for your deployment, which can lead to unnecessary resource usage \[pamuser\@kronpam ]# docker compose up to start an individual service, run the following command this allows you to bring up a specific docker based component without affecting the rest of the kron pam services \[pamuser\@kronpam ]# docker compose up \<service name> to shut down all containers, the following command can be run \[pamuser\@kronpam ]# docker compose down to shut down individual container, the following command can be run \[pamuser\@kronpam ]# docker compose down \<service name> to remove a stopped container, the following command can be run \[pamuser\@kronpam ]# docker rm \<container name or id>