3.3. コマンドラインを使用したサプライヤーに DNA プラグイン設定エントリーの作成
サプライヤーが管理対象属性に一意の番号を割り当てるようにする場合は、適用する設定ごとに DNA プラグイン設定エントリーを作成します。DNA プラグイン設定エントリーは、cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=config プラグインコンテナーエントリーの配下にあるサブエントリーです。
複数のサプライヤーが存在する環境では、各サプライヤーが独自の値の範囲を管理します。範囲はサプライヤー間で複製され、各サプライヤーはどのサプライヤーがどの範囲を管理しているかを認識しています。その後、サプライヤーは、最初のサプライヤーの範囲値が不足している場合に、この情報を使用して別のサプライヤーに範囲転送を要求します。
次の例では、dsconf ユーティリティーを使用して、サプライヤーに新しい DNA プラグイン設定エントリーを作成します。
前提条件
-
root権限がある。
手順
サプライヤーに DNA 設定エントリーを作成します。
dsconf -D "cn=Directory Manager" instance_name plugin dna config "Account UIDs" add --type uidNumber --filter "(objectclass=posixAccount)" --scope ou=People,dc=example,dc=com --next-value 1 --max-value 1300 --shared-config-entry "cn=Account UIDs,ou=Ranges,dc=example,dc=com" --threshold 100 --range-request-timeout 60 --magic-regen 99999
# dsconf -D "cn=Directory Manager" instance_name plugin dna config "Account UIDs" add --type uidNumber --filter "(objectclass=posixAccount)" --scope ou=People,dc=example,dc=com --next-value 1 --max-value 1300 --shared-config-entry "cn=Account UIDs,ou=Ranges,dc=example,dc=com" --threshold 100 --range-request-timeout 60 --magic-regen 99999 Successfully created the cn=Account UIDs,cn=Distributed Numeric Assignment Plugin,cn=plugins,cn=configCopy to Clipboard Copied! Toggle word wrap Toggle overflow このコマンドは、
ou=People,dc=example,dc=com下の新しく作成されたすべてのposixAccountエントリーで、99999のマジック値ではなく、uidNumber属性に一意の値を設定する DNA プラグイン設定を作成します。サプライヤーは1300までの値を設定し、値が1200に達すると 2 番目のサプライヤーに範囲転送を要求します。2 番目のサプライヤーが 60 秒間応答しない場合、最初のサプライヤーは 3 番目のサプライヤーに範囲転送を要求します。- 注記
レプリケーションのないサーバーまたは 1 つのサプライヤー環境のサプライヤーに対して設定エントリーを作成する場合は、
--type、--filter、--scope、--next-valueオプションのみを設定します。DNA プラグインの設定属性の詳細は、DNA プラグイン セクションの Distributed Numeric Assignment プラグインの属性 と構文を参照してください。
オプション: すべてのサプライヤーサーバー間で共有される設定エントリーを作成します。
Copy to Clipboard Copied! Toggle word wrap Toggle overflow DNA プラグインを有効にします。
dsconf -D "cn=Directory Manager" instance_name plugin dna enable
# dsconf -D "cn=Directory Manager" instance_name plugin dna enable Enabled plugin 'Distributed Numeric Assignment Plugin'Copy to Clipboard Copied! Toggle word wrap Toggle overflow
検証
設定エントリーの詳細を表示します。
Copy to Clipboard Copied! Toggle word wrap Toggle overflow