All Apps and Add-ons

Problem in running a command in splunk hosted in docker

virtuosoo
Explorer

Hello ,

I am trying to run an instance of splunk on docker-composite.
Everything seems working , But I need to run splunk command to add a user, I don't know how to do it via docker-composer.

  • So my problem is "How to configure docker-compose to
    run "?

    splunk add user test -role Admin -password testpassword -full-name "TEST"

  • My Config docker-compose :

version: "2"

services:
splunk:
#build: .
hostname: splunk
image: splunk/splunk:7.2
environment:
SPLUNK_START_ARGS: --accept-license --answer-yes
SPLUNK_ENABLE_LISTEN: 9997
SPLUNK_ADD: tcp 1514
SPLUNK_PASSWORD: "test12345"
volumes:
- xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
ports:
- "8000:8000"
- "9997:9997"
- "8088:8088"
- "1514:1514"

THANK YOU IN ADVANCE !!!

0 Karma

codebuilder
Influencer

All you need to do is connect to the console:

docker exec -it <image_id> /bin/bash

Alternatively, you can pass in the full command you want to run with the same syntax:

docker exec -it <image_id> /opt/splunk/bin/splunk <your_command_here>
----
An upvote would be appreciated and Accept Solution if it helps!
0 Karma
Get Updates on the Splunk Community!

Deep Dive into Federated Analytics: Unlocking the Full Power of Your Security Data

In today’s complex digital landscape, security teams face increasing pressure to protect sprawling data across ...

Your summer travels continue with new course releases

Summer in the Northern hemisphere is in full swing, and is often a time to travel and explore. If your summer ...

From Alert to Resolution: How Splunk Observability Helps SREs Navigate Critical ...

It's 3:17 AM, and your phone buzzes with an urgent alert. Wire transfer processing times have spiked, and ...