Skip to content

Commit 00dcae7

Browse files
committed
backup: Remove the custom backup and restore system.
Zulip backup/restore system now works in a docker environment. So we don't need this anymore.
1 parent 5b2ec71 commit 00dcae7

File tree

2 files changed

+27
-82
lines changed

2 files changed

+27
-82
lines changed

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,32 @@ to `/etc/ssl/certs/ca-certificates.crt`.
303303

304304
At this point you are ready to build Zulip.
305305

306+
### Backups and restore
307+
308+
Zulip has built in support for creating and restoring backups. Do read
309+
the [Backups, export and import][backups-export-import] documentation first
310+
before continuing.
311+
312+
Here is an example on how you can run the backup command using docker-compose.
313+
```
314+
docker-compose exec -u zulip zulip /home/zulip/deployments/current/manage.py backup --output /data/backups/backup-file-name.tar.gz
315+
```
316+
The backup file in above example is stored in /data/backups directory. Since backups
317+
directory is present inside the docker volume, the backup export can be accessed
318+
from the host machine and is unaffected if the container is destroyed. The `/data/backups`
319+
directory is automatically created during the container creation.
320+
321+
The backup can be restored using `scripts/setup/restore-backup` script. For example
322+
```
323+
docker-compose exec zulip /home/zulip/deployments/current/scripts/setup/restore-backup /data/backups/backup-file-name.tar.gz
324+
```
325+
326+
You can restore the backup which you created in another docker-compose installation
327+
by copying the backup file to `backups` directory in zulip server's volume storage directory
328+
(eg `/opt/docker/zulip/zulip/backups`) in your host machine and running the command above.
329+
330+
[backups-export-import]: https://zulip.readthedocs.io/en/latest/production/maintain-secure-upgrade.html#backups
331+
306332
## Running a Zulip server with Kubernetes
307333

308334
A Kubernetes pod file is in the `kubernetes/` folder; you can run it

entrypoint.sh

