From: Chris Koeritz Date: Mon, 10 Mar 2025 17:11:39 +0000 (+0000) Subject: switching up to ssl for osgrid sql backup X-Git-Tag: 2.140.189^2~9 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=6bef8f175dd09589e6f4fddb428506b08524d917;p=feisty_meow.git switching up to ssl for osgrid sql backup apparently needed now, or at least we hope this solves our empty backup file problems. --- diff --git a/scripts/opensim/backup_osgrid.sh b/scripts/opensim/backup_osgrid.sh index 87619f39..bfebbcd3 100644 --- a/scripts/opensim/backup_osgrid.sh +++ b/scripts/opensim/backup_osgrid.sh @@ -10,7 +10,7 @@ source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" host=$(echo $(hostname) | sed -e 's/\([^.]*\)\..*/\1/') bkupname="backup-osgrid_${host}_$(date_stringer).mysql_bkup" -mysqldump -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opengrid > "$bkupname" +mysqldump --ssl -u griduser -p$(cat $HOME/.secrets/opensim_db_password.txt) opengrid > "$bkupname" # note that the above assumes the database is called "opensim". it might be # called opengrid instead, based on the setup procedure that was followed. # likewise the user might be someone other than "griduser".