一、ElasticSearch安装与启动

(一)官网下载tar包 wget.....
(二)解压
(三)验证
出现如下信息,才代表安装成功

[root@administrator bin]# curl localhost:9200
{
  "name" : "administrator",
  "cluster_name" : "spring-boot",
  "cluster_uuid" : "EZJYVN7TRPOSMlr49YPzsA",
  "version" : {
    "number" : "5.5.1",
    "build_hash" : "19c13d0",
    "build_date" : "2017-07-18T20:44:24.823Z",
    "build_snapshot" : false,
    "lucene_version" : "6.6.0"
  },
  "tagline" : "You Know, for Search"
}

(四)安装出错及问题解决
参见elasticsearch安装问题总结

猜你喜欢

转载自blog.csdn.net/panchang199266/article/details/82947489