Mru*_*yee 8 python authentication mongodb
我正在参考http://api.mongodb.org/python/current/examples/authentication.html网站以获取身份验证机制示例.我创建了一个用户管理员并使用其凭据为我的"报告"数据库创建了一个用户.现在我需要使用用户名和密码通过pymongo访问相同的内容.我在python shell中尝试了以下命令.这是正确的方式,因为我的身份验证失败了.
from pymongo import MongoClient
client = MongoClient('localhost')
client.reporting.authenticate('reportsUser', '123456', mechanism='MONGODB-CR')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/pymongo/database.py", line 746, in authenticate
self.connection._cache_credentials(self.name, credentials)
File "/usr/lib/python2.7/dist-packages/pymongo/mongo_client.py", line 441, in _cache_credentials
auth.authenticate(credentials, sock_info, self.__simple_command)
File "/usr/lib/python2.7/dist-packages/pymongo/auth.py", line 214, in authenticate
auth_func(credentials[1:], sock_info, cmd_func)
File "/usr/lib/python2.7/dist-packages/pymongo/auth.py", line 194, in _authenticate_mongo_cr
cmd_func(sock_info, source, query)
File "/usr/lib/python2.7/dist-packages/pymongo/mongo_client.py", line 607, in __simple_command
helpers._check_command_response(response, None, msg)
File "/usr/lib/python2.7/dist-packages/pymongo/helpers.py", line 147, in _check_command_response
raise OperationFailure(msg % errmsg, code)
pymongo.errors.OperationFailure: command SON([('authenticate', 1), ('user', u'reportsUser'), ('nonce', u'f8158a24f1c61650'), ('key', u'14cea216c54b93bae20acd2e076bb785')]) failed: auth failed
Run Code Online (Sandbox Code Playgroud)
Ran*_*PhD 12
作为FYI,您也可以使用URI字符串格式.伪代码看起来像这样:
pymongo.MongoClient( '的mongodb://用户:密码@服务器:端口/')
这是一个带auth的简单连接代码块:
import pymongo
conn = pymongo.MongoClient('mongodb://root:pass@localhost:27017/')
db = conn['database']
coll = db['collection']
Run Code Online (Sandbox Code Playgroud)
这里有更多的查询字符串选项:http://docs.mongodb.org/manual/reference/connection-string/
希望有帮助=看起来你已经拥有它了.快乐的编码!!
只需在提供的解决方案中添加更多内容即可。
我一直使用 URI 连接字符串和作为 f 字符串提供的凭据,这有助于减少行数。需要注意的一件事是密码中的特殊字符,我们使用 urllib 包进行转换,如下所示。
import urllib.parse
from pymongo import MongoClient
host = "localhost"
port = 27017
user_name = "myuser"
pass_word = "Pass@123"
db_name = "mydb" # database name to authenticate
# if your password has '@' then you might need to escape hence we are using "urllib.parse.quote_plus()"
client = MongoClient(f'mongodb://{user_name}:{urllib.parse.quote_plus(pass_word)}@{host}:{port}/{db_name}')
Run Code Online (Sandbox Code Playgroud)