forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request elastic#885 from electrical/repo_docs
Adding repo doc
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: repositories - logstash | ||
layout: content_right | ||
--- | ||
# LogStash repositories | ||
|
||
We also have Logstash available als APT and YUM repositories. | ||
|
||
Our public signing key can be found [here](http://packages.elasticsearch.org/GPG-KEY-elasticsearch) | ||
|
||
## Apt based distributions | ||
|
||
Add the key: | ||
|
||
wget -O - http://packages.elasticsearch.org/GPG-KEY-elasticsearch | apt-key add - | ||
|
||
Add the repo to /etc/apt/sources.list | ||
|
||
deb http://packages.elasticsearch.org/logstash/1.3/debian stable main | ||
|
||
|
||
## YUM based distributions | ||
|
||
Add the key: | ||
|
||
rpm --import http://packages.elasticsearch.org/GPG-KEY-elasticsearch | ||
|
||
Add the repo to /etc/yum.repos.d/ directory | ||
|
||
[logstash-1.3] | ||
name=logstash repository for 1.3.x packages | ||
baseurl=http://packages.elasticsearch.org/logstash/1.3/centos | ||
gpgcheck=1 | ||
gpgkey=http://packages.elasticsearch.org/GPG-KEY-elasticsearch | ||
enabled=1 |