Reputation: 71
ArangoDB start in failing with the following error in centos6. I'm using latest arangodb version arangodb3-3.3.16-1.x86_64.rpm
[root@vm1 RPM]# service arangodb3 start Starting /usr/sbin/arangod: : arena 0 background thread creation failed (13) /etc/init.d/arangodb3: line 43: 3576 Segmentation fault $ARANGO_BIN --uid arangodb --gid arangodb --server.rest-server false --log.foreground-tty false --database.check-version FATAL ERROR: EXIT_CODE_RESOLVING_FAILED for code 139 - could not resolve exit code 139 [root@vm1 RPM]#
Any help will be really appreciable.
Upvotes: 0
Views: 182
Reputation: 782
The exit code 139 = 128 + 11 means that the Arangod process crashed with a segmentation violation
Can you try the following:
This should fix the problem
There was a similar issue that has been raised on GitHub: https://github.com/arangodb/arangodb/issues/2329
Upvotes: 0