]> git.sur5r.net Git - openldap/blob - doc/man/man8/slapcat.8
ITS#5891
[openldap] / doc / man / man8 / slapcat.8
1 .TH SLAPCAT 8C "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" Copyright 1998-2009 The OpenLDAP Foundation All Rights Reserved.
3 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
4 .\" $OpenLDAP$
5 .SH NAME
6 slapcat \- SLAPD database to LDIF utility
7 .SH SYNOPSIS
8 .B SBINDIR/slapcat
9 .B [\-a filter]
10 .B [\-b suffix]
11 .B [\-c]
12 .B [\-d level]
13 .B [\-f slapd.conf]
14 .B [\-F confdir]
15 .B [\-g]
16 .B [\-l ldif-file]
17 .B [\-n dbnum]
18 .B [\-o name[=value]]
19 .B [\-s subtree-dn]
20 .B [\-v]
21 .B 
22 .LP
23 .SH DESCRIPTION
24 .LP
25 .B Slapcat
26 is used to generate an LDAP Directory Interchange Format
27 (LDIF) output based upon the contents of a
28 .BR slapd (8)
29 database.
30 It opens the given database determined by the database number or
31 suffix and writes the corresponding LDIF to standard output or
32 the specified file.
33 Databases configured as
34 .B subordinate
35 of this one are also output, unless \fB-g\fP is specified.
36 .LP
37 The entry records are presented in database order, not superior first
38 order.  The entry records will include all (user and operational)
39 attributes stored in the database.  The entry records will not include
40 dynamically generated attributes (such as subschemaSubentry).
41 .LP
42 The output of slapcat is intended to be used as input to
43 .BR slapadd (8).
44 The output of slapcat cannot generally be used as input to
45 .BR ldapadd (1)
46 or other LDAP clients without first editing the output.
47 This editing would normally include reordering the records
48 into superior first order and removing no-user-modification
49 operational attributes.
50 .SH OPTIONS
51 .TP
52 .BI \-a " filter"
53 Only dump entries matching the asserted filter.
54 For example
55
56 slapcat -a \\
57     "(!(entryDN:dnSubtreeMatch:=ou=People,dc=example,dc=com))"
58
59 will dump all but the "ou=People,dc=example,dc=com" subtree
60 of the "dc=example,dc=com" database.
61 .TP
62 .BI \-b " suffix" 
63 Use the specified \fIsuffix\fR to determine which database to
64 generate output for.  The \-b cannot be used in conjunction
65 with the
66 .B \-n
67 option.
68 .TP
69 .B \-c
70 Enable continue (ignore errors) mode.
71 .TP
72 .BI \-d " level"
73 Enable debugging messages as defined by the specified
74 .IR level ;
75 see
76 .BR slapd (8)
77 for details.
78 .TP
79 .BI \-f " slapd.conf"
80 Specify an alternative
81 .BR slapd.conf (5)
82 file.
83 .TP
84 .BI \-F " confdir"
85 specify a config directory.
86 If both
87 .B -f
88 and
89 .B -F
90 are specified, the config file will be read and converted to
91 config directory format and written to the specified directory.
92 If neither option is specified, an attempt to read the
93 default config directory will be made before trying to use the default
94 config file. If a valid config directory exists then the
95 default config file is ignored.
96 .TP
97 .B \-g
98 disable subordinate gluing.  Only the specified database will be
99 processed, and not its glued subordinates (if any).
100 .TP
101 .BI \-l " ldif-file"
102 Write LDIF to specified file instead of standard output.
103 .TP
104 .BI \-n " dbnum"
105 Generate output for the \fIdbnum\fR\-th database listed in the
106 configuration file. The config database
107 .BR slapd-config (5),
108 is always the first database, so use
109 .B \-n 0
110
111 The
112 .B \-n
113 cannot be used in conjunction with the
114 .B \-b
115 option.
116 .TP
117 .BI \-o " option[=value]"
118 Specify an
119 .BR option
120 with a(n optional)
121 .BR value .
122 Possible generic options/values are:
123 .LP
124 .nf
125               syslog=<subsystems>  (see `\-s' in slapd(8))
126               syslog-level=<level> (see `\-S' in slapd(8))
127               syslog-user=<user>   (see `\-l' in slapd(8))
128
129 .fi
130 .TP
131 .BI \-s " subtree-dn"
132 Only dump entries in the subtree specified by this DN.
133 Implies `-b subtree-dn' if no
134 .B \-b
135 or
136 .B \-n
137 option is given.
138 .TP
139 .B \-v
140 Enable verbose mode.
141 .SH LIMITATIONS
142 For some backend types, your
143 .BR slapd (8)
144 should not be running (at least, not in read-write
145 mode) when you do this to ensure consistency of the database. It is
146 always safe to run 
147 .B slapcat
148 with the
149 .BR slapd-bdb (5),
150 .BR slapd-hdb (5),
151 and
152 .BR slapd-null (5)
153 backends.
154 .SH EXAMPLES
155 To make a text backup of your SLAPD database and put it in a file called
156 .BR ldif ,
157 give the command:
158 .LP
159 .nf
160 .ft tt
161         SBINDIR/slapcat -l ldif
162 .ft
163 .fi
164 .SH "SEE ALSO"
165 .BR ldap (3),
166 .BR ldif (5),
167 .BR slapadd (8),
168 .BR ldapadd (1),
169 .BR slapd (8)
170 .LP
171 "OpenLDAP Administrator's Guide" (http://www.OpenLDAP.org/doc/admin/)
172 .SH ACKNOWLEDGEMENTS
173 .so ../Project