Start and Configure MariaDB Agent Manager on MariaDB MaxScale Nodes
This page is part of MariaDB's Documentation.
The parent of this page is: Start and Configure MariaDB Agent Manager
Topics on this page:
Overview
The MariaDB Agent Manager coordinates deployment of the agents needed to consolidate and push data to the Remote Observability Service.
This page shows how to start and configure MariaDB Agent Manager on MaxScale nodes, so that they can be monitored by the Remote Observability Service.
With MariaDB Agent Manager, MaxScale nodes can be configured as Monitored Hosts. In development environments, users might not want to dedicate a standalone host to be a Dedicated Forwarding Host. In those environments, one Monitored Host (such as any MaxScale node) can also serve as a Forwarding Host. However, in production environments, MariaDB recommends using a Dedicated Forwarding Host.
Compatibility
MariaDB MaxScale
MariaDB MaxScale 2.4
MariaDB MaxScale 2.5
MariaDB MaxScale 6
Operating Systems
CentOS 7
Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 8
Rocky Linux 8
Ubuntu 18.04 LTS
Ubuntu 20.04 LTS
Ubuntu 22.04 LTS
Prerequisites
Before performing this procedure, deploy MariaDB Agent Manager on each Forwarding Host and Monitored Host.
Step 1: Switch to Dedicated OS User
For security purposes, MariaDB does not recommend running MariaDB Agent Manager as root
.
If you created a dedicated user account and group for MariaDB Agent Manager, switch to a shell using the dedicated user account:
$ su -l mariadbagent
Each of the subsequent steps in this procedure should be performed using this dedicated user account.
Step 2: Configure Firewalls
MariaDB Agent Manager communicates over TCP between the Forwarding Host and each Monitored Host. MariaDB Agent Manager also communicates over TCP between the Forwarding Host and the Remote Observability Service.
Firewall configuration must support this communication.
Forwarding Server ports
If the MaxScale node is also acting as a Forwarding Host, allow incoming traffic on the following ports:
Port | Source | Purpose |
---|---|---|
TCP/9303 |
| API port (overridden by specifying the |
MaxScale ports
On each Monitored Host running MariaDB MaxScale, allow incoming traffic on the following ports:
Port | Source | Purpose |
---|---|---|
MaxScale listener database port (TCP port varies) | Each Forwarding Host | See "MaxScale Listener Database |
TCP/8989 | Each Forwarding Host | |
TCP/9100 | Each Forwarding Host | |
TCP/9105 | Each Forwarding Host |
In environments where non-default ports are used, the firewall configuration must be adapted for the specific ports in use.
Step 3: Configure MaxScale
The MaxScale node might require some additional configuration.
Configure REST API
MariaDB Agent Manager's maxscale_exporter
communicates with MaxScale using the REST API.
If a MaxScale node is a Monitored Host, the node's MaxScale configuration might need to be adapted to allow REST API access from the Forwarding Hosts. The default configuration file is located at /etc/maxscale.cnf
.
The following MaxScale parameters are relevant for MariaDB Agent Manager:
Parameter | Description |
---|---|
The default value of | |
The default value of | |
The default value of | |
If TLS is required, then the path to the private key file must be configured. | |
If TLS is required, then the path to the certificate file must be configured. | |
If TLS is required, then the path to the Certificate Authority (CA) chain file must be configured. |
For example, if TLS is not required, a minimalist MaxScale configuration file would only need to set admin_host
:
[maxscale]
threads = auto
admin_host = 0.0.0.0
Restart MaxScale
On the MaxScale host, if the MaxScale configuration was changed in the previous step, MaxScale should be restarted:
$ sudo systemctl restart maxscale
Step 4: Create and Alter MaxScale Accounts
On each MaxScale node, some MaxScale accounts are required.
Secure Default MaxScale Account
MaxScale's default administrative user is named admin
, and the default password is mariadb
. For security reasons, MariaDB recommends changing the default password.
On each MaxScale node, change the default password using the maxctrl alter user
command:
$ maxctrl --user=admin --password='mariadb' \
alter user admin 'ADMIN_PASSWORD'
Create MaxScale Account
MariaDB Agent Manager requires a MaxScale user account for maxscale_exporter
. MariaDB recommends creating a dedicated MaxScale user account for MariaDB Agent Manager instead of using the default account.
If your topology has multiple MaxScale nodes, the user account should be created on each individual MaxScale node.
If you previously created a MaxScale user when you ran the mariadb_agent_manager install
sub-command, you can skip this step.
On each MaxScale node, create a dedicated MaxScale user account using one of the following methods:
To have MariaDB Agent Manager automatically create the account, execute the
mariadb_agent_manager create-user
sub-command:$ mariadb_agent_manager create-user
Or to manually create the user account, execute the
maxctrl create user
command:$ maxctrl --user=admin --password='ADMIN_PASSWORD' \ create user ros 'USER_PASSWORD'
Step 5: Prepare credentials.json
On each Monitored Host, exporters authenticate using credentials that are stored locally. These credentials must initially be provided in a credentials file.
The MariaDB Agent Manager credentials file is in JSON format. These instructions assume that the credentials file is named credentials.json
On each Monitored Host running MariaDB MaxScale, create a credentials file.
Create a maxscale
section with the user account and password details from "Step 4: Create and Alter MaxScale Accounts":
{
"cred_store": {
"maxscale": {
"user": "ros",
"pwd": "USER_PASSWORD"
}
}
}
Step 6: Encrypt Passwords
On each Monitored Host running MariaDB MaxScale, the passwords in the credentials file must be encrypted by executing the mariadb_agent_manager encrypt-creds
sub-command:
$ mariadb_agent_manager encrypt-creds -p ~/credentials.json
The following files have been successfully created:
Encrypted credentials: /home/USER/.config/mariadb-agent-manager/cred.json
Secret key: /home/USER/.config/mariadb-agent-manager/.key.txt
The
-p
option specifies the path to the credentials file. Alternatively, theREMOTE_AGENT_CREDENTIALS
environment variable can be used.
MariaDB Agent Manager encrypts the credentials and saves the encrypted credentials to its configuration directory.
After the credentials have been encrypted, MariaDB Agent Manager deletes the credentials file. If you need to preserve the credentials file, ensure that you have a backup.
Step 7: Prepare configuration.json
MariaDB Agent Manager reads a configuration file to understand the database infrastructure. These instructions assume that the configuration file is named configuration.json
. The MariaDB Agent Manager configuration file is in JSON format.
Create a configuration file:
Select the example configuration file for your topology and edit to reflect your database infrastructure and parameters.
Alternatively, a configuration file can be created using the configuration wizard by executing the
mariadb_agent_manager init
sub-command.
The configuration file must be copied to each Forwarding Host and each Monitored Host.
Replicated Transactions Topology
{
"datacenter": {
"name": "Example Data Center",
"location": "Oregon, US",
"database_services": [
{
"name": "example-replicated",
"type": "replicated",
"servers": [
{
"name": "mxs1",
"type": "maxscale",
"hostname": "mxs1.example.com"
},
{
"name": "mdb1",
"type": "server",
"hostname": "mdb1.example.com"
},
{
"name": "mdb2",
"type": "server",
"hostname": "mdb2.example.com"
},
{
"name": "mdb3",
"type": "server",
"hostname": "mdb3.example.com"
}
]
}
]
}
}
Distributed Transactions Topology
{
"datacenter": {
"name": "Example Data Center",
"location": "Oregon, US",
"database_services": [
{
"name": "example-distributed",
"type": "distributed",
"servers": [
{
"name": "mxs1",
"type": "maxscale",
"hostname": "mxs1.example.com"
},
{
"name": "xpand1",
"type": "xpand-backend",
"hostname": "xpand1.example.com"
},
{
"name": "xpand2",
"type": "xpand-backend",
"hostname": "xpand2.example.com"
},
{
"name": "xpand3",
"type": "xpand-backend",
"hostname": "xpand3.example.com"
}
]
}
]
}
}
Multi-Node Analytics Topology
{
"datacenter": {
"name": "Example Data Center",
"location": "Oregon, US",
"database_services": [
{
"name": "example-columnstore",
"type": "columnstore",
"servers": [
{
"name": "mxs1",
"type": "maxscale",
"hostname": "mxs1.example.com"
},
{
"name": "cs_node1",
"type": "server",
"hostname": "mdb1.example.com"
},
{
"name": "cs_node2",
"type": "server",
"hostname": "mdb2.example.com"
},
{
"name": "cs_node3",
"type": "server",
"hostname": "mdb3.example.com"
}
]
}
]
}
}
Galera Cluster Topology
{
"datacenter": {
"name": "Example Data Center",
"location": "Oregon, US",
"database_services": [
{
"name": "example-galera",
"type": "galera",
"servers": [
{
"name": "mxs1",
"type": "maxscale",
"hostname": "mxs1.example.com"
},
{
"name": "mdb1",
"type": "server",
"hostname": "mdb1.example.com"
},
{
"name": "mdb2",
"type": "server",
"hostname": "mdb2.example.com"
},
{
"name": "mdb3",
"type": "server",
"hostname": "mdb3.example.com"
}
]
}
]
}
}
Step 8: Start MariaDB Agent Manager
On each Forwarding Host and Monitored Host running MariaDB MaxScale, MariaDB Agent Manager must be started by executing the mariadb_agent_manager start
sub-command.
If the MaxScale node is also acting as a Forwarding Host, MariaDB Agent Manager can be started for the first time with the following options:
$ mariadb_agent_manager start -c ~/configuration.json -k ~/skysql-api-key.txt -f
The
-c
option specifies the path to the configuration file. Alternatively, theREMOTE_AGENT_CONFIG
environment variable can be used.The
-k
option specifies the path to a file that contains your SkySQL API Key. Alternatively, theREMOTE_AGENT_API_KEY
environment variable can be used. Setting the API key is only required the first time that the services are started on the Forwarding Host, because MariaDB Agent Manager saves the API key to a file. If the option or environment variable are not set, MariaDB Agent Manager prompts the user to enter the API key.The
-f
option indicates that the node is a Forwarding Host. Alternatively, theFORWARDING_SERVER
environment variable can be used. If the host is not defined in the configuration file, MariaDB Agent Manager assumes that it is a dedicated Forwarding Host. If the host is defined in the configuration file, MariaDB Agent Manager handles it as a combination Forwarding and Monitored Host.
On each Monitored Host, MariaDB Agent Manager can be started with the following options:
$ mariadb_agent_manager start -c ~/configuration.json
The
-c
option specifies the path to the configuration file. Alternatively, theREMOTE_AGENT_CONFIG
environment variable can be used.
After the service has been successfully started, MariaDB Agent Manager prints the status of the components running on the host:
STATUS of the SERVICES:
Service: Maxscale Exporter active
Service: Node Exporter active
Next Steps
If you still need to start and configure MariaDB Agent Manager on additional node types:
If you have already started and configured MariaDB Agent Manager on all nodes: