Documentation
ODP 3.3.6.4-1
Release Notes
What is ODP
Installation
Component User guide and Installation Instructions
Getting Started
Set Up MLflow Backend
Install MLflow
Run MLflow
Configure Artifact Storage
Secure and Serve MLflow
Upgrade Instructions
Downgrade Instructions
Reference Guide
Security Guide
Troubleshooting Guide
Uninstall ODP
Title
Message
Create new category
What is the title of your new category?
Edit page index title
What is the title of the page index?
Edit category
What is the new title of your category?
Edit link
What is the new title and URL of your link?
Set up MySQL as MLflow's Backend Store
Summarize Page
Copy Markdown
Open in ChatGPT
Open in Claude
Connect to Cursor
Connect to VS Code
You can follow these steps to create and configure a MySQL database for use as the MLflow backend store.
Steps to setup
Log in to MySQL.
mysql -u root -p
Enter your MySQL root password when prompted.
Create a new database.
CREATE DATABASE mlflow;
Replace mlflow_db with your preferred database name.
Create a user (optional but recommended).
CREATE USER 'mlflow'@'%' IDENTIFIED BY 'mlflow';
Replace mlflow_user and your_password with your desired username and strong password.
Grant privileges to the user.
GRANT ALL PRIVILEGES ON mlflow.* TO 'mlflow'@'%';
FLUSH PRIVILEGES;
Exit MySQL.
EXIT;
Test connection from your MLflow server machine.
mysql -u mlflow_user -p -h <mysql_host> mlflow_db
Replace
<mysql_host>with your MySQL server IP or hostname.
Example MLflow backend store URI for MySQL:
mysql+pymysql://mlflow:mlflow@10.100.11.10:3306/mlflow
Notes:
Make sure the MySQL server allows remote connections if MLflow runs on a different system.
Last updated on Aug 6, 2025
Was this page helpful?
Next to read:
Set up PostgreSQL as MLflow’s Backend Storenull
Discard Changes
Do you want to discard your current changes and overwrite with the template?
Archive Synced Block
Message
Create new Template
What is this template's title?
Delete Template
Message