Added user creation command to CDCPlainAuth

Users for the CDC protocol can be created through the new `add_user`
module command.
This commit is contained in:
Markus Mäkelä
2016-12-23 11:20:25 +02:00
parent e07826229c
commit 25c3c33134
2 changed files with 93 additions and 8 deletions

View File

@ -20,6 +20,15 @@ password=cdc_password
## Creating new CDC users
Starting with MaxScale 2.1, users can also be created through MaxAdmin:
```
maxadmin call command cdc add_user <service> <name> <password>
```
The _<name>_ should be the service name where the user is created. Older
versions of MaxScale should use the _cdc_users.py_ script.
```
bash$ cdc_users.py [-h] USER PASSWORD
```