Query: mongo
OS: debian
Section: 1
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
MONGO(1) Mongo Database MONGO(1)NAMEmongo - the Mongo command-line toolSYNOPSISmongo [OPTIONS] [DB_ADDRESS] [FILE+]DESCRIPTIONmongo is a JavaScript shell (with GNU readline capabilities). It supports interactive and non-interactive use. When used interactively, JavaScript can be used to query the database or perform any other function normally available with SpiderMonkey. Database output is dis- played in JSON format. If JavaScript files are specified on the command line, the shell will run non-interactively, running each one in sequence and then exiting.EXAMPLESmongo start the shell, connecting to the server at localhost:27017 and using the test database mongo foo start the shell using the foo database at localhost:27017 mongo 192.169.0.5/foo start the shell using the foo database at 192.169.0.5:27017 mongo 192.169.0.5:9999/foo start the shell using the foo database at 192.169.0.5:9999 mongo script1.js script2.js script3.js run three scripts and exitOPTIONS--shell run the shell after executing files --help show usage information --host HOST server to connect to (default HOST=localhost) --port PORT port to connect to (default PORT=27017) --nodb do not connect to mongod --eval SCRIPT evaluate JavaScript -u USERNAME specify user to log in as -pPASSWORD specify password of user (notice there is no space)COPYRIGHTCopyright 2007-2009 10genSEE ALSOFor more information, please refer to the MongoDB wiki, available at http://www.mongodb.org.AUTHORKristina Chodorow 10gen June 2009 MONGO(1)