获取 MongoCommandException:命令失败,错误 18(AuthenticationFailed):“身份验证失败。”在服务器本地主机上:27017

Posted

技术标签:

【中文标题】获取 MongoCommandException:命令失败,错误 18(AuthenticationFailed):“身份验证失败。”在服务器本地主机上:27017【英文标题】:Getting MongoCommandException: Command failed with error 18 (AuthenticationFailed): 'Authentication failed.' on server localhost:27017 【发布时间】:2020-01-04 18:14:09 【问题描述】:

我想与在 docker 中运行的 MongoDB 数据库建立连接。应用程序似乎没有任何问题启动,但是当我尝试调用任何请求时,例如简单的 GET:

localhost:8082/devices

我收到两个不同的错误,具体取决于配置:

带属性:

spring.data.mongodb.authentication-database=admin
spring.data.mongodb.host=interviewTest
spring.data.mongodb.port=27017
spring.data.mongodb.username=mongoadmin
spring.data.mongodb.password=secret
server.port=8082
spring.data.mongodb.uri=mongodb://localhost:27017
spring.data.mongodb.database=interviewTest

我收到了:

com.mongodb.MongoQueryException: Query failed with error code 13 and error message 'command find requires authentication' on server localhost:27017

对于具有不同配置的 application.properties:

spring.data.mongodb.authentication-database=admin
spring.data.mongodb.port=27017
spring.data.mongodb.username=mongoadmin
spring.data.mongodb.password=secret
server.port=8082
spring.data.mongodb.database=interviewTest
spring.data.mongodb.uri=mongodb://mongoadmin:secret@localhost:27017/interviewTest?retryWrites=true&w=majority

com.mongodb.MongoCommandException: Command failed with error 18 (AuthenticationFailed): 'Authentication failed.' on server localhost:27017. The full response is  "ok" : 0.0, "errmsg" : "Authentication failed.", "code" : 18, "codeName" : "AuthenticationFailed" 

我创建了如下所示的 MongoDB docker 容器:

docker run -p 27017-27019:27017-27019 
--name mongo 
-e MONGO_INITDB_ROOT_USERNAME=mongoadmin 
-e MONGO_INITDB_ROOT_PASSWORD=secret 
-e MONGO_INITDB_DATABASE=interviewTest 
-d mongo

pom.xml

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.7.RELEASE</version>
    <relativePath/> <!-- lookup parent from repository -->
  </parent>
  <groupId>com.interview</groupId>
  <artifactId>exercise</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <name>device</name>
  <description>Spring boot with MongoDB</description>

  <properties>
    <java.version>11</java.version>
    <hibernate.version>5.4.0.Final</hibernate.version>
    <mapstruct.processor.version>1.3.0.Final</mapstruct.processor.version>
    <mapstruct.version>1.3.0.Final</mapstruct.version>
    <spring.cloud.starter.netflix.hystrix.version>2.1.2.RELEASE</spring.cloud.starter.netflix.hystrix.version>
    <apache.common.lang.version>3.0</apache.common.lang.version>
  </properties>

  <dependencies>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>junit</groupId>
          <artifactId>junit</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.hamcrest</groupId>
          <artifactId>hamcrest-core</artifactId>
        </exclusion>
        <exclusion>
          <groupId>org.hamcrest</groupId>
          <artifactId>hamcrest-library</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>2.1</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>2.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-data-mongodb</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
    </dependency>

    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.hibernate.ogm</groupId>
      <artifactId>hibernate-ogm-mongodb</artifactId>
      <version>$hibernate.version</version>
    </dependency>

    <dependency>
      <groupId>org.mapstruct</groupId>
      <artifactId>mapstruct-processor</artifactId>
      <version>$mapstruct.version</version>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>org.mapstruct</groupId>
      <artifactId>mapstruct</artifactId>
      <version>$mapstruct.version</version>
    </dependency>

    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
      <version>$apache.common.lang.version</version>
    </dependency>

    <dependency>
      <groupId>org.springframework.cloud</groupId>
      <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
      <version>$spring.cloud.starter.netflix.hystrix.version</version>
    </dependency>

    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-params</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
      <version>5.3.2</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-engine</artifactId>
      <version>5.3.2</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>de.flapdoodle.embed</groupId>
      <artifactId>de.flapdoodle.embed.mongo</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.mongodb</groupId>
      <artifactId>mongo-java-driver</artifactId>
      <version>3.11.0</version>
    </dependency>

  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.8.0</version>

        <dependencies>
          <dependency>
            <groupId>org.junit.platform</groupId>
            <artifactId>junit-platform-surefire-provider</artifactId>
            <version>1.1.0</version>
          </dependency>
          <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter-engine</artifactId>
            <version>5.1.0</version>
          </dependency>
        </dependencies>

        <configuration>
          <source>11</source>
          <target>11</target>
          <annotationProcessorPaths>
            <path>
              <groupId>org.mapstruct</groupId>
              <artifactId>mapstruct-processor</artifactId>
              <version>$mapstruct.processor.version</version>
            </path>
            <path>
              <groupId>org.projectlombok</groupId>
              <artifactId>lombok</artifactId>
              <version>1.18.6</version>
            </path>
          </annotationProcessorPaths>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-maven-plugin</artifactId>
      </plugin>
    </plugins>
    <finalName>spring-boot-device-docker</finalName>
  </build>

