Penguin

Differences between version 9 and predecessor to the previous major change of LDAP.

Other diffs: Previous Revision, Previous Author, or view the Annotated Edit History

Newer page: version 9 Last edited on Wednesday, June 22, 2005 1:11:06 pm by PerryLorier Revert
Older page: version 8 Last edited on Monday, December 6, 2004 3:19:06 am by AristotlePagaltzis Revert
@@ -2,8 +2,24 @@
  
 A [Protocol] for accessing hierarchical data. Kinda like [SQL] except it has "fixed" schemata (you can define your own, but not quite as easily as you do in [SQL]) and it's for HierarchicalDataBase~s rather than RelationalDataBase~s. It is often used for directories, so [LDAP] implementations are commonly optimised for reading much more than for modifying/inserting data. 
  
 Products which speak [LDAP] include the [Free] [OpenLDAP], NetWare's [NDS], and MicrosoftCorporation's ActiveDirectory. 
+  
+Definitions of terms:  
+;BASEDN:This is the base of your ldap tree. Often it's made up from your domain name (if your domain name is foo.example.org then your basedn is often dc=foo,dc=example,dc=org), or from your organisation name (ou=''organisationname'',c=''ISO country code'').  
+;BINDDN:This is the "username" you bind to the ldap tree as. Often cn=''<username>'',ou=Users,''<BASEDN>''  
+  
+When trying to use ldapsearch(1) try:  
+<verbatim>  
+ ldapsearch -x -h ''ldapservername'' -B ''binddn' -W -b ''basedn''  
+</verbatim>  
+This can often be simplified and defaults provided in <tt>/etc/ldap/ldap.conf</tt> or <tt>/etc/openldap/ldap.conf</tt>  
+  
+|Short name|Long name|Use  
+|cn|commonName|A common ("readable") name of a resource  
+|ou|organisationalUnit|Some unit (or grouping).  
+|uid|userId|A username  
+  
  
 See also: 
 * [LDAPNotes] 
 * [LDAPURLs]