[Pkg-mongodb-maintainers] [pkg-mongodb] 220/394: updated man pages

Apollon Oikonomopoulos apoikos at moszumanska.debian.org
Wed Sep 21 13:59:14 UTC 2016


This is an automated email from the git hooks/post-receive script.

apoikos pushed a commit to branch master
in repository pkg-mongodb.

commit db390ff58ab3a4736a3ad5be3b8ef9bf7f444a0b
Author: Antonin Kral <a.kral at bobek.cz>
Date:   Wed Aug 29 22:27:01 2012 +0200

    updated man pages
---
 debian/manpages/mongo.1        |  21 ++++++--
 debian/manpages/mongodump.1    |  33 +++++++++++--
 debian/manpages/mongoexport.1  |  36 ++++++++++++--
 debian/manpages/mongofiles.1   |  53 ++++++++++++++++++--
 debian/manpages/mongoimport.1  |  46 +++++++++++++++--
 debian/manpages/mongorestore.1 |  32 +++++++++++-
 debian/manpages/mongos.1       |  68 ++++++++++++++++++++++---
 debian/manpages/mongosniff.1   |   5 +-
 debian/manpages/mongostat.1    | 110 ++++++++++++++++++++++++++++++++++-------
 9 files changed, 359 insertions(+), 45 deletions(-)

diff --git a/debian/manpages/mongo.1 b/debian/manpages/mongo.1
index 89f4881..f3fe879 100644
--- a/debian/manpages/mongo.1
+++ b/debian/manpages/mongo.1
@@ -48,14 +48,29 @@ do not connect to mongod
 .B \-\-eval SCRIPT
 evaluate JavaScript
 .TP
-.B \-u USERNAME
+.B \-\-shell
+run the shell after executing files
+.TP
+.B \-\-quiet
+be less chatty
+.TP
+.B \-\-version
+show version information
+.TP
+.B \-\-verbose
+increase verbosity
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-u|\-\-username USERNAME
 specify user to log in as
 .TP
-.B \-pPASSWORD
+.B \-p|\-\-password PASSWORD
 specify password of user (notice there is no space)
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongodump.1 b/debian/manpages/mongodump.1
index 5cb33ce..337dad8 100644
--- a/debian/manpages/mongodump.1
+++ b/debian/manpages/mongodump.1
@@ -13,23 +13,50 @@ is a tool to output a binary representation of a database.  It is mostly used fo
 .B \-\-help
 show usage information
 .TP
+.B \-\-version
+show version information
+.TP
 .B \-h, \-\-host HOST
 server to connect to (default HOST=localhost)
 .TP
+.B\-\-port arg
+server port. Can also use \-\-host hostname:port
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-u|\-\-username USERNAME
+specify user to log in as
+.TP
+.B \-p|\-\-password PASSWORD
+specify password of user (notice there is no space)
+.TP
 .B \-d, \-\-db DATABASE
 database to use
 .TP
 .B \-c, \-\-c COLLECTION
 collection to use
 .TP
-.B \-o, \-\-out FILE
-output file, if not specified, stdout is used
+.B \-o, \-\-out DIRECTORY
+output directory or - for stdout.
 .TP
 .B \-\-dbpath PATH
 directly access mongod data files in this path, instead of connecting to a mongod instance
+.TP
+.B \-\-directoryperdb
+if dbpath specified, each db is in a separate directory
+.TP
+.B \-\-query
+JSON query filter
+.TP
+.B \-\-oplog
+Use oplog for point-in-time snapshotting
+.TP
+.B \-\-repair
+try to recover a crashed database (needs \-\-dbpath)
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongoexport.1 b/debian/manpages/mongoexport.1
index 1996b36..e6f6704 100644
--- a/debian/manpages/mongoexport.1
+++ b/debian/manpages/mongoexport.1
@@ -19,21 +19,49 @@ export documents from test.test1 in CSV format
 .B \-\-help
 show usage information
 .TP
+.B \-\-version
+show version information
+.TP
+.B \-v, \-\-verbose
+be more verbose (include multiple times for more verbosity
+e.g. \-vvvvv)
+.TP
 .B \-h, \-\-host HOST
 server to connect to (default HOST=localhost)
 .TP
