To delete a replication agreement, select the agreement and click the Delete icon.

41-18 Oracle Fusion Middleware Administrators Guide for Oracle Internet Directory The following LDIF file changes the human intervention queue schedule by changing the value of the orclHIQSchedule attribute in the replication agreement to 900 minutes: dn: orclagreementid=Agreement_ID,orclreplicaid=Replica_ID,cn=replication configuration changetype: modify replace: orclhiqschedule orclhiqschedule: 900 Modifying Replica Naming Context Object Parameters by Using ldapmodify It is possible to change the replication scope from the command line. To do so, you must create or modify the naming context object entries under the replication naming context container entry. See To change the replication scope, you would use a command line such as: ldapadd -p port_number -h host -f file.ldif with an LDIF file to set the scope for an agreement. For example, you would use the following LDIF file to set the replication scope to cn=oraclecontext: dn: cn=includednamingcontext000001,cn=replication namecontext,orclagreementid=agreementid,orclreplicaid=replicaid,cn=replication configuration objectclass: orclreplnamectxconfig orclincludednamingcontexts: cn=oraclecontext cn: includednamingcontext000001 You would use the following file to exclude EMEA and APAC groups and exclude the attributes userpassword and authpassword from the replication scope dn: cn=includednamingcontext000002,cn=replication namecontext,orclagreementid=agreementid,orclreplicaid=replicaid,cn=replication configuration objectclass=orclreplnamectxconfig orclincludednamingcontexts: dc=com orclexcludednamingcontexts: cn=groups,l=emea,dc=xyz,dc=com orclexcludednamingcontexts: cn=groups,l=apac,dc=xyz,dc=com orclExcludedAttributes: userpassword orclExcludedAttributes: authpassword cn: includednamingcontext000002 Replica naming context object parameters are listed and described under Replication Schema Elements in Oracle Fusion Middleware Reference for Oracle Identity Management. See Also: Table 40–2, Attributes of the Replication Agreement Entry on page 40-3 See Also: ■ Table 40–2, Attributes of the Replication Agreement Entry on page 40-3 ■ The Replication Naming Context Container Entry on page 40-6 ■ The Replication Naming Context Object Entry on page 40-6 Managing and Monitoring Replication 41-19 Example 41–1 Adding a Naming Context Object for an LDAP-Based Replica This example creates a naming context object that does the following: ■ Replicates the naming context ou=Americas,cn=mycompany ■ Excludes from replication the naming context cn=customer profile, ou=Americas,cn=mycompany ■ Excludes from replication the attribute userpassword The steps are: 1. Edit the example file mod.ldif as follows: dn: cn=naming_context_identifier, cn=replication namecontext, orclagreementid=replication_agreement_identifier, orclreplicaid=supplier_replica_identifier,cn=replication configuration orclincludednamingcontexts: ou=Americas,cn=mycompany orclexcludednamingcontexts: cn=customer profile, ou=Americas, cn=mycompany orclexcludedattributes: userpassword objectclass: top objectclass: orclreplnamectxconfig 2. Use ldapadd to add the partial replication naming context object to the supplier. ldapadd -D cn=orcladmin -q -h supplier_host \ -p port_number -f mod.ldif Example 41–2 Deleting a Naming Context Object To delete the naming context object created in Example 41–1 , type: ldapdelete -D cn=orcladmin -q \ -h supplier_host -p supplier_host_port_number \ cn=naming_context_identifier, cn=replication namecontext, \ orclagreementid=replication_agreement_identifier, \ orclreplicaid=supplier_replica_identifier, \ cn=replication configuration Example 41–3 Modifying the orclIncludedNamingContexts Attribute for a Replica Naming Context Object The directory replication server uses the orclIncludedNamingcontexts attribute value of the replica naming context object to specify the top-level subtree included in partial replication. In this example, the included naming context is set to c=us, which means that c=us is to be included in partial replication. 1. Edit the example file mod.ldif as follows: DN:cn=naming_context_identifier,cn=replication namecontext, orclagreementid=replication_agreement_identifier, orclreplicaid=supplier_replica_identifier,cn=replication configuration Changetype:modify Replace: orclIncludedNamingcontexts orclIncludedNamingcontexts: c=us Note: The replication server reads naming context objects from the supplier replica.