HIRS/package/scripts/db/db_drop.sh

61 lines
1.7 KiB
Bash
Raw Normal View History

#!/bin/bash
2018-09-06 13:47:33 +00:00
2023-08-23 20:30:06 +00:00
SRV_CNF=/etc/my.cnf.d/mariadb-server.cnf
CLIENT_CNF=/etc/my.cnf.d/client.cnf
2023-08-11 13:47:30 +00:00
SCRIPT_DIR=$( dirname -- "$( readlink -f -- "$0"; )";)
2023-08-23 20:30:06 +00:00
LOG_FILE=/dev/null
2023-08-11 13:47:30 +00:00
2023-08-23 20:30:06 +00:00
source /etc/hirs/aca/aca.properties;
source $SCRIPT_DIR/start_mysqld.sh
# Check for sudo or root user, not actually needed but a good idea
if [ "$EUID" -ne 0 ]
then echo "This script requires root. Please run as root"
exit 1
fi
if [ -z $mysql_admin_password ]; then
read -p "Enter mysql root password" DB_ADMIN_PWD
else
DB_ADMIN_PWD=$mysql_admin_password
fi
if [ -d /opt/hirs/scripts/db ]; then
2023-08-11 13:47:30 +00:00
MYSQL_DIR="/opt/hirs/scripts/db"
else
MYSQL_DIR="$SCRIPT_DIR"
fi
2023-08-23 20:30:06 +00:00
echo "dropping hirs_db database"
2023-05-03 16:54:35 +00:00
if pgrep mysqld >/dev/null 2>&1; then
2023-08-23 20:30:06 +00:00
mysql -u "root" --password=$DB_ADMIN_PWD < $MYSQL_DIR/db_drop.sql
echo "hirs_db databse and hirs_db user removed"
else
echo "mysql is not running. DB was not removed."
fi
2023-08-23 20:30:06 +00:00
# reset the mysql root if the password was left in the properties fiel
if [ ! -z $mysql_admin_password ]; then
echo "Resetting mysql root password to empty"
mysql -u root --password=$mysql_admin_password -e "SET PASSWORD FOR "root@localhost" = PASSWORD('');"
echo "Current list of databases:"
mysql -u "root" -e "SHOW DATABASES;"
echo "Current list of users:"
mysql -u root -e "Select user from mysql.user;"
else
echo "Note root password was NOT reset"
fi
# Remove key , cert and truststore entries from client.cnf andf mariadb.cnf
echo "Removing hirs cert references from mariadb configuration files"
grep -v "hirs" $SRV_CNF > tmpfile && mv tmpfile $SRV_CNF
grep -v "hirs" $CLIENT_CNF > tmpfile && mv tmpfile $CLIENT_CNF
echo "restarting mariadb"
pkill mysql
sleep 2;
check_for_container
start_mysqlsd