See below.

I am having a couple of issues with the nginx setup (or at least they show 
up when using nginx as configured). I will get those and post here to see 
if you have them as well. 

I am using nginx to do the SSL part talking to graylog over non-ssl. 

server {
server_name glhost1.local;
rewrite ^/(.*) https://glhost1.local/$1 permanent;
}


server {
    listen 443;
    server_name glhost1.local;

    ssl on;
    ssl_certificate /etc/nginx/ssl/glhost1.cer;
    ssl_certificate_key /etc/nginx/ssl/glhost1.key;

    ssl_session_timeout 5m;

    ssl_protocols SSLv3 TLSv1 TLSv1.1 TLSv1.2;
    ssl_ciphers "HIGH:!aNULL:!MD5 or HIGH:!aNULL:!MD5:!3DES";
    ssl_prefer_server_ciphers on;

    location / {
            proxy_pass              http://192.168.2.73:9000;
            proxy_http_version        1.1;
            proxy_set_header        Host $host;
            proxy_set_header        X-Real-IP $remote_addr;
            proxy_set_header        X-Forwarded-For 
$proxy_add_x_forwarded_for;
            proxy_set_header        X-Graylog-Server-URL 
https://glhost1.local/api;

            proxy_read_timeout 240;
            proxy_connect_timeout 240;
    }
        location /api/ {
                proxy_set_header    X-Forwarded-For 
$proxy_add_x_forwarded_for;
                proxy_set_header    Host $http_host;
                proxy_pass          http://glhost1.local:12900/;
        }
}


