美文网首页
Elasticsearch入门笔记1一 安装启动ES

Elasticsearch入门笔记1一 安装启动ES

作者: 小名源治 | 来源:发表于2022-11-17 17:35 被阅读0次

    官网下载

    https://www.elastic.co/cn/downloads/elasticsearch

    认识目录

    image.png
    bin  //启动目录
    config  //配置文件目录
    lib  //相关jar包
    modules  //功能模块
    plugins //第三方插件
    

    将下载好的文件解压后,进入config配置文件中,我的版本是8.5.1,它默认启动需要4个g的内存,我们进入jvm的配置文件将它改小一点,2g就可以,1g启动不起来

    image.png
    log4j2.properties  //日志配置文件
    jvm.options   //jvm参数配置文件
    elasticsearch.yml   //es的配置文件
    
    image.png

    启动ES

    进入bin目录,点击elasticsearch.bat脚本启动,


    image.png

    默认端口是9200,看到successfully就说明启动成功

    image.png

    遇到问题1,访问http://localhost:9200访问不到

    原因:因为开启了 ssl 认证。
    解决办法:在 elasticsearch.yml 文件中把xpack.security.http.ssl:enabled设置成false即可

    image.png

    遇到问题2,可以访问http://localhost:9200,但是需要用户名和密码

    解决办法:通过设置免密登录省去用户名和密码(实际上我不知道用户名和密码是什么),设置为true

    image.png

    相关文章

      网友评论

          本文标题:Elasticsearch入门笔记1一 安装启动ES

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