Problem description

The nodes listed in graylog.example.org/system/nodes is populating the same 
information.


Steps to reproduce the problem

Basic setup and configuration following doc.graylog.org using apache httpd.

*/etc/graylog/server/server.conf*
# REST interface
rest_listen_uri = http://127.0.0.1:12900
#rest_transport_uri = http://graylog.example.org:80

# Web interface
web_enable = true
web_listen_uri = http://127.0.0.1:9000
web_endpoint_uri = http://graylog.example.org:12900

apache graylog.conf
<VirtualHost *:80>
    ServerName graylog.example.org
    ProxyRequests Off
    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>
    <Location /api/>
        ProxyPass http://127.0.0.1:12900/
        ProxyPassReverse http://127.0.0.1:12900/
    </Location>
    <Location />
        RequestHeader set X-Graylog-Server-URL "http://graylog.example.org/api/";
        ProxyPass http://127.0.0.1:9000/
        ProxyPassReverse http://127.0.0.1:9000/
    </Location></VirtualHost>

Environment

   - Graylog Version: 2.0.3
   - Elasticsearch Version: 2.2.0
   - MongoDB Version: 3.2.6
   - Operating System: RHEL 6.8
   - Browser version: Chrome Version 51.0.2704.84 (64-bit)

https://github.com/Graylog2/graylog2-server/issues suggested making sure 
that rest_transport_uri is configured to contain the publicly accessible 
URI of each Graylog node.  When uncommented, the node no longer provides 
information in the GUI and the server throws this error.

2016-06-21 11:09:31,312 WARN : 
org.graylog2.shared.rest.resources.ProxiedResource - Unable to call 
http://graylog.example.org/system/metrics/multiple on node 
<d3fd974a-bfcb-4b78-a019-a6e726fcfdf6>, result: Method Not Allowed

-- 
You received this message because you are subscribed to the Google Groups 
"Graylog Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to graylog2+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/596d9258-a9f1-4265-ab67-d064ff185531%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to