nebula 3.3.0 installation issues with ARM architecture & Java client #4904
-
Hi all - I am facing issues with nebula 3.3.0 installation with ARM architecture with the Java client. I tried commenting out the nebula-console invocation in docker-compose.yml, instead tried running nebula-console locally, with all the ports mapped out, still did not work. Keep getting an error deep within the C code, like so: ./nebula-console/nebula-console -addr IP_ADDR1 -port 9670 -u root -p nebula -e 'ADD HOSTS IP_ADDR1:9779,IP_ADDR3:9779,IP_ADDR2:9779' goroutine 1 [running]: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Thanks @codegladiator007 this was due to the console docker image now is single arch(AMD64), I am working on that vesoft-inc/nebula-console#189 . Please ignore this error. you could download binary of console yourself from https://github.com/vesoft-inc/nebula-console/releases (if it's an ARM linux go for https://github.com/vesoft-inc/nebula-console/releases/download/v3.3.1/nebula-console-linux-arm64-v3.3.1 ) Then: chmod +x nebula-console-linux-arm64-v3.3.1
./nebula-console-linux-arm64-v3.3.1 -addr localhost -port 9670 -u root -p nebula -e 'ADD HOSTS "storaged0":9779,"storaged1":9779,"storaged2":9779' And afterwards you could access console with ./nebula-console-linux-arm64-v3.3.1 -addr localhost -port 9670 -u root -p nebula |
Beta Was this translation helpful? Give feedback.
Thanks @codegladiator007 this was due to the console docker image now is single arch(AMD64), I am working on that vesoft-inc/nebula-console#189 .
Please ignore this error. you could download binary of console yourself from https://github.com/vesoft-inc/nebula-console/releases (if it's an ARM linux go for https://github.com/vesoft-inc/nebula-console/releases/download/v3.3.1/nebula-console-linux-arm64-v3.3.1 )
Then:
chmod +x nebula-console-linux-arm64-v3.3.1 ./nebula-console-linux-arm64-v3.3.1 -addr localhost -port 9670 -u root -p nebula -e 'ADD HOSTS "storaged0":9779,"storaged1":9779,"storaged2":9779'
And afterwards you could access console with