forked from ClickHouse/clickhouse-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers.xml
47 lines (47 loc) · 1.28 KB
/
users.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<clickhouse>
<users>
<dba>
<access_management>1</access_management>
<profile>default</profile>
<networks>
<ip>::/0</ip>
</networks>
<password>dba</password>
<quota>default</quota>
</dba>
<foo>
<profile>default</profile>
<networks>
<ip>::/0</ip>
</networks>
<password>bar</password>
<quota>default</quota>
</foo>
<oof>
<profile>default</profile>
<networks>
<ip>::/0</ip>
</networks>
<password></password>
<quota>default</quota>
</oof>
<test>
<profile>default</profile>
<networks incl="networks" replace="replace">
<ip>::/0</ip>
</networks>
<password>123</password>
<quota>default</quota>
<allow_databases>
<database>system</database>
</allow_databases>
</test>
<!-- uncomment to test TLS client authentication
<me>
<ssl_certificates>
<common_name>me</common_name>
</ssl_certificates>
</me>
-->
</users>
</clickhouse>