Fulltext results:
- MySQL: Backup @info:mysql:database
- up ====== ===== Export a Database ===== <code bash> # set or replace the variables $USER, $PASS and ... Export all Databases individually ===== <code bash> # set or replace the variables $USER and $PASS D... ysql --batch -u${USER} -p${PASS} mysql --execute='show databases') for db in ${DATABASES} do mysql
- MySQL: View Permissions @info:mysql:permissions
- ons ====== ==== View Permissions ==== <code sql> SHOW PRIVILEGES; SHOW GRANTS FOR '{user}'@'%'; </code> {{tag>admin database mysql sql}}
- MySQL: Change Password @info:mysql:user
- *.* TO '{user}'@'%' IDENTIFIED BY '{passwd}'; FLUSH PRIVILEGES; </code> Or you can alternatively use... word=PASSWORD('{passwd}') WHERE User='{user}'; FLUSH PRIVILEGES; </code> {{tag>admin database mysql p