es集群安装,阿里面试java准备

https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.0-linux-x86_64.tar.gz

集群环境机器准备

ip监听端口主机名系统es实例名es版本
10.10.164.19200/9300elsearchCentos6node-17.12.0
10.10.164.29200/9300elsearchCentos6node-27.12.0
10.10.164.39200/9300elsearchCentos6node-37.12.0

每一台服务器都需要操作。

在/opt下创建es  把下载好后把安装包放入

cd /opt

#创建es目录

mkdir es

cd es

#下载安装包

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.12.0-linux-x86_64.tar.gz

#解压

tar -vxf elasticsearch-7.12.0-linux-x86_64.tar.gz

#修改解压后的文件名为 elasticsearch-a,(为了方便区分根据节点名)

mv elasticsearch-7.4.0 elasticsearch-1

创建数据存储目录

mkdir -p /opt/es/elasticsearch-a/data

创建日志存储目录

mkdir -p /opt/es/elasticsearch-a/logs

#注:这里为了区分是es的多个节点,

#第1台的目录文件夹为 elasticsearch-1

#第2台的目录文件夹为 elasticsearch-2

#第3台的目录文件夹为 elasticsearch-3

节点node-1配置


进入到es安装目录下的config文件夹中,修改elasticsearch.yml 文件

======================== Elasticsearch Configuration =========================

NOTE: Elasticsearch comes with reasonable defaults for most settings.

Before you set out to tweak and tune the configuration, make sure you

understand what are you trying to accomplish and the consequences.

The primary way of configuring a node is via this file. This template lists

the most important settings you may want to configure for a production cluster.

Please consult the documentation for further information on configuration options:

https://www.elastic.co/guide/en/elasticsearch/reference/index.html

---------------------------------- Cluster -----------------------------------

Use a descriptive name for your cluster:

#配置es的集群名称,同一个集群中的多个节点使用相同的标识

#如果在同一网段下有多个集群,就可以用这个属性来区分不同的集群。

cluster.name: my-cluster

------------------------------------ Node ------------------------------------

Use a descriptive name for the node:

#节点名称

node.name: node-1

#是不是有资格竞选主节点

node.master: true

Add custom attributes to the node:

#node.attr.rack: r1

----------------------------------- Paths ------------------------------------

Path to directory where to store the data (separate multiple locations by comma):

#数据存储路径

path.data: /opt/es/data

Path to log files:

#日志存储路径

path.logs: /opt/es/logs

----------------------------------- Memory -----------------------------------

Lock the memory on startup:

#ES默认开启了内存地址锁定,为了避免内存交换提高性能。但是Centos6不支持SecComp功能,启动会报错,所以需要将其设置为false

#bootstrap.memory_lock: true

Make sure that the heap size is set to about half the memory available

on the system and that the owner of the process is allowed to use this

limit.

Elasticsearch performs poorly when the system is swapping the memory.

---------------------------------- Network -----------------------------------

By default Elasticsearch is only accessible on localhost. Set a different

address here to expose this node on the network:

#节点所绑定的IP地址,并且该节点会被通知到集群中的其他节点

#通过指定相同网段的其他节点会加入该集群中 0.0.0.0任意IP都可以访问elasticsearch

network.host: 10.10.164.1

bootstrap.system_call_filter: false

By default Elasticsearch listens for HTTP traffic on the first free port it

finds starting at 9200. Set a specific HTTP port here:

#作为数据节点

node.data: true

#对外提供服务的http端口,默认为9200

http.port: 9200

是否支持跨域

http.cors.enabled: true

*表示支持所有域名

http.cors.allow-origin: “*”

#内部节点之间沟通端口

transport.tcp.port: 9300

#设置是否压缩TCP传输时的数据,默认为false

transport.tcp.compress: true

#network.publish_host:10.10.164.1

cluster.routing.allocation.disk.threshold_enabled: false

For more information, consult the network module documentation.

--------------------------------- Discovery ----------------------------------

Pass an initial list of hosts to perform discovery when this node is started:

The default list of hosts is [“127.0.0.1”, “[::1]”]

#es7.x 之后新增的配置,写入候选主节点的设备地址,在开启服务后可以被选为主节点

