mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-06 11:46:00 +02:00
parent
9c5450feac
commit
0d2e70625e
1 changed files with 19 additions and 0 deletions
19
pages/common/mongo.md
Normal file
19
pages/common/mongo.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
# mongo
|
||||
|
||||
> MongoDB interactive shell client.
|
||||
|
||||
- Connect to a database:
|
||||
|
||||
`mongo {{database}}`
|
||||
|
||||
- Connect to a database running on a given host on a given port:
|
||||
|
||||
`mongo --host {{host}} --port {{port}} {{database}}`
|
||||
|
||||
- Connect to a database with a given username; user will be prompted for password:
|
||||
|
||||
`mongo --username {{username}} {{database}} --password`
|
||||
|
||||
- Evaluate a javascript expression on the database:
|
||||
|
||||
`mongo --eval '{{JSON.stringify(db.foo.findOne())}}' {{database}}`
|
Loading…
Add table
Reference in a new issue