On Wednesday, May 11, 2016 at 12:14:28 PM UTC-4, Peter Horvath wrote:
>
> Hey Dustin,
>
> Can you share you nginx config please?
> I've setup nginx with ssl but i get an HTTP auth popup when i first load 
> the web interface
> If i cancel it it works but i get this
> https://graylogmaster01.internal.test.xxx.io/api/system/sessions 401 
> (Unauthorized)
>
> On Monday, 9 May 2016 22:16:11 UTC+2, Dustin Tennill wrote:
>>
>> My issue is resolved and not related to this post. 
>>
>> We use certificates from InCommon and I believe that provider wasn't 
>> trusted by Java without adding InCommon to the trust store. I went with 
>> nginx configuration for the SSL part, works great. 
>>
>> I did have some of the same problems listed here, but once it was all 
>> behind nginx (and after trying several config file changes). 
>>
>> Dustin
>>
>>
>>
>>
>> On Friday, May 6, 2016 at 9:05:07 PM UTC-4, Dustin Tennill wrote:
>>>
>>> Hello,
>>>
>>> I just upgraded to 2.0.0.6 and am having the same issue kind of issue. 
>>> My errors are different, so I think an SSL issue is the problem. 
>>>
>>> 2016-05-06T21:03:11.565-04:00 WARN  [ProxiedResource] Unable to call 
>>> https://grayloghost:12900/system/metrics/multiple on node 
>>> <c4f4d3c4-0b34-4554-b746-2096a6624318>, caught exception: 
>>> sun.security.validator.ValidatorException: PKIX path building failed: 
>>> sun.security.provider.certpath.SunCertPathBuilderException: unable to find 
>>> valid certification path to requested target (class 
>>> javax.net.ssl.SSLHandshakeException)
>>> 2016-05-06T21:03:11.587-04:00 WARN  [ProxiedResource] Unable to call 
>>> https://grayloghost:12900/system/metrics/multiple on node 
>>> <c4f4d3c4-0b34-4554-b746-2096a6624318>, caught exception: 
>>> sun.security.validator.ValidatorException: PKIX path building failed: 
>>> sun.security.provider.certpath.SunCertPathBuilderException: unable to find 
>>> valid certification path to requested target (class 
>>> javax.net.ssl.SSLHandshakeException)
>>> 2016-05-06T21:03:11.787-04:00 WARN  [ProxiedResource] Unable to call 
>>> https://grayloghost:12900/system on node 
>>> <c4f4d3c4-0b34-4554-b746-2096a6624318>, caught exception: 
>>> sun.security.validator.ValidatorException: PKIX path building failed: 
>>> sun.security.provider.certpath.SunCertPathBuilderException: unable to find 
>>> valid certification path to requested target (class 
>>> javax.net.ssl.SSLHandshakeException)
>>>
>>> Dustin Tennill
>>>
>>> On Tuesday, May 3, 2016 at 9:16:14 PM UTC-4, 4k wrote:
>>>>
>>>> Hi Jochen,
>>>>
>>>> Just tried it, but I still get these errors in graylog logfile:
>>>>
>>>> 016-05-04T01:05:52.283Z    WARN    [ProxiedResource]    Unable to call 
>>>> https://127.0.0.1:12900/system/metrics/multiple on node 
>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: Read timed out 
>>>> (class java.net.SocketTimeoutException)
>>>> 2016-05-04T01:05:53.272Z    WARN    [ProxiedResource]    Unable to call 
>>>> https://127.0.0.1:12900/system on node 
>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: Read timed out 
>>>> (class java.net.SocketTimeoutException)
>>>>
>>>> And these logs in the web interface, node details/info section (
>>>> https://something/system/nodes/658f36aa-bca4-4596-80e5-837dabf0aa61).
>>>>
>>>> *Getting JVM information* for node 
>>>> '658f36aa-bca4-4596-80e5-837dabf0aa61' failed: Error: cannot GET 
>>>> https://something:12900/cluster/658f36aa-bca4-4596-80e5-837dabf0aa61/jvm 
>>>> (*500*)
>>>> *Getting plugins* on node "658f36aa-bca4-4596-80e5-837dabf0aa61" 
>>>> failed: Error: cannot GET 
>>>> https://something:12900/cluster/658f36aa-bca4-4596-80e5-837dabf0aa61/plugins
>>>>  
>>>> (*500*)
>>>>
>>>> Cheers,
>>>>
>>>> On Tuesday, May 3, 2016 at 5:48:26 PM UTC+10, Jochen Schalanda wrote:
>>>>>
>>>>> Hi Adel,
>>>>>
>>>>> try setting rest_transport_uri 
>>>>> <https://github.com/Graylog2/graylog2-server/blob/2.0.0/misc/graylog.conf#L39-L45>
>>>>>  
>>>>> to http://127.0.0.1:12900/ (https://127.0.0.1:12900/ if you're using 
>>>>> HTTPs) and web_endpoint_uri 
>>>>> <https://github.com/Graylog2/graylog2-server/blob/2.0.0/misc/graylog.conf#L86-L88>
>>>>>  
>>>>> to the public host name or IP address of your Graylog REST API (e. g. 
>>>>> https://something:12900/).
>>>>>
>>>>> Cheers,
>>>>> Jochen
>>>>>
>>>>> On Tuesday, 3 May 2016 02:36:57 UTC+2, 4k wrote:
>>>>>>
>>>>>> Hey Dennis,
>>>>>>
>>>>>> Actually I only have one elasticsearch node. Everything is in a box. 
>>>>>> I can access the REST API and also I can see my data on Graylog web 
>>>>>> interface.
>>>>>> I don't get any errors when I start Graylog server (except those that 
>>>>>> I mentioned in my first post).
>>>>>>
>>>>>> 2016-05-03T00:23:30.147Z INFO  [CmdLineTool] Loaded plugins: 
>>>>>> [Anonymous Usage Statistics 2.0.0 
>>>>>> [org.graylog.plugins.usagestatistics.UsageStatsPlugin], Pipeline 
>>>>>> Processor 
>>>>>> Plugin 1.0.0-beta.2 [org.graylog.$
>>>>>> 2016-05-03T00:23:30.226Z INFO  [CmdLineTool] Running with JVM 
>>>>>> arguments: -Xms1g -Xmx1g -XX:NewRatio=1 -XX:+ResizeTLAB 
>>>>>> -XX:+UseConcMarkSweepGC -XX:+CMSConcurrentMTEnabled 
>>>>>> -XX:+CMSClassUnloadingEnabled -XX$
>>>>>> 2016-05-03T00:23:32.113Z INFO  [InputBufferImpl] Message journal is 
>>>>>> enabled.
>>>>>> 2016-05-03T00:23:32.295Z INFO  [LogManager] Loading logs.
>>>>>> 2016-05-03T00:23:32.381Z INFO  [LogManager] Logs loading complete.
>>>>>> 2016-05-03T00:23:32.381Z INFO  [KafkaJournal] Initialized Kafka based 
>>>>>> journal at /var/lib/graylog-server/journal
>>>>>> 2016-05-03T00:23:32.403Z INFO  [InputBufferImpl] Initialized 
>>>>>> InputBufferImpl with ring size <65536> and wait strategy 
>>>>>> <BlockingWaitStrategy>, running 2 parallel message handlers.
>>>>>> 2016-05-03T00:23:32.430Z INFO  [cluster] Cluster created with 
>>>>>> settings {hosts=[localhost:27017], mode=SINGLE, 
>>>>>> requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', 
>>>>>> maxWaitQueueSize=5000}
>>>>>> 2016-05-03T00:23:32.485Z INFO  [cluster] No server chosen by 
>>>>>> ReadPreferenceServerSelector{readPreference=primary} from cluster 
>>>>>> description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, 
>>>>>> all=[Ser$
>>>>>> 2016-05-03T00:23:32.494Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:1, serverValue:40}] to localhost:27017
>>>>>> 2016-05-03T00:23:32.495Z INFO  [cluster] Monitor thread successfully 
>>>>>> connected to server with description 
>>>>>> ServerDescription{address=localhost:27017, type=STANDALONE, 
>>>>>> state=CONNECTED, ok=true, version=Ser$
>>>>>> 2016-05-03T00:23:32.510Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:2, serverValue:41}] to localhost:27017
>>>>>> 2016-05-03T00:23:32.789Z INFO  [NodeId] Node ID: 
>>>>>> 658f36aa-bca4-4596-80e5-837dabf0aa61
>>>>>> 2016-05-03T00:23:32.897Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] version[2.3.1], 
>>>>>> pid[1167], 
>>>>>> build[bd98092/2016-04-04T12:25:05Z]
>>>>>> 2016-05-03T00:23:32.897Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] initializing ...
>>>>>> 2016-05-03T00:23:32.903Z INFO  [plugins] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] modules [], plugins 
>>>>>> [graylog-monitor], sites []
>>>>>> 2016-05-03T00:23:34.321Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] initialized
>>>>>> 2016-05-03T00:23:34.390Z INFO  [Version] HV000001: Hibernate 
>>>>>> Validator 5.2.4.Final
>>>>>> 2016-05-03T00:23:34.514Z INFO  [ProcessBuffer] Initialized 
>>>>>> ProcessBuffer with ring size <65536> and wait strategy 
>>>>>> <BlockingWaitStrategy>.
>>>>>> 2016-05-03T00:23:36.150Z INFO  [RulesEngineProvider] No static rules 
>>>>>> file loaded.
>>>>>> 2016-05-03T00:23:36.274Z WARN  [GeoIpResolverEngine] GeoIP database 
>>>>>> file does not exist: /tmp/GeoLite2-City.mmdb
>>>>>> 2016-05-03T00:23:36.278Z INFO  [OutputBuffer] Initialized 
>>>>>> OutputBuffer with ring size <65536> and wait strategy 
>>>>>> <BlockingWaitStrategy>.
>>>>>> 2016-05-03T00:23:30.147Z INFO  [CmdLineTool] Loaded plugins: 
>>>>>> [Anonymous Usage Statistics 2.0.0 
>>>>>> [org.graylog.plugins.usagestatistics.UsageStatsPlugin], Pipeline 
>>>>>> Processor 
>>>>>> Plugin 1.0.0-beta.2 [org.graylog.$
>>>>>> 2016-05-03T00:23:30.226Z INFO  [CmdLineTool] Running with JVM 
>>>>>> arguments: -Xms1g -Xmx1g -XX:NewRatio=1 -XX:+ResizeTLAB 
>>>>>> -XX:+UseConcMarkSweepGC -XX:+CMSConcurrentMTEnabled 
>>>>>> -XX:+CMSClassUnloadingEnabled -XX$
>>>>>> 2016-05-03T00:23:32.113Z INFO  [InputBufferImpl] Message journal is 
>>>>>> enabled.
>>>>>> 2016-05-03T00:23:32.295Z INFO  [LogManager] Loading logs.
>>>>>> 2016-05-03T00:23:32.381Z INFO  [LogManager] Logs loading complete.
>>>>>> 2016-05-03T00:23:32.381Z INFO  [KafkaJournal] Initialized Kafka based 
>>>>>> journal at /var/lib/graylog-server/journal
>>>>>> 2016-05-03T00:23:32.403Z INFO  [InputBufferImpl] Initialized 
>>>>>> InputBufferImpl with ring size <65536> and wait strategy 
>>>>>> <BlockingWaitStrategy>, running 2 parallel message handlers.
>>>>>> 2016-05-03T00:23:32.430Z INFO  [cluster] Cluster created with 
>>>>>> settings {hosts=[localhost:27017], mode=SINGLE, 
>>>>>> requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', 
>>>>>> maxWaitQueueSize=5000}
>>>>>> 2016-05-03T00:23:32.485Z INFO  [cluster] No server chosen by 
>>>>>> ReadPreferenceServerSelector{readPreference=primary} from cluster 
>>>>>> description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, 
>>>>>> all=[Ser$
>>>>>> 2016-05-03T00:23:32.494Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:1, serverValue:40}] to localhost:27017
>>>>>> 2016-05-03T00:23:32.495Z INFO  [cluster] Monitor thread successfully 
>>>>>> connected to server with description 
>>>>>> ServerDescription{address=localhost:27017, type=STANDALONE, 
>>>>>> state=CONNECTED, ok=true, version=Ser$
>>>>>> 2016-05-03T00:23:32.510Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:2, serverValue:41}] to localhost:27017
>>>>>> 2016-05-03T00:23:32.789Z INFO  [NodeId] Node ID: 
>>>>>> 658f36aa-bca4-4596-80e5-837dabf0aa61
>>>>>> 2016-05-03T00:23:32.897Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] version[2.3.1], 
>>>>>> pid[1167], 
>>>>>> build[bd98092/2016-04-04T12:25:05Z]
>>>>>> 2016-05-03T00:23:32.897Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] initializing ...
>>>>>> 2016-05-03T00:23:32.903Z INFO  [plugins] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] modules [], plugins 
>>>>>> [graylog-monitor], sites []
>>>>>> 2016-05-03T00:23:34.321Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] initialized
>>>>>> 2016-05-03T00:23:34.390Z INFO  [Version] HV000001: Hibernate 
>>>>>> Validator 5.2.4.Final
>>>>>> 2016-05-03T00:23:34.514Z INFO  [ProcessBuffer] Initialized 
>>>>>> ProcessBuffer with ring size <65536> and wait strategy 
>>>>>> <BlockingWaitStrategy>.
>>>>>> 2016-05-03T00:23:36.150Z INFO  [RulesEngineProvider] No static rules 
>>>>>> file loaded.
>>>>>> 2016-05-03T00:23:36.274Z WARN  [GeoIpResolverEngine] GeoIP database 
>>>>>> file does not exist: /tmp/GeoLite2-City.mmdb
>>>>>> 2016-05-03T00:23:36.278Z INFO  [OutputBuffer] Initialized 
>>>>>> OutputBuffer with ring size <65536> and wait strategy 
>>>>>> <BlockingWaitStrategy>.
>>>>>> 2016-05-03T00:23:36.828Z INFO  [ServerBootstrap] Graylog server 2.0.0 
>>>>>> (2dc6c03) starting up
>>>>>> 2016-05-03T00:23:36.829Z INFO  [ServerBootstrap] JRE: Oracle 
>>>>>> Corporation 1.8.0_65 on Linux 4.4.5-15.26.amzn1.x86_64
>>>>>> 2016-05-03T00:23:36.829Z INFO  [ServerBootstrap] Deployment: rpm
>>>>>> 2016-05-03T00:23:36.832Z WARN  [DeadEventLoggingListener] Received 
>>>>>> unhandled event of type <org.graylog2.plugin.lifecycles.Lifecycle> from 
>>>>>> event bus <AsyncEventBus{graylog-eventbus}>
>>>>>> 2016-05-03T00:23:36.859Z INFO  [PeriodicalsService] Starting 24 
>>>>>> periodicals ...
>>>>>> 2016-05-03T00:23:36.859Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ThroughputCalculator] periodical in [0s], 
>>>>>> polling 
>>>>>> every [1s].
>>>>>> 2016-05-03T00:23:36.861Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] starting ...
>>>>>> 2016-05-03T00:23:36.862Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.AlertScannerThread] periodical in [10s], 
>>>>>> polling 
>>>>>> every [60s].
>>>>>> 2016-05-03T00:23:36.863Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.BatchedElasticSearchOutputFlushThread] 
>>>>>> periodical 
>>>>>> in [0s], polling every [1s].
>>>>>> 2016-05-03T00:23:36.863Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ClusterHealthCheckThread] periodical in [0s], 
>>>>>> polling every [20s].
>>>>>> 2016-05-03T00:23:36.864Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ContentPackLoaderPeriodical] periodical, 
>>>>>> running 
>>>>>> forever.
>>>>>> 2016-05-03T00:23:36.865Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.GarbageCollectionWarningThread] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.866Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexerClusterCheckerThread] periodical in 
>>>>>> [0s], 
>>>>>> polling every [30s].
>>>>>> 2016-05-03T00:23:36.870Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRetentionThread] periodical in [0s], 
>>>>>> polling 
>>>>>> every [300s].
>>>>>> 2016-05-03T00:23:36.878Z INFO  [IndexRetentionThread] Elasticsearch 
>>>>>> cluster not available, skipping index retention checks.
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRotationThread] periodical in [0s], 
>>>>>> polling 
>>>>>> every [10s].
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.NodePingThread] periodical in [0s], polling 
>>>>>> every 
>>>>>> [1s].
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.VersionCheckThread] periodical in [300s], 
>>>>>> polling 
>>>>>> every [1800s].
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ThrottleStateUpdaterThread] periodical in [1s], 
>>>>>> polling every [1s].
>>>>>> 2016-05-03T00:23:36.880Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.events.ClusterEventPeriodical] periodical in [0s], polling 
>>>>>> every [1s].
>>>>>> 2016-05-03T00:23:36.880Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.events.ClusterEventCleanupPeriodical] periodical in [0s], 
>>>>>> polling every [300s].
>>>>>> 2016-05-03T00:23:36.881Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:3, serverValue:42}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.829Z INFO  [ServerBootstrap] Deployment: rpm
>>>>>> 2016-05-03T00:23:36.832Z WARN  [DeadEventLoggingListener] Received 
>>>>>> unhandled event of type <org.graylog2.plugin.lifecycles.Lifecycle> from 
>>>>>> event bus <AsyncEventBus{graylog-eventbus}>
>>>>>> 2016-05-03T00:23:36.859Z INFO  [PeriodicalsService] Starting 24 
>>>>>> periodicals ...
>>>>>> 2016-05-03T00:23:36.859Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ThroughputCalculator] periodical in [0s], 
>>>>>> polling 
>>>>>> every [1s].
>>>>>> 2016-05-03T00:23:36.861Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] starting ...
>>>>>> 2016-05-03T00:23:36.862Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.AlertScannerThread] periodical in [10s], 
>>>>>> polling 
>>>>>> every [60s].
>>>>>> 2016-05-03T00:23:36.863Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.BatchedElasticSearchOutputFlushThread] 
>>>>>> periodical 
>>>>>> in [0s], polling every [1s].
>>>>>> 2016-05-03T00:23:36.863Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ClusterHealthCheckThread] periodical in [0s], 
>>>>>> polling every [20s].
>>>>>> 2016-05-03T00:23:36.864Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ContentPackLoaderPeriodical] periodical, 
>>>>>> running 
>>>>>> forever.
>>>>>> 2016-05-03T00:23:36.865Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.GarbageCollectionWarningThread] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.866Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexerClusterCheckerThread] periodical in 
>>>>>> [0s], 
>>>>>> polling every [30s].
>>>>>> 2016-05-03T00:23:36.870Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRetentionThread] periodical in [0s], 
>>>>>> polling 
>>>>>> every [300s].
>>>>>> 2016-05-03T00:23:36.878Z INFO  [IndexRetentionThread] Elasticsearch 
>>>>>> cluster not available, skipping index retention checks.
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRotationThread] periodical in [0s], 
>>>>>> polling 
>>>>>> every [10s].
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.NodePingThread] periodical in [0s], polling 
>>>>>> every 
>>>>>> [1s].
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.VersionCheckThread] periodical in [300s], 
>>>>>> polling 
>>>>>> every [1800s].
>>>>>> 2016-05-03T00:23:36.879Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ThrottleStateUpdaterThread] periodical in [1s], 
>>>>>> polling every [1s].
>>>>>> 2016-05-03T00:23:36.880Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.events.ClusterEventPeriodical] periodical in [0s], polling 
>>>>>> every [1s].
>>>>>> 2016-05-03T00:23:36.880Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.events.ClusterEventCleanupPeriodical] periodical in [0s], 
>>>>>> polling every [300s].
>>>>>> 2016-05-03T00:23:36.881Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:3, serverValue:42}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.881Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ClusterIdGeneratorPeriodical] periodical, 
>>>>>> running 
>>>>>> forever.
>>>>>> 2016-05-03T00:23:36.881Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRangesMigrationPeriodical] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.881Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRangesCleanupPeriodical] periodical in 
>>>>>> [15s], 
>>>>>> polling every [3600s].
>>>>>> 2016-05-03T00:23:36.885Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:4, serverValue:43}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.895Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:5, serverValue:44}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.897Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:6, serverValue:45}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.920Z INFO  [IndexerClusterCheckerThread] Indexer 
>>>>>> not fully initialized yet. Skipping periodic cluster check.
>>>>>> 2016-05-03T00:23:36.924Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:7, serverValue:46}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.958Z INFO  [PeriodicalsService] Not starting 
>>>>>> [org.graylog2.periodical.UserPermissionMigrationPeriodical] periodical. 
>>>>>> Not 
>>>>>> configured to run on this node.
>>>>>> 2016-05-03T00:23:36.958Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.AlarmCallbacksMigrationPeriodical] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.962Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ConfigurationManagementPeriodical] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.975Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:8, serverValue:47}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.976Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.LdapGroupMappingMigration] periodical, running 
>>>>>> forever.
>>>>>> 2016-05-03T00:23:36.990Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog.plugins.usagestatistics.UsageStatsNodePeriodical] 
>>>>>> periodical 
>>>>>> in [300s], polling every [21600s].
>>>>>> 2016-05-03T00:23:36.995Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog.plugins.usagestatistics.UsageStatsClusterPeriodical] 
>>>>>> periodical in [300s], polling every [21600s].
>>>>>> 2016-05-03T00:23:36.995Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog.plugins.collector.periodical.PurgeExpiredCollectorsThread] 
>>>>>> periodical in [0s], polling every [3600s].
>>>>>> 2016-05-03T00:23:37.243Z INFO  [transport] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] publish_address {
>>>>>> 127.0.0.1:9350}, bound_addresses {[::1]:9350}, {127.0.0.1:9350}
>>>>>> 2016-05-03T00:23:37.247Z INFO  [discovery] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] 
>>>>>> graylog/Nwc4NipXTLafbvhtvhEKMA
>>>>>> 2016-05-03T00:23:37.312Z INFO  [AbstractJerseyService] Enabling CORS 
>>>>>> for HTTP endpoint
>>>>>> 2016-05-03T00:23:39.906Z INFO  [NetworkListener] Started listener 
>>>>>> bound to [0.0.0.0:9000]
>>>>>> 2016-05-03T00:23:39.908Z INFO  [HttpServer] [HttpServer] Started.
>>>>>> 2016-05-03T00:23:39.910Z INFO  [WebInterfaceService] Started Web 
>>>>>> Interface at <http://0.0.0.0:9000/>
>>>>>> 2016-05-03T00:23:40.256Z WARN  [discovery] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] waited for 3s and no 
>>>>>> initial 
>>>>>> state was set by the discovery
>>>>>> 2016-05-03T00:23:40.256Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] started
>>>>>> 2016-05-03T00:23:36.881Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.IndexRangesCleanupPeriodical] periodical in 
>>>>>> [15s], 
>>>>>> polling every [3600s].
>>>>>> 2016-05-03T00:23:36.885Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:4, serverValue:43}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.895Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:5, serverValue:44}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.897Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:6, serverValue:45}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.920Z INFO  [IndexerClusterCheckerThread] Indexer 
>>>>>> not fully initialized yet. Skipping periodic cluster check.
>>>>>> 2016-05-03T00:23:36.924Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:7, serverValue:46}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.958Z INFO  [PeriodicalsService] Not starting 
>>>>>> [org.graylog2.periodical.UserPermissionMigrationPeriodical] periodical. 
>>>>>> Not 
>>>>>> configured to run on this node.
>>>>>> 2016-05-03T00:23:36.958Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.AlarmCallbacksMigrationPeriodical] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.962Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.ConfigurationManagementPeriodical] periodical, 
>>>>>> running forever.
>>>>>> 2016-05-03T00:23:36.975Z INFO  [connection] Opened connection 
>>>>>> [connectionId{localValue:8, serverValue:47}] to localhost:27017
>>>>>> 2016-05-03T00:23:36.976Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog2.periodical.LdapGroupMappingMigration] periodical, running 
>>>>>> forever.
>>>>>> 2016-05-03T00:23:36.990Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog.plugins.usagestatistics.UsageStatsNodePeriodical] 
>>>>>> periodical 
>>>>>> in [300s], polling every [21600s].
>>>>>> 2016-05-03T00:23:36.995Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog.plugins.usagestatistics.UsageStatsClusterPeriodical] 
>>>>>> periodical in [300s], polling every [21600s].
>>>>>> 2016-05-03T00:23:36.995Z INFO  [Periodicals] Starting 
>>>>>> [org.graylog.plugins.collector.periodical.PurgeExpiredCollectorsThread] 
>>>>>> periodical in [0s], polling every [3600s].
>>>>>> 2016-05-03T00:23:37.243Z INFO  [transport] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] publish_address {
>>>>>> 127.0.0.1:9350}, bound_addresses {[::1]:9350}, {127.0.0.1:9350}
>>>>>> 2016-05-03T00:23:37.247Z INFO  [discovery] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] 
>>>>>> graylog/Nwc4NipXTLafbvhtvhEKMA
>>>>>> 2016-05-03T00:23:37.312Z INFO  [AbstractJerseyService] Enabling CORS 
>>>>>> for HTTP endpoint
>>>>>> 2016-05-03T00:23:39.906Z INFO  [NetworkListener] Started listener 
>>>>>> bound to [0.0.0.0:9000]
>>>>>> 2016-05-03T00:23:39.908Z INFO  [HttpServer] [HttpServer] Started.
>>>>>> 2016-05-03T00:23:39.910Z INFO  [WebInterfaceService] Started Web 
>>>>>> Interface at <http://0.0.0.0:9000/>
>>>>>> 2016-05-03T00:23:40.256Z WARN  [discovery] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] waited for 3s and no 
>>>>>> initial 
>>>>>> state was set by the discovery
>>>>>> 2016-05-03T00:23:40.256Z INFO  [node] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] started
>>>>>> 2016-05-03T00:23:40.382Z INFO  [service] 
>>>>>> [graylog-658f36aa-bca4-4596-80e5-837dabf0aa61] detected_master 
>>>>>> {node-1}{T_ovHAiwT5i-HGSSDvml2A}{127.0.0.1}{127.0.0.1:9300}, added 
>>>>>> {{node-1}{T_ovHAiwT5i-HGSSDvml2A$
>>>>>> 2016-05-03T00:23:43.530Z INFO  [NetworkListener] Started listener 
>>>>>> bound to [0.0.0.0:12900]
>>>>>> 2016-05-03T00:23:43.531Z INFO  [HttpServer] [HttpServer-1] Started.
>>>>>> 2016-05-03T00:23:43.531Z INFO  [RestApiService] Started REST API at <
>>>>>> http://0.0.0.0:12900/>
>>>>>> 2016-05-03T00:23:43.532Z INFO  [ServiceManagerListener] Services are 
>>>>>> healthy
>>>>>> 2016-05-03T00:23:43.532Z INFO  [ServerBootstrap] Services started, 
>>>>>> startup times in ms: {OutputSetupService [RUNNING]=36, 
>>>>>> BufferSynchronizerService [RUNNING]=37, MetricsReporterService 
>>>>>> [RUNNING]=37, Jour$
>>>>>> 2016-05-03T00:23:43.532Z INFO  [InputSetupService] Triggering 
>>>>>> launching persisted inputs, node transitioned from Uninitialized 
>>>>>> [LB:DEAD] 
>>>>>> to Running [LB:ALIVE]
>>>>>> 2016-05-03T00:23:43.536Z INFO  [ServerBootstrap] Graylog server up 
>>>>>> and running.
>>>>>> 2016-05-03T00:23:43.553Z INFO  [InputStateListener] Input [GELF 
>>>>>> UDP/57231a1d3746db645c165d16] is now STARTING
>>>>>> 2016-05-03T00:23:43.594Z WARN  [NettyTransport] receiveBufferSize 
>>>>>> (SO_RCVBUF) for input GELFUDPInput{title=source-field, 
>>>>>> type=org.graylog2.inputs.gelf.udp.GELFUDPInput, 
>>>>>> nodeId=658f36aa-bca4-4596-80e5-837$
>>>>>> 2016-05-03T00:23:43.599Z INFO  [InputStateListener] Input [GELF 
>>>>>> UDP/57231a1d3746db645c165d16] is now RUNNING
>>>>>>
>>>>>> *[ And then **if I browse the interface, I get lots of these: ]*
>>>>>>
>>>>>> 2016-05-03T00:28:12.666Z WARN  [ProxiedResource] Unable to call 
>>>>>> https://something:12900/system/metrics/multiple on node 
>>>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: connect timed 
>>>>>> o$
>>>>>> 2016-05-03T00:28:13.512Z WARN  [ProxiedResource] Unable to call 
>>>>>> https://something:12900/system/metrics/multiple on node 
>>>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: connect timed 
>>>>>> o$
>>>>>> 2016-05-03T00:28:16.092Z WARN  [ProxiedResource] Unable to call 
>>>>>> https://something:12900/system/metrics/multiple on node 
>>>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: connect timed 
>>>>>> o$
>>>>>> 2016-05-03T00:28:22.690Z WARN  [ProxiedResource] Unable to call 
>>>>>> https://something:12900/system/metrics/multiple on node 
>>>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: connect timed 
>>>>>> o$
>>>>>> 2016-05-03T00:28:22.726Z WARN  [ProxiedResource] Unable to call 
>>>>>> https://something:12900/system/metrics/multiple on node 
>>>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: connect timed 
>>>>>> o$
>>>>>> 2016-05-03T00:28:23.498Z WARN  [ProxiedResource] Unable to call 
>>>>>> https://something:12900/system/metrics/multiple on node 
>>>>>> <658f36aa-bca4-4596-80e5-837dabf0aa61>, caught exception: connect timed 
>>>>>> o$
>>>>>> ....
>>>>>>
>>>>>

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/graylog2/9bbf18b1-23e3-4354-8dab-996abb5169c3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to