init
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
[Unit]
|
||||
Description=MongoDB Database Server
|
||||
After=multi-user.target
|
||||
Documentation=https://docs.mongodb.org/manual
|
||||
|
||||
[Service]
|
||||
User=mongod
|
||||
Group=mongod
|
||||
Environment="OPTIONS=-f /etc/mongod.conf"
|
||||
EnvironmentFile=-/etc/sysconfig/mongod
|
||||
ExecStart=/usr/local/mongodb/bin/mongod $OPTIONS
|
||||
ExecStartPre=/bin/mkdir -p /var/run/mongodb
|
||||
ExecStartPre=/bin/chown mongod:mongod /var/run/mongodb
|
||||
ExecStartPre=/bin/chmod 0755 /var/run/mongodb
|
||||
PermissionsStartOnly=true
|
||||
PIDFile=/var/run/mongodb/mongod.pid
|
||||
Type=forking
|
||||
# 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 for mongod as specified in
|
||||
# http://docs.mongodb.org/manual/reference/ulimit/#recommended-settings
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Reference in New Issue
Block a user