thefourtheye
thefourtheye

Reputation: 239683

difference between mongodb and mongodb-server

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?

Upvotes: 7

Views: 5162

Answers (1)

mrówa
mrówa

Reputation: 5781

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).

Upvotes: 14

Related Questions