Here we explain how to install MongoDB in a stand-alone configuration on Ubuntu and Mac. Setting up a cluster is significantly more complicated. So we will explain that in another post.
Install MongoDB on Ubuntu
Download a free 14 days trial of Navicat for MongoDB and try the latest features in Navicat version 15. Navicat Download Navicat for MongoDB 14-day trial versions for Windows, macOS and Linux Products. To auto start yor installed mongoDB, create a launchd job on your Mac OS. $ sudo vim / Library / LaunchDaemons / mongodb.plist And add the following content to “ /Library/LaunchDaemons/mongodb.plist”
MongoDB comes in Free (Community), paid (Enterprise), and cloud (Atlas) editions. It’s not easy to find the free download on their landing page, but here it is.
If you are using Ubuntu, you don’t need the download. Just run these steps to update the code repository then use apt-get to install the product.
The configuration file is /etc/mongod. It’s not necessary to change anything for a single-cluster installation.
Now start the service. The d in mongod means daemon.
Look in the log to verify that it is running and look for any possible errors.
Then open the shell.
Create a database. Just using the word use creates the database.
Install MongoDB on Mac
Here we install MongoDB on Mac. Go to this web page and fill out the version information to download MongoDB.
Update the path and make a data directory.

Start the daemon, telling it where to find the database. There will be no log files, so look at stdout (i.e., the screen where you started it) for errors. With the Mac installation, there is no configuration file either as you can pass configuration options on the command line, which you can also do on Ubuntu and other platforms. Or you could create a configuration file and tell the daemon to use that.
Create a Database and add some data:
Create a collection. A collection is a group of documents, like a table in a regular RDBMS database. Notice that the use statement makes the db object come into scope, so you can use that for subsequent operations.

MongoDB stores documents in JSON format. So you can add any JSON. But as we will see below, you still need to tell it what fields you want to index.
Create an index. The -1 means descending order.
Add a data record:
In this post we will see How to install MongoDB on Mac OS X. MongoDB is one of the most used, open-source document database, and NoSQL database. MongoDB is developed by 10gen.
STEP 1 – Downloading MongoDB .tgz file
Visit MongoDB official website and download the .tgz file from the community section of the website.
Now extract the downloded .tgz and mv the mongo directory to /usr/local/mongodb directory using following command in terminal.
Mac Mongodb Install
2 4 | $whoami $sudo chowncodebind/data/db |
STEP 3 – Set mongodb/bin PATH to ~/.bash_profile
Now we need to set the envirent variable for MongoDb, So the mongo and mongod command can be recognized from the terminal.
For that we need to add the mongodb/bin path to the ~/.bash_profile file.
Now restart your terminal and verify the mongodb version by following commands
2 | MongoDB shell version:3.6.1 |
STEP 4 – Start MongoDB
In order to work with mongodb we need to first run the mongod command which starts the mongo daemon .
So open two different terminals.
Now in
Mac Mongodb Start
terminal 1
run the following command
