Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
10.11.4
-
None
-
RedHat 8.9
Description
Maybe this is just a documentation glitch, but when I set up a backup-user with the privileges as described here and then run mariabackup under this user, I see `Missing required privilege CONNECTION ADMIN`.
Now, I don't mind adding this privilege for the backup-user, but the fact that the documentation doesn't mention this makes me wonder if I'm doing something wrong..
Now because I'm running a Galera-cluster using mariabackup as SST-method, and SST-documentation states that "The user account that performs the backup for the SST needs to have the same privileges as Mariabackup, which are the RELOAD , PROCESS, LOCK TABLES and REPLICATION CLIENT global privileges.", I'm wondering if I also should be adding the `CONNECTION ADMIN` privilege to the SST-user..
.. or am I just chasing a red herring, since everything seems to be running smooth? It's all a bit confusing to me.
Attachments
Issue Links
- is caused by
-
MDEV-23607 Warning: missing required privilege REPLICATION CLIENT
-
- Closed
-
- relates to
-
MDEV-34053 privilege REPLICA MONITOR issue
-
- Closed
-
Activity
Field | Original Value | New Value |
---|---|---|
Priority | Trivial [ 5 ] | Major [ 3 ] |
Fix Version/s | N/A [ 14700 ] |
Status | Open [ 1 ] | Confirmed [ 10101 ] |
Link |
This issue is caused by |
Assignee | Ian Gilfillan [ greenman ] | Daniel Black [ danblack ] |
Fix Version/s | 10.5 [ 23123 ] | |
Fix Version/s | N/A [ 14700 ] |
Assignee | Daniel Black [ danblack ] | Andrew Hutchings [ JIRAUSER52179 ] |
Status | Confirmed [ 10101 ] | In Review [ 10002 ] |
Fix Version/s | 10.5.24 [ 29517 ] | |
Fix Version/s | 10.5 [ 23123 ] | |
Assignee | Andrew Hutchings [ JIRAUSER52179 ] | Daniel Black [ danblack ] |
Resolution | Fixed [ 1 ] | |
Status | In Review [ 10002 ] | Closed [ 6 ] |
Fix Version/s | 10.6.17 [ 29518 ] | |
Fix Version/s | 10.11.7 [ 29519 ] | |
Fix Version/s | 11.0.5 [ 29520 ] | |
Fix Version/s | 11.1.4 [ 29024 ] | |
Fix Version/s | 11.2.3 [ 29521 ] |
Link |
This issue relates to |
According to the code
extra/mariabackup/xtrabackup.cc
check_result |= check_privilege(
granted_privileges,
PRIVILEGE_WARNING);
it needs CONNECTION ADMIN privilege to kill long queries. Which is used if you have not specified --no-lock and specified --kill-long-queries-timeout or --kill-long-query-type.