Add mongodb

This commit is contained in:
Wilfried OLLIVIER 2017-11-29 18:33:33 +01:00
parent 300c4da317
commit 805c947064
2 changed files with 17 additions and 0 deletions

View File

@ -13,3 +13,4 @@
- [Ops](./ops/main.md)
- [Tools](./ops/tools/main.md)
- [Ansible](./ops/tools/ansible.md)
- [MongoDB](./ops/tools/mongodb.md)

16
src/ops/tools/mongodb.md Normal file
View File

@ -0,0 +1,16 @@
# MongoDB
## Non interactive conn from CLI (kudos lukhas)
Docs says
```shell
mongo --username user --password 'passwd'
```
Reality says
```shell
mongo --username user --password='passwd'
```