Created
December 22, 2015 23:06
-
-
Save sgnn7/54146c8a13c8b5ca2201 to your computer and use it in GitHub Desktop.
Mongodb 3.2 on Ubuntu 15.10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo '[Unit] | |
Description=High-performance, schema-free document-oriented database | |
After=syslog.target network.target | |
[Service] | |
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 |
Had to add Type=forking
to the service section - but also now have 3.2 on 16.04
👍 You are a god.
Failed to start mongod.service: Unit mongod.service is not loaded properly: Invalid argument.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Finally mongodb 3.2 is running on ubuntu 16.04!! Thank you so much :)