码迷,mamicode.com
首页 > 其他好文 > 详细

elasticsearch 安装

时间:2018-07-03 16:48:35      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:信息   snapshot   snap   目录   lse   sea   tar   结果   logs   

ES下载

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.0.tar.gz
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.3.0.tar.gz.sha512
shasum -a 512 -c elasticsearch-6.3.0.tar.gz.sha512 
tar -xzf elasticsearch-6.3.0.tar.gz
cd elasticsearch-6.3.0/

tips:只有通过这样处理,才能看到bin文件夹!!!

运行

./bin/elasticsearch

查看结果

curl http://localhost:9200/
{
  "name" : "MJ-FUhy",
  "cluster_name" : "elasticsearch",
  "cluster_uuid" : "NrkyTGA6SRWtaJ-8_FPWtQ",
  "version" : {
    "number" : "6.3.0",
    "build_flavor" : "default",
    "build_type" : "tar",
    "build_hash" : "424e937",
    "build_date" : "2018-06-11T23:38:03.357887Z",
    "build_snapshot" : false,
    "lucene_version" : "7.3.1",
    "minimum_wire_compatibility_version" : "5.6.0",
    "minimum_index_compatibility_version" : "5.0.0"
  },
  "tagline" : "You Know, for Search"
}

技术分享图片

后台运行 Elasticsearch

./bin/elasticsearch -d -p pid

日志信息可以在 $ES_HOME/logs/ 目录中查看。

若想关闭Elasticsearch,只要将 pid 文件中记录的进程ID 干掉就行,

kill `cat pid`

技术分享图片

这个是目录结构!

elasticsearch 安装

标签:信息   snapshot   snap   目录   lse   sea   tar   结果   logs   

原文地址:https://www.cnblogs.com/jiqing9006/p/9259013.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!