參考:https://github.com/NLPchina/elasticsearch-sql
若是es是5.4.3在每一個節點執行以下:node
./bin/elasticsearch-plugin install https://github.com/NLPchina/elasticsearch-sql/releases/download/5.4.3.0/elasticsearch-sql-5.4.3.0.zip
或者直接下載插件再安裝
cd plugins
wget https://github.com/NLPchina/elasticsearch-sql/releases/download/5.4.3.0/elasticsearch-sql-5.4.3.0.zip
tar -zxvf elasticsearch-sql-5.4.3.0.zip
mv elasticsearch sqlgit
http://xupan003:9200/_sql?sql=select * from player_infogithub
{"took":9,"timed_out":false,"_shards":{"total":3,"successful":3,"failed":0},"hits":{"total":5,"max_score":1.0,"hits":[{"_index":"player_info","_type":"player","_id":"2","_score":1.0,"_source":{ "name": "thompson", "age": 26, "salary": 2000,"team": "war", "position": "pg"}},{"_index":"player_info","_type":"player","_id":"4","_score":1.0,"_source":{ "name": "green", "age": 26, "salary": 2000,"team": "war", "position": "pf"}},{"_index":"player_info","_type":"player","_id":"5","_score":1.0,"_source":{ "name": "james", "age": 33, "salary": 4000,"team": "cav", "position": "sf"}},{"_index":"player_info","_type":"player","_id":"1","_score":1.0,"_source":{ "name": "curry", "age": 29, "salary": 3500,"team": "war", "position": "pg"}},{"_index":"player_info","_type":"player","_id":"3","_score":1.0,"_source":{ "name": "irving", "age": 25, "salary": 2000,"team": "cav", "position": "pg"}}]}}
cd /usr/local/devtools/es/
mkdir es-sql-site
cd es-sql-site
wget https://github.com/NLPchina/elasticsearch-sql/releases/download/5.4.1.0/es-sql-site-standalone.zip
unzip es-sql-site-standalone.zip
rm -rf es-sql-site-standalone.zip
更改: site_configuration.json的port端口sql
cd site-server
npm install express --save
node node-server.jsexpress
http://xupan003:8080/#npm