Changed Minio Start parameters

Change Minio Start parameters for latest version of Minio as well as depreciated Old keys for new root user method.
This commit is contained in:
TeddyTuned 2021-08-08 20:51:15 -04:00 committed by GitHub
parent 4446a3d79b
commit 7f61ba8693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,31 +4,31 @@ echo "$(tput setaf 2)Starting up...."
echo "Startup Type: $(tput setaf 2)$STARTUP_TYPE" echo "Startup Type: $(tput setaf 2)$STARTUP_TYPE"
if [ -f "keys/key.txt" ]; then if [ -f "keys/key.txt" ]; then
echo "$(tput setaf 2)Key file detected..." echo "$(tput setaf 2)Key file detected..."
export MINIO_ACCESS_KEY=`cat keys/key.txt` export MINIO_ROOT_USER=`cat keys/key.txt`
else else
echo minioadmin > keys/key.txt echo minioadmin > keys/key.txt
echo "$(tput setaf 3)No key file detected...Preparing First Time Boot" echo "$(tput setaf 3)No key file detected...Preparing First Time Boot"
fi fi
if [ -f "keys/secret.txt" ]; then if [ -f "keys/secret.txt" ]; then
echo "$(tput setaf 2)Secret file detected..." echo "$(tput setaf 2)Secret file detected..."
export MINIO_SECRET_KEY=`cat keys/secret.txt` export MINIO_ROOT_PASSWORD=`cat keys/secret.txt`
else else
echo minioadmin > keys/secret.txt echo minioadmin > keys/secret.txt
echo "No secret file detected...Preparing First Time Boot" echo "No secret file detected...Preparing First Time Boot"
fi fi
if [ -f "keys/oldsecret.txt" ]; then if [ -f "keys/oldsecret.txt" ]; then
echo "$(tput setaf 1)Old secret file detected..." echo "$(tput setaf 1)Old secret file detected..."
export MINIO_SECRET_KEY_OLD=`cat keys/oldsecret.txt` export MINIO_ROOT_PASSWORD_OLD=`cat keys/oldsecret.txt`
fi fi
if [ -f "keys/oldkey.txt" ]; then if [ -f "keys/oldkey.txt" ]; then
echo "$(tput setaf 1)Old key file detected..." echo "$(tput setaf 1)Old key file detected..."
export MINIO_ACCESS_KEY_OLD=`cat keys/oldkey.txt` export MINIO_ROOT_USER_OLD=`cat keys/oldkey.txt`
fi fi
if [ -f "keys/justrotated.txt" ]; then if [ -f "keys/justrotated.txt" ]; then
echo "$(tput setaf 3)Previous key rotation detected...." echo "$(tput setaf 3)Previous key rotation detected...."
echo "$(tput setaf 3)Clearing the Lanes...." echo "$(tput setaf 3)Clearing the Lanes...."
unset MINIO_ACCESS_KEY_OLD unset MINIO_ROOT_USER_OLD
unset MINIO_SECRET_KEY_OLD unset MINIO_ROOT_PASSWORD_OLD
echo "$(tput setaf 2)Lanes Cleared!" echo "$(tput setaf 2)Lanes Cleared!"
STARTUP_TYPE=normal STARTUP_TYPE=normal
rm keys/justrotated.txt rm keys/justrotated.txt
@ -49,21 +49,21 @@ fi
########################################## ##########################################
if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "rotate" ]; then if [ -z "$STARTUP_TYPE" ] || [ "$STARTUP_TYPE" == "rotate" ]; then
touch keys/justrotated.txt touch keys/justrotated.txt
export MINIO_ACCESS_KEY_OLD=$MINIO_ACCESS_KEY export MINIO_ROOT_USER_OLD=$MINIO_ROOT_USER
echo $MINIO_ACCESS_KEY_OLD > keys/oldkey.txt echo $MINIO_ROOT_USER_OLD > keys/oldkey.txt
export MINIO_SECRET_KEY_OLD=$MINIO_SECRET_KEY export MINIO_ROOT_PASSWORD_OLD=$MINIO_ROOT_PASSWORD
echo $MINIO_SECRET_KEY_OLD > keys/oldsecret.txt echo $MINIO_ROOT_PASSWORD_OLD > keys/oldsecret.txt
export MINIO_ACCESS_KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) export MINIO_ROOT_USER=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo $MINIO_ACCESS_KEY > keys/key.txt echo $MINIO_ROOT_USER > keys/key.txt
export MINIO_SECRET_KEY=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) export MINIO_ROOT_PASSWORD=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
echo $MINIO_SECRET_KEY > keys/secret.txt echo $MINIO_ROOT_PASSWORD > keys/secret.txt
echo "Your New Access Key is: $(tput setaf 2)$MINIO_ACCESS_KEY" echo "Your New Access Key is: $(tput setaf 2)$MINIO_ROOT_USER"
echo "Your New Secret Key is: $(tput setaf 2)$MINIO_SECRET_KEY" echo "Your New Secret Key is: $(tput setaf 2)$MINIO_ROOT_PASSWORD"
echo "Your Old Access Key is: $(tput setaf 3)$MINIO_ACCESS_KEY_OLD" echo "Your Old Access Key is: $(tput setaf 3)$MINIO_ROOT_USER_OLD"
echo "Your Old Access Key is: $(tput setaf 3)$MINIO_SECRET_KEY_OLD" echo "Your Old Access Key is: $(tput setaf 3)$MINIO_ROOT_PASSWORD_OLD"
echo "$(tput setaf 2)Booting..." echo "$(tput setaf 2)Booting..."
./minio server data --address 0.0.0.0:$SERVER_PORT ./minio server data --console-address ":$SERVER_PORT"
else else
echo "$(tput setaf 2)Booting..." echo "$(tput setaf 2)Booting..."
./minio server data --address 0.0.0.0:$SERVER_PORT ./minio server data --console-address ":$SERVER_PORT"
fi fi