install mongodb locally ubuntu code example
Example 1: mongodb install in ubuntu
sudo apt update
sudo apt install -y mongodb
//checking service and db
sudo systemctl status mongodb
or service mongodb status
//start service
sudo systemctl start mongod
or service mongodb start
//stop service
sudo systemctl stop mongod or
service mongodb stop
Example 2: mongodb install ubuntu
follow the steps from the below link
https://docs.mongodb.com/manual/tutorial/install-mongodb-on-ubuntu/
Example 3: how to install mongodb in ubuntu
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
Example 4: how to install mongodb database in ubuntu version
> echo "deb http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.4.list