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