You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# - "prefer" (default) - Try TLS, fallback to plain
89
+
# - "require" - Require TLS
90
+
# - "verify_ca" - Require TLS and verify CA
91
+
# - "verify_full" - Require TLS and verify hostname
92
+
mode = "prefer"
93
+
94
+
# Path to client certificate file (for client authentication)
95
+
# Like "/path/to/client.crt"
96
+
cert_path = ""
97
+
98
+
# Path to client private key file (for client authentication)
99
+
# Like "/path/to/client.key"
100
+
key_path = ""
101
+
102
+
# Path to CA certificate file (for server certificate verification)
103
+
# Required when using custom CAs or self-signed certificates
104
+
# Leave empty to use system root certificates only
105
+
# Like "/path/to/ca.crt"
106
+
ca_cert_path = ""
87
107
```
88
108
89
109
When sharing a MySQL instance between multiple GreptimeDB clusters, you must set a unique `meta_table_name` for each GreptimeDB cluster to avoid metadata conflicts.
Copy file name to clipboardExpand all lines: i18n/zh/docusaurus-plugin-content-docs/current/user-guide/deployments-administration/manage-metadata/configuration.md
0 commit comments