Skip to content

Platform launch#

Enable Liveness V1#

The Liveness V1 service is disabled by default.

You do not need to launch any additional services for Liveness V2.

To enable the service in services configurations before LP launching, open the "/var/lib/luna/current/extras/conf/platform_settings.json" file and set the "liveness" parameter to "true". You should edit the parameter in the "settings" section for the "ADDITIONAL_SERVICES_USAGE" parameter.

"liveness": true

You should launch the Liveness V1 service using Compose.

The service should be launched before the other services.

cd /var/lib/luna/current/example-docker
docker-compose up -d idface-liveness

Configure User Interface 4 container#

You should configure the BP4_EXTERNAL_IP: field in the "/var/lib/luna/current/example-docker/.env" file before launching the Compose script if you are going to use the User Interface 4 service with the Backport 4 service.

BP4_EXTERNAL_IP=<Backport_4_external_IP>

You should specify the external IP of the server with Backport 4. Otherwise, the User Interface 4 will be unable to send requests to the Backport 4 service.

Launch services#

Go to the Docker Compose folder:

cd /var/lib/luna/current/example-docker

Make sure that LP containers are not launched before executing the script. An error will occur if you try to run a container with the same name as an existing container. If one or several LP containers are launched, you should stop them using the docker container rm -f <container_name> command. To stop all the containers, use docker container rm -f $(docker container ls -aq).

Launch Docker Compose:

You must be logged in the VisionLabs registry (see section "Login to registry")

./start_platform.sh

Deploying containers takes some time. You have to wait until all the services are running before working with Luna Platform.

Check the state of launched Docker containers.

docker ps

Run Handlers utilizing GPU#

The Handlers service does not utilize GPU by default. If you are going to use the GPU, then you should enable its use for the Handlers service in the Configurator service.

See the device_class parameter of the following settings:

  • LUNA_HANDLERS_WARP_ESTIMATOR_RUNTIME_SETTINGS
  • LUNA_HANDLERS_HUMAN_EXTRACTOR_RUNTIME_SETTINGS
  • LUNA_HANDLERS_HUMAN_DETECTOR_RUNTIME_SETTINGS
  • LUNA_HANDLERS_EXTRACTOR_RUNTIME_SETTINGS
  • LUNA_HANDLERS_DETECTOR_RUNTIME_SETTINGS

See section "Calculations using GPU" for additional requirements for GPU utilization.

Enable logging to server directory#

LP does not save logs to your server by default. To enable logs saving to the server you should:

  • create a directory for logs (see Create logs directory)
  • enable logs saving and change logs directory in the Configurator service

Set the "log_to_file" parameter to "True" to enable logging to files.

When logging to file is enabled and configured, service logs are written to the "/srv/logs" directory in the service container and to the specified service directory on the server (e. g., "/tmp/logs").

Change logs directory manually#

Specify "folder_with_logs" parameter value to "/srv/logs" for all the services where you want to write logs. The docker run commands are already configured for saving logs to your server to this directory. After launching the service container, the service will write logs to the "/srv/logs"directory.

Set the "log_to_file" parameter to "True" to enable logging to files.

Change logs directory using dump file#

The dump file includes settings for logging to the specified directory.

Copy the dump file provided in the distribution package to the Configurator container.

docker cp /var/lib/luna/current/extras/conf/logging.json example-docker_configurator_1:/srv/luna_configurator/used_dumps/logging.json

Update logging setting using the copied file.

docker exec -it example-docker_configurator_1 python3.9 ./base_scripts/db_create.py --dump-file /srv/luna_configurator/used_dumps/logging.json