Documentation
ODP 3.3.6.3-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.
Bash
mysql -u root -pEnter your MySQL root password when prompted.
- Create a new database.
Bash
CREATE DATABASE mlflow;Replace mlflow_db with your preferred database name.
- Create a user (optional but recommended).
Bash
CREATE USER 'mlflow'@'%' IDENTIFIED BY 'mlflow';Replace mlflow_user and your`_password` with your desired username and strong password.
- Grant privileges to the user.
Bash
GRANT ALL PRIVILEGES ON mlflow.* TO 'mlflow'@'%';FLUSH PRIVILEGES;- Exit MySQL.
Bash
EXIT;- Test connection from your MLflow server machine.
Bash
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:
Bash
mysql+pymysql://mlflow:mlflow@10.100.11.10:3306/mlflowNotes:
- Make sure the MySQL server allows remote connections if MLflow runs on a different system.
Type to search, ESC to discard
Type to search, ESC to discard
Type to search, ESC to discard
Last updated on Aug 6, 2025
Was this page helpful?
Next to read:
Set up PostgreSQL as MLflow’s Backend StoreDiscard 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