-
Notifications
You must be signed in to change notification settings - Fork 0
Server Administration βοΈ
Table Of Contents
- Default MongoDB config file
- Directory Per DB
- Max Incoming Connections
- Process Management
- Replication
lyes-s ( β₯β£_β’β€ ) ~/Documents/learning-mongo $ docker exec -it mongodb sh
> cat /etc/mongod.conf.orig
# mongod.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# Where and how to store data.
storage:
dbPath: /var/lib/mongodb
journal:
enabled: true
# engine:
# wiredTiger:
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /var/log/mongodb/mongod.log
# network interfaces
net:
port: 27017
bindIp: 127.0.0.1
# how the process runs
processManagement:
timeZoneInfo: /usr/share/zoneinfo
#security:
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options:
#auditLog:
#snmp:
When true, MongoDB uses a separate directory to store data for each database. The directories are under the storage.dbPath directory, and each subdirectory name corresponds to the database name.
The storage.directoryPerDB setting is available only for mongod.
# Where and how to store data.
storage:
dbPath: /var/lib/mongodb
journal:
enabled: true
directoryPerDB: true
The maximum number of simultaneous connections that mongos or mongod will accept. This setting has no effect if it is higher than your operating system's configured maximum connection tracking threshold. Default : 65536
# network interfaces
net:
port: 27017
bindIp: 127.0.0.1
maxIncomingConnections: 65536
Enable a daemon mode that runs the mongos or mongod process in the background. By default mongos or mongod does not run as a daemon: typically you will run mongos or mongod as a daemon, either by using processManagement.fork or by using a controlling process that handles the daemonization process (e.g. as with upstart and systemd). Default : false
# how the process runs
processManagement:
fork: true
timeZoneInfo: /usr/share/zoneinfo
A replica set is a group of MongoDB servers, called nodes, containing an identical copy of the data. If one of the servers fails, the other two will pick up the load while the crashed one restarts. [1]
More Information : [2]
# Replica
replication:
replSetName: cookerSet
Β© 2024 | Lyes Sefiane
All Rights Reserved | CC BY-NC-ND 4.0