Created
April 8, 2019 22:39
-
-
Save synsa/1d577d23a032ec1db9dd78b565c75e12 to your computer and use it in GitHub Desktop.
Simple bash script to create database from command line
This file contains hidden or 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 | |
# Bash script written by Saad Ismail - [email protected] | |
# If /root/.my.cnf exists then it won't ask for root password | |
if [ -f /root/.my.cnf ]; then | |
echo "Please enter the NAME of the new WordPress database! (example: database1)" | |
read dbname | |
echo "Please enter the WordPress database CHARACTER SET! (example: latin1, utf8, ...)" | |
read charset | |
echo "Creating new WordPress database..." | |
mysql -e "CREATE DATABASE ${dbname} /*\!40100 DEFAULT CHARACTER SET ${charset} */;" | |
echo "Database successfully created!" | |
echo "Showing existing databases..." | |
mysql -e "show databases;" | |
echo "" | |
echo "Please enter the NAME of the new WordPress database user! (example: user1)" | |
read username | |
echo "Please enter the PASSWORD for the new WordPress database user!" | |
read userpass | |
echo "Creating new user..." | |
mysql -e "CREATE USER ${username}@localhost IDENTIFIED BY '${userpass}';" | |
echo "User successfully created!" | |
echo "" | |
echo "Granting ALL privileges on ${dbname} to ${username}!" | |
mysql -e "GRANT ALL PRIVILEGES ON ${dbname}.* TO '${username}'@'localhost';" | |
mysql -e "FLUSH PRIVILEGES;" | |
echo "You're good now :)" | |
exit | |
# If /root/.my.cnf doesn't exist then it'll ask for root password | |
else | |
echo "Please enter root user MySQL password!" | |
read rootpasswd | |
echo "Please enter the NAME of the new WordPress database! (example: database1)" | |
read dbname | |
echo "Please enter the WordPress database CHARACTER SET! (example: latin1, utf8, ...)" | |
read charset | |
echo "Creating new WordPress database..." | |
mysql -uroot -p${rootpasswd} -e "CREATE DATABASE ${dbname} /*\!40100 DEFAULT CHARACTER SET ${charset} */;" | |
echo "Database successfully created!" | |
echo "Showing existing databases..." | |
mysql -uroot -p${rootpasswd} -e "show databases;" | |
echo "" | |
echo "Please enter the NAME of the new WordPress database user! (example: user1)" | |
read username | |
echo "Please enter the PASSWORD for the new WordPress database user!" | |
read userpass | |
echo "Creating new user..." | |
mysql -uroot -p${rootpasswd} -e "CREATE USER ${username}@localhost IDENTIFIED BY '${userpass}';" | |
echo "User successfully created!" | |
echo "" | |
echo "Granting ALL privileges on ${dbname} to ${username}!" | |
mysql -uroot -p${rootpasswd} -e "GRANT ALL PRIVILEGES ON ${dbname}.* TO '${username}'@'localhost';" | |
mysql -uroot -p${rootpasswd} -e "FLUSH PRIVILEGES;" | |
echo "You're good now :)" | |
exit | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment