February 2020
Intermediate to advanced
404 pages
8h 42m
English
MongoDB can be easily installed on any platform. On Ubuntu 18.04, we need to perform some steps before running the apt-get command:
sudo apt-get updatesudo apt-get install -y mongodb
Once you've installed it, check whether the mongo process is running. If not, you can start the MongoDB daemon using the following command:
systemctl start mongod
If the user is root, you can drop the sudo keyword before each command.
Read now
Unlock full access