Skip to main content
Use this to connect Alumio to a MySQL database server. Once it is set up, the connection can be reused by other features that read from or write to your MySQL database, so you configure where the server lives and how to sign in just once. The extra MySQL options let you tune how the connection behaves, but the defaults work for most servers.

Fields

Sample data

A typical MySQL connection:
FieldValue
Hostyour-db-host.example.com
Port3306
Database namewarehouse
Character setutf8mb4
Usernameintegration_user
Passwordyour-password
{
    "host": "your-db-host.example.com",
    "port": 3306,
    "dbname": "warehouse",
    "charset": "utf8mb4",
    "username": "integration_user",
    "password": "your-password"
}
Connection credentials are shown here as placeholders. For the password you can reference an environment variable instead of typing the secret directly; see Placeholders for the full syntax.