</project>

在 docker hub 文档中,我发现了类似的内容:

MONGO_INITDB_ROOT_USERNAME, MONGO_INITDB_ROOT_PASSWORD
These variables, used in conjunction, create a new user and set that user's password. This user is created in the admin authentication database and given the role of root, which is a "superuser" role.

所以,如果我得到它,我的基本用户 mongoadmin 的角色就没有问题。

我试图组合多个配置选项,但没有产生理想的效果。 我将不胜感激有关如何通过 MongoDB 配置和连接建立来解决该问题的建议。

【问题讨论】:

您需要为interviewTest db 手动创建用户,因为运行docker mongo,它会为admin db 创建用户。或者,你可以试试this @Valijon 非常感谢你,经过巨大的努力,我能够将新用户添加到数据库中,现在一切正常。向你鞠躬。 【参考方案1】:

这对我有用:

spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017
spring.data.mongodb.username=root
spring.data.mongodb.password=secret

【讨论】:

spring.data.mongodb.authentication-database=admin spring.data.mongodb.host=localhost spring.data.mongodb.port=27017 spring.data.mongodb.username=mongoadmin spring.data.mongodb.password=secret server.port=8082 spring.data.mongodb.database=interviewTest spring.data.mongodb.uri=mongodb://mongoadmin:secret@localhost:27017/interviewTest?retryWrites=true&amp;w=majority 这样配置的 application.properties 我仍然收到错误 18 请不要加spring.data.mongodb.uri 感谢您的回复。我检查了没有 URI 的选项,并且产生了相同的错误。最后,问题出在我们必须创建的用户上,因为 ROOT_USERNAME 只能用于管理数据库和创建数据库或其他具有权限的用户。我在 docker 容器运行后自己添加了一个用户,现在一切都很好。【参考方案2】:

我找到了一个支持@Valijon 的解决方案。原来我们不能使用 ROOT_USERNAME 来读取数据库。我们的 root 用户可用于创建新的数据库、集合和新用户。解决方案非常简单。我们应该使用以下命令打开我们的 docker

docker exec -it mongo bash

并标记-it,这意味着它将是一个交互式终端,毕竟,我们将能够与我们的容器交谈。 毕竟,我们正在使用这样的 mongo 命令来使用 root 管理员凭据建立身份验证。

mongo -u mongoadmin

在下一个命令行中,我们正在传递密码。

毕竟我们使用的是命令:

use interviewTest

选择数据库,我们将在其中添加自定义用户。

现在我们可以输入已经准备好的带有自定义密码、用户名和角色的脚本:

db.createUser(user: "testUser", pwd: "pwd", roles : [role: "readWrite", db: "interviewTest"]);

现在一切正常,我们可以使用我们的数据库而不会出现身份验证错误。

【讨论】:

在某些情况下您可能需要角色“dbOwner”。我的 Spring Boot 应用程序需要这个 我试过了,还是出现同样的错误? :// 终于用Can’t connect to mongod with the newly created user找到了解决方案。首先不要使用use interviewTest 创建新用户。而是尝试使用命令use admin。它有效!!!【参考方案3】:

如果您使用admin 作为用户,那么您不需要提供密码,以下属性对我来说很好:

spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017
spring.data.mongodb.username=admin
spring.data.mongodb.database=mydb

【讨论】:

以上是关于获取 MongoCommandException:命令失败,错误 18(AuthenticationFailed):“身份验证失败。”在服务器本地主机上:27017的主要内容,如果未能解决你的问题,请参考以下文章

iOS ---------- 获取设备的各种信息

java反射获取属性值

Shell 获取路径

iOS 获取文件大小

根据日期字符串获取星期几,日期获取星期,时间获取星期,js获取星期

js如何获取时间点?