-
-
Save rosskevin/493754c58ba3a4df70c4 to your computer and use it in GitHub Desktop.
CLI version - java8
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
### ElasticSearch version | |
if [ -z "$1" ]; then | |
echo "" | |
echo " Please specify the Elasticsearch version you want to install!" | |
echo "" | |
echo " $ $0 1.4.0" | |
echo "" | |
exit 1 | |
fi | |
ELASTICSEARCH_VERSION=$1 | |
if [[ ! "${ELASTICSEARCH_VERSION}" =~ ^[0-9]+\.[0-9]+\.[0-9]+ ]]; then | |
echo "" | |
echo " The specified Elasticsearch version isn't valid!" | |
echo "" | |
echo " $ $0 1.4.0" | |
echo "" | |
exit 2 | |
fi | |
### Install Oracle Java 8, this means you agree to their binary license!! | |
cd ~ | |
sudo add-apt-repository -y ppa:webupd8team/java | |
sudo apt-get update | |
echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |
echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections | |
sudo aptitude -y install oracle-java8-installer | |
# manually ran these (java7 was installed so the /etc/init.d/elasticsearch script found it instead of java 8): | |
sudo update-java-alternatives -s java-8-oracle | |
sudo apt-get install oracle-java8-set-default | |
### 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-${ELASTICSEARCH_VERSION}.deb | |
sudo dpkg -i elasticsearch-${ELASTICSEARCH_VERSION}.deb | |
#enable on bootup | |
sudo update-rc.d elasticsearch defaults 95 10 | |
### Start ElasticSearch | |
sudo /etc/init.d/elasticsearch start | |
### Make sure service is running | |
curl http://localhost:9200 | |
### Should return something like this: | |
#{ | |
# "status" : 200, | |
# "name" : "Storm", | |
# "version" : { | |
# "number" : "1.3.1", | |
# "build_hash" : "2de6dc5268c32fb49b205233c138d93aaf772015", | |
# "build_timestamp" : "2014-07-28T14:45:15Z", | |
# "build_snapshot" : false, | |
# "lucene_version" : "4.9" | |
# }, | |
# "tagline" : "You Know, for Search" | |
30,0-1 Top |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment