I'm running a mysql 5.6 server on amazon RDS and set up a read replica I use to create backups using mysqldump.
I tried with the "--all-databases" option, but when I'm trying to import the SQL created by mysqldump, I end up with this error from the mysql command client:
ERROR 1465 "Triggers can not be created on system tables"
I used "--all-databases" because I basically want to restore everything in RDS as it was before in case of a crash.
Maybe that's wrong, and I should only select my schemas (plus the mysql.users table)? But what is "--all-databases" for in the first place, if it would never work? Or am I using it wrong?