MongoDB Atlas giver dig en MongoDB Connection URI . Forbindelsesstrengen skal indeholde værtsoplysninger.
Du kan også se et uddrag af MongoDB Node.js, der forbinder til MongoDB Atlas i manualen MongoDB Atlas:Node.js Driver Eksempel
MongoClientURI uri = new MongoClientURI(
"mongodb+srv://user:[email protected]/");
MongoClient mongoClient = new MongoClient(uri);
MongoDatabase database = mongoClient.getDatabase("databaseName");
MongoDB version 3.4 og tidligere:
var MongoClient =require('mongodb'). MongoClient;
var uri = "mongodb://user:[email protected]:27017,mycluster0-shard-00-01.mongodb.net:27017,mycluster0-shard-00-02.mongodb.net:27017/admin?ssl=true&replicaSet=Mycluster0-shard-0&authSource=admin";
MongoClient.connect(uri, function(err, db) {
db.close();
});
For andre drivere, se venligst MongoDB Atlas:Connect via Driver