i’ve strange issue.
i noticed i have many services with same service_id on database.
if i clear database, those can recreated with same service_id from services.cfg after export.
How or where can i clean it?


i’ve strange issue.
i noticed i have many services with same service_id on database.
if i clear database, those can recreated with same service_id from services.cfg after export.
How or where can i clean it?


Best answer by vcoum
That seems OK
If i assumed correctly your messages, the service with tyhe ID 6384” was named “Configuration”?
You can check in the database if “Configuration” is present at the ‘service’ table from centreon database with this SQL query
SELECT service_id,service_description FROM centreon.service WHERE service_description='Configuration';
#OR
SELECT service_id,service_description FROM centreon.service WHERE service_id='6384';Maybe something gone wrong when you deleted it from GUI
If it’s still present and if you want to remove it, remove it using the id
DELETE from centreon.service WHERE service_id='6384';And then, export the config on poller et check if the service is still present on services.cfg
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.