ElasticSearch 安装使用

下载安装

ES 基于 Java 开发,需要 JDK >= 1.8。

下载地址:https://mirrors.huaweicloud.c...

下载后解压即可使用。

目录结构

bin        启动文件目录
config     配置文件目录
    log4j2.properties    日志配置文件
    jvm.options          虚拟机配置文件
    elasticsearch.yml    ES配置文件,默认端口9200
lib        相关jar包目录
logs       日志目录
modules    功能模块目录
plugins    插件目录

配置跨域访问

vim config/elasticsearch.yml

http.cors.enabled: true
http.cors.allow-origin: "*"

启动

运行 bin/elasticsearch.bat,浏览器访问 http://127.0.0.1:9200/ 即可看到 ES 的信息页面。

你可能感兴趣的:(elasticsearch)