elk(單機)安裝過程中遇到的問題及解決方法
1、記憶體不夠
Java HotSpot(TM) 64-Bit Server VM warning: INFO: os::commit_memory(0x00000006c5330000, 4207738880, 0) failed; error='Cannot allocate memory' (errno=12)
## There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (mmap) failed to map 2103864440 bytes for committing reserved memory.
# An error report file with more information is saved as:
# /home/user/hs_err_pid1375.log
elk預設啟動需要2g的記憶體,可以根據本機環境調整
-Xms2g
-Xmx2g
2、其他主機不可訪問
curl: connect to address : Connection refused調整防火牆
vi /etc/sysconfig/iptables
-A INPUT -m state --state NEW -m tcp -p tcp --dport 9200 -j ACCEPTservice iptables restart
調整elk配置
vi ./elasticsearch-5.1.1/config/elasticsearch.ymlnetwork.host: 0.0.0.0
3、max file descriptor
ERROR: bootstrap checks failedmax file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
vi /etc/security/limits.conf
* hard nofile 65536
* soft nofile 65536
4、max number of threads
max number of threads [1024] for user [user] is too low, increase to at least [2048]vi /etc/security/limits.d/90-nproc.conf
* soft nproc 2048
5、max virtual memory areas
max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]1 sysctl -w vm.max_map_count=262144
2 vi /etc/sysctl.conf
vm.max_map_count=262144
6、設定/etc/security/limits.d/90-nproc.conf後,仍報錯
ERROR: bootstrap checks failed
max number of threads [1876] for user [work] is too low, increase to at least [2048]
查詢虛擬機器記憶體,如果記憶體較低,就會影響實際的最大執行緒數
相關文章
- Mysql安裝過程中遇到的問題及解決辦法MySql
- Oracle RAC之--安裝過程中碰到的問題及解決方法Oracle
- oracle 10g R2 安裝過程遇到的問題及解決方法Oracle 10g
- 記一次wordpress安裝過程中遇到的問題及解決辦法
- STATSPACK安裝過程中遇到的問題
- redis 安裝及安裝遇到的問題解決Redis
- oracle 11.2.0.4 DataGuard Broker配置過程中可能遇到的問題及解決方法Oracle
- MAC 安裝 VMAF 遇到的問題及解決方法記錄Mac
- 關於ubuntu安裝中過程遇到問題Ubuntu
- 近兩天學習使用 Homestead 過程中遇到的問題及解決方法
- 【mysql】配置MySQL,解決安裝過程中的問題MySql
- 安裝sql server遇到問題解決方法SQLServer
- 安裝gcc過程中遇到相互依賴的問題GC
- PYTORCH安裝過程以及遇到的問題PyTorch
- 原始碼安裝apache(附遇到的問題及解決)原始碼Apache
- VMware下安裝Ubuntu遇到的問題及解決方案Ubuntu
- windows安裝tomcat遇到問題及解決方案WindowsTomcat
- vue-cli安裝過程遇到問題Vue
- 安裝vCenter6.0遇到的問題以及解決方法
- 安裝DBD:MySql模組遇到的問題及解決辦法MySql
- Oracle11g安裝過程遇到的問題Oracle
- 轉:Git伺服器安裝詳解及安裝遇到問題解決方案Git伺服器
- 記錄VMware安裝VMware Tools過程及遇到的一些問題
- RAC安裝配置和使用過程的問題解決方法總結一
- RAC安裝配置和使用過程的問題解決方法總結二
- Mysql安裝過程問題總結及處理方法MySql
- 使用javamail發信過程中的一些問題及解決方法JavaAI
- 使用kerl安裝erlang遇到的問題及解決辦法-bak
- 安裝PowerDesigner16.5所遇到的問題及解決
- 裝SAP GUI時遇到的問題及解決GUI
- Lua安裝及遇到的問題
- Oracle 11gR1 RAC安裝過程中遇到的問題:OCR裝置大小的問題Oracle
- workerman開發過程中遇到的一些常見的問題與解決方法
- Nebula 2.5.0安裝過程及遇到的坑
- Sybase和Oracle安裝過程中常遇到的問題(轉)Oracle
- tensorflow安裝使用過程錯誤及解決方法
- 遇到問題的解決方法
- aix5.3 + oracle9206 建庫過程中遇到的問題及解決AIOracle