您好,登錄后才能下訂單哦!
本篇內容主要講解“Elasticsearch測試環境部署方法”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Elasticsearch測試環境部署方法”吧!
本文只用于個人記錄,流程、注意事項等等,遠遠達不到生產環境。
1.環境:Linux CentOS 4GB
2.下載&安裝&啟動:https://www.elastic.co/cn/downloads/elasticsearch
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.3.0-linux-x86_64.tar.gz tar -zxvf elasticsearch-7.3.0-linux-x86_64.tar.gz adduser es chown -R es elasticsearch-7.3.0-linux-x86_64 su es cd elasticsearch-7.3.0-linux-x86_64/bin ./elasticsearch
3.測試:
curl http://127.0.0.1:9200
4.啟用X-pack以支持Elasticsearch安全:https://www.elastic.co/guide/en/elasticsearch/reference/current/security-settings.html
#編輯config/elasticsearch.yml并插入一下內容: xpack.security.enabled: true
5.通過密碼的形式保證Elasticsearch安全:https://www.elastic.co/guide/en/elastic-stack-overview/7.3/built-in-users.html#set-built-in-user-passwords
bin/elasticsearch-setup-passwords interactive
以上命令將能夠配置以下用戶的密碼:
apm_system kibana logstash_system beats_system remote_monitoring_user elastic
6.開啟Elasticsearch遠程訪問能力:默認情況下,只有本地能夠訪問Elasticsearch,編輯:config/elasticsearch.yml
#將以下兩行內容的注釋去除,并改為如下內容: network.host: 0.0.0.0 http.port: 9200
7.嘗試啟動:發現有錯誤提示,加上如下配置
discovery.type: single-node xpack.security.transport.ssl.enabled: true
8.以上操作只能屬于‘授權’安全,如果要保證數據安全,應該啟用SSL,具體教程找官網吧。以上就算部署一個單節點的Elasticsearch服務了。
到此,相信大家對“Elasticsearch測試環境部署方法”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。