Current branch:
6.4
,6.4.1
,latest
- Splunk Enterprise6.4-light
,6.4.1-light
,latest-light
- Splunk Light6.4-forwarder
,6.4.1-forwarder
,latest-forwarder
- Splunk Universal Forwarder
For previous versions or newest releases see other branches.
NOTE: I'm working at Splunk, but this is not an official Splunk images. I build them in my free time when I'm not at work. I have some knowledge about Splunk, but you should think twice before putting them in production. I run these images on my own home server just for my personal needs. If you have any issues - feel free to open a bug.
Dockerfiles to build Splunk including Enterpise, Light and Universal Forwarder.
Examples below show you how to pull and start Splunk Enterprise. If you want to use Splunk Light or Universal Forwarder - you just need to change tags to add
-light
or-forwarder
and usesplunklight
anduniversalforwarder
folders.
- Version:
6.4.1
- Build:
debde650d26e
Pull the image from the docker registry. This is the recommended method of installation as it is easier to update image. These builds are performed by the Docker Trusted Build service.
docker pull outcoldman/splunk:6.4.1
Or you can pull latest version.
docker pull outcoldman/splunk:latest
Alternately you can build the image locally.
git clone https://github.com/outcoldman/docker-splunk.git
cd docker-splunk/splunk
docker build --tag="$USER/splunk" .
To manually start Splunk Enterprise container
docker run --hostname splunk -p 8000:8000 -d --env SPLUNK_START_ARGS="--accept-license" outcoldman/splunk:6.4.1
This docker image has two data volumes /opt/splunk/etc
and /opt/splunk/var
(See Data Store). To avoid losing any data when container is stopped/deleted mount these volumes from docker volume containers (see Managing data in containers)
docker run --name vsplunk -v /opt/splunk/etc -v /opt/splunk/var busybox
docker run --hostname splunk --name splunk --volumes-from=vsplunk -p 8000:8000 -d --env SPLUNK_START_ARGS="--accept-license" outcoldman/splunk:6.4.1
Or if you use docker-compose
version: '2'
services:
splunk:
image: outcoldman/splunk:latest
environment:
- SPLUNK_START_ARGS=--accept-license
hostname: splunk
volumes:
- config:/opt/splunk/etc
- data:/opt/splunk/var
ports:
- 8000:8000
volumes:
config:
driver: local
data:
driver: local
This image has two data volumes
/opt/splunk/etc
- stores Splunk configurations, including applications and lookups/opt/splunk/var
- stores indexed data, logs and internal Splunk data
Splunk processes are running under splunk
user.
Next ports are exposed
8000/tcp
- Splunk Web interface (Splunk Enterprise and Splunk Light)8089/tcp
- Splunk Services (All Splunk products)8191/tcp
- Application KV Store (Splunk Enterprise)9997/tcp
- Splunk Indexing Port (not used by default) (Splunk Enterprise)1514
- Network Input (not used by default) (All Splunk products)8088
- HTTP Event Collector
We are using
1514
instead of standard514
syslog port because ports below 1024 are reserved for root access only. See Run Splunk Enterprise as a different or non-root user.
You can execute Splunk commands by using
docker exec splunk entrypoint.sh splunk version
Splunk is launched in background. Which means that when Splunk restarts (after some configuration changes) - the container will not be affected.
It is recommended to specify hostname
for this image, so if you will recreate Splunk instance you will keep the same hostname.
Some basic configurations are allowed to configure Indexers/Forwarders using environment variables. For more advanced configurations please use your own configuration files or deployment server.
SPLUNK_ENABLE_DEPLOY_SERVER='true'
- enable deployment server on Indexer.- Available: splunk image only.
SPLUNK_DEPLOYMENT_SERVER='<servername>:<port>
- configure deployment client. Set deployment server url.- Example:
--env SPLUNK_DEPLOYMENT_SERVER='splunkdeploymentserver:8089'
. - Available: splunk and forwarder images only.
- Example:
SPLUNK_ENABLE_LISTEN=<port>
- enable receiving.- Additional configuration is available using
SPLUNK_ENABLE_LISTEN_ARGS
environment variable. - Available: splunk and light images only.
- Additional configuration is available using
SPLUNK_FORWARD_SERVER=<servername>:<port>
- forward data to indexer.- Additional configuration is available using
SPLUNK_FORWARD_SERVER_ARGS
environment variable. - Additional forwarders can be set up using
SPLUNK_FORWARD_SERVER_<1..30>
andSPLUNK_FORWARD_SERVER_<1..30>_ARGS
. - Example:
--env SPLUNK_FORWARD_SERVER='splunkindexer:9997' --env SPLUNK_FORWARD_SERVER_ARGS='method clone' --env SPLUNK_FORWARD_SERVER_1='splunkindexer2:9997' --env SPLUNK_FORWARD_SERVER_1_ARGS='-method clone'
. - Available: splunk and forwarder images only.
- Additional configuration is available using
SPLUNK_ADD='<monitor|add> <what_to_monitor|what_to_add>'
- execute add command, for example to monitor files or listen on specific ports.- Additional add commands can be executed (up to 30) using
SPLUNK_ADD_<1..30>
. - Example
--env SPLUNK_ADD='udp 1514' --env SPLUNK_ADD_1='monitor /var/log/*'
. - Available: all images.
- Additional add commands can be executed (up to 30) using
SPLUNK_CMD='any splunk command'
- execute any splunk command.- Additional commands can be executed (up to 30) using
SPLUNK_CMD_<1..30>
. - Example
--env SPLUNK_CMD='edit user admin -password random_password -role admin -auth admin:changeme'
.
- Additional commands can be executed (up to 30) using
SPLUNK_START_ARGS='--accept-license"
- Splunk requires you to accept the license, I (maintainer of this image) don't want do that for you, so please add this on your own or start container with-it
switch.
This is just a simple example to show how configuration works, do not consider it as a best practice example.
> echo "Creating docker network, so all containers will see each other"
> docker network create splunk
> echo "Starting deployment server for forwarders"
> docker run -d --net splunk \
--hostname splunkdeploymentserver \
--name splunkdeploymentserver \
--publish 8000 \
--env SPLUNK_ENABLE_DEPLOY_SERVER=true \
--env SPLUNK_START_ARGS="--accept-license" \
outcoldman/splunk
> echo "Starting indexer 1"
> docker run -d --net splunk \
--hostname splunkindexer1 \
--name splunkindexer1 \
--publish 8000 \
--env SPLUNK_ENABLE_LISTEN=9997 \
--env SPLUNK_START_ARGS="--accept-license" \
outcoldman/splunk
> echo "Starging indexer 2"
> docker run --rm --net splunk \
--hostname splunkindexer2 \
--name splunkindexer2 \
--publish 8000 \
--env SPLUNK_ENABLE_LISTEN=9997 \
--env SPLUNK_START_ARGS="--accept-license" \
outcoldman/splunk
> echo "Starting forwarder, which forwards data to 2 indexers by cloning events"
> docker run -d --net splunk \
--name forwarder \
--hostname forwarder \
--env SPLUNK_FORWARD_SERVER='splunkindexer1:9997' \
--env SPLUNK_FORWARD_SERVER_ARGS='-method clone' \
--env SPLUNK_FORWARD_SERVER_1="splunkindexer2:9997" \
--env SPLUNK_FORWARD_SERVER_1_ARGS="-method clone" \
--env SPLUNK_ADD='udp 1514' \
--env SPLUNK_DEPLOYMENT_SERVER='splunkdeploymentserver:8089' \
--env SPLUNK_START_ARGS="--accept-license" \
outcoldman/splunk:forwarder
After that you will be able to forward syslog data to the udp port of container forwarder (we do not publish port, so only from internal containers). You should see all the data on both indexers. Also you should see forwarder registered with deployment server.
Upgrade example below
# Use data volume container to persist data between upgrades
docker run --name vsplunk -v /opt/splunk/etc -v /opt/splunk/var busybox
# Start old version of Splunk Enterprise
docker run --hostname splunk --name splunk --volumes-from=vsplunk -p 8000:8000 -d --env SPLUNK_START_ARGS="--accept-license" outcoldman/splunk:6.3.3
# Stop Splunk Enterprise container
docker stop splunk
# Remove Splunk Enterprise container
docker rm -v splunk
# Start Splunk Enterprise container with new version
docker run --hostname splunk --name splunk --volumes-from=vsplunk -p 8000:8000 -d --env SPLUNK_START_ARGS="--accept-license" outcoldman/splunk:6.4.1