mongoDB Connection String URI Format¶

<connectionStrings>

<!--从PRIMARY库读取,会立即显示最新数据-->

<add name="PattayaDBConnection" connectionString="mongodb://username:[email protected],IP2,IP3,IP4/DBname?replicaSet=rs_main&amp;readPreference=primary" />

<!--从SECONDARY库读取-->

<add name="Pattaya.ProductMongoDbProvider.ProductDB" connectionString="mongodb://username:[email protected],IP2,IP3,IP4/DBname?replicaSet=rs_main&amp;readPreference=secondaryPreferred" />

<!--没有readPreference参数是只写,不用读-->

<add name="PattayaMallHistoryConnection" connectionString="mongodb://username:[email protected],IP2,IP3,IP4/DBname?replicaSet=rs_main" />

</connectionStrings>

注:在HTML中的&用&amp;来表示

时间: 2024-10-06 12:59:09

mongoDB Connection String URI Format¶的相关文章

pymongo.errors.OperationFailure: This MongoDB deployment does not support retryable writes. Please add retryWrites=false to your connection string.

This MongoDB deployment does not support retryable writes. Please add retryWrites=false to your connection string. 此MongoDB部署不支持可重试写入.请将retryWrites=false添加到连接字符串中. 如下设置即可client = MongoClient("192.168.52.131:27017", retryWrites="false")

ASP.NET MVC 5 - 创建连接字符串(Connection String)并使用SQL Server LocalDB

原文:ASP.NET MVC 5 - 创建连接字符串(Connection String)并使用SQL Server LocalDB 您创建的MovieDBContext类负责处理连接到数据库,并将Movie对象映射到数据库记录的任务中.你可能会问一个问题,如何指定它将连接到数据库? 实际上,确实没有指定要使用的数据库,Entity Framework将预设值使用的LocalDB. 在本节中,我们将显式地在Web.config文件中,添加应用程序的连接字符串(connection string)

转载 How to Encrypt connection string in web.config

转载原地址: https://chiragrdarji.wordpress.com/2008/08/11/how-to-encrypt-connection-string-in-webconfig/ The most sensitive information stored in web.config file can be the connection string. You do not want to disclose the information related to your dat

警惕使用WebClient.DownloadFile(string uri,string filePath)方法

原文:警惕使用WebClient.DownloadFile(string uri,string filePath)方法 WebClient.DownloadFile(string uri,string filePath)方法用来请求一个url,并将请求内容存到本地的一个文件中. 使用这个方法,如果filePath是一个已经存在的文件,如果DownloadFile的执行web请求的过程中发生了错误,则会删除掉filePath以前的内容.以下是验证代码,和另一种选择方案. class Program

js中String.prototype.format類似于.net中的string.formitz效果

String.prototype.format = function(args) { if (arguments.length>0) { var result = this; if (arguments.length == 1 && typeof (args) == "object") { for (var key in args) { var reg=new RegExp ("({"+key+"})","g&qu

[转]ASP.NET MVC 5 - 创建连接字符串(Connection String)并使用SQL Server LocalDB

您创建的MovieDBContext类负责处理连接到数据库,并将Movie对象映射到数据库记录的任务中.你可能会问一个问题,如何指定它将连接到数据库? 实际上,确实没有指定要使用的数据库,Entity Framework将预设值使用的LocalDB. 在本节中,我们将显式地在Web.config文件中,添加应用程序的连接字符串(connection string). SQL Server Express LocalDB LocalDB的是一个SQL Server Express轻量级版本的数据库

不支持的关键字:“provider connection string”报错信息及解决方案

今天在部署公司开发框架的时候 ,登录系统之后调用代办列表的时候就报错了 总线调用契约XX.Service.Contracts.IXXService上的GetXXCount方法时出错. Resolution of the dependency failed, type = "XX.Business.Definition.IXXLogic", name = "(none)".  Exception occurred while: Calling constructor 

#error Security Issue: The connection string may contain a password

“数据链接属性”对话框的“允许保存密码”功能存在安全问题.在“输入登录服务器的信息”中有两个单选按钮:“使用 Windows NT 集成安全性” 和“使用特定的用户名和密码”. 如果选择“使用特定的用户名和密码”,则可以选择保存密码(使用“允许保存密码”复选框):但此选项不安全.建议您选择“使用 Windows NT 集成安全性”:此选项使用 Windows NT 来验证标识. 如果无法使用 Windows NT 集成安全性,则应使用中间层应用程序来提示用户输入密码,或者将密码存储在安全的位置(

Entity Framework Connection String不保留密码的方法

添加Entity Data Model的时候,到最后一步,有两个radio box: 如果选择include sensitive data,虽然很方便,但是在web.config或者app.config文件的数据库链接字符串就会保留数据库的登陆密码. 如果选择不保留敏感信息,那么数据库连接字符串就会不保留密码,而我们需要在代码里面增加相关的信息. 举例子:如果创建的一个Entity Data Model名为ContactsEntities,那么,我们需要修改ContactsEntities类的构