Sådan oprettes et produktionsmiljø, hvor du skal bruge et brugernavn og en adgangskode for at oprette forbindelse:
I mongo-konsollen:
// 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 vil alle forbindelser til din mongodb kræve godkendelse -- http://www .mongodb.org/display/DOCS/Security+and+Authentication
Du kan også overveje at bruge din linux firewall til kun at tillade 27017 fra din(e) webserver(e).