Om een productieomgeving te creëren waarin u een gebruikersnaam en wachtwoord moet gebruiken om verbinding te maken:
In de mongo-console:
// Add an Admin User (to the admin db)
use admin
db.addUser("theadmin", "anadminpassword")
// Use your database
use supercool
// Add a user (to your database)
db.addUser("joe", "passwordForJoe")
// show all users:
db.system.users.find()
// add readonly user (kinda cool)
db.addUser("readonly", "passwordForJoe", true)
Nu is voor alle verbindingen met uw mongodb authenticatie vereist -- http://www .mongodb.org/display/DOCS/Security+and+Authentication
Ook:u kunt overwegen uw linux-firewall te gebruiken om alleen 27017 van uw webserver(s) toe te staan.