We have
Grafana 9.3.0
OEM 13.5.0.10
Setup is completed until creating a OEM Datasource in Grafana.
When I create datasource with https:// result is: “Bad Gateway”.
I assume the Bad Gateway result is due to us using a self-issued certificate on OEM server. Where on Grafana side do I need to put our OEM self-issued certificate so Grafana-OEM communication works?
When I create datasource with http:// result is:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>403 Forbidden</title> </head><body> <h1>Forbidden</h1> <p>You don't have permission to access /em/websvcs/restful/grafana/v1/ on this server.<br /> </p> </body></html>
When trying to troubleshoot the http:// error above:
from OEM bash: curl -v -X GET -u testuser 'http://localhost:7788/em/websvcs/restful/grafana/v1/'
results in: …"HTTP/1.1 405 Method Not Allowed"…
from Grafana bash: curl -v -X GET -u testuser 'http://oem.host.name.com:7788/em/websvcs/restful/grafana/v1/'
results in: …<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /em/websvcs/restful/grafana/v1/
on this server.<br />
</p>…
emoms.trc has no entries related to my testing.
should I use another curl for testing?/Due to above results I assume OEM server iptables or OEM webserver block my traffic. Where can I fix that?