mongo.authenticate(rmongodb)
mongo.authenticate()所属R语言包:rmongodb
Autherticate a user and password
Autherticate一个用户名和密码
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Autherticate a user and password against a given database on a MongoDB server.
Autherticate MongoDB服务器对给定数据库上的一个用户名和密码。
See http://www.mongodb.org/display/DOCS/Security+and+Authentication.
请参阅http://www.mongodb.org/display/DOCS/Security+and+Authentication。
Note that mongo.create() can authenticate a username and password before returning a connected mongo object.
需要注意的是mongo.create()可以验证用户名和密码,然后返回一个连接的蒙戈对象。
用法----------Usage----------
mongo.authenticate(mongo, username, password, db="admin")
参数----------Arguments----------
参数:mongo
(mongo) a mongo connection object.
(蒙戈)蒙戈的连接对象。
参数:username
(string) username to authenticate.
(字符串)的用户名进行身份验证。
参数:password
(string) password corresponding to username.
(字符串)相应的用户名密码。
参数:db
(string) The database on the server against which to validate the username and password.
(字符串)服务器上的数据库来验证用户名和密码。
参见----------See Also----------
mongo.add.user,<br> mongo,<br> mongo.create.
mongo.add.user,蒙戈参考,参考mongo.create。
实例----------Examples----------
mongo <- mongo.create()
if (mongo.is.connected(mongo))
mongo.authenticate(mongo, "Joe", "ZxYaBc217")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|