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

2022-11-17  本文已影响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
上一篇下一篇

猜你喜欢

热点阅读