6

While trying to backup all MySQL databases with mysqldump I get the following error:

Couldn't execute 'show events': Access denied for user 'user'@'localhost' to database 'performance_schema'

Adrian Ber
  • 305
  • 2
  • 5
  • 16
  • related: http://serverfault.com/questions/268566/cant-backup-the-mysql-table-with-mysqldump-select-lock-tabl-command-denied-for – rubo77 Nov 20 '13 at 11:49
  • @rubo77, Not really, [this error is due to a bug](http://serverfault.com/a/664829/87017), that is not. – Pacerier Feb 04 '15 at 06:57

5 Answers5

4

This is a virtual database so you will need to add the option --skip-events to make it work.

Adrian Ber
  • 305
  • 2
  • 5
  • 16
3

The other two answers will work, but their rationale and explanation are wrong.

The error you're getting is not due to the database being virtual, but due to a bug with the query show events: enter image description here

SHOW EVENTS in the performance_schema database returned an access-denied error, rather than an empty result

The bug has been fixed in MySQL server 5.7.6. Simply update your server and you won't be seeing this error anymore.

In the meantime, if you are stuck with older versions of MySQL server, avoid calling show events by using the solutions provided in the other two answers.

Pacerier
  • 521
  • 16
  • 35
3

If you encountered this error with an ordinary database, you need to grant your user the EVENT permission.

2
GRANT EVENT ON `database`.* TO 'user'@'localhost';
Mike
  • 21
  • 1
2

'performance_schema' is a virtual database so you don't have to backup it
(see http://dev.mysql.com/doc/refman/5.5/en/performance-schema.html )

to skip it in your backup script use it like this:

#!/bin/sh
BAK=/var/backups/mysql/
DATE=$(date +%Y-%m-%d)
MYSQLPATH=/var/lib/mysql/
for i in /var/lib/mysql/*/; do
    if [ $i != "$MYSQLPATH"'performance_schema/' ] ; then 
        dbname=`basename "$i"` 
        mysqldump -u root "$dbname" | gzip > $BAK/"$dbname"-$DATE.sql.gz
    fi
done

# optionally delete old backups of databases that don't exist anymore
# find $BACKUP_DIR -atime +30 -exec rm {} \;
rubo77
  • 2,469
  • 4
  • 34
  • 66
  • +1 I was actually using this in a similar script, but I haven't specify in my question. Anyway, good sharing. – Adrian Ber Nov 25 '13 at 11:31