discovery.seed_hosts: [“10.10.164.1:9300”, “10.10.164.2:9300”,“10.10.164.3:9300”]

Bootstrap the cluster using an initial set of master-eligible nodes:

#es7.x 之后新增的配置,初始化一个新的集群时需要此配置来选举master

cluster.initial_master_nodes: [“node-1”, “node-2”,“node-3”]

For more information, consult the discovery and cluster formation module documentation.

---------------------------------- Various -----------------------------------

Require explicit names when deleting indices:

#action.destructive_requires_name: true

节点node-2配置


======================== Elasticsearch Configuration =========================

NOTE: Elasticsearch comes with reasonable defaults for most settings.

Before you set out to tweak and tune the configuration, make sure you

understand what are you trying to accomplish and the consequences.

The primary way of configuring a node is via this file. This template lists

the most important settings you may want to configure for a production cluster.

Please consult the documentation for further information on configuration options:

https://www.elastic.co/guide/en/elasticsearch/reference/index.html

---------------------------------- Cluster -----------------------------------

Use a descriptive name for your cluster:

#配置es的集群名称,同一个集群中的多个节点使用相同的标识

#如果在同一网段下有多个集群,就可以用这个属性来区分不同的集群。

cluster.name: my-cluster

------------------------------------ Node ------------------------------------

Use a descriptive name for the node:

#节点名称

node.name: node-2

#是不是有资格竞选主节点

node.master: true

Add custom attributes to the node:

#node.attr.rack: r1

----------------------------------- Paths ------------------------------------

Path to directory where to store the data (separate multiple locations by comma):

#数据存储路径

path.data: /opt/es/data

Path to log files:

#日志存储路径

path.logs: /opt/es/logs

----------------------------------- Memory -----------------------------------

Lock the memory on startup:

#ES默认开启了内存地址锁定,为了避免内存交换提高性能。但是Centos6不支持SecComp功能,启动会报错,所以需要将其设置为false

#bootstrap.memory_lock: true

Make sure that the heap size is set to about half the memory available

on the system and that the owner of the process is allowed to use this

limit.

Elasticsearch performs poorly when the system is swapping the memory.

小编13年上海交大毕业,曾经在小公司待过,也去过华为、OPPO等大厂,18年进入阿里一直到现在。

深知大多数初中级Java工程师,想要提升技能,往往是自己摸索成长,但自己不成体系的自学效果低效又漫长,而且极易碰到天花板技术停滞不前!

因此收集整理了一份《2024年最新Java开发全套学习资料》送给大家,初衷也很简单,就是希望能够帮助到想自学提升又不知道该从何学起的朋友,同时减轻大家的负担。
img
img
img

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频

如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Java)
img

总结

其他的内容都可以按照路线图里面整理出来的知识点逐一去熟悉,学习,消化,不建议你去看书学习,最好是多看一些视频,把不懂地方反复看,学习了一节视频内容第二天一定要去复习,并总结成思维导图,形成树状知识网络结构,方便日后复习。

这里还有一份很不错的《Java基础核心总结笔记》,特意跟大家分享出来

目录:

部分内容截图:

398392780)]

由于文件比较大,这里只是将部分目录截图出来,每个节点里面都包含大厂面经、学习笔记、源码讲义、实战项目、讲解视频

如果你觉得这些内容对你有帮助,可以添加下面V无偿领取!(备注Java)
[外链图片转存中…(img-RLUl1pnC-1710398392781)]

总结

其他的内容都可以按照路线图里面整理出来的知识点逐一去熟悉,学习,消化,不建议你去看书学习,最好是多看一些视频,把不懂地方反复看,学习了一节视频内容第二天一定要去复习,并总结成思维导图,形成树状知识网络结构,方便日后复习。

这里还有一份很不错的《Java基础核心总结笔记》,特意跟大家分享出来

目录:

[外链图片转存中…(img-ScNpQkFw-1710398392781)]

部分内容截图:

[外链图片转存中…(img-6PAVNgBR-1710398392782)]

[外链图片转存中…(img-7woq3ZzQ-1710398392782)]

本文已被CODING开源项目:【一线大厂Java面试题解析+核心总结学习笔记+最新讲解视频+实战项目源码】收录

  • 8
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值