微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

es 6.7.2

Centos7安装elastic 6.x(6.8.8)集群(亲测可行)

https://blog.csdn.net/w8y56f/article/details/105691888

ElasticSearch集群搭建 6.7.1

https://blog.csdn.net/weixin_43374578/article/details/108710016

阿里云centos7搭建es 6.x 集群配置

https://blog.csdn.net/weixin_39778085/article/details/90312183

es(一):cenos7安装单机版elasticsearch6.7.2

https://i.cnblogs.com/posts/edit-done;postId=16306539

Linux(centos7)如何部署ElasticSearch7.6.2单节点跟集群(es部署指南)

https://blog.csdn.net/aisahngLIFE/article/details/124494319

 

cluster.name: elasticsearch-cluster
node.name: es-node1
network.bind_host: 0.0.0.0
network.publish_host: 10.0.14.240   # 服务器ip
http.port: 9200                       # 前台端口
transport.tcp.port: 9300              # 后台端口
http.cors.enabled: true
http.cors.allow-origin: "*"
node.master: true
node.data: true
# 全部节点的信息: 服务器ip:后台端口
discovery.zen.ping.unicast.hosts: ["10.0.14.240:9300","10.0.14.241:9300","10.0.14.243:9300"]
# 其他节点数目
discovery.zen.minimum_master_nodes: 2
[root@localhost ~]# ps -ef | grep elasticsearch
es       15375     1 48 18:35 ?        00:00:54 /data/app/jdk1.8.0_311/bin/java -xms1g -Xmx1g -XX:+UseConcmarkSweepGC -XX:CMSInitiatingOccupancyFraction=75 -XX:+UseCMSInitiatingOccupancyOnly -Des.networkaddress.cache.ttl=60 -Des.networkaddress.cache.negative.ttl=10 -XX:+AlwaysPretouch -Xss1m -Djava.awt.headless=true -Dfile.encoding=UTF-8 -Djna.nosys=true -XX:-OmitStackTraceInFastThrow -dio.netty.noUnsafe=true -dio.netty.noKeySetoptimization=true -dio.netty.recycler.maxCapacityPerThread=0 -Dlog4j.shutdownHookEnabled=false -Dlog4j2.disable.jmx=true -Djava.io.tmpdir=/tmp/elasticsearch-4954815232045201992 -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=data -XX:ErrorFile=logs/hs_err_pid%p.log -XX:+PrintGCDetails -XX:+PrintGCDateStamps -XX:+PrintTenuringdistribution -XX:+PrintGCApplicationStoppedTime -Xloggc:logs/gc.log -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=32 -XX:GCLogFileSize=64m -Des.path.home=/data/app/elasticsearch-6.7.2 -Des.path.conf=/data/app/elasticsearch-6.7.2/config -Des.distribution.flavor=default -Des.distribution.type=tar -cp /data/app/elasticsearch-6.7.2/lib/* org.elasticsearch.bootstrap.Elasticsearch -d
es       15462 15375  0 18:35 ?        00:00:00 /data/app/elasticsearch-6.7.2/modules/x-pack-ml/platform/linux-x86_64/bin/controller
root     17079 16831  0 18:37 pts/0    00:00:00 grep --color=auto elasticsearch
[root@localhost ~]# 

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