本文主要介紹了centos7上elastic search安裝及填坑記,小編覺得挺不錯的,現在分享給大家,也給大家做個參考。一起跟著小編過來看看吧,希望能幫助大家。
本文介紹了centos7上elastic search安裝及填坑記,分享給大家,下面一起來看看。
課程推薦→:《elasticsearch全文搜尋實戰》(實戰影片)
下載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
按照道理應該就可以了,然而接下來各種坑一一出現,分別闡述
錯誤1:error='Cannot allocate memory' (errno= 12)
error='Cannot allocate memory'
solutions:
#由於elasticsearch5.0預設分配jvm空間大小為2g,需要改小一點
vim config/jvm.options -Xms2g → -Xms512m -Xmx2g → -Xmx512m
錯誤2: can not run elasticsearch as root
#can not run elasticsearch as root
solutions:
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]
此錯誤出現在修改config/elasticsearch.yml中的network.host為network.host: 0.0.0.0以便讓外網任何IP都能來存取時。
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]
#vm.max_map_count is too low
##然後可以執行以下指令,設定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
最後終於在外網訪問成功:
外網存取成功!
git clone git://github.com/mobz/elasticsearch-head.git
cd elasticsearch-head
npm install # 此处我试图用cnpm install有问题,用npm可以
npm run start
然後在外網訪問http://你的安裝機IP:9100
最後實際簡單測試一下
###################### ###新建Index,可以直接向Elastic 伺服器發出PUT 請求。下面的例子是新建一個名叫weather的 Index。 ###############用rest介面為es新增index#########然而刷新elasticsearch-head視覺化介面可以看到索引已經成功插入##### ##########索引已經插入######相關推薦:#########CentOS7中apache與php7及mysql5.7的安裝設定詳解####### ######Centos7 下Mysql5.7.19安裝方法介紹######以上是centos7上elastic search安裝詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!