+1-82
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ ZULIP_AUTH_BACKENDS="${ZULIP_AUTH_BACKENDS:-EmailAuthBackend}"
3737
ZULIP_RUN_POST_SETUP_SCRIPTS="${ZULIP_RUN_POST_SETUP_SCRIPTS:-True}"
3838
# Zulip user setup
3939
FORCE_FIRST_START_INIT="${FORCE_FIRST_START_INIT:-False}"
40-
# Auto backup settings
41-
AUTO_BACKUP_ENABLED="${AUTO_BACKUP_ENABLED:-True}"
42-
AUTO_BACKUP_INTERVAL="${AUTO_BACKUP_INTERVAL:-30 3 * * *}"
4340
# Zulip configuration function specific variable(s)
4441
SPECIAL_SETTING_DETECTION_MODE="${SPECIAL_SETTING_DETECTION_MODE:-}"
4542
MANUAL_CONFIGURATION="${MANUAL_CONFIGURATION:-false}"
@@ -56,6 +53,7 @@ prepareDirectories() {
5653
rm -rf /home/zulip/uploads
5754
ln -sfT "$DATA_DIR/uploads" /home/zulip/uploads
5855
chown zulip:zulip -R "$DATA_DIR/uploads"
56+
chown zulip:zulip -R "$DATA_DIR/backups"
5957
# Link settings folder
6058
if [ "$LINK_SETTINGS_TO_DATA" = "True" ] || [ "$LINK_SETTINGS_TO_DATA" = "true" ]; then
6159
# Create settings directories
@@ -279,15 +277,6 @@ zulipConfiguration() {
279277
fi
280278
echo "Zulip configuration succeeded."
281279
}
282-
autoBackupConfiguration() {
283-
if [ "$AUTO_BACKUP_ENABLED" != "True" ] && [ "$AUTO_BACKUP_ENABLED" != "true" ]; then
284-
rm -f /etc/cron.d/autobackup
285-
echo "Auto backup is disabled. Continuing."
286-
return 0
287-
fi
288-
printf 'MAILTO=""\n%s cd /;/entrypoint.sh app:backup\n' "$AUTO_BACKUP_INTERVAL" > /etc/cron.d/autobackup
289-
echo "Auto backup enabled."
290-
}
291280
initialConfiguration() {
292281
echo "=== Begin Initial Configuration Phase ==="
293282
prepareDirectories
@@ -301,7 +290,6 @@ initialConfiguration() {
301290
authenticationBackends
302291
zulipConfiguration
303292
fi
304-
autoBackupConfiguration
305293
echo "=== End Initial Configuration Phase ==="
306294
}
307295
# === bootstrappingEnvironment ===
@@ -439,67 +427,6 @@ appManagePy() {
439427
set +e
440428
exec su zulip -c "/home/zulip/deployments/current/manage.py $(printf '%q ' "$COMMAND" "$@")"
441429
}
442-
appBackup() {
443-
echo "Starting backup process ..."
444-
if [ -d "/tmp/backup-$(date "%D-%H-%M-%S")" ]; then
445-
echo "Temporary backup folder for \"$(date "%D-%H-%M-%S")\" already exists. Aborting."
446-
echo "Backup process failed. Exiting."
447-
exit 1
448-
fi
449-
local BACKUP_FOLDER
450-
BACKUP_FOLDER="/tmp/backup-$(date "%D-%H-%M-%S")"
451-
mkdir -p "$BACKUP_FOLDER"
452-
waitingForDatabase
453-
pg_dump -h "$DB_HOST" -p "$DB_HOST_PORT" -U "$DB_USER" "$DB_NAME" > "$BACKUP_FOLDER/database-postgres.sql"
454-
tar -zcvf "$DATA_DIR/backups/backup-$(date "%D-%H-%M-%S").tar.gz" "$BACKUP_FOLDER/"
455-
rm -r "${BACKUP_FOLDER:?}/"
456-
echo "Backup process succeeded."
457-
exit 0
458-
}
459-
appRestore() {
460-
echo "Starting restore process ..."
461-
if [ -z "$(ls -A "$DATA_DIR/backups/")" ]; then
462-
echo "No backups to restore found in \"$DATA_DIR/backups/\"."
463-
echo "Restore process failed. Exiting."
464-
exit 1
465-
fi
466-
while true; do
467-
local backups=("$DATA_DIR"/backups/*)
468-
printf '|-> %s\n' "${backups[@]#"$DATA_DIR"/backups/}"
469-
echo "Please enter backup filename (full filename with extension): "
470-
read -r BACKUP_FILE
471-
if [ -z "$BACKUP_FILE" ]; then
472-
echo "Empty filename given. Please try again."
473-
echo ""
474-
continue
475-
fi
476-
if [ ! -e "$DATA_DIR/backups/$BACKUP_FILE" ]; then
477-
echo "File \"$BACKUP_FILE\" not found. Please try again."
478-
echo ""
479-
fi
480-
break
481-
done
482-
echo "File \"$BACKUP_FILE\" found."
483-
echo ""
484-
echo "==============================================================="
485-
echo "!! WARNING !! Your current data will be deleted!"
486-
echo "!! WARNING !! YOU HAVE BEEN WARNED! You can abort with \"CTRL+C\"."
487-
echo "!! WARNING !! Waiting 10 seconds before continuing ..."
488-
echo "==============================================================="
489-
echo ""
490-
local TIMEOUT
491-
for TIMEOUT in {10..1}; do
492-
echo "$TIMEOUT"
493-
sleep 1
494-
done
495-
echo "!! WARNING !! Starting restore process ... !! WARNING !!"
496-
waitingForDatabase
497-
tar -zxvf "$DATA_DIR/backups/$BACKUP_FILE" -C /tmp
498-
psql -h "$DB_HOST" -p "$DB_HOST_PORT" -U "$DB_USER" "$DB_NAME" < "/tmp/$(basename "$BACKUP_FILE" | cut -d. -f1)/database-postgres.sql"
499-
rm -r "/tmp/$(basename | cut -d. -f1)/"
500-
echo "Restore process succeeded. Exiting."
501-
exit 0
502-
}
503430
appCerts() {
504431
configureCerts
505432
}
@@ -508,8 +435,6 @@ appHelp() {
508435
echo "> app:help - Show this help menu and exit"
509436
echo "> app:version - Container Zulip server version"
510437
echo "> app:managepy - Run Zulip's manage.py script (defaults to \"shell\")"
511-
echo "> app:backup - Create backups of Zulip instances"
512-
echo "> app:restore - Restore backups of Zulip instances"
513438
echo "> app:certs - Create self-signed certificates"
514439
echo "> app:run - Run the Zulip server"
515440
echo "> [COMMAND] - Run given command with arguments in shell"
@@ -530,12 +455,6 @@ case "$1" in
530455
shift 1
531456
appManagePy "$@"
532457
;;
533-
app:backup)
534-
appBackup
535-
;;
536-
app:restore)
537-
appRestore
538-
;;
539458
app:certs)
540459
appCerts
541460
;;

0 commit comments

Comments
 (0)