Quickstart Guide
Installation and configuration steps for Enterprise Manager and agents, covering standalone and MaxScale topologies.
Prerequisites
1
2
3
Step 1: Install Enterprise Manager
1
docker login docker.mariadb.com2
wget https://dlm.mariadb.com/<Customer_Download_Token>/enterprise-release-helpers/install-enterprise-manager.sh3
chmod +x install-enterprise-manager.sh4
./install-enterprise-manager.sh5
Step 2: Register database topology in Enterprise Manager and enable monitoring
Topology without MaxScale
1
CREATE USER 'monitor'@'<Enterprise_Manager_IP>' IDENTIFIED BY '<password>';
GRANT REPLICA MONITOR ON *.* TO 'monitor'@'<Enterprise_Manager_IP>';2

3
sudo yum install -y mema-agentsudo apt install -y mema-agent4
CREATE USER 'monitor'@'localhost' IDENTIFIED BY '<password>';
GRANT PROCESS, BINLOG MONITOR, REPLICA MONITOR, REPLICATION MASTER ADMIN ON *.* TO 'monitor'@'localhost';5
6

Topology with MaxScale
1

2
3
4
5
Last updated
Was this helpful?