+.B\-\-port arg
+server port. Can also use \-\-host hostname:port
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-u|\-\-username USERNAME
+specify user to log in as
+.TP
+.B \-p|\-\-password PASSWORD
+specify password of user
+.TP
+.B \-\-dbpath PATH
+directly access mongod data files in this path, instead of connecting to a mongod instance
+.TP
+.B \-\-directoryperdb
+if dbpath specified, each db is in a separate directory
+.TP
 .B \-d, \-\-db DATABASE
 database to use
 .TP
 .B \-c, \-\-c COLLECTION
 collection to use
 .TP
-.B \-q, \-\-query QUERY
-query filter
-.TP
 .B \-f, \-\-fields FIELDS
 comma\-separated list of field names
 .TP
+.B \-\-fieldFile FILE
+file with fields names \- 1 per line
+.TP
+.B \-\-query
+JSON query filter
+.TP
 .B \-\-csv
 export to CSV instead of JSON
 .TP
@@ -44,7 +72,7 @@ output file, if not specified, stdout is used
 directly access mongod data files in this path, instead of connecting to a mongod instance
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongofiles.1 b/debian/manpages/mongofiles.1
index 4d7c0c5..eefd14e 100644
--- a/debian/manpages/mongofiles.1
+++ b/debian/manpages/mongofiles.1
@@ -8,6 +8,26 @@ mongofiles \- a simple GridFS interface
 .PP
 \fBmongofiles\fR
 is used to list, get, and insert files in the database.
+.TP
+Commands:
+.TP
+.B list
+list all files.  FILENAME is an optional prefix which listed filenames
+must begin with.
+.TP
+.B search
+search all files. FILENAME is a substring which listed
+filenames must contain.
+.TP
+.B put
+add a file with filename FILENAME
+.TP
+.B get
+get a file with filename FILENAME
+.TP
+.B delete
+delete all files with filename FILENAME
+
 .SH "EXAMPLES"
 .TP
 .B mongofiles list
@@ -23,11 +43,36 @@ retrieves photo.jpg from test.fs.files and saves it locally
 .B \-\-help
 show usage information
 .TP
+.B \-\-version
+show version information
+.TP
+.B \-v, \-\-verbose
+be more verbose (include multiple times for more verbosity
+e.g. \-vvvvv)
+.TP
 .B \-h, \-\-host HOST
-mongo host to which to connect
+server to connect to (default HOST=localhost)
+.TP
+.B\-\-port arg
+server port. Can also use \-\-host hostname:port
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-u|\-\-username USERNAME
+specify user to log in as
+.TP
+.B \-p|\-\-password PASSWORD
+specify password of user
+.TP
+.B \-\-dbpath PATH
+directly access mongod data files in this path, instead of connecting to a mongod instance
+.TP
+.B \-\-directoryperdb
+if dbpath specified, each db is in a separate directory
 .TP
-.B \-d, \-\-db DB
-database to use (default DB=test)
+.B \-d, \-\-db DATABASE
+database to use
 .TP
 .B \-c, \-\-collection COLLECTION (default COLLECTION=fs.files)
 collection to use
@@ -45,7 +90,7 @@ list all files.  takes an optional filename.  the file has to start with the fil
 search all files for something that contains the string
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongoimport.1 b/debian/manpages/mongoimport.1
index b99408c..3a5df44 100644
--- a/debian/manpages/mongoimport.1
+++ b/debian/manpages/mongoimport.1
@@ -12,19 +12,44 @@ is a tool to import a MongoDB collection from JSON, CSV, or TSV. The query can b
 .\".TP
 .\".B mongoimport -d test -c test1 --csv -f "name,num"
 .\"import documents from test.test1 in CSV format
-.SS "OPTIONS"
+.SH "OPTIONS"
 .TP
-\fB\-\-help\fR
+.B \-\-help
 show usage information
 .TP
+.B \-\-version
+show version information
+.TP
+.B \-v, \-\-verbose
+be more verbose (include multiple times for more verbosity
+e.g. \-vvvvv)
+.TP
 .B \-h, \-\-host HOST
 server to connect to (default HOST=localhost)
 .TP
+.B\-\-port arg
+server port. Can also use \-\-host hostname:port
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-u|\-\-username USERNAME
+specify user to log in as
+.TP
+.B \-p|\-\-password PASSWORD
+specify password of user
+.TP
+.B \-\-dbpath PATH
+directly access mongod data files in this path, instead of connecting to a mongod instance
+.TP
+.B \-\-directoryperdb
+if dbpath specified, each db is in a separate directory
+.TP
 .B \-d, \-\-db DATABASE
 database to use
 .TP
 .B \-c, \-\-c COLLECTION
