ubuntu start mongodb on boot code example
Example 1: how to start mongodb server in ubuntu
sudo systemctl start mongodb
# it will starts mongodb server
Example 2: ubuntu start mongodb
sudo mongod --fork --config /etc/mongod.conf
sudo systemctl start mongodb
# it will starts mongodb server
sudo mongod --fork --config /etc/mongod.conf