elasticsearch啟動常見問題

来源:https://www.cnblogs.com/sitongyan/archive/2019/07/29/11263753.html
-Advertisement-
Play Games

原文:https://blog.csdn.net/qq_22211217/article/details/80740873 一、Exception in thread "main" SettingsException[Failed to load settings from [elasticsear ...


原文:https://blog.csdn.net/qq_22211217/article/details/80740873

一、Exception in thread "main" SettingsException[Failed to load settings from [elasticsearch.yml]]; nested: ElasticsearchParseException[malformed, expected settings to start with 'object', instead was [VALUE_STRING]];
原因:elasticsearch.yml文件錯誤
解決:參數與參數值等號間需要空格

node.name ="node"  ##錯誤
node.name = "node" ##正確

二、org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException: can not run elasticsearch as root

詳細錯誤:

OpenJDK 64-Bit Server VM warning: If the number of processors is expected to increase from one, then you should configure the number of parallel GC threads a
[2018-06-20T02:19:58,978][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [] uncaught exception in thread [main]
org.elasticsearch.bootstrap.StartupException: java.lang.RuntimeException: can not run elasticsearch as root
    at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:140) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:127) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:124) ~[elasticsearch-cli-6.3.0.jar:6.3.0]
    at org.elasticsearch.cli.Command.main(Command.java:90) ~[elasticsearch-cli-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:93) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:86) ~[elasticsearch-6.3.0.jar:6.3.0]
Caused by: java.lang.RuntimeException: can not run elasticsearch as root
    at org.elasticsearch.bootstrap.Bootstrap.initializeNatives(Bootstrap.java:104) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:171) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:326) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:136) ~[elasticsearch-6.3.0.jar:6.3.0]
    ... 6 more

原因:處於對root用戶的安全保護,需要使用其他用戶組進行授權啟動
解決:
step1:用戶組進行授權啟動

    groupadd elsearch           
    useradd elsearch -g elsearch -p elasticsearch
    chown -R elsearch:elsearch  elasticsearch-6.3.0

    備註: 添加用戶組 elsearch  
          添加用戶 elsearch 密碼為 elasticsearch 到用戶組 elsearch
          將elsearch安裝目錄授權給 用戶組:用戶  即 elsearch:elsearch

step2: 重新啟動

    su elsearch
    /elasticsearch-6.3.0/bin/elasticsearch

    備註:切換 elsearch 用戶
          重新啟動

三、OpenJDK 64-Bit Server VM warning: INFO: os::commit_memory(0x0000000085330000, 2060255232, 0) failed; error='Cannot a ...'(errno=12);
原因:jvm要分配最大記憶體超出系統記憶體
解決:

step1:適當調整指定jvm記憶體
vi /home/elasticsearch-6.3.0/config/jvm.options 

備註:編輯elasticsearch jvm配置文件 修改如下 esc+:wq保存退出
## JVM configuration
 
################################################################
## IMPORTANT: JVM heap size
################################################################
##
## You should always set the min and max JVM heap
## size to the same value. For example, to set
## the heap to 4 GB, set:
##
## -Xms4g
## -Xmx4g
##
## See https://www.elastic.co/guide/en/elasticsearch/reference/current/heap-size.html
## for more information
##
################################################################
 
# Xms represents the initial size of total heap space
# Xmx represents the maximum size of total heap space
 
-Xms512m
-Xmx512m
備註:由於虛擬機記憶體制定1g,所以適當降低jvm記憶體指定
step2:重啟
su elsearch
/elasticsearch-6.3.0/bin/elasticsearch

四、ERROR: [3] bootstrap checks failed

詳細錯誤:

[2018-06-20T02:35:47,152][INFO ][o.e.b.BootstrapChecks    ] [SUcoFrg] bound or publishing to a non-loopback address, enforcing bootstrap checks
ERROR: [3] bootstrap checks failed
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
[2]: max number of threads [3802] for user [elsearch] is too low, increase to at least [4096]
[3]: max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
[2018-06-20T02:35:47,170][INFO ][o.e.n.Node               ] [SUcoFrg] stopping ...
[2018-06-20T02:35:47,316][INFO ][o.e.n.Node               ] [SUcoFrg] stopped
[2018-06-20T02:35:47,316][INFO ][o.e.n.Node               ] [SUcoFrg] closing ...
[2018-06-20T02:35:47,336][INFO ][o.e.n.Node               ] [SUcoFrg] closed

原因:虛擬機限制用戶的執行記憶體
解決:
[1]: max file descriptors [4096] for elasticsearch process is too low, increase to at least [65536]
[2]: max number of threads [3802] for user [elsearch] is too low, increase to at least [4096]

step1:修改安全限制配置文件

    su root 
    vi /etc/security/limits.conf

    備註:使用最高許可權 修改安全配置 在文件末尾加入

    # End of file
    elsearch       hard        nofile        65536 
    elsearch       soft        nofile        65536
    *               soft       nproc         4096
    *               hard       nproc         4096
    備註: elsearch為用戶名 可以是使用*進行通配  
    nofile 最大打開文件數目
    nproc 最大打開線程數目

 

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

