Installing MariaDB Enterprise Manager
Standard Installation
Log in to Docker registry
Login to the MariaDB Enterprise Docker Registry providing your MariaDB ID as a username and Customer Download Token as a password:
docker login docker.mariadb.comDownload the installation script
Insert your Customer Download Token into the download URL and download the installation script:
wget https://dlm.mariadb.com/<Customer_Download_Token>/enterprise-release-helpers/install-enterprise-manager.shMake the installer executable
chmod +x install-enterprise-manager.shRun the installer
Install Enterprise Manager by running the script:
./install-enterprise-manager.shThe script prompts you to enter IP address and port number on which Enterprise Manager should listen to for incoming connections. Verify the auto-detected value and correct it if it's wrong.
After you provide the details, the script launches Enterprise Manager.
Verify containers
Run docker compose ps in the enterprise-manager directory to check that all of the constituent Docker containers are running. The containers are:
enterprise-manager-grafanaenterprise-manager-nginxenterprise-manager-otelcolenterprise-manager-prometheusenterprise-manager-supermax
cd enterprise-manager
docker compose psAccess the UI
Access Enterprise Manager UI at:
https://<Enterprise_Manager_IP>:8090
At the login screen, use the default username admin and the generated password displayed after the installation script finishes.
The installer generates a self-signed TLS certificate for Enterprise Manager. To change the certificate, follow instructions at Security in Enterprise Manager.
To modify metrics retention time, see Metrics retention configuration.
Enterprise Manager Server Air-Gapped Installation
Installing Enterprise Manager to a machine without an Internet connection is possible by manually copying the Docker images and related settings from an Internet-connected machine to the final target machine.
Follow these steps:
Install on an Internet-connected machine
First, install Enterprise Manager on an Internet-connected machine as explained in the normal installation section. When the installation script asks for the address and port that Enterprise Manager should listen at for incoming connections, enter the values for the final target machine.
Save images and settings
Once installation is complete, save all related Docker images and settings by running the following commands from the directory that contains the enterprise-manager folder:
cd enterprise-manager
docker compose images | awk 'p{print $2 ":" $3} {p=1}' | xargs docker image save -o images.tar
cd ..
tar -czvf enterprise-manager.tar.gz enterprise-managerThe resulting archive enterprise-manager.tar.gz contains all components of Enterprise Manager.
Transfer archive to target machine
Copy enterprise-manager.tar.gz to the target (air-gapped) machine into the directory under which you want to install Enterprise Manager.
Extract and load images on target machine
On the target machine, extract the archive and load the Docker images:
tar -xzvf enterprise-manager.tar.gz
cd enterprise-manager
docker image load -i images.tarStart Enterprise Manager
Start Enterprise Manager with:
docker compose up -dThis page is: Copyright © 2025 MariaDB. All rights reserved.
Last updated
Was this helpful?

