Contenu principal

Start and Stop Polyspace Access Services

R2026b

Polyspace® Access™ runs as a set of Docker containers managed by Docker Compose. After you configure your installation in the .env file, use docker compose commands to start, stop, and monitor the services. Run all commands from the compose/ folder inside your extracted installation image.

Docker Compose Commands

Use these commands to start and stop services, and to view service statuses and logs.

GoalCommand
Start all services docker compose up
Start services in the background (detached mode) docker compose up -d
Stop all services docker compose down
View the status of running services docker compose ps
View the logs for services docker compose logs

For more information, see How Compose works from the Docker documentation.

Verify Your Installation

After starting the services, verify that the installation is working correctly.

  1. Check that all containers are running:

    docker compose ps

    All services should show a status of Up.

  2. Open the Polyspace Access web interface in a browser. Navigate to:

    gateway_protocol://gateway_hostname:gateway_port

    For example, for a Polyspace Access installation with the default variables in the .env file, navigate to:

    http://localhost:8080
  3. Log in with the administrator credentials specified in the USERMANAGER_ADMIN_IDS and USERMANAGER_ADMINS_PASSWORD variables in the .env file.

If you encounter issues, check the service logs:

docker compose logs service-name

See Also

Topics