Skip to content

Instantly share code, notes, and snippets.

@lancelakey
Created September 19, 2013 22:29
Show Gist options
  • Save lancelakey/6630750 to your computer and use it in GitHub Desktop.
Save lancelakey/6630750 to your computer and use it in GitHub Desktop.
Install ElasticSearch on CentOS 6
#!/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