你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
JustRun - just run
赞同来自:
xinfanwang
yumg
null_Exception
create17
Ricky_Lau - 码农,,
lz8086 - es小司机
Young
要回复问题请先登录或注册
just run
8 个回复
JustRun - just run
赞同来自:
xinfanwang
赞同来自:
yumg
赞同来自:
1、首先,确认Elasticsearch可以接受跨域的Ajax请求,在其配置文件中添加如下选项:
```
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization
```
2、访问elasticsearch-head时,在URL上加上 auth_user 和 auth_password 参数,比如以下:
http:// localhost:9100/_plugin/head/?auth_user=admin&auth_password=admin
以上两个参数值,就是SearchGuard为ES添加的Http basic认证的用户名和密码。
3、在elasticsearch-head中,的elasticsearch连接地址处,填入https地址,比如以下:
https://127.0.0.1:9200/
注意是https协议头,之后就可以正常连接了。
null_Exception
赞同来自:
create17
赞同来自:
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization,X-Requested-With,Content-Length,Content-Type
然后,在浏览器上访问:http://ip:9100/%3Fauth_user%3D ... admin
在里面的输入框里面输入:https://ip:port/
Ricky_Lau - 码农,,
赞同来自:
lz8086 - es小司机
赞同来自:
Young
赞同来自: