Centos7 安装 elasticesearch7.11.1

1.下载

下载地址: elasticsearch7.11.1

2.安装

解压到/software/elasticsearch

创建 data和log文件

mkdir var/elasticsearch/data

mkdir var/elasticsearch/log


转到 cd /software/elasticsearch/config


修改elasticsearch config下的 jvm.options内存

image

在修改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:

# 集群名称 可以通过不同的集群名称区分不同的集群#cluster.name: my-application

#

# ------------------------------------ Node ------------------------------------#

# Use a descriptive name for the node:

# 节点名称node.name: node-1

#

# 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: /var/elasticsearch/data

#

# Path to log files:# 日志地址

path.logs: /var/elasticsearch/log

#

# ----------------------------------- Memory -----------------------------------#

# Lock the memory on startup:

#

#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 -----------------------------------#

# Set the bind address to a specific IP (IPv4 or IPv6):

# 访问限制,一旦自定义了该参数值,ES就假设你正从开发模式过渡到生产模式,会将系统启动检查警告升级为异常。

#在投入生产环境之前,发现和形成集群需要配置两个重要的参数:discovery.seed_hosts及cluster.initial_master_nodes,以便集群中的节点能发现彼此并选出一个主节点。

network.host: 0.0.0.0

#

# Set a custom port for HTTP:

# 访问端口

http.port: 9200 

#

# 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]"]

#discovery.seed_hosts: ["127.0.0.1", "[::1]"]

# 主机发现,这里配置其他的节点主机名称或者IP

# 这个项目中不需要配置自己这台主机的IP,只需要提供其他节点的IP或主机名

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

# 可选选举为主节点的节点主机名

# 这里需要填入所有主机名称,这里填入了所有的节点

# 表示集群中任何一个节点都可以选举称为主节点

#cluster.initial_master_nodes: ["node-1"]

#

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

#

# ---------------------------------- Gateway -----------------------------------#

# Block initial recovery after a full cluster restart until N nodes are started:

#

#gateway.recover_after_nodes: 3

#

# For more information, consult the gateway module documentation.

#

# ---------------------------------- Various -----------------------------------#

# Require explicit names when deleting indices:

#

#action.destructive_requires_name: true

#跨域

http.cors.enabled: true

http.cors.allow-origin: "*"

3.启动

在 elasticsearch/bin目录下启动

正常启动 ./elasticsearch

后台运行 ./elasticsearch -d

3.1 不能使用root用户启动

添加组:groupadd elasticsearch

添加用户: useradd eluser -g elasticsearch -p eluser

root用户下赋权 :chown eluser:elasticsearch /software/elasticsearch -R

切换用户启动 :su eluser

3.2 启动异常

1.max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]

vim /etc/sysctl.conf

添加

vm.max_map_count = 655360

fs.file-max = 655360

保存然后运行

sysctl -p


4.设置开启启动

1、在/etc/init.d/目录创建es文件

vim /etc/init.d/es


2.添加脚本

#!/bin/sh

#chkconfig: 2345 80 05

#description: elasticsearch

#processname: elasticsearch-7.1.1

export JAVA_HOME=/software/jdk1.8

export PATH=$JAVA_HOME/bin:$PATH

export ES_HOME=/software/elasticsearch/bin

export PATH=$ES_HOME/bin:$PATH

case $1 in

    start)

        su eluser<<!

        cd $ES_HOME

        cd bin

        ./elasticsearch -d -p pid

        exit

!

        echo "elasticsearch is started"

        ;;

    stop)

        pid=`ps -ef | grep "Elasticsearch" |grep -v "grep" | awk '{print $2}'`

        kill -9 $pid

        echo "elasticsearch is stopped"

        ;;

    restart)

        pid=`ps -ef | grep "Elasticsearch" |grep -v "grep" | awk '{print $2}'`

        kill -9 $pid

        echo "elasticsearch is stopped"

        sleep 1

        su eluser<<!

        cd $ES_HOME

        cd bin

        ./elasticsearch -d -p pid

        exit

!

        echo "elasticsearch is started"

        ;;

    *)

        echo "start|stop|restart"

        ;;

esac

exit 0

3.赋权

chmod 755 /etc/init.d/es

4.添加启动服务

chkconfig --add es

5.操作服务

启动 service es start

停止 service es stop

重启 service es restart

5.集群部署elasticsearch

1.复制三份

image

2.设置jvm.options配置,elasticsearch.yml中的data、log地址。

elasticsearch-00: elasticsearch.yml

image

elasticsearch-01: elasticsearch.yml

image

elasticsearch-02: elasticsearch.yml

image

增加多个/etc/init.d/下多个配置

image

逐个启动。

3.使用elasticsearch-head 验证

image
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349

推荐阅读更多精彩内容