centos7上elastic search安裝填坑記

注: 本文首發於 My 公衆號 CodeSheep ,可 長按掃描 下面的 當心心 來訂閱 ↓ ↓ ↓git

CodeSheep · 程序羊



下載elastic search 5.3.0

wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-5.3.0.tar.gz
mv elasticsearch-5.3.0.tar.gz /opt
cd /opt
tar -xzvf elasticsearch-5.3.0.tar.gz
cd elasticsearch-5.3.0/

啓動ES

cd /bin
./elasticsearch

按照道理應該就能夠了,然而接下來各類坑一一出現,分別闡述github

錯誤1error='Cannot allocate memory' (errno=12)npm

error='Cannot allocate memory'

solutions: 因爲elasticsearch5.0默認分配jvm空間大小爲2g,須要改小一點vim

vim config/jvm.options  
-Xms2g  →  -Xms512m
-Xmx2g  →  -Xmx512m

錯誤2: can not run elasticsearch as root服務器

can not run elasticsearch as root

solutions: 在 Linux 環境中,elasticsearch 不容許以 root 權限來運行!因此須要建立一個非root用戶,以非root用戶來起esjvm

groupadd elk  # 建立用戶組elk
useradd elk -g elk -p 111111  # 建立新用戶elk,-g elk 設置其用戶組爲 elk,-p 111 設置其密碼6個1
chown -R elk:elk /opt  # 更改 /opt 文件夾及內部文件的所屬用戶及組爲 elk:elk
su elk # 切換到非root用戶elk下來

錯誤3:(1) max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536] (2) max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]elasticsearch

此錯誤出如今修改config/elasticsearch.yml中的network.host爲network.host: 0.0.0.0以便讓外網任何IP都能來訪問時。測試

solutions: 切換到root用戶,而後插件

vim /etc/security/limits.conf
* soft nofile 300000
* hard nofile 300000
* soft nproc 102400
* soft memlock unlimited
* hard memlock unlimited

/etc/security/limits.conf

錯誤4:max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]rest

vm.max_map_count is too low

solutions: 先要切換到root用戶; 而後能夠執行如下命令,設置 vm.max_map_count ,可是重啓後又會恢復爲原值。

sysctl -w vm.max_map_count=262144

持久性的作法是在 /etc/sysctl.conf 文件中修改 vm.max_map_count 參數:

echo "vm.max_map_count=262144" > /etc/sysctl.conf
sysctl -p

image.png

最後終於在外網訪問成功:

外網訪問成功!


安裝可視化插件 elasticsearch-head

git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install   # 此處我試圖用cnpm install有問題,用npm能夠
npm run start

image.png

而後在外網訪問http://你的安裝機IP:9100

訪問elasticsearch-head可視化界面成功


最後實際簡單測試一下

新建 Index,能夠直接向 Elastic 服務器發出 PUT 請求。下面的例子是新建一個名叫weather的 Index。

用rest接口向es添加index

然而刷新elasticsearch-head可視化界面能夠看到索引已經成功插入

索引已經插入

後記

關於做者更多的elastic search實踐在此

相關文章
相關標籤/搜索