Last active
December 15, 2022 11:39
-
-
Save tbvinh/c66051969dfd3840075b394ee1ab3e0d to your computer and use it in GitHub Desktop.
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 | |
# wget -O export-mysql-user.sh https://gist.githubusercontent.com/tbvinh/c66051969dfd3840075b394ee1ab3e0d/raw/export-mysql-user.sh?rnd=`date +% ` | |
echo ==========CREATE USER========== | |
mysql -uroot -sNe " \ | |
SELECT \ | |
CONCAT( 'CREATE USER \'', User, '\' IDENTIFIED BY \'cha@NG1t@#&\'\;' ) AS User \ | |
FROM mysql.user \ | |
WHERE \ | |
User NOT LIKE 'mysql.%' AND CONCAT( User, Host ) <> 'rootlocalhost' AND User <> 'debian-sys-maint' \ | |
" | |
echo ==========GRANT USER========== | |
mysql -uroot -sNe " \ | |
SELECT \ | |
CONCAT( '\'', User, '\'@\'', Host, '\'' ) as User FROM mysql.user \ | |
WHERE \ | |
User NOT LIKE 'mysql.%' \ | |
AND CONCAT( User, Host ) <> 'rootlocalhost' \ | |
AND User <> 'debian-sys-maint' \ | |
" | sort | while read u ; | |
do echo "-- $u"; mysql -uroot -sNe "show grants for $u" | sed 's/$/;/' | |
done | |
echo ==========DONE========== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment