Hey all, running through the EC2 version with a sl...
# ask-community-for-troubleshooting
b
Hey all, running through the EC2 version with a slight variation to use ARM (I'm cheap 😉)
Attaching to airbyte-db, airbyte-scheduler, airbyte-server, airbyte-temporal, airbyte-webapp, airbyte-worker, init
init | standard_init_linux.go228 exec user process caused: exec format error
init exited with code 1
airbyte-temporal | standard_init_linux.go228 exec user process caused: exec format error
airbyte-db | standard_init_linux.go228 exec user process caused: exec format error
airbyte-server | standard_init_linux.go228 exec user process caused: exec format error
airbyte-scheduler | standard_init_linux.go228 exec user process caused: exec format error
airbyte-worker | standard_init_linux.go228 exec user process caused: exec format error
airbyte-webapp | standard_init_linux.go228 exec user process caused: exec format error
Is ARM not supported by airbyte?
1
u
Airbyte is built using x86 images, from StackOverflow
This can happen if you're trying to run an x86 built image on an arm64/aarch64 machine.
You'll need to rebuild the image using the corresponding architecture
https://stackoverflow.com/questions/42494853/standard-init-linux-go178-exec-user-process-caused-exec-format-error
👍 1
b
thanks Marcos!!