pymongo.errors.OperationFailure: Authentication failed.
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pymongo.errors.OperationFailure: Authentication failed.相关的知识,希望对你有一定的参考价值。
参考技术A 在flask项目中连接mongodb后台报错:pymongo.errors.OperationFailure: Authentication failed.
连接方式为:
可能原因:外部连接mongodb的认证机制(authMechanism)采用的是SCRAM-SHA-1,但是项目中并未指定此认证机制。
解决办法:在项目中指定此认证机制。
在后面加上 ?authSource=admin&authMechanism=SCRAM-SHA-1 就可以解决了
参考自: https://blog.csdn.net/J_bean/article/details/79252185
以上是关于pymongo.errors.OperationFailure: Authentication failed.的主要内容,如果未能解决你的问题,请参考以下文章