Skip to content

Instantly share code, notes, and snippets.

@seamys
Forked from imkarthikk/ElasticSearch.sh
Last active December 13, 2017 02:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seamys/c08a6ccc7c34cb19cf05 to your computer and use it in GitHub Desktop.
Save seamys/c08a6ccc7c34cb19cf05 to your computer and use it in GitHub Desktop.
Shell Script to install Elastic Search on Ubuntu 14.04 Server
### 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 apt-get -y install oracle-java8-installer
### Download and Install ElasticSearch
### Check http://www.elasticsearch.org/download/ for latest version of ElasticSearch and replace wget link below
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-6.0.1.deb
sudo dpkg -i elasticsearch-6.0.1.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"
#}
#You will want to tune your memory as well http://stackoverflow.com/a/18152957/56069
@seamys
Copy link
Author

seamys commented Mar 20, 2016

latest version of ElasticSearch

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment