summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2016-01-18 00:00:03 +0100
committerThomas Lange <code@nerdmind.de>2016-01-18 00:00:03 +0100
commit9cfa6ae47a1be7361921750795bb0db5d8a41e9e (patch)
tree117f37d442e0630d61cbec91b157a2f5eb1e2b09
parent3631b1fd07ce46ec2e38402cda0cdcbceb1f38e5 (diff)
downloadsnippets-9cfa6ae47a1be7361921750795bb0db5d8a41e9e.tar.gz
snippets-9cfa6ae47a1be7361921750795bb0db5d8a41e9e.tar.xz
snippets-9cfa6ae47a1be7361921750795bb0db5d8a41e9e.zip
Multiple updates
-rw-r--r--Bash/mysql-database-backup.sh12
-rw-r--r--Bash/virtualhosts-backup.sh75
2 files changed, 81 insertions, 6 deletions
diff --git a/Bash/mysql-database-backup.sh b/Bash/mysql-database-backup.sh
index a2df521..ef4e2e1 100644
--- a/Bash/mysql-database-backup.sh
+++ b/Bash/mysql-database-backup.sh
@@ -1,9 +1,9 @@
#!/bin/bash
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
-# MySQL database backup script [Thomas Lange <thomas@nerdmind.de>] #
+# MySQL database backup script [Thomas Lange <tl@nerdmind.de>] #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
# #
-# This database backup script loop through each database (except the excluded #
+# This database backup script goes through each database (except the excluded #
# databases in DATABASE_EXCLUDED) and creates a bzip2 compressed backup file. #
# #
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
@@ -18,7 +18,7 @@ DATABASE_EXCLUDED="(Database|mysql|information_schema|performance_schema)"
#===============================================================================
# Define backup directories and target filename
#===============================================================================
-DIRECTORY_ROOT="/mnt/backups/databases/"
+DIRECTORY_ROOT="/mnt/data/backups/databases/"
DIRECTORY_PATH="$(date +%Y-%m-%d-%Hh%Mm)/"
DIRECTORY_FILE="${DIRECTORY_ROOT}${DIRECTORY_PATH}%s.sql.bz2"
@@ -35,14 +35,14 @@ if [ ! -d "${DIRECTORY_ROOT}${DIRECTORY_PATH}" ]; then
fi
#===============================================================================
-# Fetch all databases from local MySQL server
+# Fetch all database names from local MySQL server
#===============================================================================
DATABASES=`mysql --user="${DATABASE_USERNAME}" --password="${DATABASE_PASSWORD}" --execute="SHOW DATABASES;" | grep -Ev "${DATABASE_EXCLUDED}"`
#===============================================================================
-# Loop through all databases and create compressed dump
+# Loop through all database names and create compressed database backup
#===============================================================================
for database in ${DATABASES}; do
- echo "[INFO] Creating compressed database backup for ${database}"
+ echo "[INFO] Creating compressed backup for database ${database} [...]"
mysqldump --lock-all-tables --user="${DATABASE_USERNAME}" --password="${DATABASE_PASSWORD}" "${database}" | bzip2 > $(printf "${DIRECTORY_FILE}" "${database}")
done \ No newline at end of file
diff --git a/Bash/virtualhosts-backup.sh b/Bash/virtualhosts-backup.sh
new file mode 100644
index 0000000..839b199
--- /dev/null
+++ b/Bash/virtualhosts-backup.sh
@@ -0,0 +1,75 @@
+#!/bin/bash
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+# Virtualhost backup script [Thomas Lange <tl@nerdmind.de>] #
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+# #
+# This script goes through the first level in the virtual host root directory #
+# and creates for each domain name within a compressed backup file. The script #
+# is compatible with a directory structure like the following: #
+# #
+# |--- bob #
+# | |--- bobs-blog.tld #
+# | |--- config #
+# | |--- htdocs #
+# |--- alice #
+# | |--- alice-domain.tld #
+# | |--- config #
+# | |--- htdocs #
+# |--- thomas #
+# |--- sub1.thomas-blog.tld #
+# | |--- config #
+# | |--- htdocs #
+# |--- sub2.thomas-blog.tld #
+# |--- config #
+# |--- htdocs #
+# #
+#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%#
+
+#===============================================================================
+# Define backup main directories
+#===============================================================================
+DIRECTORY_ROOT="/mnt/data/backups/virtualhosts/"
+DIRECTORY_PATH="$(date +%Y-%m-%d-%Hh%Mm)/"
+DIRECTORY_FROM="/var/www/"
+
+#===============================================================================
+# Delete old backups in backup root directory
+#===============================================================================
+find "${DIRECTORY_ROOT}" -type d -mtime +14 -exec rm -r {} \;
+
+#===============================================================================
+# Create backup path directory if not exists
+#===============================================================================
+if [ ! -d "${DIRECTORY_ROOT}${DIRECTORY_PATH}" ]; then
+ mkdir "${DIRECTORY_ROOT}${DIRECTORY_PATH}"
+fi
+
+#===============================================================================
+# Loop through all usernames within the source root directory
+#===============================================================================
+for username in $(find ${DIRECTORY_FROM}* -maxdepth 0 -type d -exec basename {} \;); do
+
+ #===============================================================================
+ # Define backup sub directories and target filename
+ #===============================================================================
+ DIRECTORY_USER="${DIRECTORY_ROOT}${DIRECTORY_PATH}${username}/"
+ DIRECTORY_FILE="${DIRECTORY_USER}%s.tar.bz2"
+
+ echo "[INFO] Entering directory: ${DIRECTORY_FROM}${username}/:"
+
+ #===============================================================================
+ # Create backup sub path directory if not exists
+ #===============================================================================
+ if [ ! -d "${DIRECTORY_USER}" ]; then
+ echo "[INFO] Creating backup directory for user $username [...]"
+ mkdir "${DIRECTORY_USER}"
+ fi
+
+ #===============================================================================
+ # Loop through all virtualhosts within the user directory
+ #===============================================================================
+ for virtualhost in $(find ${DIRECTORY_FROM}${username}/* -maxdepth 0 -type d -exec basename {} \;); do
+ echo "[INFO] Creating compressed backup for virtualhost $virtualhost [...]"
+ tar --create --bzip2 --file "$(printf "${DIRECTORY_FILE}" "${virtualhost}")" --directory "${DIRECTORY_FROM}${username}/" "${virtualhost}"
+ done
+done \ No newline at end of file