-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
keycloak-restore-database.sh
47 lines (37 loc) · 2.31 KB
/
keycloak-restore-database.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
# # keycloak-restore-database.sh Description
# This script facilitates the restoration of a database backup.
# 1. **Identify Containers**: It first identifies the service and backups containers by name, finding the appropriate container IDs.
# 2. **List Backups**: Displays all available database backups located at the specified backup path.
# 3. **Select Backup**: Prompts the user to copy and paste the desired backup name from the list to restore the database.
# 4. **Stop Service**: Temporarily stops the service to ensure data consistency during restoration.
# 5. **Restore Database**: Executes a sequence of commands to drop the current database, create a new one, and restore it from the selected compressed backup file.
# 6. **Start Service**: Restarts the service after the restoration is completed.
# To make the `keycloak-restore-database.shh` script executable, run the following command:
# `chmod +x keycloak-restore-database.sh`
# Usage of this script ensures a controlled and guided process to restore the database from an existing backup.
KEYCLOAK_CONTAINER=$(docker ps -aqf "name=keycloak-keycloak")
KEYCLOAK_BACKUPS_CONTAINER=$(docker ps -aqf "name=keycloak-backups-keycloak")
KEYCLOAK_DB_NAME="keycloakdb"
KEYCLOAK_DB_USER="keycloakdbuser"
POSTGRES_PASSWORD=$(docker exec $KEYCLOAK_BACKUPS_CONTAINER printenv PGPASSWORD)
BACKUP_PATH="/srv/keycloak-postgres/backups/"
echo "--> All available database backups:"
for entry in $(docker container exec "$KEYCLOAK_BACKUPS_CONTAINER" sh -c "ls $BACKUP_PATH")
do
echo "$entry"
done
echo "--> Copy and paste the backup name from the list above to restore database and press [ENTER]
--> Example: keycloak-postgres-backup-YYYY-MM-DD_hh-mm.gz"
echo -n "--> "
read SELECTED_DATABASE_BACKUP
echo "--> $SELECTED_DATABASE_BACKUP was selected"
echo "--> Stopping service..."
docker stop "$KEYCLOAK_CONTAINER"
echo "--> Restoring database..."
docker exec "$KEYCLOAK_BACKUPS_CONTAINER" sh -c "dropdb -h postgres-keycloak -p 5432 $KEYCLOAK_DB_NAME -U $KEYCLOAK_DB_USER \
&& createdb -h postgres-keycloak -p 5432 $KEYCLOAK_DB_NAME -U $KEYCLOAK_DB_USER \
&& gunzip -c ${BACKUP_PATH}${SELECTED_DATABASE_BACKUP} | psql -h postgres-keycloak -p 5432 $KEYCLOAK_DB_NAME -U $KEYCLOAK_DB_USER"
echo "--> Database recovery completed..."
echo "--> Starting service..."
docker start "$KEYCLOAK_CONTAINER"