You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by an...@apache.org on 2010/12/21 19:55:13 UTC

svn commit: r1051609 - /directory/apacheds-manuals/trunk/src/basic-user-guide/chapter-how-to-begin.xml

Author: antoine
Date: Tue Dec 21 18:55:13 2010
New Revision: 1051609

URL: http://svn.apache.org/viewvc?rev=1051609&view=rev
Log:
updating how to configure the LDAP port, chapter 2.4.1.1

Modified:
    directory/apacheds-manuals/trunk/src/basic-user-guide/chapter-how-to-begin.xml

Modified: directory/apacheds-manuals/trunk/src/basic-user-guide/chapter-how-to-begin.xml
URL: http://svn.apache.org/viewvc/directory/apacheds-manuals/trunk/src/basic-user-guide/chapter-how-to-begin.xml?rev=1051609&r1=1051608&r2=1051609&view=diff
==============================================================================
--- directory/apacheds-manuals/trunk/src/basic-user-guide/chapter-how-to-begin.xml (original)
+++ directory/apacheds-manuals/trunk/src/basic-user-guide/chapter-how-to-begin.xml Tue Dec 21 18:55:13 2010
@@ -754,16 +754,18 @@ HotSpot(TM) Client VM (build 1.5.0_06-b0
           as
           introduced in the last section.</para>
         <para>
-          Just pick the "ldapServer"-bean from the server.xml file
+          Just pick the DN ads-transportid=ldap,ou=transports,ads-serverId=ldapServer,ou=servers,ads-directoryServiceId=default,ou=config"ldapServer" in the config.ldif file in the conf directory of your ApacheDS instance
           <programlisting><![CDATA[
-  <ldapServer id="ldapServer"
-            ...>
-    <transports>
-      <tcpTransport address="0.0.0.0" port="10389" nbThreads="8" backLog="50" enableSSL="false"/>
-      <tcpTransport address="localhost" port="10636" enableSSL="true"/>
-    </transports>
-    ...
-  </ldapServer>
+dn: ads-transportid=ldap,ou=transports,ads-serverId=ldapServer,ou=servers,ads-directoryServiceId=default,ou=config
+ads-systemport: 10389
+ads-transportnbthreads: 8
+ads-transportaddress: 0.0.0.0
+ads-transportid: ldap
+objectclass: ads-transport
+objectclass: ads-tcpTransport
+objectClass: ads-base
+objectclass: top
+ads-enabled: TRUE
           ]]></programlisting>
           and change the values of port to your needs. You have to restart the server afterwards in order to take this
           change effect.