Hello Datahub doesn’t start after server reboot wi...
# troubleshoot
a
Hello Datahub doesn’t start after server reboot with the error: “datahub-gms is not running”. Logs attached. Thanks for your help.
b
Hi Sergey, how is datahub installed - is it installed on kubernetes cluster or local system via quickstart ?
a
Hi Navin, It’s local via quickstart and docker
b
could you run
docker container ls -a
and see other containers(kafka,mysql) are running and healthy
could you share log from action container...also could you try restarting gms container and share latest log from gms
a
@bumpy-needle-3184 any ideas?
b
this is the error from gms logs
ERROR: No such classes directory file:///etc/datahub/plugins/auth/resources
it is the volume that is supposed to be mounted in gms container which looks now it is unable to find https://github.com/datahub-project/datahub/blob/master/docker/quickstart/docker-compose-without-neo4j.quickstart.yml#:~:text=%2D%20[…]auth/resources
could you check if this path exist in your local machine -
ls -lrt ${HOME}/.datahub/plugins/auth/resources/
and the path in gms container -
docker container exec -it <<datahub-gms-container-id>> /bin/bash -c 'ls -lrt /etc/datahub/plugins/auth/resources'
a
Apparently ${HOME}/.datahub/plugins/ folder existed but was not accessible, I’ve fixed the permissions and it works now. Thanks a lot @bumpy-needle-3184