美文网首页
Linux下,安装Elasticsearch

Linux下,安装Elasticsearch

作者: Simple_小枫 | 来源:发表于2021-12-22 17:31 被阅读0次

    [toc]
    直接开始!

    安装Elasticsearch

    1. 下载

    去官网下载想要的版本
    elasticsearch官网
    Linux系统,可以直接使用wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.4.2-linux-x86_64.tar.gz,下载好后的文件名:elasticsearch-7.4.2-linux-x86_64.tar.gz
    这里是放到了usr/local目录

    2. 安装

    使用tar -zxvf [安装包名]解压安装,完成后会多出一个elasticsearch-7.4.2文件夹,它目录如下:
    bin:脚本目录,包括:启动、停止等可执行脚本
    config:配置文件目录
    data:索引目录,存放索引文件的地方
    logs:日志目录
    modules:模块目录,包括了es的功能模块
    plugins :插件目录,es支持插件机制

    3. 修改基础配置

    编辑 elasticsearch.yml

    vim config/elasticsearch.yml

    (1)修改集群的名字和(单机可以使用默认值,集群环境都要改)
    cluster.name: my-application
    (2)修改nodo节点
    node.name:es-node1
    (3)配置数据和日志路径
    path.data:/usr/local/elasticsearch/data
    path.logs:/usr/local/elasticsearch/logs
    (4)配置网络和端口(端口默认是9200,不配就是使用默认值)
    network.host:0.0.0.0
    (5)配置发现的节点:(与上面的node节点保持一致)
    cluster.initial_master_nodes:["es-node1"]

    编辑 jvm.options

    vim config/jvm.options

    (1)修改内存(默认1G,看实际情况配置)
    -Xms128m
    -Xmx128m

    4. 创建ES用户

    ES无法使用root用户启动,需要添加一个新用户
    添加用户:useradd esuser
    授权:chown -R esuser:esuser /usr/local/elasticsearch

    5. 启动ES

    进入到bin目录
    切换到es用户:su esuser
    前台启动命令./elasticsearch
    如果启动报异常,查看相关的java异常内容,修改后再启动即可
    后台启动./elasticsearch -d
    停止进程:使用kill命令


    6. 可能会出现的异常

    异常一:[1] max number of threads [2048] for user [esuser] is too low, increase to at least [4096]
    解决方式:root用户编辑文件:vim /etc/security/limits.conf
    在最后加上:

    * soft nofile 65536
    * hard nofile 131072
    * soft nproc 2048
    * hard nproc 4096
    

    注:若无法生效需要重启服务器

    异常二:[2]: Max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
    root用户编辑文件:vim /etc/sysctl.conf
    在最下方加上

    vm.max_map_count:262144
    

    刷新配置文件:sysctl -p
    注:若无法生效,直接执行sysctl -w vm.max_map_count=262144,这种方式重启服务器后失效


    7. 修复跨域问题

    编辑 vim elasticsearch.yml
    在最后一行加上如下命令
    开启跨域:http.cors.enabled: true
    任何地址都可以请求:http.cors.allow-origin: "*"

    安装Elasticsearch-analysis-ik(中文分词插件)

    1.下载插件

    github地址
    下载好后的名字:elasticsearch-analysis-ik-7.4.2.zip

    2.解压安装

    使用unzip命令,解压到es的plugins下的ik目录中
    unzip elasticsearch-analysis-ik-7.4.2.zip -d /usr/local/elasticsearch-7.4.2/plugins/ik
    重启es即可

    3.分词添加自定义词汇

    (1)编辑IKAnalyzer.cfg.xml配置文件
    进入到ik的config目录下
    vim IKAnalyzer.cfg.xml

    <properties>
            <comment>IK Analyzer 扩展配置</comment>
            <!--用户可以在这里配置自己的扩展字典 -->
            <entry key="ext_dict">custom.dic</entry>
             <!--用户可以在这里配置自己的扩展停止词字典-->
            <entry key="ext_stopwords"></entry>
    </properties>
    

    <entry key="ext_dict"></entry>标签中加入自定义文件,我这里定义的是custom.dic,退出并保存
    (2)创建custom.dic
    touch custom.dic
    在文件里面加入自定义词汇即可

    相关文章

      网友评论

          本文标题:Linux下,安装Elasticsearch

          本文链接:https://www.haomeiwen.com/subject/lubqqrtx.html