一、安装环境
centos7.x、es6.5.1(安装前请确保系统中已安装jdk)
二、安装流程
1. 进入一个根正苗红的目录:
cd /usr/local
2. 下载
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.5.1.rpm
3. 安装
rpm -ivh elasticsearch-6.2.4.rpm
4. 常用命令
启动:systemctl start elasticsearch
重启:systemctl restart elasticsearch
状态查看:systemctl status elasticsearch
停止:systemctl stop elasticsearch
设置开机自启:systemctl enable elasticsearch
5. 启动后查看版本信息
curl -XGET "127.0.0.1:9200"
6. 配置文件(/etc/elasticsearch/elasticsearch.yml),仅供参考
cluster.name: xxx【这里填写一个好听的名称】
node.name: node-1【给当前节点起个好听的名称】
path.data: /var/lib/elasticsearch【这里默认即可】
path.logs: /var/log/elasticsearch【这里默认即可】
network.host: 0.0.0.0【允许外部访问】
network.publish_host: 172.160.1.1【对外发布地址,如果仅内网机器访问则用本机内网IP即可】
http.cors.enabled: true【允许跨域访问】
http.cors.allow-origin: "*"【设置跨域访问开放范围】