elasticsearch、kibana 安装
下载指定版本 https://www.elastic.co/cn/downloads/past-releases
1.安装elasticsearch
https://www.elastic.co/cn/downloads/elasticsearch 下载后解压
Linux:
$ cd elasticsearch-7.12.1
$ ./bin/elasticsearch
windows
进入bin目录双击 elasticsearch.bat 启动
Linux 成功标识(通过 curl 请求):
$ curl http://localhost:9200
{
"name" : "DESKTOP-64TTFQK",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "p0aWV4OYR3O0hYYuMEbPHw",
"version" : {
"number" : "7.12.1",
"build_flavor" : "default",
"build_type" : "zip",
"build_hash" : "3186837139b9c6b6d23c3200870651f10d3343b7",
"build_date" : "2021-04-20T20:56:39.040728659Z",
"build_snapshot" : false,
"lucene_version" : "8.8.0",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
windows 成功标识(通过浏览器访问):
2.安装kibana
https://www.elastic.co/cn/downloads/past-releases#kibana 下载并解压
Linux:
$ cd kibana-7.12.1
$ ./bin/kibana
windows
进入bin目录双击 kibana.bat 启动
访问 服务: http://IP:5601 查看到下面的页面
评论区