Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

difference between mongodb and mongodb-server

Tags:

mongodb

ubuntu

When I am trying to install mongodb in my Ubuntu box, apt-get shows me the following options

mongodb mongodb-clients mongodb-dev mongodb-server

Can anyone please tell me the difference between mongodb and mongodb-server?

like image 488
thefourtheye Avatar asked Mar 29 '13 18:03

thefourtheye


People also ask

What is difference between MongoDB and MongoDB?

mongod is the "Mongo Daemon" it's basically the host process for the database. When you start. mongod you're basically saying "start the MongoDB process and run it in the background". mongod has several default parameters, such as storing data in /data/db and running on port 27017.

What is MongoDB Community server?

The Community version of our distributed database offers a flexible document data model along with support for ad-hoc queries, secondary indexing, and real-time aggregations to provide powerful ways to access and analyze your data.

Which is better MongoDB Atlas or MongoDB?

MongoDB has a broader approval, being mentioned in 2189 company stacks & 2225 developers stacks; compared to MongoDB Atlas, which is listed in 51 company stacks and 43 developer stacks.

Where is mongod?

By default, MongoDB listens for connections from clients on port 27017 , and stores data in the /data/db directory. On Windows, this path is on the drive from which you start MongoDB. For example, if you do not specify a --dbpath , starting a MongoDB server on the C:\ drive stores all data files in C:\data\db .


1 Answers

Package mongodb installs full set of packages - client, admin tools, development files, mongod (mongodb daemon) and mongos (shard routing service), while mongodb-server installs only mongod and mongos (and logs / docs).

like image 122
mrówa Avatar answered Sep 19 '22 06:09

mrówa