Để tạo môi trường sản xuất, nơi bạn cần sử dụng tên người dùng và mật khẩu để kết nối:
Trong bảng điều khiển mongo:
// 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)
Bây giờ, tất cả các kết nối đến mongodb của bạn sẽ yêu cầu xác thực - http:// www .mongodb.org / display / DOCS / Security + và + Authentication
Ngoài ra:bạn có thể xem xét việc sử dụng tường lửa linux của mình để chỉ cho phép 27017 từ (các) máy chủ web của bạn.