-collection to use (some commands)
+collection to use
 .TP
 .B \-\-dbpath PATH
 directly access mongod data files in this path,
@@ -57,9 +82,22 @@ drop collection first
 .TP
 .B \-\-headerline
 CSV,TSV only \- use first line as headers
+.TP
+.B \-\-upsert
+insert or update objects that already exist
+.TP
+.B \-\-upsertFields ARG
+comma-separated fields for the query part of the upsert. You should
+make sure this is indexed
+.TP
+.B \-\-stopOnError
+stop importing at first error rather than continuing
+.TP
+.B \-\-jsonArray
+load a json array, not one item per line. Currently limited to 16MB.
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongorestore.1 b/debian/manpages/mongorestore.1
index 5f207b0..02895e5 100644
--- a/debian/manpages/mongorestore.1
+++ b/debian/manpages/mongorestore.1
@@ -13,9 +13,24 @@ is a tool to use the output from mongodump to restore a database.
 .B \-\-help
 show usage information
 .TP
+.B \-\-version
+show version information
+.TP
 .B \-h, \-\-host HOST
 server to connect to (default HOST=localhost)
 .TP
+.B\-\-port arg
+server port. Can also use \-\-host hostname:port
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-u|\-\-username USERNAME
+specify user to log in as
+.TP
+.B \-p|\-\-password PASSWORD
+specify password of user (notice there is no space)
+.TP
 .B \-d, \-\-db DATABASE
 database to use
 .TP
@@ -27,9 +42,24 @@ directory from which to restore
 .TP
 .B \-\-dbpath PATH
 directly access mongod data files in this path, instead of connecting to a mongod instance
+.TP
+.B \-\-directoryperdb
+if dbpath specified, each db is in a separate directory
+.TP
+.B \-\-objcheck
+validate object before inserting
+.TP
+.B \-\-filter arg
+filter to apply before inserting
+.TP
+.B \-\-drop
+drop each collection before import
+.TP
+.B \-\-oplogReplay
+replay oplog for point-in-time restore
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongos.1 b/debian/manpages/mongos.1
index 74d01c6..2d6df33 100644
--- a/debian/manpages/mongos.1
+++ b/debian/manpages/mongos.1
@@ -22,18 +22,70 @@ starts three servers to set up sharding
 .B \-\-help
 show usage information
 .TP
-.B \-\-port N
-port on which to listen
+.B \-h, \-\-help
+show this usage information
 .TP
-.B \-\-configdb DATABASE+
-one or more databases to use as the configuration databases
+.B \-\-version
+show version information
 .TP
-.B \-v+
-verbosity
+.B \-f, \-\-config arg
+configuration file specifying additional options
+.TP
+.B \-v, \-\-verbose
+be more verbose (include multiple times for more verbosity
+e.g. -vvvvv)
+.TP
+.B \-\-quiet                quieter output
+.TP
+.B \-\-port arg             specify port number
+.TP
+.B \-\-bind_ip arg
+comma separated list of ip addresses to listen on - all local ips by
+default
+.TP
+.B \-\-logpath arg
+log file to send write to instead of stdout - has to be a file, not
+directory
+.TP
+.B \-\-logappend
+append to logpath instead of over-writing
+.TP
+.B \-\-pidfilepath arg
+full path to pidfile (if not set, no pidfile is created)
+.TP
+.B \-\-keyFile arg
+private key for cluster authentication (only for replica sets)
+.TP
+.B \-\-unixSocketPrefix arg
+alternative directory for UNIX domain sockets (defaults to /tmp)
+.TP
+.B \-\-fork
+fork server process
+
+.SH "SHARDING OPTIONS"
+.TP
+.B \-\-configdb arg
+1 or 3 comma separated config servers
+.TP
+.B \-\-test
+just run unit tests
+.TP
+.B \-\-upgrade
+upgrade meta data version
+.TP
+.B \-\-chunkSize arg
+maximum amount of data per chunk
+.TP
+.B \-\-ipv6
+enable IPv6 support (disabled by default)
+.TP
+.B \-\-jsonp
+allow JSONP access via http (has security implications)
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
-For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
+For more information, please refer to the MongoDB wiki, available at
+http://www.mongodb.org.
 .SH "AUTHOR"
 Kristina Chodorow
