<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog O' Matty &#187; OpenLDAP</title>
	<atom:link href="http://prefetch.net/blog/index.php/category/openldap/feed/" rel="self" type="application/rss+xml" />
	<link>http://prefetch.net/blog</link>
	<description>Blog O' Matty</description>
	<lastBuildDate>Wed, 16 May 2012 00:16:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>LDAP indexes</title>
		<link>http://prefetch.net/blog/index.php/2007/01/27/ldap-indexes/</link>
		<comments>http://prefetch.net/blog/index.php/2007/01/27/ldap-indexes/#comments</comments>
		<pubDate>Sat, 27 Jan 2007 17:11:23 +0000</pubDate>
		<dc:creator>matty</dc:creator>
				<category><![CDATA[OpenLDAP]]></category>

		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2007/01/27/ldap-indexes/</guid>
		<description><![CDATA[LDAP indexes are extremely useful for speeding up directory searches, and come in four flavors (there are actually more than four index types, but the following four are the most common): 1 Approximate indexes Approximate indexes are useful for speeding up seaches that look for attribute values that sound like a specific value. A good [...]]]></description>
		<wfw:commentRss>http://prefetch.net/blog/index.php/2007/01/27/ldap-indexes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling openldap on Solaris hosts</title>
		<link>http://prefetch.net/blog/index.php/2007/01/07/compiling-openldap-on-solaris-hosts/</link>
		<comments>http://prefetch.net/blog/index.php/2007/01/07/compiling-openldap-on-solaris-hosts/#comments</comments>
		<pubDate>Sun, 07 Jan 2007 17:20:12 +0000</pubDate>
		<dc:creator>matty</dc:creator>
				<category><![CDATA[OpenLDAP]]></category>

		<guid isPermaLink="false">http://prefetch.net/blog/index.php/2007/01/07/compiling-openldap-from-source/</guid>
		<description><![CDATA[Building OpenLDAP on Solaris hosts that use /opt as their software repository can sometimes be a chore. In case anyone finds this useful, here is the procedure I use: $ LD_LIBRARY_PATH=/opt/openssl/lib:/opt/BerkeleyDB/lib:/usr/sfw/lib:/usr/lib $ export LD_LIBRARY_PATH $ export LDFLAGS=&#8221;-L/opt/BerkeleyDB/lib -L/opt/openssl/lib&#8221; $ export LDFLAGS $ export CPPFLAGS=&#8221;-I/opt/BerkeleyDB/include -I/opt/openssl/include&#8221; $ export CPPFLAGS $ configure &#8211;prefix=/opt/openldap-2.3.24 &#8211;enable-bdb &#8211;with-tls &#8211;enable &#8211;monitor [...]]]></description>
		<wfw:commentRss>http://prefetch.net/blog/index.php/2007/01/07/compiling-openldap-on-solaris-hosts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Finding BIND failures in OpenLDAP logfiles</title>
		<link>http://prefetch.net/blog/index.php/2004/12/28/finding-bind-failures-in-openldap-logfiles/</link>
		<comments>http://prefetch.net/blog/index.php/2004/12/28/finding-bind-failures-in-openldap-logfiles/#comments</comments>
		<pubDate>Tue, 28 Dec 2004 04:24:21 +0000</pubDate>
		<dc:creator>matty</dc:creator>
				<category><![CDATA[OpenLDAP]]></category>

		<guid isPermaLink="false">http://www.daemons.net/~matty/blog/?p=77</guid>
		<description><![CDATA[When OpenLDAP is configured to log connection information, a RESULT entry is written with the status (e.g., success or failure) of the last BIND: $ grep RESULT openldap.log &#124; head -1 Dec 28 21:05:01 winnie slapd[7101]: [ID 217296 local4.debug] conn=25 op=0 RESULT tag=97 err=0 text= The &#8220;err=&#8221; string contains zero if the BIND was successful, [...]]]></description>
		<wfw:commentRss>http://prefetch.net/blog/index.php/2004/12/28/finding-bind-failures-in-openldap-logfiles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Checking for OpenLDAP unindexed searches</title>
		<link>http://prefetch.net/blog/index.php/2004/11/18/checking-for-openldap-unindexed-searches/</link>
		<comments>http://prefetch.net/blog/index.php/2004/11/18/checking-for-openldap-unindexed-searches/#comments</comments>
		<pubDate>Thu, 18 Nov 2004 04:29:03 +0000</pubDate>
		<dc:creator>matty</dc:creator>
				<category><![CDATA[OpenLDAP]]></category>

		<guid isPermaLink="false">http://www.daemons.net/~matty/blog/?p=79</guid>
		<description><![CDATA[I was checking my openldap logfiles today, and noticed that the &#8220;cn&#8221; attribute wasn&#8217;t indexed. I found this by checking for the &#8220;index_param&#8221; string in my OpenLDAP logfiles: $ grep &#8220;index_param failed&#8221; /var/log/openldap Dec 25 13:37:19 winnie slapd[730]: [ID 635189 local4.debug] < = bdb_substring_candidates: (cn) index_param failed (18) To fix this problem, I added an [...]]]></description>
		<wfw:commentRss>http://prefetch.net/blog/index.php/2004/11/18/checking-for-openldap-unindexed-searches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

