I am planning to install mongodb and the windows service which is connecting to it to the same machine. That machine will be in isolated network.

When we do it like that. Is it ok to connect local mongodb passwordless?

My planned properties will be like this...

private MongoDatabase _db;
public MongoDatabase DB
{
    get
    {
        if (_db == null)
        {
            var mongoServer = MongoServer.Create();
            _db = mongoServer.GetDatabase("myStatistics");
        }
        return _db;
    }
}

private MongoCollection _collection;
public MongoCollection Collection
{
    get { return _collection ?? (_collection = DB.GetCollection("myStats")); }
}
link|improve this question

78% accept rate
feedback

4 Answers

up vote 2 down vote accepted

There are two options:

  1. Password-less in trusted environment
  2. Password protected

It's okay to use MongoDB with auth disabled in trusted network. MongoDb developers recommend running the database in trusted environment rather than focusing on auth options.

link|improve this answer
feedback

Same machine, isolated network. I'd say yes. I do the same with the system I work on. Only issue is if there are other computers connected to the network, that are also connected to the internet, and might not be secure (no anti-virus, firewall, etc).

link|improve this answer
feedback

To me, the question is, what do you gain from running it password-less?

Even if you are running in a trusted environment, does it really cost that much to use a password? While the trusted environment should not be breached, nothing is completely safe and by adding the password, you are adding an additional layer of defense. So if somebody breaches your server they shouldn't automatically have access to the database.

For the same reason you would encrypt/hash user passwords when they are stored in the database. If somebody breaches your server, they don't automatically gain access to everything.

This approach is called defense in depth.

link|improve this answer
I want it password-less because it is just a statistic service ... I understand your concern. If some one can reach my machine he/she should be easily see that stats. – Serdar Buyuktemiz Nov 21 '11 at 10:25
feedback

If your system is isolated that yes you can do it. but think in term future picture of your project.Later you might need to users with restricted access ,You might need user roles ,and if you do which is highly possible ,than its better to start thinking in that direction and start using authentication. This will also add one more layer to the security of your db with out costing much.

link|improve this answer
your point is right. but in my situation I will rewrite the app. I want to do it password-less... – Serdar Buyuktemiz Nov 21 '11 at 15:15
in that case ,you can do whatever you want to do. but if you are doing some poc or if you are just learning this tool than its better to use authentication as in production mode you have to use it. – gsagrawal Nov 22 '11 at 7:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.