MariaDB

Version 23.4.8843


MariaDB


CData Sync アプリケーションからMariaDB コネクタを使用して、MariaDB からデータを取得してサポートされている任意の同期先に移動できます。これを行うには、コネクタを追加し、コネクタへの認証を行い、接続を完了する必要があります。

MariaDB コネクタを追加

Sync でMariaDB のデータを使用できるようにするには、まず以下の手順でコネクタを追加する必要があります。

  1. Sync のダッシュボードから接続ページを開きます。

  2. 接続を追加をクリックしてコネクタを選択ページを開きます。

  3. データソースタブをクリックしてMariaDB 行に移動します。

  4. 行末にある接続を設定アイコンをクリックして、新しい接続ページを開きます。接続を設定アイコンが利用できない場合は、コネクタをダウンロードアイコンをクリックしてMariaDB コネクタをインストールします。新規コネクタのインストールについて詳しくは、接続を参照してください。

MariaDB への認証

コネクタを追加したら、必須プロパティを設定する必要があります。

  • Connection Name - Enter a connection name of your choice.

  • Server - Enter the host name or the IP address of your server.

  • Port - Enter the port for the MariaDB database. The default port value is 3306.

CData Sync supports authenticating to MariaDB in several ways. Select your authentication method below to proceed to the relevant section that contains the authentication details.

Password

ユーザー資格情報で接続するには、次のプロパティを設定します。

  • Auth SchemePassword を選択。

  • User:MariaDB アカウントへの認証に使用するユーザー名を入力。

  • Password:MariaDB アカウントへの認証に使用するパスワードを入力。

Azure Active Directory

To connect with your Azure Active Directory credentials, specify the following properties:

  • Auth Scheme – Select AzureAD.

  • Azure Tenant - Enter the Microsoft Online tenant to which you want to connect. If you do not specify a tenant, CData Sync uses the default tenant.

  • OAuth Client Id - Enter the client Id that you were assigned when you registered your application with an OAuth authorization server.

  • OAuth Client Secret - Enter the client secret that you were assigned when you registered your application with an OAuth authorization server.

Azure Password

To connect with an Azure password, specify these settings:

  • Auth Scheme - Select AzurePassword.

  • Azure Tenant - Enter the identifier (Id) of the Azure Tenant under which your OAuth and client applications were created. This Id is available under Directory (tenant) ID on the Overview page of one of the applications.

Azure Managed Service Identity

Azure 仮想マシン上でCData Sync が実行されている場合にマネージドサービスID(MSI)を利用するには、Auth SchemeAzureMSI を選択します。追加のプロパティは必要ありません。

LDAP

To connect with LDAP credentials, specify the following properties:

  • Auth Scheme - Select LDAP.

  • User - Enter the username that you use to authenticate to your MariaDB account.

  • Password - Enter the password that you use to authenticate to your MariaDB account.

Complete Your Connection

To complete your connection:

  1. Specify these properties:

    • Database (optional) - Enter the name of the MariaDB database.

    • Use SSL (optional) - Select whether you want to enable Secure Sockets Layer (SSL). The default value is False.

  2. 高度な設定タブで接続の高度な設定を定義します。(ただし、ほとんどの場合これらの設定は必要ありません。)

  3. AzureAD で認証する場合は、MariaDB への接続 をクリックしてMariaDB アカウントに接続します。

  4. 作成およびテストをクリックして接続を作成します。

Enable Binary Logging (for Change Data Capture)

Change data capture (CDC) is enabled automatically for the MariaDB database. However, you must enable binary logging for MariaDB replication. Binary logs record transaction updates so replication tools can generate changes. You need the following prerequisites in order to enable binary logging:

  • a MariaDB server

  • the appropriate MariaDB user privileges

Enable Binary Logging

  1. Determine whether binary logging is enabled by submitting the following statement from a MariaDB prompt:

    SHOW VARIABLES LIKE 'log_bin';
    

    If the option is not enabled (that is, your receive an OFF message), configure the following options in the MariaDB Server configuration file:

    server-id         = 223344
    log_bin           = mariadb-bin
    binlog_format     = ROW
    binlog_row_image  = FULL
    expire_logs_days  = 10
    

    Descriptions of these options are available in MariaDB Binary-Logging Configuration Properties.

  2. Verify that binary logging is enabled by resubmitting this statement:

    SHOW VARIABLES LIKE 'log_bin';
    

MariaDB Binary-Logging Configuration Properties

This section describes the values for options that are used earlier in step 1:

  • server-id - This value is a unique Id for each server and each replication client in the MariaDB cluster.

  • log_bin - The value for this option is the base name of the sequence of binlog files.

  • binlog_format - The format value for this option is must be set either to ROW or row.

  • binlog_row_image - The value for this option must be set to FULL or full.

  • expire_logs_days - This value is the number of days before the binlog file is removed automatically. The default value is 0, which means that there is no automatic removal. Set the value to match the needs of your environment.

詳細情報

CData Sync とMariaDB の連携について、詳しくはMariaDB Connector for CData Sync を参照してください。