1

After setting a cluster with 3 shards, 3 config server with 2 mongos.

enter image description here

I see these errors in the monitoring agents Failure during discovery.

What do they mean I tried to see it on the internet but no luck. enter image description here

sairavula
  • 31
  • 5

2 Answers2

1

The answer came in with adding a documents into the seetings collection inside the config database.

syntax:

use config

show collections

db.settings.insert({ "_id" : "chunksize", "value" : NumberLong(64) })

db.setting.find()           ---#to check

This worked for me.

LowlyDBA - John M
  • 11,059
  • 11
  • 45
  • 63
sairavula
  • 31
  • 5
0

From those error messages, I can see that there is "name resolution" problem. Like dcixcfitrmdbs03.dcicloud.local what points to "localhost" address obviously.

JJussi
  • 5,873
  • 1
  • 18
  • 19