2013-01-11 232 views
6

我有一台运行Ubuntu 12.04的虚拟机,并试图安装ElasticSearch。我已经按照这个gist在最好的'学习X的硬道路'的精神,一切都安装好 - 包下载,untarred,复制到正确的地方等在Ubuntu 12.04上安装ElasticSearch

当我运行它的问题来了 - 要么通过调用:

$ /usr/local/share/elasticsearch/bin/elasticsearch 

或通过使用

输出被记录到wrapper.log和下方被包括在服务包装器($ rselasticsearch console)。我认为我可能会遇到JAVA home/classpath问题,但我不确定。

任何帮助最感激地收到!

Running ElasticSearch... 
wrapper | Unable to write to the configured log directory: /usr/local/share/elasticsearch/logs (No such file or directory) 
wrapper | The directory does not exist. 
wrapper | Unable to write to the configured log file: /usr/local/share/elasticsearch/logs/service.log (No such file or directory) 
wrapper | Falling back to the default file in the current working directory: wrapper.log 
wrapper | --> Wrapper Started as Console 
wrapper | Java Service Wrapper Community Edition 32-bit 3.5.14 
wrapper | Copyright (C) 1999-2011 Tanuki Software, Ltd. All Rights Reserved. 
wrapper |  http://wrapper.tanukisoftware.com 
wrapper | 
wrapper | Launching a JVM... 
jvm 1 | WrapperManager: Initializing... 
jvm 1 | WrapperSimpleApp Error: Unable to locate the class org.elasticsearch.bootstrap.ElasticSearchF : java.lang.ClassNotFoundException: org.elasticsearch.bootstrap.ElasticSearchF 
jvm 1 | 
jvm 1 | WrapperSimpleApp Usage: 
jvm 1 | java org.tanukisoftware.wrapper.WrapperSimpleApp {app_class{/app_method}} [app_arguments] 
jvm 1 | 
jvm 1 | Where: 
jvm 1 | app_class:  The fully qualified class name of the application to run. 
jvm 1 | app_arguments: The arguments that would normally be passed to the 
jvm 1 |     application. 
wrapper | JVM exited while loading the application. 
... 
wrapper | There were 5 failed launches in a row, each lasting less than 300 seconds. Giving up. 
wrapper | There may be a configuration problem: please check the logs. 
wrapper | <-- Wrapper Stopped 

更新

鉴于我们现在是在2016年,在Ubuntu上运行ES最简单的方法是使用多克。 docker run elasticsearch将下载最新的并在前台运行它,显然你可以运行它作为一个守护进程,或运行特定版本(例如elasticsearch:1.7.2),并设置端口等

+0

确保您获取包装的正确版本太多,请参阅自述[这里](https://开头的github .com/elasticsearch/elasticsearch-servicewrapper“here”)。 – reim

回答

12

任何人试图警告的话我之前做过 - Gist中指定的URL是源版本,而不是编译版本,因此没有* .class文件。

您可以使用吉斯特原样,但是从ElasticSearch站点,而不是GitHub的URL,它是存在的那一刻,如替代最新的下载网址:

.... 
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.1.1.tar.gz -O elasticsearch.tar.gz 
tar -xf elasticsearch.tar.gz 
rm elasticsearch.tar.gz 
sudo mv elasticsearch-* elasticsearch 
sudo mv elasticsearch /usr/local/share 
... 

**这是最新版本截至20/5/2014。要获得更多更新版本,请访问this页面,右键单击TAR链接(位于下载部分下),复制链接并在第一行中替换wget参数。

+0

谢谢。这有帮助! –

8

我安装elasticsearch的方式与您所做的相同,并遇到同样的问题。最后,我通过安装编译版本而不是从github来解决问题。它涉及使用与gist相同的步骤,除了使用来自http://www.elasticsearch.org/download/2012/12/27/0.20.2.html的tar而不是github。我分叉并更新了要点https://gist.github.com/4512530。希望这可以帮助。

+1

斯科特 - 感谢您更新的要点 - 我相信人们会发现有用的。不幸的是,在我已经回答了问题7个小时后,我无法真诚地接受你的答案。但我会投票。 –

+0

所有失败,你的工作......(Y) – RohitPorwal

3

Depackaging的elasticsearch网站上提供的DEB文件的工作对我罚款:

须藤dpkg -i来elasticsearch-1.1.1.deb

+0

Ubuntu 12.04上的v1.2.0相同。新贵脚本适用于作为服务运行。 – cleaver

6

请按照此步骤轻松设置弹性搜索。

步骤1 - 安装Java:

$ sudo apt-get update 

$ sudo apt-get install openjdk-7-jre 

$ java -version

第2步 - 下载和安装Elasticsearch:

$ wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.2.deb 

$ sudo dpkg -i elasticsearch-1.7.2.deb 

$ sudo update-rc.d elasticsearch defaults

步骤3 - 配置弹性:

$ sudo nano /etc/elasticsearch/elasticsearch.yml

node.name: “我的第一个节点” cluster.name:mycluster1

$ sudo service elasticsearch start

步骤4 - 保护弹性:

$ sudo nano /etc/elasticsearch/elasticsearch.yml

network.bind_host:本地主机

script.disable_dynamic:真

第5步 - 测试:

$ curl -X GET 'http://localhost:9200' or run http://localhost:9200 in any browser.

你应该会看到跟随着g反应:

{ 
"status" : 200,
"name" : "Harry Leland",
"cluster_name" : "elasticsearch",
"version" : {
"number" : "1.7.2",
"build_hash" : "e43676b1385b8125d647f593f7202acbd816e8ec",
"build_timestamp" : "2015-09-14T09:49:53Z",
"build_snapshot" : false,
"lucene_version" : "4.10.4"
},
"tagline" : "You Know, for Search"
}

Refrence通过:

http://laravelcode.com/post/how-to-install-elastic-search-in-local-system-and-live-server