step2:修改系統配置文件
vi /etc/sysctl.conf 
備註:行末加上vm.max_map_count = 655360 ,esc +:wq保存退出
# sysctl settings are defined through files in
# /usr/lib/sysctl.d/, /run/sysctl.d/, and /etc/sysctl.d/.
#
# Vendors settings live in /usr/lib/sysctl.d/.
# To override a whole file, create a new file with the same in
# /etc/sysctl.d/ and put new settings there. To override
# only specific settings, add a file with a lexically later
# name in /etc/sysctl.d/ and put new settings there.
#
# For more information, see sysctl.conf(5) and sysctl.d(5).
vm.max_map_count = 655360
備註:vm.max_map_count = 655360 值大於錯誤提示值
step3:重啟
su elsearch
/elasticsearch-6.3.0/bin/elasticsearch

五、org.elasticsearch.bootstrap.StartupException: java.lang.IllegalStateException: failed to obtain node locks, tried [[/home/elasticsearch-6.3.0/data/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storage_nodes] (was [1])?

詳細報錯:
[2018-06-20T04:23:25,003][WARN ][o.e.b.ElasticsearchUncaughtExceptionHandler] [] uncaught exception in thread [main]
org.elasticsearch.bootstrap.StartupException: java.lang.IllegalStateException: failed to obtain node locks, tried [[/home/elasticsearch-6.3.0/data/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storage_nodes] (was [1])?
    at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:140) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.execute(Elasticsearch.java:127) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.cli.EnvironmentAwareCommand.execute(EnvironmentAwareCommand.java:86) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.cli.Command.mainWithoutErrorHandling(Command.java:124) ~[elasticsearch-cli-6.3.0.jar:6.3.0]
    at org.elasticsearch.cli.Command.main(Command.java:90) ~[elasticsearch-cli-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:93) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.main(Elasticsearch.java:86) ~[elasticsearch-6.3.0.jar:6.3.0]
Caused by: java.lang.IllegalStateException: failed to obtain node locks, tried [[/home/elasticsearch-6.3.0/data/elasticsearch]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_storage_nodes] (was [1])?
    at org.elasticsearch.env.NodeEnvironment.<init>(NodeEnvironment.java:243) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.node.Node.<init>(Node.java:270) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.node.Node.<init>(Node.java:252) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Bootstrap$5.<init>(Bootstrap.java:213) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Bootstrap.setup(Bootstrap.java:213) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Bootstrap.init(Bootstrap.java:326) ~[elasticsearch-6.3.0.jar:6.3.0]
    at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:136) ~[elasticsearch-6.3.0.jar:6.3.0]
    ... 6 more

原因:線程占用

解決:重新啟動

step1:殺死elasticsearch線程
ps -ef | grep elastic
step2: 重啟
su elsearch
/elasticsearch-6.3.0/bin/elasticsearch

原文:https://blog.csdn.net/qq_22211217/article/details/80740873

 




 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在用Linux的時分,有時分要刪除一個文件夾,常常會提示次此文件非空,沒法刪除,這個時分,必需運用rm rf命令。關於一些小白用戶常常在運用Linux命令,會十分當心,以免搞出一些事情,下麵小編將教細緻教大家如何運用linux命令刪除文件夾,需求的請珍藏。 linux刪除文件夾命令實例: rm rf ...
  • Ubuntu Linux配置 1.為什麼是Ubuntu? ​ Ubuntu是一個由Canonical公司打造的基於Debian系列的GNU/Linux開源操作系統,支持ARM、x86、amd64等架構。自2004年10月20日發行以來,Ubuntu在伺服器端運用廣泛,在Linux桌面端也處於領先地位 ...
  • 最近用PyQt5寫了一個界面小程式,需要打包成exe給到其他windows上使用,一開始使用python 3.7 64位,用pyinstaller打包exe,在64位機上運行正常。 但是目標電腦是32位的,所以需要打包32位exe,然後問題就出現了。 打包32位exe, 雖然網上有教程說使用 Ana ...
  • 這是我第一次寫博客,沒有系統性、專業性,東西很雜,也不知道自己在寫些什麼。 SOA分散式架構,所以,使用solr,搜索層的服務層需要搭建起來、搜索系統的表現層搭建 ,打包方式是war包 功能變數名稱改變代表系統改變,例如京東點擊搜索,由www.jd.com www.searchjd.com solr使用li ...
  • 別名 別名是命令的快捷方式。為那些需要經常執行,但需要很長時間輸入的長命令創建快捷方式很有用。語法是: 它們並不總是用來縮短長命令。重要的是,你將它們用於你經常執行的任務。可能的例子: 這樣就可以只是用update來完成yum update的命令操作了 在終端中設置別名的問題是,一旦終端會話關閉,別 ...
  • 即日起,csdn將搬至博客園https://www.cnblogs.com/My-DreamTrip/ ...
  • syslog-ng部署: 用於接收交換機輸出的日誌。 syslog-ng安裝很簡單,可以順便搜一下,文章有很多。我是yum直接安裝的。 syslog-ng配置: 配置文件需要添加source 和destination 交換機上配置好log伺服器地址(部署syslog-ng、ELK的伺服器IP地址)即 ...
  • centos7平臺編譯環境使用如下指令安裝: 1. 安裝make: 2. 安裝g++: 下麵正式開始: 一、選定安裝文件目錄 可以選擇任何目錄,本文選擇 cd /usr/local/src 因為本機內網環境,無法連接外網,下載鏈接: ftp://ftp.csx.cam.ac.uk/pub/softw ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...