Skip to content

Instantly share code, notes, and snippets.

@mattcollier
Forked from sgnn7/enable_mongo.sh
Last active October 5, 2017 00:45
Show Gist options
  • Save mattcollier/f4eebff1937b37b585519c0944817553 to your computer and use it in GitHub Desktop.
Save mattcollier/f4eebff1937b37b585519c0944817553 to your computer and use it in GitHub Desktop.
Mongodb 3.2 on Ubuntu 15.10
echo '[Unit]
Description=High-performance, schema-free document-oriented database
After=syslog.target network.target
[Service]
LimitNOFILE=infinity
LimitNPROC=infinity
User=mongodb
Group=mongodb
ExecStart=/usr/bin/mongod -f /etc/mongod.conf
[Install]
WantedBy=multi-user.target' > /lib/systemd/system/mongod.service
# Setup the required directories
mkdir -p /var/run/mongodb/
mkdir -p /var/log/mongodb/
mkdir -p /var/lib/mongodb/
mkdir -p /data/db/
chown mongodb:mongodb /var/run/mongodb/
chown mongodb:mongodb /var/log/mongodb/
chown mongodb:mongodb /var/lib/mongodb/
chown mongodb:mongodb /data/db
chmod 0755 /var/log/mongodb/
chmod 0755 /var/run/mongodb/
chmod 0755 /var/lib/mongodb/
chmod 0755 /data/db/
# Start the new service and enable it on boot
systemctl --system daemon-reload
systemctl enable mongod.service
echo "Starting"
systemctl start mongod.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment