我可以连接到xx.xx.xx.xx:9200使用head-plugin而不用x-pack。
当我的elasticsearch 5.2.0 x-pack启用时,xx.xx.xx.xx:9200需要登录才能连接到es, 但是头9100不能连接到xx.xx.xx.xx:9200,输入x-pack的用户名和密码。
我在elasticsearch.yml中尝试设置
http.cors.allow-headers: Authorization
并使用网址连接到es
http://xx.xx.xx.xx:9200/es-head/?auth_user=elastic&auth_password=changeme
但是它不起作用。我收到了这条回复信息..
"missing authentication token for REST request [/es-head/?auth_user=elastic&auth_password=changeme]"
我的情况 - 5.2.0
你能帮助我吗?
答案 0 :(得分:0)
我做到了。
当我使用
时http://xx.xx.xx.xx:9200/es-head/?auth_user=elastic&auth_password=changeme
我收到了消息
Cannot GET /es-pack/
所以我把它改成
http://xx.xx.xx.xx:9200/?auth_user=elastic&auth_password=changeme
我想知道为什么?