mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 23:57:03 +00:00

1. Use "source" while executing quickstart.sh to bring env var to the context of calling shell 2. Use sudo while running chown in quickstart.sh 3. Update main readme 4. Add missing container names
DataHub Quickstart
To start all Docker containers at once, please run below command:
cd docker/quickstart && source ./quickstart.sh
By default, data will be stored at /tmp/datahub
, however it can be overwritten by specifying the DATA_STORAGE_FOLDER env var.
At this point, all containers are ready and DataHub can be considered up and running. Check specific containers guide for details:
- Elasticsearch & Kibana
- DataHub Frontend
- DataHub GMS
- Kafka, Schema Registry & Zookeeper
- DataHub MAE Consumer
- DataHub MCE Consumer
- MySQL
From this point on, if you want to be able to sign in to DataHub and see some sample data, please see
Metadata Ingestion Guide for bootstrapping DataHub
.
Debugging Containers
If you want to debug containers, you can check container logs:
docker logs <<container_name>>
Also, you can connect to container shell for further debugging:
docker exec -it <<container_name>> bash