Mars Lan 6cb3f94b82
fix: elasticsearch not starting on Mac (#1621)
The `chown 1000:1000` trick mentioned in https://discuss.elastic.co/t/elastic-elasticsearch-docker-not-assigning-permissions-to-data-directory-on-run/65812/4 only works on Linux. Make the directory world writeable instead so that it works on both Mac & Linux.
2020-04-02 07:19:52 -07:00
..

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:

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