Hello
Can you help me to soluce my problem ?
I have two server in this configuration :
server A => graylog 6.3.1 / mongodb 6.0.24
server B => opensearch 2.15.0
They work good. but they are unsecured.
I want to secure them step by step.
I begun to pass my graylog in https with a no self-signed certificate.
I can connect to graylog on https://mygraylog.mydomain.fr:9000 but when I go in the menu “Search”, I have this error
"Error!
Executing search failed: SyntaxError: Unexpected token 'N', "None of th"... is not valid JSON"
On server A, curl -k http://IpserverB:9200, I have a good JSON response :
{
"name" : "node-1",
"cluster_name" : "graylog",
"cluster_uuid" : "ngiCNCv0T96nQfxTlGCRuA",
"version" : {
"distribution" : "opensearch",
"number" : "2.15.0",
"build_type" : "deb",
"build_hash" : "61dbcd0795c9bfe9b81e5762175414bc38bbcadf",
"build_date" : "2024-06-20T03:27:12.329408119Z",
"build_snapshot" : false,
"lucene_version" : "9.10.0",
"minimum_wire_compatibility_version" : "7.10.0",
"minimum_index_compatibility_version" : "7.0.0"
},
"tagline" : "The OpenSearch Project: https://opensearch.org/"
}
On my server A (graylog+mongodb), I have this warning in /var/log/graylog-server/server.log :
2025-07-11T08:29:48.820Z WARN [ProxiedResource] Failed to call API on node <fac11443-3d9d-4c65-80ed-69d3e345edb7>, cause: None of the TrustManagers trust this certificate chain. (duration: 6 ms)
Thank you.
Yann