October 2017
Intermediate to advanced
458 pages
11h 13m
English
Let's start with installing MongoDB, so we can be done with that. Luckily, the documentation on installing MongoDB on Ubuntu is pretty spot on (https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/):
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.listsudo apt-get updatesudo apt-get install -y mongodb-org
The first command, sudo apt-key, is used to manage package keys. Keys authenticate packages and packages that are authenticated with a key are considered trusted. The adv switch allows for advanced options. With ...
Read now
Unlock full access