mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
If required privilege is missing, dump the output from "SHOW GRANTS" into mariabackup log. This will help troubleshooting, and make the bug reproducible.
7 lines
264 B
Plaintext
7 lines
264 B
Plaintext
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;
|