diff --git a/debian/manpages/mongosniff.1 b/debian/manpages/mongosniff.1
index b6f1063..edb4f3a 100644
--- a/debian/manpages/mongosniff.1
+++ b/debian/manpages/mongosniff.1
@@ -21,9 +21,12 @@ print a short help message.
 .TP
 .B <port0>
 These parameters are used to filter sniffing.  By default, only port 27017 is sniffed.
+.TP
+.B \-\-help
+show usage information
 .SH "COPYRIGHT"
 .PP
-Copyright 2007\-2009 10gen
+Copyright 2007\-2011 10gen
 .SH "SEE ALSO"
 For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
 .SH "AUTHOR"
diff --git a/debian/manpages/mongostat.1 b/debian/manpages/mongostat.1
index e219060..1f043a9 100644
--- a/debian/manpages/mongostat.1
+++ b/debian/manpages/mongostat.1
@@ -3,37 +3,113 @@
 .SH "NAME"
 mongostat \- view statistics on a running mongod instance
 .SH "SYNOPSIS"
-\fBmongostat [\fIOPTIONS\fR]
+\fBmongostat [\fIOPTIONS\fR] [\fISLEEP TIME\fR]
 .SH "DESCRIPTION"
 .PP
 \fBmongostat\fR
-prints statistics on a running mongod instance.
+prints statistics on a running mongod instance.  [\fISLEEP TIME\fR] is
+time to wait (in seconds) between calls to servers
 .SH "OPTIONS"
 .TP
 .B \-\-help
 show usage information
 .TP
-.B \-h, \-\-host HOST
-mongo host to connect to (use "left,right" for pairs)
-\" .TP
-\" .B \-\-port PORT
-\" port to connect to (default PORT=27017)
+.B \-\-version
+show version information
 .TP
-.B \-d, \-\-db ARG
-db to use
+.B \-v, \-\-verbose           
+be more verbose (include multiple times for more verbosity
+e.g. \-vvvvv)
 .TP
-.B \-c, \-\-collection ARG
-collection to use (some commands)
+.B \-h, \-\-host arg          
+mongo host to connect to ( <set name>/s1,s2 for sets)
 .TP
-.B \-u, \-\-username USERNAME
-specify user to log in as
+.B \-\-port arg                 
+server port. Can also use \-\-host hostname:port
 .TP
-.B \-p, \-\-password PASSWORD
-specify password of user (notice there is no space)
+.B \-\-ipv6                     
+enable IPv6 support (disabled by default)
+.TP
+.B \-u, \-\-username arg      
+username
+.TP
+.B \-p, \-\-password arg      
+password
+.TP
+.B \-\-noheaders                
+don't output column names
+.TP
+.B \-n, \-\-rowcount arg
+number of stats lines to print (0 for indefinite)
+.TP
+.B \-\-http                     
+use http instead of raw db connection
+.TP
+.B \-\-discover                 
+discover nodes and display stats for all
+.TP
+.B \-\-all                      
+all optional fields
+.SH "FIELDS"
+.TP
+.B inserts
+# of inserts per second
+.TP
+.B query
+# of queries per second
+.TP
+.B update
+# of updates per second
+.TP
+.B delete
+# of deletes per second
+.TP
+.B getmore
+# of get mores (cursor batch) per second
+.TP
+.B command
+# of commands per second
+.TP
+.B flushes
+# of fsync flushes per second
+.TP
+.B mapped
+amount of data mmaped (total data size) megabytes
+.TP
+.B visze
+virtual size of process in megabytes
+.TP
+.B res
+resident size of process in megabytes
+.TP
+.B faults
+# of pages faults per sec (linux only)
+.TP
+.B locked
+percent of time in global write lock
+.TP
+.B idx
+percent of btree page misses (sampled)
+.TP
+.B qr
+queue lengths for clients waiting (read|write)
+.TP
+.B ar
+active clients (read|write)
+.TP
+.B netIn
+network traffic in - bits
+.TP
+.B netOut
+network traffic out - bits
+.TP
+.B conn
+number of open connections
 .SH "COPYRIGHT"
 .PP
-Copyright 2010 10gen
+Copyright 2011 10gen
 .SH "SEE ALSO"
-For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.
+For more information, please refer to the MongoDB wiki, available at
+http://www.mongodb.org.
 .SH "AUTHOR"
 Eliot Horowitz

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mongodb/pkg-mongodb.git



More information about the Pkg-mongodb-maintainers mailing list