[MongoDB] The Access control of mongodb, mongodbaccess

Source: Internet
Author: User
Tags mongodb server

[MongoDB] The Access control of mongodb, mongodbaccess

In this blog we mainly talk about the access control including limitation of ip, setting listen port and usage of username and password. in the official document, mongodb server start without the argument, so once the connection was created, the remote client cocould do everything. but in the productive environment it's advisable to take security into consideration and to enhance the security protection. for the sake of lowing the potential risk, the above measures cocould be taken to deal with these problems.
First, Binding IP address to access MongoDB.
Mongodb cocould put restriction on the ip address thought argument 'Bind _ ip' when being started. For example, now we only limit ip address [192.168.55.165] to access the server.





Secondly, use the certain port




Thirdly, add user and password





The company is preparing to use the mongodb database. I have checked a lot of information about mongodb usage problems and the mongodb cost problems.

Mongodb is free of charge

I am new to mongodb. How can I use java to perform multi-condition queries on mongodb databases?

Package maven. demo. test;

Import java. util. ArrayList;
Import java. util. List;

Import com. mongodb. BasicDBObject;
Import com. mongodb. DB;
Import com. mongodb. DBCollection;
Import com. mongodb. DBObject;
Import com. mongodb. Mongo;
Import com. mongodb. QueryOperators;

Public class MongoDB {
Private static void print (String str ){
System. out. println (str );
}
Public static void main (String [] args ){
Try {
// Create a connection
Mongo m = new Mongo ("127.0.0.1", 27017 );
// Obtain the database
DB db = m. getDB ("test ");
// Obtain all databases
// List <String> colls = m. getDatabaseNames ();
// For (String str: colls ){
// System. out. println (str );
//}

//// Obtain all the sets (tables)
// For (String collection: db. getCollectionNames ()){
// System. out. println (collection );
//}

// Delete a database
// M. dropDatabase ("sun ");

// Obtain the sun table
DBCollection coll = db. getCollection ("things ");

// View the index of a table
// For (DBObject index: coll. getIndexInfo ()){
// System. out. println (index );
//}

// DBObject myDoc = coll. findOne ();
// System. out. println (myDoc );

// Add
// BasicDBObject doc = new BasicDBObject ();
// Doc. put ("name", "sunshan ");
// Doc. put ("sex", "male ");
// Doc. put ("age", 22 );
// Coll. insert (doc); ...... the remaining full text>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.