1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-24 09:35:25 +02:00

Updated description changes

This commit is contained in:
Vincent Yang 2017-10-07 00:34:24 -07:00
parent 06c39979f0
commit 5f49a298f1

View file

@ -1,15 +1,15 @@
# mongod
> The daemon process for MongoDB.
> The MongoDB database server
- Specify runtime configurations:
- Specify a config file:
`mongod --config <filename>`
`mongod --config {{filename}}`
- Specify port for MongoDB to listen to client connections:
- Specify the port to listen on:
`mongod --port <port>`
`mongod --port {{port}}`
- Change database profiling level. 0 is off, 1 is only slow operations, 2 is all:
- Specify database profiling level. 0 is off, 1 is only slow operations, 2 is all:
`mongod --profile <level>`
`mongod --profile {{0|1|2}}`