Skip to content

Instantly share code, notes, and snippets.

@michaelknurr
Last active August 30, 2023 08:07
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save michaelknurr/a8f1941c6f40c0d784b1e467fbc694ba to your computer and use it in GitHub Desktop.
Save michaelknurr/a8f1941c6f40c0d784b1e467fbc694ba to your computer and use it in GitHub Desktop.
Shell script for automatted keycloak backups
#!/bin/bash
# check, if another export is currently running
if [ `ps -ef|grep "keycloak.migration.action=export" |grep -v grep |wc -l` != 0 ] ; then
echo "Another export is currently running";
exit 1;
fi
# try to extract keycloak home from running keycloak instance
KEYCLOAK_HOME=$(ps -ef|grep -v grep|grep jboss.home.dir|grep keycloak|sed 's/.*\(jboss.home.dir=\)//'|awk '{print $1}')
# if this did not work, try to set other location
if [ ! -x $KEYCLOAK_HOME ] ; then
KEYCLOAK_HOME=/opt/keycloak
fi
KEYCLOAK_BACKUP_DIR=$HOME/keycloak-backup
LOGFILE=/tmp/kc-$$.log
rm -rf $KEYCLOAK_BACKUP_DIR
$KEYCLOAK_HOME/bin/standalone.sh -Dkeycloak.migration.action=export -Dkeycloak.migration.provider=dir -Dkeycloak.migration.dir=$KEYCLOAK_BACKUP_DIR -Dkeycloak.migration.usersPerFile=500 -Djboss.socket.binding.port-offset=99 -Djboss.as.management.blocking.timeout=900 > $LOGFILE &
sleep 5
KEYCLOAK_PID=$(ps -ef|grep java|grep "keycloak.migration.dir="|awk '{print $2}')
SUCCESS="Export finished successfully"
FAILURE="seconds waiting for service container stability. Operation will roll back"
echo "Vorher: KEYCLOAK_PID=$KEYCLOAK_PID"
while [ `grep "$SUCCESS" $LOGFILE | wc -l` == 0 ] ; do
sleep 60
if [ `grep "$FAILURE" $LOGFILE | wc -l` != 0 ] ; then echo "killing keycloak with pid=$KEYCLOAK_PID"; kill $KEYCLOAK_PID; exit 1; fi;
done
kill $KEYCLOAK_PID
# delete all files that have been modified more than 30 days ago
find ~/archive/export -type f -mtime +30 -delete
tar cfz ~/archive/export/keycloak-backup-$(date +%Y-%m-%d).tar.gz --remove-files -C $HOME keycloak-backup/*
@seandavi
Copy link

seandavi commented Dec 15, 2020

OK, silly question, but once I have an export file, how can I re-import it. The setting is a Keycloak instance running in Kubernetes that uses a persistent Postgresql database. Do I need to clean out the Postgresql database before import? And what about secrets (oauth client ids, etc.)?

@michaelknurr
Copy link
Author

Hi Sean
this script is quite old and the backup procedure is now no longer recommended by RedHat. Instead you should use database tools to backup your keycloak database.

However if you choose to use it (for example to create backups for development instances), the created files can be imported at startup time using
-Dkeycloak.migration.action=import

All secrets like user passwords and client ids will be preserved in the backup. But the same also applies to backups of the datanase, so I would recommend you go into that direction.

Cheers,
Mike

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment