[[setup-repositories]] == Repositories We 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. [float] === APT Download and install the Public Signing Key [source,sh] -------------------------------------------------- wget -qO - http://packages.elasticsearch.org/GPG-KEY-elasticsearch | sudo apt-key add - -------------------------------------------------- Add the following to your /etc/apt/sources.list to enable the repository ["source","sh",subs="attributes,callouts"] -------------------------------------------------- deb http://packages.elasticsearch.org/elasticsearch/{branch}/debian stable main -------------------------------------------------- Run apt-get update and the repository is ready for use. You can install it with : [source,sh] -------------------------------------------------- apt-get update && apt-get install elasticsearch -------------------------------------------------- [float] === YUM Download and install the Public Signing Key [source,sh] -------------------------------------------------- rpm --import http://packages.elasticsearch.org/GPG-KEY-elasticsearch -------------------------------------------------- Add the following in your `/etc/yum.repos.d/` directory in a file named (for example) `elasticsearch.repo` ["source","sh",subs="attributes,callouts"] -------------------------------------------------- [elasticsearch-{branch}] name=Elasticsearch repository for {branch}.x packages baseurl=http://packages.elasticsearch.org/elasticsearch/{branch}/centos gpgcheck=1 gpgkey=http://packages.elasticsearch.org/GPG-KEY-elasticsearch enabled=1 -------------------------------------------------- And your repository is ready for use. You can install it with : [source,sh] -------------------------------------------------- yum install elasticsearch --------------------------------------------------