Issues while setting up ArangoDB Cluster

荒凉一梦 提交于 2019-12-08 09:23:13

问题


Recently I was trying to setup a development cluster on my local machine in ArangoDB.

I tried to create a cluster through the web interface, I got this error stating:

"Error while starting the cluster: Unauthorized".

The first time I tried doing it, it doesn't show any error, but kept asking for username and password again and again, and shows:

Coordinator User invalid.

My ArangoDB version is 2.6.8

Where have I gone wrong?


回答1:


The ArangoDB Cluster abilities are migrated to Apache Mesos cluster management. The webinterface as you're currently using will only remain for evaluation purposes. Thus authentication will not be supported on it.

Please retry without authentication by specifying

 --server.disable-authentication true

on the commandline or by configuring arangod.conf like that:

[server]
disable-authentication=true


来源:https://stackoverflow.com/questions/32839924/issues-while-setting-up-arangodb-cluster

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!