mirror of
https://github.com/isar/libmdbx.git
synced 2024-10-30 11:29:19 +08:00
bc7b9984d3
1 of 2 for https://github.com/ReOpen/libmdbx/issues/3 Change-Id: I7a0b820e092e7b0064ae22341bebcd015e37b7c7
85 lines
2.6 KiB
Groff
85 lines
2.6 KiB
Groff
.\" Copyright (c) 2015,2016 Leonid Yuriev <leo@yuriev.ru>.
|
|
.\" Copyright (c) 2015,2016 Peter-Service R&D LLC <http://billing.ru/>.
|
|
.\"
|
|
.\" This file is part of ReOpenMDBX.
|
|
.\"
|
|
.\" ReOpenMDBX is free software; you can redistribute it and/or modify it under
|
|
.\" the terms of the GNU Affero General Public License as published by
|
|
.\" the Free Software Foundation; either version 3 of the License, or
|
|
.\" (at your option) any later version.
|
|
.\"
|
|
.\" ReOpenMDBX is distributed in the hope that it will be useful,
|
|
.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
.\" GNU Affero General Public License for more details.
|
|
.\"
|
|
.\" You should have received a copy of the GNU Affero General Public License
|
|
.\" along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
.\"
|
|
.\" ---
|
|
.\"
|
|
.\" Copyright 2012-2016 Howard Chu, Symas Corp. All Rights Reserved.
|
|
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
|
|
.TH MDB_STAT 1 "2014/06/20" "LMDB 0.9.14"
|
|
.SH NAME
|
|
mdb_stat \- LMDB environment status tool
|
|
.SH SYNOPSIS
|
|
.B mdb_stat
|
|
[\c
|
|
.BR \-V ]
|
|
[\c
|
|
.BR \-e ]
|
|
[\c
|
|
.BR \-f [ f [ f ]]]
|
|
[\c
|
|
.BR \-n ]
|
|
[\c
|
|
.BR \-r [ r ]]
|
|
[\c
|
|
.BR \-a \ |
|
|
.BI \-s \ subdb\fR]
|
|
.BR \ envpath
|
|
.SH DESCRIPTION
|
|
The
|
|
.B mdb_stat
|
|
utility displays the status of an LMDB environment.
|
|
.SH OPTIONS
|
|
.TP
|
|
.BR \-V
|
|
Write the library version number to the standard output, and exit.
|
|
.TP
|
|
.BR \-e
|
|
Display information about the database environment.
|
|
.TP
|
|
.BR \-f
|
|
Display information about the environment freelist.
|
|
If \fB\-ff\fP is given, summarize each freelist entry.
|
|
If \fB\-fff\fP is given, display the full list of page IDs in the freelist.
|
|
.TP
|
|
.BR \-n
|
|
Display the status of an LMDB database which does not use subdirectories.
|
|
.TP
|
|
.BR \-r
|
|
Display information about the environment reader table.
|
|
Shows the process ID, thread ID, and transaction ID for each active
|
|
reader slot. The process ID and transaction ID are in decimal, the
|
|
thread ID is in hexadecimal. The transaction ID is displayed as "-"
|
|
if the reader does not currently have a read transaction open.
|
|
If \fB\-rr\fP is given, check for stale entries in the reader
|
|
table and clear them. The reader table will be printed again
|
|
after the check is performed.
|
|
.TP
|
|
.BR \-a
|
|
Display the status of all of the subdatabases in the environment.
|
|
.TP
|
|
.BR \-s \ subdb
|
|
Display the status of a specific subdatabase.
|
|
.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 "SEE ALSO"
|
|
.BR mdb_copy (1)
|
|
.SH AUTHOR
|
|
Howard Chu of Symas Corporation <http://www.symas.com>
|