Last active
August 29, 2015 14:14
-
-
Save ravibhure/2646ea7f229a75725af8 to your computer and use it in GitHub Desktop.
Installing elasticsearch from source
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
#!/bin/bash | |
# Installing elasticsearch from source | |
# https://gist.github.com/rajraj/1556657#file-es-sh | |
# https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.0.2.tar.gz | |
cd ~ | |
sudo yum -y install java-1.7.0-openjdk | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.1.zip | |
unzip elasticsearch-0.90.1.zip | |
rm -rf elasticsearch-0.90.1.zip | |
mv elasticsearch-0.90.1 elasticsearch | |
sudo mv elasticsearch /usr/local/share | |
cd /usr/local/share | |
chmod 755 elasticsearch | |
cd ~ | |
curl -L http://github.com/elasticsearch/elasticsearch-servicewrapper/tarball/master | tar -xz | |
mv *servicewrapper*/service /usr/local/share/elasticsearch/bin/ | |
rm -Rf *servicewrapper* | |
sudo /usr/local/share/elasticsearch/bin/service/elasticsearch install | |
sudo service elasticsearch start | |
# curl http://localhost:9200 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment