Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

mongos(1) [debian man page]

MONGOS(1)							  Mongo Database							 MONGOS(1)

NAME
mongos - the Mongo sharding server SYNOPSIS
mongos [OPTIONS] DESCRIPTION
mongos is used to setup, configure, and get information about sharded databases. EXAMPLES
./mongod --port 9999 --dbpath /data/db/a # first server ./mongod --port 9998 --dbpath /data/db/b # second server ./mongos --configdb localhost:9999 # mongos starts three servers to set up sharding OPTIONS
--help show usage information --port N port on which to listen --configdb DATABASE+ one or more databases to use as the configuration databases -v+ verbosity COPYRIGHT
Copyright 2007-2009 10gen SEE ALSO
For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org. AUTHOR
Kristina Chodorow 10gen June 2009 MONGOS(1)

Check Out this Related Man Page

MONGOIMPORT(1)							  Mongo Database						    MONGOIMPORT(1)

NAME
mongoimport - the Mongo import tool SYNOPSIS
mongoimport [OPTIONS] DESCRIPTION
mongoimport is a tool to import a MongoDB collection from JSON, CSV, or TSV. The query can be filtered or a list of fields to input can be given. OPTIONS --help show usage information -h, --host HOST server to connect to (default HOST=localhost) -d, --db DATABASE database to use -c, --c COLLECTION collection to use (some commands) --dbpath PATH directly access mongod data files in this path, instead of connecting to a mongod instance -v, --verbose be more verbose (include multiple times for more verbosity e.g. -vvvvv) -f, --fields NAMES comma separated list of field names e.g. -f name,age --fieldFile FILE file with fields names - 1 per line --jsonArray load a json array, not one item per line. Currently limited to 4MB. --ignoreBlanks if given, empty fields in csv and tsv will be ignored --type TYPE type of file to import. default: json (json,csv,tsv) --file FILE file to import from; if not specified stdin is used --drop drop collection first --headerline CSV,TSV only - use first line as headers COPYRIGHT
Copyright 2007-2009 10gen SEE ALSO
For more information, please refer to the MongoDB wiki, available at http://www.mongodb.org. AUTHOR
Kristina Chodorow 10gen January 2010 MONGOIMPORT(1)
Man Page