Java

gentoo 上的 elasticsearch 服務包裝器

  • May 13, 2012

我安裝了 elasticsearch 並在 /opt/elasticsearch 中工作。我想為它安裝一個服務包裝器來啟動/停止/重新啟動它作為服務。Elasticsearch 推薦使用 java-service-wrapper:

curl -L http://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master | tar -xz
mv *servicewrapper*/service elasticsearch/bin/

# Setup ElasticSearch as a service:
elasticsearch/bin/service/elasticsearch install

但是,服務啟動失敗並顯示以下消息:the value of wrapper.java.command does not appear to be a java binary。我真的不知道從哪裡開始調試,並且會很感激任何想法。

配置問題。wrapper.java.command應該指向一個有效的 java 二進製文件。

引用自:https://serverfault.com/questions/388275