Start and stop

ADCM is just a container operated by Docker. So you are able to use simple Docker commands to start and stop ADCM:

  • To stop ADCM, use the following command.

    $ sudo docker stop adcm
  • To start ADCM, use the following command.

    $ sudo docker start adcm
  • In order to provide the automatic start of the Docker container after unexpected errors, use the following command.

    $ sudo docker update --restart=on-failure adcm
NOTE
  • For more information about Docker restart policies, refer to the Docker documentation.

  • If you allowed your user to access the Docker CLI without root privileges, then you can omit the sudo keyword from the commands listed above.

Container startup process

After the ADCM container starts, the following actions are performed:

  1. The required environment variables are checked.

  2. Secrets are initialized if they do not already exist.

  3. The compatibility of the installed bundles is checked against the contract versions of the current ADCM version.

  4. The required database migrations are applied.

  5. The components of the ADCM core container are started:

    • Backend Server;

    • Status Server;

    • Nginx.

Found a mistake? Seleсt text and press Ctrl+Enter to report it