Linux上部署单机elasticsearch

elasticsearch安装

1.预前准备

系统:华为云ECS 免费版 CentOS7
Java:openJdk11
elasticsearch:7.6.2 最新版
说明:es与jdk游伴伴版本适配规定 详见 https://www.elastic.co/cn/support/matrix#matrix_jvm

2.开始安装

  1. 下载 https://www.elastic.co/cn/downloads/elasticsearch
    Linux上部署单机elasticsearch_第1张图片
  2. 复制到服务器指定目录并解压
    Linux上部署单机elasticsearch_第2张图片
  3. 服务器上新建用户
    es不让root用户运行,会出现如下错误:

org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException:can not run elasticsearch as root

换一个账号进行启动,新增账号

  • adduser esuser
  • passwd xxxxx
  • chown -R esuser 解压后的文件夹
  1. 设置单进程最多内存映射大小
    修改单进程最多可用于内存映射区大小为262145(ElasticSearch要求最小为262144)。
  • vim /etc/sysctl.conf
  • 增加vm.max_map_count=262145
    Linux上部署单机elasticsearch_第3张图片
    使配置生效 :sysctl -p
  1. 修改默认配置外网访问
    es配置文件:
    在这里插入图片描述
    以下设置值针对单机启动
  • 将#network.host: 127.0.0.1 修改为 network.host: 0.0.0.0,即允许任何ip来访问
  • 将#cluster.initial_master_nodes: [“node-1”, “node-2”] 修改为 cluster.initial_master_nodes: [“node-1”]

整体可参考如下

cluster.name: my-application
node.name: node-1
node.max_local_storage_nodes: 3

network.host: 0.0.0.0
http.port: 9200

discovery.seed_hosts: ["127.0.0.1", "[::1]"]
cluster.initial_master_nodes: ["node-1"]

# 开启跨域访问支持,默认为false
http.cors.enabled: true
# 跨域访问允许的域名地址,(允许所有域名)以上使用正则
http.cors.allow-origin: /.*/ 
  1. 华为云安全组设置放开9200 具体参考 https://www.vpsss.net/2277.html
  2. 启动 admin用户下 执行

./bin/elasticsearch -d
-d 后台运行

  1. 效果
    Linux上部署单机elasticsearch_第4张图片

你可能感兴趣的:(elasticsearch)