]> git.sur5r.net Git - openldap/commitdiff
ITS#2600 replica uri= docs
authorHoward Chu <hyc@openldap.org>
Sat, 27 Sep 2003 07:14:29 +0000 (07:14 +0000)
committerHoward Chu <hyc@openldap.org>
Sat, 27 Sep 2003 07:14:29 +0000 (07:14 +0000)
doc/guide/admin/replication.sdf
doc/guide/admin/slapdconfig.sdf

index 303f0fefd5d31532cf6fba2162d51a55c199802c..e61450b67a916051a96c33bf2d22fd6a2aa6f0ee 100644 (file)
@@ -239,14 +239,29 @@ To configure slapd to generate a replication logfile, you add a
 file. For example, if we wish to propagate changes to the slapd
 instance running on host {{EX:slave.example.com}}:
 
->      replica host=slave.example.com:389
+>      replica uri=ldap://slave.example.com:389
 >              binddn="cn=Replicator,dc=example,dc=com"
 >              bindmethod=simple credentials=secret
 
 In this example, changes will be sent to port 389 (the standard
 LDAP port) on host slave.example.com. The slurpd process will bind
 to the slave slapd as "{{EX:cn=Replicator,dc=example,dc=com}}" using
-simple authentication with password "{{EX:secret}}".  Note that the
+simple authentication with password "{{EX:secret}}".
+
+If we wish to perform the same replication using ldaps on port 636:  
+
+>      replica uri=ldaps://slave.example.com:636
+>              binddn="cn=Replicator,dc=example,dc=com"
+>              bindmethod=simple credentials=secret
+
+The host option is deprecated in favor of uri, but the following 
+replica configuration is still supported:
+
+>      replica host=slave.example.com:389
+>              binddn="cn=Replicator,dc=example,dc=com"
+>              bindmethod=simple credentials=secret
+
+Note that the
 DN given by the {{EX:binddn=}} directive must exist in the slave
 slapd's database (or be the rootdn specified in the slapd config
 file) in order for the bind operation to succeed.  The DN should
index 7b6bf2464c9e85849190237aca9b42dcf7620428..485bba84784ff0c58fbb2d043819a94731da734e 100644 (file)
@@ -284,7 +284,7 @@ perform" error.
 
 H4: replica
 
->      replica host=<hostname>[:<port>]
+>      replica uri=ldap[s]://<hostname>[:<port>] | host=<hostname>[:<port>]
 >              [bindmethod={simple|kerberos|sasl}]
 >              ["binddn=<DN>"]
 >              [saslmech=<mech>]
@@ -294,10 +294,16 @@ H4: replica
 >              [srvtab=<filename>]
 
 This directive specifies a replication site for this database. The
-{{EX:host=}} parameter specifies a host and optionally a port where
+{{EX:uri=}} parameter specifies a scheme, a host and optionally a port where
 the slave slapd instance can be found. Either a domain name
 or IP address may be used for <hostname>. If <port> is not
-given, the standard LDAP port number (389) is used.
+given, the standard LDAP port number (389 or 636) is used.
+
+{{EX:host}} is deprecated in favor of the {{EX:uri}} parameter.
+
+{{EX:uri}} allows the replica LDAP server to be specified as an LDAP 
+URI such as {{EX:ldap://slave.example.com:389}} or
+{{EX:ldaps://slave.example.com:636}}.
 
 The {{EX:binddn=}} parameter gives the DN to bind as for updates to
 the slave slapd. It should be a DN which has read/write
@@ -983,10 +989,10 @@ E:  9.    rootdn "cn=Manager,dc=example,dc=com"
 E: 10. rootpw secret
 E: 11. # replication directives
 E: 12. replogfile /usr/local/var/openldap/slapd.replog
-E: 13. replica host=slave1.example.com:389
+E: 13. replica uri=ldap://slave1.example.com:389
 E: 14.         binddn="cn=Replicator,dc=example,dc=com"
 E: 15.         bindmethod=simple credentials=secret
-E: 16. replica host=slave2.example.com
+E: 16. replica uri=ldaps://slave2.example.com:636
 E: 17.         binddn="cn=Replicator,dc=example,dc=com"
 E: 18.         bindmethod=simple credentials=secret
 E: 19. # indexed attribute definitions