diff options
author | kristina <k@wooster.(none)> | 2009-06-01 13:55:45 -0400 |
---|---|---|
committer | kristina <k@wooster.(none)> | 2009-06-01 13:55:45 -0400 |
commit | 4919bc092633254e4db084cbf5868b41511b2b63 (patch) | |
tree | 74d69c8ea4f4a58b417021caff41c68a6adddb87 /debian/mongos.1 | |
parent | e3a3919baa70bda2f183b613c2c61d2546a53a3d (diff) | |
download | mongo-4919bc092633254e4db084cbf5868b41511b2b63.tar.gz |
man pages, version, and APGL MINOR
Diffstat (limited to 'debian/mongos.1')
-rw-r--r-- | debian/mongos.1 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/debian/mongos.1 b/debian/mongos.1 new file mode 100644 index 00000000000..74d01c6862e --- /dev/null +++ b/debian/mongos.1 @@ -0,0 +1,39 @@ +.\" Documentation for the MongoDB dump tool +.TH MONGOS "1" "June 2009" "10gen" "Mongo Database" +.SH "NAME" +mongos \- the Mongo sharding server +.SH "SYNOPSIS" +\fBmongos [\fIOPTIONS\fR]\fR +.SH "DESCRIPTION" +.PP +\fBmongos\fR +is used to setup, configure, and get information about sharded databases. +.SH "EXAMPLES" +.PP +.B ./mongod --port 9999 --dbpath /data/db/a # first server +.PP +.B ./mongod --port 9998 --dbpath /data/db/b # second server +.PP +.B ./mongos --configdb localhost:9999 # mongos +.PP +starts three servers to set up sharding +.SH "OPTIONS" +.TP +.B \-\-help +show usage information +.TP +.B \-\-port N +port on which to listen +.TP +.B \-\-configdb DATABASE+ +one or more databases to use as the configuration databases +.TP +.B \-v+ +verbosity +.SH "COPYRIGHT" +.PP +Copyright 2007\-2009 10gen +.SH "SEE ALSO" +For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org. +.SH "AUTHOR" +Kristina Chodorow |