Hello,
I would like to install enterprise plugin on my wonderful graylog instance, but i does not work.
I use docker-compose to run graylog.
This is my docker-compose.yml file :
version: '2'
services:
# MongoDB: https://hub.docker.com/_/mongo/
mongodb:
image: mongo:3
# Elasticsearch: https://www.elastic.co/guide/en/elasticsearch/reference/6.x/docker.html
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch-oss:6.8.2
environment:
- http.host=0.0.0.0
- transport.host=localhost
- network.host=0.0.0.0
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ulimits:
memlock:
soft: -1
hard: -1
mem_limit: 1g
# Graylog: https://hub.docker.com/r/graylog/graylog/
graylog:
image: graylog/graylog:3.1
volumes:
# Mount local configuration directory into Docker container
- ./graylog/plugin/graylog-plugin-enterprise-3.1.3.jar:/usr/share/graylog/plugin/graylog-plugin-enterprise-3.1.3.jar
environment:
# CHANGE ME (must be at least 16 characters)!
- GRAYLOG_PASSWORD_SECRET=secret
# Password: admin
- GRAYLOG_ROOT_PASSWORD_SHA2=secret
- GRAYLOG_HTTP_EXTERNAL_URI=http://X.X.X.X:9000/
links:
- mongodb:mongo
- elasticsearch
depends_on:
- mongodb
- elasticsearch
ports:
# Graylog web interface and REST API
- 9000:9000
# Syslog TCP
- 1514:1514
# Syslog UDP
- 1514:1514/udp
When i enter in contenair, i can see the file mounted
$ ls -lisa plugin
total 29484
393771 4 drwxrwxr-x 1 graylog graylog 4096 Nov 13 07:37 .
393729 8 drwxr-xr-x 1 graylog graylog 4096 Nov 6 13:12 ..
393772 20704 -rw-rw-r-- 1 graylog graylog 21198838 Nov 6 11:45 graylog-plugin-aws-3.1.3.jar
393773 3644 -rw-rw-r-- 1 graylog graylog 3730009 Nov 6 11:44 graylog-plugin-collector-3.1.3.jar
2228240 4 drwxr-xr-x 2 root root 4096 Nov 12 22:22 graylog-plugin-enterprise-3.1.3.jar
393774 5120 -rw-rw-r-- 1 graylog graylog 5239610 Nov 6 11:46 graylog-plugin-threatintel-3.1.3.jar
But in web console, the plugin status is :
My only idea is on “graylog-plugin-enterprise-3.1.3.jar” file permissions.
Does somebody have a good idea?
Thank you very much for your help