mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 20:49:10 +01:00
62c74f042a
GitOrigin-RevId: f754ec3179f17ed2848b2e004420dc406ac622ea
36 lines
837 B
Desktop File
36 lines
837 B
Desktop File
[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"
|
|
Environment="GLIBC_TUNABLES=glibc.pthread.rseq=0"
|
|
ExecStart=/usr/bin/mongod --config /etc/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
|