因為elasticsearch不能用root啟動,否則啟動會報錯
1.建立乙個使用者
useradd elasticsearch
2.對解壓下面的檔案都賦予許可權
chown -r elasticsearch:elasticsearch /home/elasticsearch-7.3.2/
ip訪問
# 增加
network.host: 0.0.0.03.
vi /etc/security/limits.conf
在倒數第二行
* soft nofile 65536
* hard nofile 65536
# end of file
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
vi /etc/sysctl.conf
新增vm.max_map_count=655360
儲存後執行
sysctl -p
error: [1] bootstrap checks failed
[1]: the default discovery settings are unsuitable for production use; at least one of [discovery.seed_hosts, discovery.seed_providers, cluster.initial_master_nodes] must be configured
修改elasticsearch.yml
取消注釋保留乙個節點
cluster.initial_master_nodes: ["node-1"]
這個的話,這裡的node-1是上面乙個預設的記得開啟就可以了
重啟 正常
ElasticSearch 服務安裝
新版本的 elasticsearch 需要的 jdk 版本較高.公司預設提供現在最新能到1.7.45版本因此需要公升級 jdk 具體公升級 jdk.見dev 環境 jdk 公升級備忘 官網 命令 download elasticsearch sudo wget2.2 拷貝歸檔包到 q 目錄 copy...
elasticsearch安裝部署
修改vi config elasticsearch.yml network.host 127.0.0.1 即可通過ip 訪問,驗證可用性 cd bin elasticsearch 瀏覽器訪問 即可 安裝marvel 外掛程式方便除錯 elasticsearch 外掛程式安裝 cd elasticse...
ElasticSearch 安裝啟動
2 解壓到當前目錄 tar zxvf elasticsearch 7.1.1.tar.gz3 es配置檔案,幾乎不用什麼更改,大部分都是預設就可以。配置檔案裡有 集群配置 節點配置 路徑配置 記憶體配置 網路配置 集群節點發現引數 等配置資訊。進入 elasticsearch config目錄,使用...