Hello! I wanted to test out adding custom users to...
# troubleshoot
c
Hello! I wanted to test out adding custom users to the datahub frontend, so I was following the instructions for modifying the user.props file directly, but after running either ./dev.sh or ./datahub-frontend/run-local-frontend I ran into an error. Seems to be around a missing "datahub-frontend/bin/playBinary" path.
Copy code
ERROR: for datahub-frontend-react  Cannot start service datahub-frontend-react: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "datahub-frontend/bin/playBinary": stat datahub-frontend/bin/playBinary: no such file or directory: unknown

ERROR: for datahub-frontend-react  Cannot start service datahub-frontend-react: OCI runtime create failed: container_linux.go:380: starting container process caused: exec: "datahub-frontend/bin/playBinary": stat datahub-frontend/bin/playBinary: no such file or directory: unknown
ERROR: Encountered errors while bringing up the project.
e
So both requires you to build datahub-frontend, since they deploy the local binary. Can you run
./gradlew :datahub-frontend:build
from root of repo?
c
Yes, I was able to run that after installing java 1.8. I can continue from here. Thanks!
e
Awesome!
c
Very cool, my logins in the .props file work. Thank you for your help!