Document ColumnStore requirements for authentication

One extra grant is required if the backend servers use ColumnStore
binaries.
This commit is contained in:
Markus Mäkelä 2019-10-18 09:53:04 +03:00
parent 363498ef6b
commit 290d38c67f
No known key found for this signature in database
GPG Key ID: 72D48FCE664F7B19

View File

@ -1213,6 +1213,12 @@ GRANT SELECT ON mysql.* TO 'maxscale'@'maxscalehost';
`mysql.*` in addition to the normal grants. This is to work around MDEV-13453
which was fixed in MariaDB 10.2.11.
If you are using MariaDB ColumnStore, the follwing grant is requried.
```
GRANT ALL ON infinidb_vtable.* TO 'maxscale'@'maxscalehost';
```
See [MaxScale Troubleshooting](https://mariadb.com/kb/en/mariadb-enterprise/maxscale-troubleshooting/)
for more information on how to troubleshoot authentication related problems.