mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
4b0f010b88
If required privilege is missing, dump the output from "SHOW GRANTS" into mariabackup log. This will help troubleshooting, and make the bug reproducible.
6 lines
264 B
Text
6 lines
264 B
Text
CREATE user backup@localhost;
|
|
FOUND 1 /missing required privilege RELOAD/ in backup.log
|
|
FOUND 1 /missing required privilege PROCESS/ in backup.log
|
|
FOUND 1 /GRANT USAGE ON/ in backup.log
|
|
GRANT RELOAD, PROCESS on *.* to backup@localhost;
|
|
DROP USER backup@localhost;
|