Command failed with error 18 (AuthenticationFailed): ‘Authentication failed.’
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Command failed with error 18 (AuthenticationFailed): ‘Authentication failed.’相关的知识,希望对你有一定的参考价值。
参考技术A 先说原因https://blog.csdn.net/qq_35893120/article/details/100142232/
语法:
db.createUser(user, writeConcern)
user这个文档创建关于用户的身份认证和访问信息;
writeConcern这个文档描述保证MongoDB提供写操作的成功报告。
· user文档,定义了用户的以下形式:
user: "<name>",
pwd: "<cleartext password>",
customData: <any information> ,
roles: [
role: "<role>", db: "<database>" | "<role>",
...
]
user文档字段介绍:
user字段,为新用户的名字;
pwd字段,用户的密码;
cusomData字段,为任意内容,例如可以为用户全名介绍;
roles字段,指定用户的角色,可以用一个空数组给新用户设定空角色;
在roles字段,可以指定内置角色和用户定义的角色。
centos error: command 'gcc' failed with exit status 1
原文连接http://blog.csdn.net/fenglifeng1987/article/details/38057193
用安装Python模块出现error: command ‘gcc‘ failed with exit status 1 ,明明装了gcc的,怎么会不行呢,然后发觉是failed不是not found,这说明这个错误个gcc没多大关系,应该是缺少某些功能模块,然后谷歌了一下,先后安装了python-devel,libffi-devel后还是不行,最后发觉要安装openssl-devel才行
可如下命令行安装:
yum install gcc libffi-devel python-devel openssl-devel
以上是关于Command failed with error 18 (AuthenticationFailed): ‘Authentication failed.’的主要内容,如果未能解决你的问题,请参考以下文章
docker 中的 Python 错误 - distutils.errors.CompileError: command 'gcc' failed with exit status 1
error: command 'gcc' failed with exit status 1
centos error: command 'gcc' failed with exit status 1
centos error: command 'gcc' failed with exit status 1 错误
springboot连接mongodb报UncategorizedMongoDbException: Command failed with error 13 (Unauthorized)解决方法