創(chuàng)新互聯(lián)建站專注于湛江網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供湛江營銷型網(wǎng)站建設(shè),湛江網(wǎng)站制作、湛江網(wǎng)頁設(shè)計、湛江網(wǎng)站官網(wǎng)定制、小程序設(shè)計服務(wù),打造湛江網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供湛江網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
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/
cd /bin
./elasticsearch
按照道理應(yīng)該就可以了,然而接下來各種坑一一出現(xiàn),分別闡述
錯誤1:
error='Cannot allocate memory' (errno=12)
solutions:
由于elasticsearch6.0默認(rèn)分配jvm空間大小為2g,需要改小一點
vim config/jvm.options
-Xms2g → -Xms512m
-Xmx2g → -Xmx512m
錯誤2: can not run elasticsearch as root
solutions:
在 Linux 環(huán)境中,elasticsearch 不允許以 root 權(quán)限來運行!所以需要創(chuàng)建一個非root用戶,以非root用戶來起es
groupadd elk # 創(chuàng)建用戶組elk
useradd elk -g elk -p 111111 # 創(chuàng)建新用戶elk,-g elk 設(shè)置其用戶組為 elk,-p 111 設(shè)置其密碼6個1
chown -R elk:elk /opt # 更改 /opt 文件夾及內(nèi)部文件的所屬用戶及組為 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]
此錯誤出現(xiàn)在修改config/elasticsearch.yml中的network.host為network.host: 0.0.0.0以便讓外網(wǎng)任何IP都能來訪問時。
solutions:
切換到root用戶,然后
vim /etc/security/limits.conf
* soft nofile 300000
* hard nofile 300000
* soft nproc 102400
* soft memlock unlimited
* hard memlock unlimited
錯誤4:max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
solutions:
先要切換到root用戶;
然后可以執(zhí)行以下命令,設(shè)置 vm.max_map_count ,但是重啟后又會恢復(fù)為原值。
sysctl -w vm.max_map_count=262144
持久性的做法是在 /etc/sysctl.conf 文件中修改 vm.max_map_count 參數(shù):
echo "vm.max_map_count=262144" > /etc/sysctl.conf
sysctl -p
最后終于在外網(wǎng)訪問成功:
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install # 此處我試圖用cnpm install有問題,用npm可以
npm run start
然后在外網(wǎng)訪問http://你的安裝機(jī)IP:9100
新建 Index,可以直接向 Elastic 服務(wù)器發(fā)出 PUT 請求。下面的例子是新建一個名叫weather的 Index。
然而刷新elasticsearch-head可視化界面可以看到索引已經(jīng)成功插入
關(guān)于作者更多的elastic search實踐在此