mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
823 B
34 lines
823 B
2 years ago
|
[Unit]
|
||
|
Description=MongoDB Database Server
|
||
|
Documentation=https://docs.mongodb.org/manual
|
||
|
After=network-online.target
|
||
|
Wants=network-online.target
|
||
|
|
||
|
[Service]
|
||
|
User=mongodb
|
||
|
Group=mongodb
|
||
|
#EnvironmentFile=-/etc/default/mongod
|
||
|
Environment="MONGODB_CONFIG_OVERRIDE_NOFORK=1"
|
||
|
ExecStart={$SERVER_PATH}/mongodb/bin/mongod --config {$SERVER_PATH}/mongodb/mongod.conf
|
||
|
RuntimeDirectory=mongodb
|
||
|
# file size
|
||
|
LimitFSIZE=infinity
|
||
|
# cpu time
|
||
|
LimitCPU=infinity
|
||
|
# virtual memory size
|
||
|
LimitAS=infinity
|
||
|
# open files
|
||
|
LimitNOFILE=64000
|
||
|
# processes/threads
|
||
|
LimitNPROC=64000
|
||
|
# locked memory
|
||
|
LimitMEMLOCK=infinity
|
||
|
# total threads (user+kernel)
|
||
|
TasksMax=infinity
|
||
|
TasksAccounting=false
|
||
|
|
||
|
# Recommended limits for mongod as specified in
|
||
|
# https://docs.mongodb.com/manual/reference/ulimit/#recommended-ulimit-settings
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|