ES快速开始
# 安装
# 环境要求
最低版本 JDK1.8
# 下载
# ElasticSearch 目录
bin 启动文件
config 配置文件
log4j2 日志配置文件
jvm.options java虚拟机相关配置
elasticsearch.yml elasticsearch配置文件
lib 相关jar包
logs 日志
modules 功能模块
plugins 插件
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 启动
启动 bin/elasticsearch.bat
访问:127.0.0.1:9200
# 安装可视化界面
elasticsearch-head (opens new window)
git clone https://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
yarn
yarn start
1
2
3
4
2
3
4
访问:127.0.0.1:9100
# 解决跨域问题
elasticsearch.yml
新增:
http.cors.enabled: true
http.cors.allow-origin: "*"
1
2
2
# 使用 kibana
解压 kibana
安装包
启动 bin/kibana.bat
默认访问:http://localhost:5601/
# 汉化
修改 config/kibana.yml
:
i18n.locale: "zh-CN"
1
上次更新: 2023/09/22, 16:54:32