Hi all, I am getting those errors when trying to r...
# getting-started
c
Hi all, I am getting those errors when trying to run DataHub v0.8.4 from quickstart.sh:
Copy code
datahub-gms               | 2021/06/30 18:18:42 Problem with dial: dial tcp: lookup mysql on 127.0.0.11:53: no such host. Sleeping 1s
mysql-setup               | 2021/06/30 18:18:43 Problem with dial: dial tcp: lookup mysql on 127.0.0.11:53: no such host. Sleeping 1s
l
quickstart.sh is deprecated
can you try instructions here: https://datahubproject.io/docs/quickstart
b
@curved-sandwich-81699 Can you check your Docker desktop to see if you have a mysql container that stopped?
I am able to reproduce
looking into this
the strange thing is, when i start the container a second time it works
I think it's related to this: https://stackoverflow.com/questions/42248198/how-to-mount-a-single-file-in-a-volume. Will verify locally and raise a PR
I think it's related to this: https://stackoverflow.com/questions/42248198/how-to-mount-a-single-file-in-a-volume. Will verify locally and raise a PR
I've found the issue. Thank you for raising!
👍 1
c
@loud-island-88694 starting DataHub from the python cli works but does not pick up the changes that I made to
docker/datahub-frontend/env/docker.env
to enable OIDC auth so I had to go back to using quickstart.sh
b
That is correct- we use a statically generated master file for
docker compose quickstart
. You can also use
dev.sh
Esp if you are making changes to code
c
@big-carpet-38439 Thanks for your help, I was able to make the OIDC auth with
docker-compose -p datahub -f docker-compose-without-neo4j.yml -f docker-compose-without-neo4j.override.yml up
(there is an error in docker-compose-without-neo4j.yml where
env_file: gms/env/docker-without-neo4j.env
should be
env_file: datahub-gms/env/docker-without-neo4j.env
)
b
taking a look now
i've added the fix to the PR i have up: https://github.com/linkedin/datahub/pull/2811/files
c
Perfect, thanks again!
👍 1
m
Just merged it @big-carpet-38439 @curved-sandwich-81699