I want to install Mongo 3.2 on Ubuntu 15.10.
The official mongodb site gives steps up to 14.04.
On the other hand, using the normal ppa from Ubuntu uses the 2.6 version (which is kinda way too back).
Thanks to @Zacharee1, I got 3.2 of Mongo installed on Ubuntu 15.10. Below are the steps taken from LiberianGeek (changed just the version to match 3.2)
Add Key
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10
Add Sources List
echo "deb http://repo.mongodb.org/apt/ubuntu trusty/mongodb-org/3.2 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.2.list
Update your sources
sudo apt-get update
Install mongodb-org
sudo apt-get install mongodb-org
Check if working
sudo systemctl status mongod
If not working
sudo reboot
If still not working
At the time of writing this, I had Mongo 3.2.1.
No comments:
Post a Comment