mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-06-27 04:22:05 +00:00

* Adding the different docker-compose file openmetadata and ingestion * Added two different env files for mysql and postgres * Updated the docker file path * Updated the path of docker folder structure * Fix docker * Updating the PR with necessary changes required --------- Co-authored-by: “Vijay” <“vijay.l@deuexsolutions.com”> Co-authored-by: Akash-Jain <Akash.J@deuexsolutions.com>
8 lines
420 B
SQL
8 lines
420 B
SQL
CREATE DATABASE openmetadata_db;
|
|
CREATE DATABASE airflow_db CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
|
|
CREATE USER 'openmetadata_user'@'%' IDENTIFIED BY 'openmetadata_password';
|
|
CREATE USER 'airflow_user'@'%' IDENTIFIED BY 'airflow_pass';
|
|
GRANT ALL PRIVILEGES ON openmetadata_db.* TO 'openmetadata_user'@'%' WITH GRANT OPTION;
|
|
GRANT ALL PRIVILEGES ON airflow_db.* TO 'airflow_user'@'%' WITH GRANT OPTION;
|
|
commit;
|