Documentation Index
Fetch the complete documentation index at: https://private-7c7dfe99-page-updates.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
If you use one of the supported providers (in the sidebar), please refer to the specific guide for that provider.
Enable binary log retention
Binary logs contain information about data modifications made to a MariaDB server instance and are required for replication. To enable binary logging on your MariaDB instance, ensure that the following settings are configured:/etc/my.cnf or /etc/my.cnf.d/mariadb-server.cnf):
log_slave_updates.
You NEED to RESTART the MariaDB instance for the changes to take effect.
Column exclusion isn’t supported for MariaDB <= 10.4 because the
binlog_row_metadata setting wasn’t yet introduced.Configure a database user
Connect to your MariaDB instance as the root user and execute the following commands:-
Create a dedicated user for ClickPipes:
-
Grant schema permissions. The following example shows permissions for the
clickpipesdatabase. Repeat these commands for each database and host you want to replicate: -
Grant replication permissions to the user:
Make sure to replace
clickpipes_user and some_secure_password with your desired username and password.SSL/TLS configuration (recommended)
SSL certificates ensure secure connections to your MariaDB database. Configuration depends on your certificate type: Trusted Certificate Authority (DigiCert, Let’s Encrypt, etc.) - no additional configuration needed. Internal Certificate Authority - Obtain the root CA certificate file from your IT team. In the ClickPipes UI, upload it when creating a new MariaDB ClickPipe. Self-hosted MariaDB - Copy the CA certificate from your MariaDB server (look up the path via thessl_ca setting in your my.cnf). In the ClickPipes UI, upload it when creating a new MariaDB ClickPipe. Use the IP address of the server as the host.
Self-hosted MariaDB starting with 11.4 - If your server has ssl_ca set up, follow the option above. Otherwise, consult with your IT team to provision a proper certificate. As a last resort, use the “Skip Certificate Verification” toggle in ClickPipes UI (not recommended for security reasons).
For more information on SSL/TLS options, check out our FAQ.