這是我參與8月更文挑戰的第5天,活動詳情查看:8月更文挑戰node
若是❤️個人文章有幫助,歡迎點贊、關注。這是對我繼續技術創做最大的鼓勵。更多往期文章在個人我的專欄linux
Elasticsearch 下載地址www.elastic.co/downloads/e…git
因爲國外通常下載比較慢, 可使用國內鏡像:www.newbe.pro/tags/Mirror…github
一樣還有其餘開源軟件可供下載:vim
環境 Centos 7瀏覽器
首先須要到[國內鏡像網站](https://mirrors.huaweicloud.com/home)
查找本身須要的 Elasticsearch 版本, 下載其壓縮包, 我這邊選擇 elasticsearch-7.8.0-linux-x86_64.tar.gz
bash
# 下載 Elasticsearch 壓縮包
wget https://mirrors.huaweicloud.com/elasticsearch/7.8.0/elasticsearch-7.8.0-linux-x86_64.tar.gz
# 解壓 並 進入 es 文件夾
tar -zxvf elasticsearch-7.8.0-linux-x86_64.tar.gz && cd elasticsearch-7.8.0
複製代碼
解壓成功事後, 須要配置 elasticsearch.yml 文件, 才能正常對外提供服務markdown
# 配置文件 如下內容
vim config/elasticsearch.yml
# -----------------
node.name: node-1
# 必定要對應上面 node.name 設置
cluster.initial_master_nodes: ["node-1"]
# network.host 設置爲本身的ip地址 也能夠設置成0.0.0.0(表明全部ip能夠訪問)
network.host: 127.0.0.1
http.port: 9200
# 在最後加上這兩句,要否則,外面瀏覽器就訪問不了哈
http.cors.enabled: true
http.cors.allow-origin: "*"
# -----------------
複製代碼
elasticsearch.yml 文件配置完成事後, 就可使用命令 ./bin/elasticsearch
嘗試啓動app
打印信息結果出來 publish_address
, bound_addresses
提供服務 ip 與 端口, started
以啓動字樣, 意味着啓動成功cors
[2021-08-05T22:24:12,149][INFO ][o.e.h.AbstractHttpServerTransport] [node-1] publish_address {192.168.20.182:9200}, bound_addresses {0.0.0.0:9200}
[2021-08-05T22:24:12,150][INFO ][o.e.n.Node ] [node-1] started
[2021-08-05T22:24:12,936][INFO ][o.e.l.LicenseService ] [node-1] license [2425391e-58ad-4212-8216-556f416a3a8a] mode [basic] - valid
[2021-08-05T22:24:12,939][INFO ][o.e.x.s.s.SecurityStatusChangeListener] [node-1] Active license is now [BASIC]; Security is disabled
[2021-08-05T22:24:12,962][INFO ][o.e.g.GatewayService ] [node-1] recovered [3] indices into cluster_state
[2021-08-05T22:24:15,378][INFO ][o.e.c.r.a.AllocationService] [node-1] Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[material_pass_category][1]]]).
複製代碼