You should modify your config as tmcdonald suggested, and re-import the "_multtiple_hosts" config. You shouldn't import the "Solaris Base 10 infrastructure" as it is empty. The "_multtiple_hosts" config contains everything that you had in the original "Solaris Base 10 infrastructure" file after you ran the config import prep tool.
Code: Select all
define service {
host_name localhost
You may have a service added to multiple hosts, for example:
Code: Select all
define service {
host_name host1,host2,host3
service_description MyService
...
}
Here's an example of a service added to two hosts:
Code: Select all
define service {
host_name localhost,CentOS6-NRPE
service_description PING
...
}
If this config, the "PING" service is added to the "localhost" and "CentOS6-NRPE" hosts.
In your config you have:
Code: Select all
define service {
host_name localhost,_
service_description Internet Access - Reaching google.com
...
}
which means that the "Internet Access - Reaching google.com" service is added to two hosts - "localhost" and "_". Do you have a host named "_"? If you don't, you need to remove it from the config. I hope this makes sense.