-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain_config.json
More file actions
46 lines (46 loc) · 1.04 KB
/
main_config.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
{
"logger": {
"level": "debug",
"file": "binsrv.log"
},
"connection": {
"host": "127.0.0.1",
"port": 3306,
"user": "root",
"password": "",
"connect_timeout": 20,
"read_timeout": 60,
"write_timeout": 60,
"ssl": {
"mode": "verify_identity",
"ca": "/etc/mysql/ca.pem",
"capath": "/etc/mysql/cadir",
"crl": "/etc/mysql/crl-client-revoked.crl",
"crlpath": "/etc/mysql/crldir",
"cert": "/etc/mysql/client-cert.pem",
"key": "/etc/mysql/client-key.pem",
"cipher": "ECDHE-RSA-AES128-GCM-SHA256"
},
"tls": {
"ciphersuites": "TLS_AES_256_GCM_SHA384",
"version": "TLSv1.3"
}
},
"replication": {
"server_id": 42,
"idle_time": 10,
"verify_checksum": true,
"mode": "gtid",
"rewrite": {
"base_file_name": "binlog",
"file_size": "128M"
}
},
"storage": {
"backend": "file",
"uri": "file:///home/user/vault",
"fs_buffer_directory": "/tmp/binsrv",
"checkpoint_size": "2M",
"checkpoint_interval": "30s"
}
}