X-Git-Url: https://git.p6c8.net/nextcloud-backup-restore.git/blobdiff_plain/6b2652d4ad95af1efcdb6d4b451db8122a665b0a..0ee3ebac4cf69001ceb6f41f3d35d479dcbc8e2c:/NextcloudBackup.sh diff --git a/NextcloudBackup.sh b/NextcloudBackup.sh index b0dbae1..4c95f10 100644 --- a/NextcloudBackup.sh +++ b/NextcloudBackup.sh @@ -14,9 +14,16 @@ # # Variables +backupMainDir=$1 + +if [ -z "$backupMainDir" ]; then + # TODO: The directory where you store the Nextcloud backups (when not specified by args) + backupMainDir="/mnt/Share/NextcloudBackups" +fi + +echo "Backup directory: $backupMainDir" + currentDate=$(date +"%Y%m%d_%H%M%S") -# TODO: The directory where you store the Nextcloud backups -backupMainDir="/mnt/Share/NextcloudBackups/" # The actual directory of the current backup - this is a subdirectory of the main directory above with a timestamp backupdir="${backupMainDir}/${currentDate}/" # TODO: The directory of your Nextcloud installation (this is a directory under your web root) @@ -24,7 +31,7 @@ nextcloudFileDir="/var/www/nextcloud" # TODO: The directory of your Nextcloud data directory (outside the Nextcloud file directory) # If your data directory is located under Nextcloud's file directory (somewhere in the web root), the data directory should not be a separate part of the backup nextcloudDataDir="/var/nextcloud_data" -# TODO: The service name of the web server. Used to start/stop web server (e.g. 'service start') +# TODO: The service name of the web server. Used to start/stop web server (e.g. 'systemctl start ') webserverServiceName="nginx" # TODO: Your Nextcloud database name nextcloudDatabase="nextcloud_db" @@ -102,7 +109,7 @@ echo # Stop web server # echo "Stopping web server..." -service "${webserverServiceName}" stop +systemctl stop "${webserverServiceName}" echo "Done" echo @@ -123,7 +130,11 @@ echo # Backup DB # echo "Backup Nextcloud database..." +# MySQL/MariaDB: mysqldump --single-transaction -h localhost -u "${dbUser}" -p"${dbPassword}" "${nextcloudDatabase}" > "${backupdir}/${fileNameBackupDb}" + +# PostgreSQL (uncomment if you are using PostgreSQL as Nextcloud database) +#PGPASSWORD="${dbPassword}" pg_dump "${nextcloudDatabase}" -h localhost -U "${dbUser}" -f "${backupdir}/${fileNameBackupDb}" echo "Done" echo @@ -131,7 +142,7 @@ echo # Start web server # echo "Starting web server..." -service "${webserverServiceName}" start +systemctl start "${webserverServiceName}" echo "Done" echo