Mysql
 sql >> Database >  >> RDS >> Mysql

Passa la password a mysql_config_editor usando la variabile nella shell

Ho scoperto che l'altra risposta suggerita non funzionava quando non c'era TTY. Quindi ho usato questo script bash che funziona in posti come Terraform/ssh che non ha un terminale:

#!/bin/bash

if [ $# -ne 4 ]; then
  echo "Incorrect number of input arguments: $0 $*"
  echo "Usage: $0 <login> <host> <username> <password>"
  echo "Example: $0 test 10.1.2.3 myuser mypassword"
  exit 1
fi

login=$1
host=$2
user=$3
pass=$4

unbuffer expect -c "
spawn mysql_config_editor set --login-path=$login --host=$host --user=$user --password
expect -nocase \"Enter password:\" {send \"$pass\r\"; interact}
"

Provalo:

./mysql_config.sh login 10.1.2.3 myuser mypass < /dev/null