之因此想玩一玩elasticSearch7.5.1,是由於實習的時候,在項目中將elasticSearch2.3.4升級到了elasticSearch5.6.2,其中遇到了不少問題,但仍是都解決了,但因爲elasticSearch的版本迭代太快,全部接下來幾篇博客記錄一下elasticSearch7.5.1的一些知識點(固然我在本地安裝沒有設置X-pack,畢竟不想搞運維相關的,設置了x-pack的話,在Springboot整合elasticSearch的時候,elasticSearch-client的客戶端配置一下就能夠了)npm
在elasticSearch7.5.1/config/elasticSearch.ymlcors
network.host: 192.168.xxx.xx(你的IP地址) http.port: 9200
http.cors.enabled: true http.cors.allow-origin: "*" http.cors.allow-methods: OPTIONS, HEAD, GET, POST, PUT, DELETE http.cors.allow-headers: Authorization, X-Requested-With,Content-Length,Content-Type
server.port: 5601 server.host: 0.0.0.0 elasticsearch.hosts: ["http://192.168.xxx.xx:9200"] elasticsearch.ssl.verificationMode: none
在elasticSearch7.5.1/bin/elasticSearch.bat,運行服務
在Kiban7.5.1/bin/Kibana.bat 運行服務
在控制檯elasticSearch7.5.1/elasticSearch-header-master/npm start運維
訪問:{ip地址}:9100elasticsearch
訪問:127.0.0.1:5601spa