web-dev-qa-db-ja.com

Spring Bootアプリを介してmongodbにアクセスするときの認証エラー

Javaスプリングブートアプリケーションからリモートmongodbに接続するときに問題があります。MongoDBサーバーにはファイアウォールが設定されていないため、別のマシンからリモートでmongoに接続できます。コレクションとユーザーが設定しました。ユーザーの資格情報を使用してJavaアプリからデータベースに接続しようとすると、例外が発生します。

com.mongodb.MongoSecurityException: Exception authenticating MongoCredential{mechanism=null, userName='sokrates', source='homeControl', password=<hidden>, mechanismProperties={}}
at com.mongodb.connection.SaslAuthenticator.authenticate(SaslAuthenticator.Java:61) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.DefaultAuthenticator.authenticate(DefaultAuthenticator.Java:32) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.InternalStreamConnectionInitializer.authenticateAll(InternalStreamConnectionInitializer.Java:99) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.InternalStreamConnectionInitializer.initialize(InternalStreamConnectionInitializer.Java:44) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.InternalStreamConnection.open(InternalStreamConnection.Java:115) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.DefaultServerMonitor$ServerMonitorRunnable.run(DefaultServerMonitor.Java:128) ~[mongodb-driver-core-3.2.2.jar:na]
at Java.lang.Thread.run(Thread.Java:745) [na:1.8.0_92]
Caused by: com.mongodb.MongoCommandException: Command failed with error 18: 'Authentication failed.' on server localhost:27017. The full response is { "ok" : 0.0, "code" : 18, "errmsg" : "Authentication failed." }
at com.mongodb.connection.CommandHelper.createCommandFailureException(CommandHelper.Java:170) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.CommandHelper.receiveCommandResult(CommandHelper.Java:123) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.CommandHelper.executeCommand(CommandHelper.Java:32) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.SaslAuthenticator.sendSaslStart(SaslAuthenticator.Java:95) ~[mongodb-driver-core-3.2.2.jar:na]
at com.mongodb.connection.SaslAuthenticator.authenticate(SaslAuthenticator.Java:45) ~[mongodb-driver-core-3.2.2.jar:na]
... 6 common frames omitted

同じセットアップ、データベース、コレクション、ユーザーを使用して、同じコードを使用してローカルMongoDBに接続すると、すべて問題ありません。

Mongoのインストールで管理ユーザーを設定するときに少し問題がありました。また、ローカルmongoはOSXで実行されますが、プロダクションmongo(認証に失敗)はUbuntu Server 16.04で実行されます。私は他のMongoDB認証スレッドを2日間調査してきましたが、この問題を解決できるものはありませんでした。これに関するどんな助けでもありがたいです:-)

おかげで、

ステファン

15
IndyStef

問題が見つかりました。このスレッドを完全にするために、コードを含めて答えを共有します。問題は、アプリケーションプロパティspring.data.mongodb.uriを誤って使用したことです。URIにユーザー名とパスワードがありませんでした。誤ってspring.data.mongodb.usernameとspring.data.mongodb.passwordそれをカバーしました。したがって、ユーザー名とパスワードでURIを使用するか、ホストとデータベース(および場合によってはポート)のSpringプロパティを明示的に使用します。これがコードです。 mongoDBをサポートするSpring Bootアプリで動作します(initializrまたはIntelliJを使用してプロジェクトを作成します)。私はモデルを持っています:

package net.IndyStef.model;

import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.mapping.Document;

@Document(collection = "person")
public class Person {

@Id
private String id;

private String name;
private Integer age;

public Person() {
}

public Person(String id) {
    this.id = id;
}

public Person(String id, String name, Integer age) {
    this.id = id;
    this.name = name;
    this.age = age;
}

... getters/setters omitted for breverity ...
}

データはリポジトリを通じて読み書きされます。

package net.IndyStef.repository;

import net.okrongli.model.Person;
import org.springframework.data.mongodb.repository.MongoRepository;

/**
 * Created by IndyStef on 23/08/16.
 */
public interface PersonRepository extends MongoRepository<Person, String> {
}

データベース名、ホスト、および資格情報は、application.propertiesファイルにあります。

spring.data.mongodb.Host=192.168.1.90
spring.data.mongodb.database=people
spring.data.mongodb.username=user
spring.data.mongodb.password=password
#spring.data.mongodb.uri=mongodb://192.168.1.90/people

重要なのは、URIとデータベースおよびユーザー名を混在させないことです。 uriを使用する場合は、次のようにユーザー名とパスワードを含める必要があります。

spring.data.mongodb.uri=mongodb://user:[email protected]/people

これをテストするために、簡単なSpringコマンドラインランナーを使用しました。

package net.IndyStef;

import net.IndyStef.model.Person;
import net.IndyStef.repository.PersonRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

import Java.util.List;

@SpringBootApplication
public class MongoDbTestApplication implements CommandLineRunner {

    public static void main(String[] args) {
        SpringApplication.run(MongoDbTestApplication.class, args);
    }

    @Autowired
    private PersonRepository repository;

    @Override
    public void run(String... args) {

        repository.save(new Person("peter.pan", "Peter Pan", 865));

        List<Person> people = repository.findAll();

        for (Person person: people) {
            System.out.println(person);
        }
    }
}

この説明が、数日間私自身のように、それを理解できなかった他の人に役立つことを願っています。

おかげで、

ステファン

21
IndyStef

Spring Boot 1.5.15以降、次の行をapplication.propertiesファイルに追加できます。

spring.data.mongodb.uri=mongodb://username:password@localhost:27017/?authSource=admin&authMechanism=SCRAM-SHA-1
spring.data.mongodb.database=mycollection
6
Sam

これは、そのとき私のために働いたものです:

spring.data.mongodb.uri=mongodb://user:password@******.mongodb.net:27017/dbname?ssl=true&authSource=admin&authMechanism=SCRAM-SHA-1

追加しなければならなかったssl=true、それ以外の場合はエラーが発生しました:

com.mongodb.MongoSocketReadException:途中でストリームの終わりに達した

5
Sharan Toor