elasticsearch-head 沒法鏈接 elasticsearch問題的緣由及解決

緣由

elasticsearch開啓成功的前提下,elasticsearch的默認端口是9200 elasticsearch-head的端口是9100,會涉及到跨域問題全部沒法直接鏈接跨域

解決辦法

安裝路徑\elasticsearch\elasticsearch-7.6.1\config 中有個elasticsearch.yml文件,這是elasticsearch的配置文件 裏面添加:cors

http.cors.enabled: true
http.cors.allow-origin: "*"

http.cors.enabled: true 是指:開啓跨域
http.cors.allow-origin: "" http.cors.allow-origin指支持哪些域名 指全部域名
image.png
這樣就成功鏈接了elasticsearch

相關文章
相關標籤/搜索