Changeset 44a3b4f
- Timestamp:
- 10/22/2003 02:45:49 AM (20 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 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/inkscape-core-mods, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, v5_0, v5_1, v5_1-pre1, xry111/intltool, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 3539dab
- Parents:
- 1fc9e7e
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
introduction/welcome/changelog.xml
r1fc9e7e r44a3b4f 11 11 12 12 <itemizedlist> 13 14 <listitem><para>October 21st, 2003 [larry]: OpenLDAP: expanded configure 15 section to the point of personalization.</para></listitem> 13 16 14 17 <listitem><para>October 21st, 2003 [igor]: Fixed MPlayer subtitle font -
postlfs/config/bootdisk.xml
r1fc9e7e r44a3b4f 60 60 <para>These instructions presume a base <acronym>LFS</acronym> install 61 61 using ext2/ext3 file systems.</para> 62 63 <para>The kernel versions 2.4.22 and 2.6 before test6 have a deficiency 64 that prevents busybox and similar applications from booting correctly. 65 You need to download and apply the 66 <ulink url="&patch-root;/linux-2.4.22-init-1.patch">init-1</ulink> 67 patch that corrects this, letting busybox be used for our 68 application, and rebuild your kernel. Take care of the below kernel 69 items while you are at it.</para> 62 70 63 71 <para>You need to have loopback device support enabled in your host's -
server/other/openldap/openldap-config.xml
r1fc9e7e r44a3b4f 12 12 to run <command>ldconfig</command>. The <acronym>LDAP</acronym> server 13 13 can be started by <command>/usr/sbin/slapd</command> as described in 14 the man page slapd(8).</para> 14 the man page slapd(8). You can verify that <acronym>LDAP</acronym> is 15 running 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 # 29 dn: 30 namingContexts: dc=my-domain,dc=com 31 32 # search result 33 search: 2 34 result: 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 44 installation.</para> 45 46 <para><emphasis>Utilizing <application>GDBM</application></emphasis></para> 15 47 16 48 <para>To utilize <application>GDBM</application> as the database 17 backend, the "database" entry in <filename>/etc/ slapd.conf</filename>49 backend, the "database" entry in <filename>/etc/openldap/slapd.conf</filename> 18 50 must be changed from "bdb" to "ldbm". You can use both by creating an 19 additional database section in <filename>/etc/slapd.conf</filename>.</para> 51 additional database section in <filename>/etc/openldap/slapd.conf</filename>.</para> 52 53 <para><emphasis>Securing your <acronym>LDAP</acronym> server</emphasis></para> 20 54 21 55 <para>Significant configuration is needed for … … 23 57 security features. The <ulink 24 58 url="http://www.openldap.org/doc/admin21/">OpenLDAP 2.1 Administrator's 25 Guide</ulink> is a good place to start.</para> 59 Guide</ulink> is a good place to start for access control settings, 60 running as a user other than root and setting a chroot environment.</para> 61 62 <para><emphasis>User Tools</emphasis></para> 26 63 27 64 <para>Data can be added to the <acronym>LDAP</acronym> database via … … 29 66 the database. For more information see the appropriate man page.</para> 30 67 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 72 setup and <application>Mozilla</application> is configured to use the 73 directory, you must add <option>allow bind_v2</option> to the 74 <filename>slapd.conf</filename> file.</para> 75 76 31 77 </sect3> 32 78
Note:
See TracChangeset
for help on using the changeset viewer.