1. 程式人生 > >elasticsearch-sql安裝

elasticsearch-sql安裝

bsp plugins nload r.js 頁面 down npm all 語言

Github地址:https://github.com/NLPchina/elasticsearch-sql
elasticsearch-sql插件可以方便我們使用SQL語言來對elasticsearch進行查詢

1、進入elasticsearch的安裝目錄,執行如下命令(windows和linux的斜杠要註意):

./bin/elasticsearch-plugin install https://github.com/NLPchina/elasticsearch-sql/releases/download/6.2.3.0/elasticsearch-sql-6.2.3.0.zip

或者從Github上下載後解壓放在ES的plugins\sql下

2、下載頁面需要的node.js文件

https://github.com/NLPchina/elasticsearch-sql/releases/download/5.4.1.0/es-sql-site-standalone.zip

在解壓目錄下安裝運行即可

npm install express --save

node node-server.js

elasticsearch-sql的默認端口是8080,可以在site-server/site_configuration.json文件中進行修改
然後 打開 http://localhost:8080/ 訪問插件

註意修改右上角本地elasticsearch的地址,sql腳本不需要以分號“;”結尾,如果一個index有多個type,表名用indexName/typeName表示

elasticsearch-sql安裝