Created
September 19, 2013 22:29
-
-
Save lancelakey/6630750 to your computer and use it in GitHub Desktop.
Install ElasticSearch on CentOS 6
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
#!/usr/bin/env bash | |
set -x | |
# Install ES | |
pushd /tmp/ | |
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-0.90.5.noarch.rpm | |
yum install -y elasticsearch-0.90.5.noarch.rpm | |
popd | |
/etc/init.d/elasticsearch start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment