Hi everyone, I fellow this link <https://datahubpr...
# troubleshoot
m
Hi everyone, I fellow this link https://datahubproject.io/docs/quickstart/ and ran the command datahub docker quickstart and got this error on my M1 Pro Mac "no matching manifest for linux/arm64/v8 in the manifest list entries ............ Unable to run quickstart - the following issues were detected: - quickstart.sh or dev.sh is not running" and the following are some information might useful: datahub --version acryl-datahub, version 0.8.45.2 Darwin HW0015358 21.6.0 Darwin Kernel Version 21.6.0: Mon Aug 22 201952 PDT 2022; root:xnu-8020.140.49~2/RELEASE_ARM64_T6000 x86_64 I tried solve this problem refer to the threads before but it seemed not work. Is there any solution to deal with it?
m
Hi @microscopic-room-90690: It seems like you have terminal emulation (rosetta) turned on in your environment
as a result
datahub
cli thinks you are on an x86 machine and pulls down the incorrect docker compose file
as a workaround for now you can do this:
Copy code
curl -L <https://raw.githubusercontent.com/datahub-project/datahub/master/docker/quickstart/docker-compose-without-neo4j-m1.quickstart.yml> -o docker-compose-without-neo4j-m1.quickstart.yml
this will download the m1 quickstart file locally
and then you can run datahub quickstart with this file like this:
datahub docker quickstart -f docker-compose-without-neo4j-m1.quickstart.yml
we will add a
--arch
option to datahub docker quickstart soon so that this can be overridden
m
Hi @mammoth-bear-12532 Thank you for your reply! I ran the commands you mentioned and got the following error "Error response from daemon: error while creating mount source path '/host_mnt/Users/mysql/init.sql': mkdir /host_mnt/Users/mysql: operation not permitted .............. Unable to run quickstart - the following issues were detected: - datahub-frontend-react is not running - mysql-setup is still running - datahub-gms is not running - mysql is not running" Log is attached. And is it needed to turn off terminal emulation?
c
I've had the same exact issues while working on the installation as well as the workaround. has there been any success @microscopic-room-90690?
m
@cool-tiger-42613 No, maybe I will work on it several days later, but now I get something more urgent to do. Keep in touch if there is progress.
c
Will do, thanks!
m
This feature is now available on the latest datahub cli (0.9.0.4). You can force the architecture using the command line.
Copy code
datahub docker quickstart --arch m1