一、安装前准备
1.1、安装包下载
前往https://www.elastic.co/cn/downloads/elasticsearch下载最新版elastic search。
1.2、java环境
jdk8和jdk11,其余不支持,另外后期elastic search推荐使用jdk11。
二、单节点安装
2.1、普通用户
elasticsearch需要用普通用户运行,固切换到普通用户
2.2、解压压缩包
tar xvf elasticsearch-7.6.2-linux-x86_64.tar.gz
2.3、相关配置
2.3.1、服务器配置
1)增大linux上部署软件的内存和硬盘
vim /etc/security/limits.conf
* soft noproc 655350
* hard noproc 655350
* soft nofile 655350
* hard nofile 655350
2)设置最大线程数
系统默认都有自我保护,不会开启很大的线程,所以需要自己手动开启
vim /etc/sysctl.conf
vm.max_map_count=655360
3)永久生效
sysctl -p
2.3.2、ES配置
编辑ES的配置文件
vim elasticsearch.yml
配置如下属性:
#集群名称,随便取,但是如果是不同的集群,名称不要重复;如果是单节点,可不用管
cluster.name: my-cluster
#节点名称,也可随便取值,但是如果是集群时,必须要求各个节点名称不能重复
node.name: 192.168.52.110
#ES存储数据的目录文件,默认时存储在data目录下,此处可按需指定目录
path.data: /home/sct/tool/elasticsearch-7.6.2/data
#ES的日志文件,默认为logs目录,此处可按需指定日志目录
path.logs: /home/sct/tool/elasticsearch-7.6.2/logs
#配置当前ES服务器绑定的IP地址,为安全期间,可绑定我为本机IP地址
network.host: 192.168.52.110
#ES的端口号,默认为9200,按需修改,建议修改成不易猜测的端口号
http.port: 9200
#识别集群中其他节点的host,如果时单节点,此处只需配置一个即可,如果是多个,需全部配置
cluster.initial_master_nodes: ["node-1"]
2.4、启动
进入bin目录,执行如下命令
./elasticsearch
如果要在后台运行,则执行如下命令
./elasticsearch -d
如果指定配置文件启动,则使用如下命令:
bin/elasticsearch -Des.path.conf=config/instance1 -d -p /tmp/elasticsearch_1.pid
其中instance1文件夹下必须要有elasticsearch.yml配置文件。
2.5、验证
验证是否安装成功,可在服务器上执行如下命令:
curl 'http://localhost:9200/?pretty'
如出现如下结果,则成功:
{
"name" : "localhost.localdomain",
"cluster_name" : "elasticsearch",
"cluster_uuid" : "hB5r9UhuTQW0Femcy47Pgw",
"version" : {
"number" : "7.6.2",
"build_flavor" : "default",
"build_type" : "tar",
"build_hash" : "ef48eb35cf30adf4db14086e8aabd07ef6fb113f",
"build_date" : "2020-03-26T06:34:37.794943Z",
"build_snapshot" : false,
"lucene_version" : "8.4.0",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}
若出现如下结果,则不成功:
curl: (7) Failed connect to localhost:9200; Connection refused
三、集群安装
集群安装,与单节点相差不大,只需修改配置文件中部分参数即可。这里以192.168.52.110,192.168.52.111,192.168.52.112三台服务器组成ES集群为例。
最小ES集群配置文件如下:
cluster.name: my-cluster
node.name: node-1
node.master: true
node.data: true
network.host: 192.168.52.110
http.host: 192.168.52.110
http.port: 9200
discovery.zen.ping.unicast.hosts: ["192.168.52.110:9300", "192.168.52.111:9300", "192.168.52.112:9300"]
discovery.zen.minimum_master_nodes: 1
bootstrap.memory_lock: false
bootstrap.system_call_filter: false
网友评论