Changeset 44a3b4f


Ignore:
Timestamp:
10/22/2003 02:45:49 AM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
3539dab
Parents:
1fc9e7e
Message:

openldap config and bill's patch

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@1440 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • introduction/welcome/changelog.xml

    r1fc9e7e r44a3b4f  
    1111
    1212<itemizedlist>
     13
     14<listitem><para>October 21st, 2003 [larry]: OpenLDAP: expanded configure
     15section to the point of personalization.</para></listitem>
    1316
    1417<listitem><para>October 21st, 2003 [igor]: Fixed MPlayer subtitle font
  • postlfs/config/bootdisk.xml

    r1fc9e7e r44a3b4f  
    6060<para>These instructions presume a base <acronym>LFS</acronym> install
    6161using ext2/ext3 file systems.</para>
     62
     63<para>The kernel versions 2.4.22 and 2.6 before test6 have a deficiency
     64that prevents busybox and similar applications from booting correctly.
     65You need to download and apply the
     66<ulink url="&patch-root;/linux-2.4.22-init-1.patch">init-1</ulink>
     67patch that corrects this, letting busybox be used for our
     68application, and rebuild your kernel. Take care of the below kernel
     69items while you are at it.</para>
    6270
    6371<para>You need to have loopback device support enabled in your host's
  • server/other/openldap/openldap-config.xml

    r1fc9e7e r44a3b4f  
    1212to run <command>ldconfig</command>. The <acronym>LDAP</acronym> server
    1313can be started by <command>/usr/sbin/slapd</command> as described in
    14 the man page slapd(8).</para>
     14the man page slapd(8). You can verify that <acronym>LDAP</acronym> is
     15running with <command>ps aux</command> and you can verify access to the
     16<acronym>LDAP</acronym> server with the following command:</para>
     17<screen><userinput><command>ldapsearch -x -b '' -s base '(objectclass=*)' namingContexts</command></userinput></screen>
     18
     19<para>The correct result is:</para>
     20<screen><computeroutput># extended LDIF
     21#
     22# LDAPv3
     23# base <> with scope base
     24# filter: (objectclass=*)
     25# requesting: namingContexts
     26#
     27
     28#
     29dn:
     30namingContexts: dc=my-domain,dc=com
     31
     32# search result
     33search: 2
     34result: 0 Success
     35
     36# numResponses: 2
     37# numEntries: 1</computeroutput></screen>
     38
     39<para>Kill the server with this command:</para>
     40<screen><userinput><command>kill -INT `cat /var/lib/slapd.pid`</command></userinput></screen>
     41
     42<para>You are now ready to modify the
     43<filename>/etc/openldap/slapd.conf</filename> to be specific to your
     44installation.</para>
     45
     46<para><emphasis>Utilizing <application>GDBM</application></emphasis></para>
    1547
    1648<para>To utilize <application>GDBM</application> as the database
    17 backend, the "database" entry in <filename>/etc/slapd.conf</filename>
     49backend, the "database" entry in <filename>/etc/openldap/slapd.conf</filename>
    1850must be changed from "bdb" to "ldbm".  You can use both by creating an
    19 additional database section in <filename>/etc/slapd.conf</filename>.</para>
     51additional database section in <filename>/etc/openldap/slapd.conf</filename>.</para>
     52
     53<para><emphasis>Securing your <acronym>LDAP</acronym> server</emphasis></para>
    2054
    2155<para>Significant configuration is needed for
     
    2357security features.  The <ulink
    2458url="http://www.openldap.org/doc/admin21/">OpenLDAP 2.1 Administrator's
    25 Guide</ulink> is a good place to start.</para>
     59Guide</ulink> is a good place to start for access control settings,
     60running as a user other than root and setting a chroot environment.</para>
     61
     62<para><emphasis>User Tools</emphasis></para>
    2663
    2764<para>Data can be added to the <acronym>LDAP</acronym> database via
     
    2966the database. For more information see the appropriate man page.</para>
    3067
     68<para><emphasis><application>Mozilla</application> Address Directory</emphasis></para>
     69
     70<para>By default, LDAPv2 support is disabled in the
     71<filename>slapd.conf</filename> file. Once the database is properly
     72setup and <application>Mozilla</application> is configured to use the
     73directory, you must add <option>allow bind_v2</option> to the
     74<filename>slapd.conf</filename> file.</para>
     75
     76
    3177</sect3>
    3278
Note: See TracChangeset for help on using the changeset viewer.