mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-27 03:20:22 +08:00
6214423163
mdb_copy: Does not copy lockfile. Can trigger file growth. mdb_txn_begin(): Clarify usage restrictions. mdb_drop(): State what to do rather than what will be done, since closing the handle could otherwise be read as happening even at failure.
34 lines
1.0 KiB
Groff
34 lines
1.0 KiB
Groff
.TH MDB_COPY 1 "2012/12/12" "LMDB 0.9.5"
|
|
.\" Copyright 2012 Howard Chu, Symas Corp. All Rights Reserved.
|
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
|
.SH NAME
|
|
mdb_copy \- LMDB environment copy tool
|
|
.SH SYNOPSIS
|
|
.B mdb_copy
|
|
.I srcpath\ [dstpath]
|
|
.SH DESCRIPTION
|
|
The
|
|
.B mdb_copy
|
|
utility copies an LMDB environment. The environment can
|
|
be copied regardless of whether it is currently in use.
|
|
No lockfile is created, since it gets recreated at need.
|
|
|
|
If
|
|
.I dstpath
|
|
is specified it must be the path of an empty directory
|
|
for storing the backup. Otherwise, the backup will be
|
|
written to stdout.
|
|
|
|
.SH DIAGNOSTICS
|
|
Exit status is zero if no errors occur.
|
|
Errors result in a non-zero exit status and
|
|
a diagnostic message being written to standard error.
|
|
.SH CAVEATS
|
|
This utility can trigger significant file size growth if run
|
|
in parallel with write transactions, because pages which they
|
|
free during copying cannot be reused until the copy is done.
|
|
.SH "SEE ALSO"
|
|
.BR mdb_stat (1)
|
|
.SH AUTHOR
|
|
Howard Chu of Symas Corporation <http://www.symas.com>
|