-
-
Save akhiljalagam/cb3b85c613e97f4c8c4a246d9d8cc272 to your computer and use it in GitHub Desktop.
Simple bash script to create mysql db, user with generated password
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
PASS=`pwgen -s 40 1` | |
mysql -uroot <<MYSQL_SCRIPT | |
CREATE DATABASE $1; | |
CREATE USER '$1'@'localhost' IDENTIFIED BY '$PASS'; | |
GRANT ALL PRIVILEGES ON $1.* TO '$1'@'localhost'; | |
FLUSH PRIVILEGES; | |
MYSQL_SCRIPT | |
echo "MySQL user created." | |
echo "Username: $1" | |
echo "Password: $PASS" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment