git.p6c8.net
/
psmysqlbackup.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Updated README
[psmysqlbackup.git]
/
psmysqlbackup.ps1
diff --git
a/psmysqlbackup.ps1
b/psmysqlbackup.ps1
index 1e23c5e6c9c10416d31b9e58f47a424aa6aea6b4..e7b2f5fbfd43e416beeb9397a207656a7df4dbf2 100644
(file)
--- a/
psmysqlbackup.ps1
+++ b/
psmysqlbackup.ps1
@@
-3,24
+3,36
@@
#
# Author: Patrick Canterino <patrick@patrick-canterino.de>
# WWW: https://www.patrick-canterino.de/
#
# Author: Patrick Canterino <patrick@patrick-canterino.de>
# WWW: https://www.patrick-canterino.de/
-# https://github.com/pcanterino/
dsmonrot
+# https://github.com/pcanterino/
psmysqlbackup
# License: 2-Clause BSD License
# Config
# License: 2-Clause BSD License
# Config
+# MySQL host
$configMysqlHost = "localhost"
$configMysqlHost = "localhost"
+# Port of MySQL host
$configMysqlPort = 3306
$configMysqlPort = 3306
+# MySQL user using to connect to MySQL
$configMysqlUser = "backup"
$configMysqlUser = "backup"
+# Password for MySQL user
$configMysqlPassword = "backup"
$configMysqlPassword = "backup"
+# Path to MySQL CLI program
$configMysqlCli = "C:\Program Files\MariaDB 10.5\bin\mysql.exe"
$configMysqlCli = "C:\Program Files\MariaDB 10.5\bin\mysql.exe"
+# Path to mysqldump CLI program
$configMysqldumpCli = "C:\Program Files\MariaDB 10.5\bin\mysqldump.exe"
$configMysqldumpCli = "C:\Program Files\MariaDB 10.5\bin\mysqldump.exe"
+# Directory where to store the backups
$configBackupDir = "backup"
$configBackupDir = "backup"
+# Number of backups to keep, set to 0 to keep all backups
$configRotate = 7
$configRotate = 7
+# Databases to backup, leave empty to backup all databases
$configDbBackup = @()
$configDbBackup = @()
-$configDbExclusions = @("test")
+# If $configDbBackup is empty, don't backup the databases defined here
+$configDbExclude = @("test")
+# If $configDbBackup is empty, don't backup the databases matching these patterns
+$configDbExcludePattern = @()
# End of config
# End of config
@@
-64,12
+76,13
@@
function Rotate-Backups($backupDir) {
}
}
}
}
-$default
Exclusions
= @("information_schema", "performance_schema")
+$default
DbExclude
= @("information_schema", "performance_schema")
$currDaytime = Get-Date -format "yyyyMMdd-HHmmss"
$currDaytime = Get-Date -format "yyyyMMdd-HHmmss"
+# Get a list of all databases
try {
try {
- $databases = Get-Databases | Where-Object {!($_ -in $default
Exclusions -or $_ -in $configDbExclusions
)}
+ $databases = Get-Databases | Where-Object {!($_ -in $default
DbExclude
)}
}
catch {
Write-Output "Failed to get list of databases"
}
catch {
Write-Output "Failed to get list of databases"
@@
-77,6
+90,8
@@
catch {
exit 1
}
exit 1
}
+# Create a list of databases to backup
+
$databasesToBackup = @()
if($configDbBackup -and $configDbBackup.count -gt 0) {
$databasesToBackup = @()
if($configDbBackup -and $configDbBackup.count -gt 0) {
@@
-90,14
+105,35
@@
if($configDbBackup -and $configDbBackup.count -gt 0) {
}
}
else {
}
}
else {
- $databasesToBackup = $databases
+ :excludeOuter
+ foreach($rDb in $databases) {
+ if($rDb -in $configDbExclude) {
+ continue;
+ }
+
+ foreach($cPattern in $configDbExcludePattern) {
+ if($rDb -match $cPattern) {
+ continue excludeOuter;
+ }
+ }
+
+ $databasesToBackup += $rDb
+ }
}
}
+# Iterate over the list of databases and back them up and rotate the backups
foreach($d in $databasesToBackup) {
$databaseBackupDir = Join-Path -Path $configBackupDir -ChildPath $d
if(!(Test-Path $databaseBackupDir)) {
foreach($d in $databasesToBackup) {
$databaseBackupDir = Join-Path -Path $configBackupDir -ChildPath $d
if(!(Test-Path $databaseBackupDir)) {
- New-Item -ItemType directory -Path $databaseBackupDir -ErrorAction Stop | Out-Null
+ try {
+ New-Item -ItemType directory -Path "$databaseBackupDir" -ErrorAction Stop | Out-Null
+ }
+ catch {
+ Write-Output "Failed to create directory $databaseBackupDir"
+ Write-Output $_
+ exit 1
+ }
}
$databaseBackupFile = Join-Path -Path $databaseBackupDir -ChildPath "backup-$d-$currDaytime.sql"
}
$databaseBackupFile = Join-Path -Path $databaseBackupDir -ChildPath "backup-$d-$currDaytime.sql"
patrick-canterino.de