mongoDB MMS バックアップ機能を使用しようとしています。ウィザードの [ホストの追加] 部分で接続しようとすると、次のエラーが表示されます。
チェック間隔内にホストを検出できません。
Windows 7 ラップトップに MongoDB 2.6.4 があります。次の権限を持つ管理者ユーザーを作成しました。
> db.createUser(
... {
... user: "admin",
... pwd: "xxx"
... roles: [
... "clusterAdmin",
... "readAnyDatabase",
... "dbAdminAnyDatabase",
... "userAdminAnyDatabase"
... ]
... }
... );
私は走りmongod --auth
ます。
ここで、MONGODB-CR Auth メカニズムを使用して MMS 経由で接続しようとすると、上記のエラーが発生します。
ログには、次のような多くのエラーが表示されます。
[2014/10/21 09:13:59] [monitoring.info] [monitoring-agent/components/agent.go:551]
Starting 2 marshal handlers
[2014/10/21 09:14:21] [monitoring.error] [monitoring-agent/components/agent.go:314]
Failed to fetch Conf
Failure getting conf. Op: Get Err: dial tcp [I've hide the IP]:443: ConnectEx tcp:
A connection attempt failed because the connected party did not properly respond after
a period of time, or established connection failed because connected host has failed
to respond.
at monitoring-agent/components/conf.go:249
at monitoring-agent/components/agent.go:312
at mongodb.com/monitoring-agent/monitoring-agent-service.go:129
at winsvc/svc/service.go:200
at pkg/runtime/proc.c:1445
Robomongo 0.8.4 クライアントを使用すると、ユーザーとパスを使用してログインできました。
MMS をローカル マシンに接続して、マシン上のデータベースのバックアップを初期化できるようにしたいと考えています。
前もって感謝します。