You can install Ultipa Manager on Linux machines. This guide outlines the steps to deploy Ultipa Manager.
The following hardware and software requirements must be met for deploying Ultipa Manager:
3050Ultipa Manager can be deployed on a dedicated server (recommended for production) or an existing Name Server.
To retrieve the Ultipa Manager image from the registry, run:
Bashdocker pull <docker_image_identifier>
If access to the registry is unavailable, you can load the image from a local TAR file:
Bashdocker load -i <image_tar_file_path>
Use the following command to run the Ultipa Manager container:
Bashdocker run -itd -p <local_host_port>:3002 \ -v /absolute/path/to/data:/var/ultipa-manager/data \ -v /absolute/path/to/logs:/var/ultipa-manager/logs \ -e TZ=UTC \ -e MANAGER_ROOT_PASSWORD="<root_password>" \ --name ultipa-manager <image_ID> start
<local_host_port> with the local host port used to access the Ultipa Manager web UI.3002 is the container's internal port that runs the web service.-v options mount host directories into the container for persistent storage of data and logs. These are optional and can be omitted if persistence or custom storage paths are not needed.-e TZ option sets the container's time zone.-e MANAGER_ROOT_PASSWORD option sets the login password for the root user. Replace <root_password> with your password.<image_ID> with the actual Docker image ID or tag of the Ultipa Manager image.Ultipa Manager is well installed if you could successfully access service in browser through http://<host_ip>:<local_host_port>.