notes/db/nosql/mongo/tools/mongosh.txt
Ihar Hancharenka f9df4ae6c9 m
2024-09-05 09:47:47 +03:00

29 строки
856 B
Plaintext

https://www.mongodb.com/docs/mongodb-shell/
https://www.mongodb.com/docs/mongodb-shell/install/
https://github.com/mongodb-js/mongosh
sudo apt-get update
sudo apt-get install mongodb-mongosh
mongodb://<usr>:<pwd>@localhost:27017/test
https://www.mongodb.com/docs/mongodb-shell/
show dbs
use ...
show collections
db.getCollectionNames()
[ '...', ... ]
db.getCollectionInfos()
https://www.mongodb.com/docs/manual/reference/method/db.getCollectionInfos
...
https://www.mongodb.com/docs/mongodb-shell/crud/
https://www.mongodb.com/docs/mongodb-shell/crud/read/
db.<coll>.find()
print output to file
https://stackoverflow.com/questions/22565231/printing-mongo-query-output-to-a-file-while-in-the-mongo-shell
???
https://www.mongodb.com/docs/manual/reference/method/