在Ubuntu 12.04上安装ElasticSearch

Hug*_*own 6 ubuntu elasticsearch ubuntu-12.04

我有一台运行Ubuntu 12.04的虚拟机,我正在尝试安装ElasticSearch.我按照这个要点中最好的"学习X硬盘的方式"的精神,一切精细安装-包下载,未解压,复制到正确的地方等

当我运行它时会出现问题 - 通过调用:

$ /usr/local/share/elasticsearch/bin/elasticsearch
Run Code Online (Sandbox Code Playgroud)

或者使用服务包装器($ rselasticsearch console)

输出将记录到wrapper.log下面并包含在内.我认为我可能有JAVA家庭/类路径问题,但我不确定.

最感激的任何帮助!

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
Run Code Online (Sandbox Code Playgroud)

更新

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

Hug*_*own 12

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

您可以按原样使用Gist,但是替换ElasticSearch网站上的最新下载URL,而不是目前在那里的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
...
Run Code Online (Sandbox Code Playgroud)

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


小智 8

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


Har*_*ana 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:localhost

script.disable_dynamic:true

第5步 - 测试:

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

您应该看到以下响应:

{ 
"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"
}

参考:

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