Last active
August 29, 2015 14:15
-
-
Save shoaibmalik786/118a959b35808aab01fe to your computer and use it in GitHub Desktop.
Install Elasticsearch in ubuntu 14.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### Install OpenJDK | |
cd ~ | |
sudo apt-get update | |
sudo apt-get install openjdk-7-jre-headless -y | |
### Download and Install ElasticSearch | |
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.4.3.deb | |
sudo dpkg -i elasticsearch-1.4.3.deb | |
### Install the Java Service Wrapper for ElasticSearch | |
curl -L http://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master | tar -xz | |
sudo mkdir /usr/local/share/elasticsearch | |
sudo mkdir /usr/local/share/elasticsearch/bin | |
sudo mv *servicewrapper*/service /usr/local/share/elasticsearch/bin/ | |
rm -Rf *servicewrapper* | |
sudo /usr/local/share/elasticsearch/bin/service/elasticsearch install | |
sudo ln -s `readlink -f /usr/local/share/elasticsearch/bin/service/elasticsearch` /usr/local/bin/rcelasticsearch | |
### Start ElasticSearch | |
sudo service elasticsearch start | |
### Make sure service is running | |
curl http://localhost:9200 | |
### Should return something like this: | |
#{ | |
# "status" : 200, | |
# "name" : "Brain Drain", | |
# "cluster_name" : "elasticsearch", | |
# "version" : { | |
# "number" : "1.4.3", | |
# "build_hash" : "36a29a7144cfde87a960ba039091d40856fcb9af", | |
# "build_timestamp" : "2015-02-11T14:23:15Z", | |
# "build_snapshot" : false, | |
# "lucene_version" : "4.10.3" | |
# }, | |
# "tagline" : "You Know, for Search" | |
#} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment