Kibana的安裝與配置
配置
[root@es01 kibana-5.6.3-linux-x86_64]# egrep -v '^$|^#' config/kibana.yml
server.host: "0.0.0.0"
server.name: "kibana01"
elasticsearch.url: http://localhost:9200
運行:





Kibana的簡單使用
使用dev tools工具

1.創建文檔post
Elasticsearch寫入數據
創建用戶
POST /accounts/person/1
{
"name":"john",
"lastname":"johnson",
"job_description":"systems and linux admin"
}

讀取數據get

文檔的更新post
修改工作描述
POST /accounts/person/1/_update
{
"doc":{
"job_description":"linux mysql network programing"
}
}


刪除文檔 delete

Elasticsearch的查詢語法創建多個文檔
Query string風格

Query DSL風格
GET /accounts/person/_search
{
"query":{
"match":{
"name":"tom"
}
}
}

DSL查詢風格進行查詢

