I have my Graylog install running on https with a valid Digicert RapidSSL and as far as I can tell, its all working. My inputs are collecting, my Sidecars are harvertings/collecting yet the only error that I get is when I view system / nodes. my logs continually show
2021-09-28T00:42:02.199+01:00 WARN [ProxiedResource] Unable to call https://graylog.HOST:9000/api/system on node <ca5f4bcc-854f-42b3-92a5-8970fce503ab>: timeout
2021-09-28T00:42:12.271+01:00 WARN [ProxiedResource] Unable to call https://graylog.HOST:9000/api/system on node <ca5f4bcc-854f-42b3-92a5-8970fce503ab>: timeout
2021-09-28T00:42:22.209+01:00 WARN [ProxiedResource] Unable to call https://graylog.HOST:9000/api/system/metrics/multiple on node <ca5f4bcc-854f-42b3-92a5-8970fce503ab>: timeout
2021-09-28T00:42:32.271+01:00 WARN [ProxiedResource] Unable to call https://graylog.HOST:9000/api/system/metrics/multiple on node <ca5f4bcc-854f-42b3-92a5-8970fce503ab>: timeout
I believe that I have all my configuration correct
/etc/sysconfig/graylog-server
# Default Java options for heap and garbage collection.
GRAYLOG_SERVER_JAVA_OPTS="-Xms4g -Xmx4g -XX:NewRatio=1 -server -XX:+ResizeTLAB -XX:-OmitStackTraceInFastThrow -Djavax.net.ssl.trustStore=/etc/graylog/server/certificates/cacerts.jks -Djavax.net.ssl.trustStorePassword=changeit"
/etc/graylog/server/server.conf
http_bind_address = 192.168.16.22:9000
http_publish_uri = https://graylog.HOST:9000/
http_external_uri = https://graylog.HOST:9000/
http_enable_cors = true
http_enable_tls = true
http_tls_cert_file = /etc/graylog/server/certificates/cert.pem
http_tls_key_file = /etc/graylog/server/certificates/key.pem
elasticsearch_hosts = http://192.168.16.22:9200
other that the errors in the logs above, I do not see any other pointers that explain why I cannot access the system information.
any suggestion on what I should look for?