Splunk Enterprise

To Automate Splunk configuration files backup on day basis - Which Splunk server & how to run this .sh script please?

SamHTexas
Builder

I copied this from a great post: Which server do I run this on & how do I execute this script to back up configuration file. Thank u

ou can compress $SPLUNK_HOME/etc/ and keep backup of compressed file. A simple shell script can do this and you can schedule it for every 24 hours using cron.

/backup.sh

#!/bin/bash
TIME=`date +%b-%d-%y`                      # This Command will read the date.
FILENAME=splunk-configs-backup-$TIME.tar.gz    # The filename including the date.
SRCDIR=/opt/splunk/etc                       # Source backup folder.
DESDIR=/backup                                    # Destination of backup file.
tar -cpzf $DESDIR/$FILENAME $SRCDIR

Cron expression:

00 04 * * * /bin/bash /backup.sh

This will run the script every day at 04:00:00.

Labels (1)
Tags (1)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Run the script on every instance you want to back up.  The script only works on the system it runs on.

---
If this reply helps you, Karma would be appreciated.

View solution in original post

SamHTexas
Builder

Sir, one more question please. Are the following all you'd also believe that need backing up on each Splunk server?

1. etc folder on each box

2. configuration on each box

3. kvstore on each box (currently we only have kvstore on the ES). Thank u in advance as always.

Tags (1)
0 Karma

richgalloway
SplunkTrust
SplunkTrust

It depends on the reason for the backup, but for routine purposes those are enough.  Of course, the Splunk configuration is stored in /opt/splunk/etc so #2 is a little redundant if it's meant to include only the Splunk configuration.

---
If this reply helps you, Karma would be appreciated.
0 Karma

richgalloway
SplunkTrust
SplunkTrust

Run the script on every instance you want to back up.  The script only works on the system it runs on.

---
If this reply helps you, Karma would be appreciated.
Get Updates on the Splunk Community!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...