how to install mongodb server in ubuntu

C++
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
sudo systemctl start mongod
sudo systemctl stop mongod sudo systemctl start mongodb
# it will starts mongodb serversudo apt install -y mongodb
# it will install mongodb server into linux system sudo mongod --fork --config /etc/mongod.conf
Source

Also in C++: