]> git.sur5r.net Git - openldap/blob - doc/man/man1/ldapsearch.1
fbdd2f53f5839cf215f582ae3a3a9e9aa848e0c4
[openldap] / doc / man / man1 / ldapsearch.1
1 .TH LDAPSEARCH 1 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP$
3 .\" Copyright 1998-2004 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
5 .SH NAME
6 ldapsearch \- LDAP search tool
7 .SH SYNOPSIS
8 .B ldapsearch
9 [\c
10 .BR \-n ]
11 [\c
12 .BR \-u ]
13 [\c
14 .BR \-v ]
15 [\c
16 .BR \-k ]
17 [\c
18 .BR \-K ]
19 [\c
20 .BR \-t ]
21 [\c
22 .BR \-A ]
23 [\c
24 .BR \-L[L[L]] ]
25 [\c
26 .BR \-M[M] ]
27 [\c
28 .BI \-d \ debuglevel\fR]
29 [\c
30 .BI \-f \ file\fR]
31 [\c
32 .BI \-D \ binddn\fR]
33 [\c
34 .BR \-W ]
35 [\c
36 .BI \-w \ passwd\fR]
37 [\c
38 .BI \-y \ passwdfile\fR]
39 [\c
40 .BI \-H \ ldapuri\fR]
41 [\c
42 .BI \-h \ ldaphost\fR]
43 [\c
44 .BI \-p \ ldapport\fR]
45 [\c
46 .BI \-P \ 2\fR\||\|\fI3\fR]
47 [\c
48 .BI \-b \ searchbase\fR]
49 [\c
50 .BI \-s \ base\fR\||\|\fIone\fR\||\|\fIsub\fR]
51 [\c
52 .BI \-a \ never\fR\||\|\fIalways\fR\||\|\fIsearch\fR\||\|\fIfind\fR]
53 [\c
54 .BI \-l \ timelimit\fR]
55 [\c
56 .BI \-z \ sizelimit\fR]
57 [\c
58 .BR \-O \ security-properties ]
59 [\c
60 .BR \-I ]
61 [\c
62 .BR \-Q ]
63 [\c
64 .BI \-U \ authcid\fR]
65 [\c
66 .BI \-R \ realm\fR]
67 [\c
68 .BR \-x ]
69 [\c
70 .BI \-X \ authzid\fR]
71 [\c
72 .BI \-Y \ mech\fR]
73 [\c
74 .BR \-Z[Z] ]
75 .I filter
76 [\c
77 .IR attrs... ]
78 .SH DESCRIPTION
79 .I ldapsearch
80 is a shell-accessible interface to the
81 .BR ldap_search (3)
82 library call.
83 .LP
84 .B ldapsearch
85 opens a connection to an LDAP server, binds, and performs a search
86 using specified parameters.   The \fIfilter\fP should conform to
87 the string representation for search filters as defined in RFC 2254.
88 If not provided, the default filter, (objectClass=*), is used.
89 .LP
90 If
91 .B ldapsearch finds one or more entries, the attributes specified by
92 \fIattrs\fP are returned.  If * is listed, all user attributes are
93 returned.  If + is listed, all operational attributes are returned.
94 If no \fIattrs\fP are listed, all user attributes are returned.  If only
95 1.1 is listed, no attributes will be returned.
96 .SH OPTIONS
97 .TP
98 .B \-n
99 Show what would be done, but don't actually perform the search.  Useful for
100 debugging in conjunction with -v.
101 .TP
102 .B \-u
103 Include the User Friendly Name form of the Distinguished Name (DN)
104 in the output.
105 .TP
106 .B \-v
107 Run in verbose mode, with many diagnostics written to standard output.
108 .TP
109 .B \-k
110 Use Kerberos IV authentication instead of simple authentication.  It is
111 assumed that you already have a valid ticket granting ticket.
112 .B ldapsearch
113 must be compiled with Kerberos support for this option to have any effect.
114 .TP
115 .B \-K
116 Same as \-k, but only does step 1 of the Kerberos IV bind.  This is useful
117 when connecting to a slapd and there is no x500dsa.hostname principal
118 registered with your Kerberos Domain Controller(s).
119 .TP
120 .B \-t
121 Write retrieved non-printable values to a set of temporary files.  This
122 is useful for dealing with values containing non-character data such as
123 jpegPhoto or audio.
124 .TP
125 .B \-A
126 Retrieve attributes only (no values).  This is useful when you just want to
127 see if an attribute is present in an entry and are not interested in the
128 specific values.
129 .TP
130 .B \-L
131 Search results are display in LDAP Data Interchange Format detailed in
132 .BR ldif (5).
133 A single -L restricts the output to LDIFv1.
134 A second -L disables comments.
135 A third -L disables printing of the LDIF version.
136 The default is to use an extended version of LDIF.
137 .TP
138 .B \-M[M]
139 Enable manage DSA IT control.
140 .B \-MM
141 makes control critical.
142 .TP
143 .BI \-S \ attribute
144 Sort the entries returned based on \fIattribute\fP. The default is not
145 to sort entries returned.  If \fIattribute\fP is a zero-length string (""),
146 the entries are sorted by the components of their Distingished Name.  See
147 .BR ldap_sort (3)
148 for more details. Note that
149 .B ldapsearch
150 normally prints out entries as it receives them. The use of the
151 .B \-S
152 option defeats this behavior, causing all entries to be retrieved,
153 then sorted, then printed.
154 .TP
155 .BI \-d \ debuglevel
156 Set the LDAP debugging level to \fIdebuglevel\fP.
157 .B ldapsearch
158 must be compiled with LDAP_DEBUG defined for this option to have any effect.
159 .TP
160 .BI \-f \ file
161 Read a series of lines from \fIfile\fP, performing one LDAP search for
162 each line.  In this case, the \fIfilter\fP given on the command line
163 is treated as a pattern where the first occurrence of \fB%s\fP is
164 replaced with a line from \fIfile\fP.  If \fIfile\fP is a single \fI-\fP
165 character, then the lines are read from standard input.
166 .TP
167 .B \-x 
168 Use simple authentication instead of SASL.
169 .TP
170 .BI \-D \ binddn
171 Use the Distinguished Name \fIbinddn\fP to bind to the LDAP directory.
172 .TP
173 .B \-W
174 Prompt for simple authentication.
175 This is used instead of specifying the password on the command line.
176 .TP
177 .BI \-w \ passwd
178 Use \fIpasswd\fP as the password for simple authentication.
179 .TP
180 .BI \-y \ passwdfile
181 Use complete contents of \fIpasswdfile\fP as the password for
182 simple authentication.
183 .TP
184 .BI \-H \ ldapuri
185 Specify URI(s) referring to the ldap server(s).
186 .TP
187 .BI \-h \ ldaphost
188 Specify an alternate host on which the ldap server is running.
189 Deprecated in favor of -H.
190 .TP
191 .BI \-p \ ldapport
192 Specify an alternate TCP port where the ldap server is listening.
193 Deprecated in favor of -H.
194 .TP
195 .BI \-b \ searchbase
196 Use \fIsearchbase\fP as the starting point for the search instead of
197 the default.
198 .TP
199 .BI \-s \ base\fR\||\|\fIone\fR\||\|\fIsub
200 Specify the scope of the search to be one of
201 .IR base ,
202 .IR one ,
203 or
204 .I sub
205 to specify a base object, one-level, or subtree search.  The default
206 is
207 .IR sub .
208 .TP
209 .BI \-a \ never\fR\||\|\fIalways\fR\||\|\fIsearch\fR\||\|\fIfind
210 Specify how aliases dereferencing is done.  Should be one of
211 .IR never ,
212 .IR always ,
213 .IR search ,
214 or
215 .I find
216 to specify that aliases are never dereferenced, always dereferenced,
217 dereferenced when searching, or dereferenced only when locating the
218 base object for the search.  The default is to never dereference aliases.
219 .TP
220 .BI \-P \ 2\fR\||\|\fI3
221 Specify the LDAP protocol version to use.
222 .TP
223 .BI \-l \ timelimit
224 wait at most \fItimelimit\fP seconds for a search to complete.  A
225 timelimit of
226 .I 0
227 (zero) removes the
228 .B ldap.conf
229 limit.
230 A timelimit of
231 .I none
232 uses
233 .I maxInt
234 (2147483647, RFC 2251) as timelimit.
235 A server may impose a maximal timelimit which only
236 the root user may override.
237 .TP
238 .BI \-z \ sizelimit
239 retrieve at most \fIsizelimit\fP entries for a search.  A sizelimit
240 of 
241 .I 0
242 (zero) removes the 
243 .B ldap.conf
244 limit.
245 A sizelimit of
246 .I none
247 uses
248 .I maxInt
249 (2147483647, RFC 2251) as sizelimit.
250 A server may impose a maximal sizelimit which only
251 the root user may override.
252 .TP
253 .BI \-O \ security-properties
254 Specify SASL security properties.
255 .TP
256 .B \-I
257 Enable SASL Interactive mode.  Always prompt.  Default is to prompt
258 only as needed.
259 .TP
260 .B \-Q
261 Enable SASL Quiet mode.  Never prompt.
262 .TP
263 .BI \-U \ authcid
264 Specify the authentication ID for SASL bind. The form of the ID
265 depends on the actual SASL mechanism used.
266 .TP
267 .BI \-R \ realm
268 Specify the realm of authentication ID for SASL bind. The form of the realm
269 depends on the actual SASL mechanism used.
270 .TP
271 .BI \-X \ authzid
272 Specify the requested authorization ID for SASL bind.
273 .I authzid
274 must be one of the following formats:
275 .B dn:\c
276 .I <distinguished name>
277 or
278 .B u:\c
279 .I <username>
280 .TP
281 .BI \-Y \ mech
282 Specify the SASL mechanism to be used for authentication. If it's not
283 specified, the program will choose the best mechanism the server knows.
284 .TP
285 .B \-Z[Z]
286 Issue StartTLS (Transport Layer Security) extended operation. If you use
287 .B \-ZZ\c
288 , the command will require the operation to be successful.
289 .SH OUTPUT FORMAT
290 If one or more entries are found, each entry is written to standard
291 output in LDAP Data Interchange Format or
292 .BR ldif (5):
293 .LP
294 .nf
295     version: 1
296
297     # bjensen, example, net
298     dn: uid=bjensen,dc=example,dc=net
299     objectClass: person
300     objectClass: dcObject
301     uid: bjensen
302     cn: Barbara Jensen
303     sn: Jensen
304     ...
305 .fi
306 .LP
307 If the -t option is used, the URI of a temporary file
308 is used in place of the actual value.  If the -A option
309 is given, only the "attributename" part is written.
310 .SH EXAMPLE
311 The following command:
312 .LP
313 .nf
314     ldapsearch -LLL "(sn=smith)" cn sn telephoneNumber
315 .fi
316 .LP
317 will perform a subtree search (using the default search base defined
318 in
319 .BR ldap.conf (5))
320 for entries with a surname (sn) of smith.  The common name (cn), surname
321 (sn) and telephoneNumber values will be retrieved and printed to
322 standard output.
323 The output might look something like this if two entries are found:
324 .LP
325 .nf
326     dn: uid=jts,dc=example,dc=com
327     cn: John Smith
328     cn: John T. Smith
329     sn: Smith
330     sn;lang-en: Smith
331     sn;lang-de: Schmidt
332     telephoneNumber: 1 555 123-4567
333
334     dn: uid=sss,dc=example,dc=com
335     cn: Steve Smith
336     cn: Steve S. Smith
337     sn: Smith
338     sn;lang-en: Smith
339     sn;lang-de: Schmidt
340     telephoneNumber: 1 555 765-4321
341 .fi
342 .LP
343 The command:
344 .LP
345 .nf
346     ldapsearch -LLL -u -t "(uid=xyz)" jpegPhoto audio
347 .fi
348 .LP
349 will perform a subtree search using the default search base for entries
350 with user id of "xyz".  The user friendly form of the entry's DN will be
351 output after the line that contains the DN itself, and the jpegPhoto
352 and audio values will be retrieved and written to temporary files.  The
353 output might look like this if one entry with one value for each of the
354 requested attributes is found:
355 .LP
356 .nf
357     dn: uid=xyz,dc=example,dc=com
358     ufn: xyz, example, com
359     audio:< file:///tmp/ldapsearch-audio-a19924
360     jpegPhoto:< file:///tmp/ldapsearch-jpegPhoto-a19924
361 .fi
362 .LP
363 This command:
364 .LP
365 .nf
366     ldapsearch -LLL -s one -b "c=US" "(o=University*)" o description
367 .fi
368 .LP
369 will perform a one-level search at the c=US level for all entries
370 whose organization name (o) begins begins with \fBUniversity\fP.
371 The organization name and description attribute values will be retrieved
372 and printed to standard output, resulting in output similar to this:
373 .LP
374 .nf
375     dn: o=University of Alaska Fairbanks,c=US
376     o: University of Alaska Fairbanks
377     description: Preparing Alaska for a brave new yesterday
378     description: leaf node only
379
380     dn: o=University of Colorado at Boulder,c=US
381     o: University of Colorado at Boulder
382     description: No personnel information
383     description: Institution of education and research
384
385     dn: o=University of Colorado at Denver,c=US
386     o: University of Colorado at Denver
387     o: UCD
388     o: CU/Denver
389     o: CU-Denver
390     description: Institute for Higher Learning and Research
391
392     dn: o=University of Florida,c=US
393     o: University of Florida
394     o: UFl
395     description: Warper of young minds
396
397     ...
398 .fi
399 .SH DIAGNOSTICS
400 Exit status is zero if no errors occur.
401 Errors result in a non-zero exit status and
402 a diagnostic message being written to standard error.
403 .SH "SEE ALSO"
404 .BR ldapadd (1),
405 .BR ldapdelete (1),
406 .BR ldapmodify (1),
407 .BR ldapmodrdn (1),
408 .BR ldap.conf (5),
409 .BR ldif (5),
410 .BR ldap (3),
411 .BR ldap_search (3)
412 .SH AUTHOR
413 The OpenLDAP Project <http://www.openldap.org/>
414 .SH ACKNOWLEDGEMENTS
415 .B OpenLDAP
416 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
417 .B OpenLDAP
418 is derived from University of Michigan LDAP 3.3 Release.