1. 程式人生 > >elasticsearch-head外掛顯示未連線

elasticsearch-head外掛顯示未連線

elasticsearch-head外掛安裝好後,啟動成功,介面實現未連線,Elasticsearch也啟動成功

原因:head外掛啟動在http://localhost:9100,Elasticsearch啟動在http://localhost:9200,head外掛訪問ES屬於跨域訪問

而ES預設不開啟跨域訪問,需要新增以下配置

elasticsearch.yml

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