MySQL Security
mysqldump - MySQL Database Backup Program
Submitted by chris on December 4, 2006 - 08:19. MySQL SecurityTo see available option run the command: "mysqldump --help" or "mysqldump -?"
There are 3 general ways to invoke mysqldump (note: You need to have MySQL running):
c:\> mysqldump [options] db_name [tables] c:\> mysqldump [options] --databases db_name1 [db_name2 db_name3...] c:\> mysqldump [options] --all-databases or c:\> mysqldump [options] -AIf you do not name any tables following db_name or if you use the --databases or --all-databases option, entire databases are dumped.
ex: mysqldump --add-drop-table -u[username] -p[password] [database] > [backup_file]
safe-user-create
Submitted by chris on January 8, 2006 - 14:54. MySQL Security
If this is enabled, a user can't create new users with the GRANT statement, if the user doesn't have the INSERT privilege for the mysql.user table or any column in the table.
I'm running with: safe-user-create
I'm running with: safe-user-create

