Server Configuration Reference
This document describes OpenMetadata Server ConfigurationServer Port
Database
OpenMetadata supports MySQL or Postgres as the database. The database configurations and connection strings must be as specified below.MySQL Configuration
We recommend you create a MySQL user with a strong password and update this section accordingly.| Parameter | Description | Default Value |
|---|---|---|
| driverClass | The name of the JDBC driver | com.mysql.cj.jdbc.Driver |
| user | MySQL database username | openmetadata_user |
| password | MySQL database password | openmetadata_password |
| url | JDBC URL connection string | jdbc:mysql://localhost/openmetadata_db?useSSL=false&serverTimezone=UTC |
PostgreSQL Configuration
OpenMetadata uses stored generated columns which is supported in Postgres 12 and later. Ensure you have Postgres 12 or higher. We recommend you create a Postgres user with a strong password and update this section accordingly.| Parameter | Description | Default Value |
|---|---|---|
| driverClass | The name of the JDBC driver | org.postgresql.Driver |
| user | PostgreSQL database username | openmetadata_user |
| password | PostgreSQL database password | openmetadata_password |
| url | JDBC URL connection string | jdbc:postgresql://localhost:5432/openmetadata_db?useSSL=false&serverTimezone=UTC |