简介:win10下ElasticSearch.6.1.0安装SQL插件
5.安装sql
5.0 es配置
安装es http://blog.youkuaiyun.com/qq_21383435/article/details/79275543
cluster.name: elasticsearch
node.name: "lcc_node"
node.master: true
# 指定该节点是否存储索引数据,默认为true。
node.data: true
# 设置默认索引分片个数,默认为5片。
#index.number_of_shards: 1
# 设置默认索引副本个数,默认为1个副本。如果采用默认设置,而你集群只配置了一台机器,
# 那么集群的健康度为yellow,也就是所有的数据都是可用的,但是某些复制没有被分配
#index.number_of_replicas: 1
# 设置配置文件的存储路径,默认是es根目录下的config文件夹。
#path.conf: J:\elasticsearch\elasticsearch-6.2.1\config
# 设置索引数据的存储路径,默认是es根目录下的data文件夹,可以设置多个存储路径,用逗号隔开
#path.data: J:\elasticsearch\elasticsearch-6.2.1\data
# 设置临时文件的存储路径