Answers for "mongod.service does not exist"

1

Failed to enable unit: Unit file mongod.service does not exist.

> systemctl list-unit-files --type=service
...
mongodb.service             disabled
...
Posted by: Guest on June-04-2020
1

Failed to enable unit: Unit file mongod.service does not exist.

> systemctl list-unit-files --type=service 
...
mongodb.service             enabled
...
Posted by: Guest on June-04-2020
0

Failed to enable unit: Unit file mongod.service does not exist.

> cd /lib/systemd/system
> sudo touch mongodb.service
> sudo nano mongodb.service
[Unit]
Description=An object/document-oriented database
Documentation=man:mongod(1)
After=network.target

[Service]
User=mongodb
Group=mongodb
ExecStart=/usr/bin/mongod --quiet --config /etc/mongodb.conf

[Install]
WantedBy=multi-user.target
Posted by: Guest on June-04-2020

Code answers related to "mongod.service does not exist"

Browse Popular Code Answers by Language