Add mongodb
This commit is contained in:
parent
300c4da317
commit
805c947064
2 changed files with 17 additions and 0 deletions
|
@ -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
16
src/ops/tools/mongodb.md
Normal 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'
|
||||
```
|
||||
|
Loading…
Reference in a new issue