WARNING: Version 1.3 of Elasticsearch has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Repositories
editRepositories
editWe also have repositories available for APT and YUM based distributions.
We have split the major versions in separate urls to avoid accidental upgrades across major version. For all 0.90.x releases use 0.90 as version number, for 1.0.x use 1.0, for 1.1.x use 1.1 etc.
We use the PGP key D88E42B4, Elasticsearch Signing Key, with fingerprint
4609 5ACC 8548 582C 1A26 99A9 D27D 666C D88E 42B4
to sign all our packages. It is available from http://pgp.mit.edu.
APT
editDownload and install the Public Signing Key
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
Add the following to your /etc/apt/sources.list to enable the repository
deb http://packages.elastic.co/elasticsearch/1.3/debian stable main
Run apt-get update and the repository is ready for use. You can install it with :
apt-get update && apt-get install elasticsearch
Configure Elasticsearch to automatically start during bootup :
sudo update-rc.d elasticsearch defaults 95 10
YUM
editDownload and install the Public Signing Key
rpm --import https://packages.elastic.co/GPG-KEY-elasticsearch
Add the following in your /etc/yum.repos.d/
directory
in a file named (for example) elasticsearch.repo
[elasticsearch-1.3] name=Elasticsearch repository for 1.3.x packages baseurl=http://packages.elastic.co/elasticsearch/1.3/centos gpgcheck=1 gpgkey=http://packages.elastic.co/GPG-KEY-elasticsearch enabled=1
And your repository is ready for use. You can install it with :
yum install elasticsearch
Configure Elasticsearch to automatically start during bootup. If your distribution is using SysV, then you will need to run :
chkconfig --add elasticsearch
Otherwise if your distribution is using systemd :
sudo /bin/systemctl daemon-reload sudo /bin/systemctl enable elasticsearch.service