Created
June 17, 2014 21:20
-
-
Save jamescarr/7a543cca6b0c2f03368a to your computer and use it in GitHub Desktop.
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
| # my setup has graylog2 installed at /opt/graylog2-server | |
| # create the plugins dir since it doesn't exist (plugin is the g2 plugin dir) | |
| mkdir -p /opt/graylog2-server/plugins/ | |
| # install kopf | |
| wget -q https://github.com/lmenezes/elasticsearch-kopf/archive/0.90.zip | |
| unzip 0.90.zip && rm 0.90.zip | |
| mkdir -p /opt/graylog2-server/plugins/kopf | |
| mv elasticsearch-kopf-0.90 /opt/graylog2-server/plugins/kopf/_site | |
| # install cloud-aws | |
| wget -q https://github.com/downloads/elasticsearch/elasticsearch-cloud-aws/elasticsearch-cloud-aws-1.6.0.zip | |
| unzip -d /opt/graylog2-server/plugins/cloud-aws elasticsearch-cloud-aws-1.6.0.zip && rm elasticsearch-cloud-aws-1.6.0.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment