mysqldump 备份数据提示‘Access denied; you need (at least one of) the PROCESS privilege(s) for this operati

'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces

GRANT ALL PRIVILEGES ON `xx-xx`.* TO 'xx'@'%' -- 使用“`”代替单引号
GRANT PROCESS ON *.* TO 'xx'@'%'

你可能感兴趣的:(mysql)