I redid the maniplution with one new certificat with the script.
i generat a certificat -h https -i 192.168.10.1 -s secretpassword
result:
https.cert.pem https.pkcs8-encrypted.key.pem https.pkcs5-plain.key.pem https.pkcs8-plain.key.pem
after i adding a the certificate to the JVM trust store i dot that :
i dot the symbolic link
cp -a /usr/lib/jvm/jre-openjdk/lib/security/cacerts /etc/graylog/server/certfiles/https/cacerts.jks
after i import the certificat :
keytool -importcert -keystore cacert.jks -storepass secretpassword -alias graylog-self-signed -file graylog.ifs.cert.pem
and i look if this is good:
keytool -keystore cacerts.jks -storepass secretpassword -list | grep graylog-self-signed -A1
result;
graylog-self-signed, 5 juin 2018, trustedCertEntry,
Empreinte du certificat (SHA1) :
now on my server.conf
web_listen_uri = https://192.168.10.1:9000/
web_endpoint_uri = https://192.168.10.1:12900/
web_enable_tls = true
web_tls_cert_file = /etc/graylog/server/certfiles/https/https.cert.pem
web_tls_key_file = /etc/graylog/server/certfiles/https/https.pkcs8-plain.key.pem
web_tls_key_password = secretpassword
rest_listen_uri = https://192.168.10.1:12900/api/
rest_transport_uri = https://192.168.10.1:9000/api/
rest_enable_tls = true
rest_tls_cert_file = /etc/graylog/server/certfiles/https.cert.pem
rest_tls_key_file = /etc/graylog/server/certfiles/https.pkcs8-plain.key.pem
rest_tls_key_password = secretpassword
log
2018-06-05T10:27:05.285+02:00 INFO [ServerBootstrap] Deployment: rpm
2018-06-05T10:27:05.285+02:00 INFO [ServerBootstrap] OS: CentOS Linux 7 (Core) (centos)
2018-06-05T10:27:05.285+02:00 INFO [ServerBootstrap] Arch: amd64
2018-06-05T10:27:05.287+02:00 WARN [DeadEventLoggingListener] Received unhandled event of type <org.graylog2.plugin.lifecycles.Lifecycle> from event bus <AsyncEventBus{graylog-eventbus}>
2018-06-05T10:27:20.323+02:00 INFO [PeriodicalsService] Starting 25 periodicals ...
2018-06-05T10:27:20.324+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.ThroughputCalculator] periodical in [0s], polling every [1s].
2018-06-05T10:27:20.324+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.AlertScannerThread] periodical in [10s], polling every [60s].
2018-06-05T10:27:20.324+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.BatchedElasticSearchOutputFlushThread] periodical in [0s], polling every [1s].
2018-06-05T10:27:20.331+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.ClusterHealthCheckThread] periodical in [120s], polling every [20s].
2018-06-05T10:27:20.331+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.ContentPackLoaderPeriodical] periodical, running forever.
2018-06-05T10:27:20.342+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.GarbageCollectionWarningThread] periodical, running forever.
2018-06-05T10:27:20.350+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.IndexerClusterCheckerThread] periodical in [0s], polling every [30s].
2018-06-05T10:27:20.350+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.IndexRetentionThread] periodical in [0s], polling every [300s].
2018-06-05T10:27:20.355+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.IndexRotationThread] periodical in [0s], polling every [10s].
2018-06-05T10:27:20.355+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.NodePingThread] periodical in [0s], polling every [1s].
2018-06-05T10:27:20.355+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.VersionCheckThread] periodical in [300s], polling every [1800s].
2018-06-05T10:27:20.358+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.ThrottleStateUpdaterThread] periodical in [1s], polling every [1s].
2018-06-05T10:27:20.359+02:00 INFO [Periodicals] Starting [org.graylog2.events.ClusterEventPeriodical] periodical in [0s], polling every [1s].
2018-06-05T10:27:20.359+02:00 INFO [Periodicals] Starting [org.graylog2.events.ClusterEventCleanupPeriodical] periodical in [0s], polling every [86400s].
2018-06-05T10:27:20.359+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.ClusterIdGeneratorPeriodical] periodical, running forever.
2018-06-05T10:27:20.361+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.IndexRangesMigrationPeriodical] periodical, running forever.
2018-06-05T10:27:20.365+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.IndexRangesCleanupPeriodical] periodical in [15s], polling every [3600s].
2018-06-05T10:27:20.390+02:00 INFO [connection] Opened connection [connectionId{localValue:5, serverValue:7768}] to localhost:27017
2018-06-05T10:27:20.390+02:00 INFO [connection] Opened connection [connectionId{localValue:4, serverValue:7767}] to localhost:27017
2018-06-05T10:27:20.394+02:00 INFO [PeriodicalsService] Not starting [org.graylog2.periodical.UserPermissionMigrationPeriodical] periodical. Not configured to run on this node.
2018-06-05T10:27:20.394+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.AlarmCallbacksMigrationPeriodical] periodical, running forever.
2018-06-05T10:27:20.395+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.ConfigurationManagementPeriodical] periodical, running forever.
2018-06-05T10:27:20.399+02:00 INFO [connection] Opened connection [connectionId{localValue:6, serverValue:7769}] to localhost:27017
2018-06-05T10:27:20.399+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.LdapGroupMappingMigration] periodical, running forever.
2018-06-05T10:27:20.399+02:00 INFO [connection] Opened connection [connectionId{localValue:7, serverValue:7770}] to localhost:27017
2018-06-05T10:27:20.400+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.IndexFailuresPeriodical] periodical, running forever.
2018-06-05T10:27:20.401+02:00 INFO [Periodicals] Starting [org.graylog2.periodical.TrafficCounterCalculator] periodical in [0s], polling every [1s].
2018-06-05T10:27:20.402+02:00 INFO [Periodicals] Starting [org.graylog.plugins.pipelineprocessor.periodical.LegacyDefaultStreamMigration] periodical, running forever.
2018-06-05T10:27:20.412+02:00 INFO [Periodicals] Starting [org.graylog.plugins.collector.periodical.PurgeExpiredCollectorsThread] periodical in [0s], polling every [3600s].
2018-06-05T10:27:20.422+02:00 INFO [LegacyDefaultStreamMigration] Legacy default stream has no connections, no migration needed.
2018-06-05T10:27:20.426+02:00 WARN [OTXDataAdapter] OTX API key is missing. Make sure to add the key to allow higher request limits.
2018-06-05T10:27:20.431+02:00 WARN [OTXDataAdapter] OTX API key is missing. Make sure to add the key to allow higher request limits.
2018-06-05T10:27:20.434+02:00 ERROR [LookupDataAdapter] Couldn't start data adapter <abuse-ch-ransomware-domains/5ac37ce361a3b445286ea5cd/@62f4dc8>
org.graylog.plugins.threatintel.tools.AdapterDisabledException: Abuse.ch service is disabled, not starting adapter. To enable it please go to System / Configurations.
at org.graylog.plugins.threatintel.adapters.abusech.AbuseChRansomAdapter.doStart(AbuseChRansomAdapter.java:80) ~[?:?]
at org.graylog2.plugin.lookup.LookupDataAdapter.startUp(LookupDataAdapter.java:59) [graylog.jar:?]
at com.google.common.util.concurrent.AbstractIdleService$DelegateService$1.run(AbstractIdleService.java:62) [graylog.jar:?]
at com.google.common.util.concurrent.Callables$4.run(Callables.java:122) [graylog.jar:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_161]
2018-06-05T10:27:20.460+02:00 ERROR [LookupDataAdapter] Couldn't start data adapter <tor-exit-node/5ac37ce361a3b445286ea5cc/@5fca3542>
org.graylog.plugins.threatintel.tools.AdapterDisabledException: TOR service is disabled, not starting TOR exit addresses adapter. To enable it please go to System / Configurations.
at org.graylog.plugins.threatintel.adapters.tor.TorExitNodeDataAdapter.doStart(TorExitNodeDataAdapter.java:73) ~[?:?]
at org.graylog2.plugin.lookup.LookupDataAdapter.startUp(LookupDataAdapter.java:59) [graylog.jar:?]
at com.google.common.util.concurrent.AbstractIdleService$DelegateService$1.run(AbstractIdleService.java:62) [graylog.jar:?]
at com.google.common.util.concurrent.Callables$4.run(Callables.java:122) [graylog.jar:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_161]
2018-06-05T10:27:20.463+02:00 ERROR [LookupDataAdapter] Couldn't start data adapter <spamhaus-drop/5ac37ce361a3b445286ea5cf/@4129f99>
org.graylog.plugins.threatintel.tools.AdapterDisabledException: Spamhaus service is disabled, not starting (E)DROP adapter. To enable it please go to System / Configurations.
at org.graylog.plugins.threatintel.adapters.spamhaus.SpamhausEDROPDataAdapter.doStart(SpamhausEDROPDataAdapter.java:68) ~[?:?]
at org.graylog2.plugin.lookup.LookupDataAdapter.startUp(LookupDataAdapter.java:59) [graylog.jar:?]
at com.google.common.util.concurrent.AbstractIdleService$DelegateService$1.run(AbstractIdleService.java:62) [graylog.jar:?]
at com.google.common.util.concurrent.Callables$4.run(Callables.java:122) [graylog.jar:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_161]
2018-06-05T10:27:20.470+02:00 INFO [LookupTableService] Data Adapter spamhaus-drop/5ac37ce361a3b445286ea5cf [@4129f99] STARTING
2018-06-05T10:27:20.470+02:00 INFO [LookupTableService] Data Adapter spamhaus-drop/5ac37ce361a3b445286ea5cf [@4129f99] RUNNING
2018-06-05T10:27:20.470+02:00 INFO [LookupTableService] Data Adapter otx-api-ip/5ac37ce361a3b445286ea5ce [@557e989e] STARTING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-domains/5ac37ce361a3b445286ea5cd [@62f4dc8] STARTING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter otx-api-ip/5ac37ce361a3b445286ea5ce [@557e989e] RUNNING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-domains/5ac37ce361a3b445286ea5cd [@62f4dc8] RUNNING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter otx-api-domain/5ac37ce361a3b445286ea5d1 [@7ea3d280] STARTING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter otx-api-domain/5ac37ce361a3b445286ea5d1 [@7ea3d280] RUNNING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter whois/5ac37ce461a3b445286ea5d2 [@69f29095] STARTING
2018-06-05T10:27:20.471+02:00 INFO [LookupTableService] Data Adapter whois/5ac37ce461a3b445286ea5d2 [@69f29095] RUNNING
2018-06-05T10:27:20.472+02:00 INFO [LookupTableService] Data Adapter tor-exit-node/5ac37ce361a3b445286ea5cc [@5fca3542] STARTING
2018-06-05T10:27:20.472+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-ip/5ac37ce361a3b445286ea5d0 [@4365ad1b] STARTING
2018-06-05T10:27:20.472+02:00 INFO [LookupTableService] Data Adapter tor-exit-node/5ac37ce361a3b445286ea5cc [@5fca3542] RUNNING
2018-06-05T10:27:20.474+02:00 ERROR [LookupDataAdapter] Couldn't start data adapter <abuse-ch-ransomware-ip/5ac37ce361a3b445286ea5d0/@4365ad1b>
org.graylog.plugins.threatintel.tools.AdapterDisabledException: Abuse.ch service is disabled, not starting adapter. To enable it please go to System / Configurations.
at org.graylog.plugins.threatintel.adapters.abusech.AbuseChRansomAdapter.doStart(AbuseChRansomAdapter.java:80) ~[?:?]
at org.graylog2.plugin.lookup.LookupDataAdapter.startUp(LookupDataAdapter.java:59) [graylog.jar:?]
at com.google.common.util.concurrent.AbstractIdleService$DelegateService$1.run(AbstractIdleService.java:62) [graylog.jar:?]
at com.google.common.util.concurrent.Callables$4.run(Callables.java:122) [graylog.jar:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_161]
2018-06-05T10:27:20.474+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-ip/5ac37ce361a3b445286ea5d0 [@4365ad1b] RUNNING
2018-06-05T10:27:20.498+02:00 INFO [LookupTableService] Cache spamhaus-e-drop-cache/5ac37ce361a3b445286ea5c8 [@ce88c88] STARTING
2018-06-05T10:27:20.498+02:00 INFO [LookupTableService] Cache spamhaus-e-drop-cache/5ac37ce361a3b445286ea5c8 [@ce88c88] RUNNING
2018-06-05T10:27:20.499+02:00 INFO [LookupTableService] Cache whois-cache/5ac37ce361a3b445286ea5c9 [@4fe17df1] STARTING
2018-06-05T10:27:20.500+02:00 INFO [LookupTableService] Cache whois-cache/5ac37ce361a3b445286ea5c9 [@4fe17df1] RUNNING
2018-06-05T10:27:20.515+02:00 INFO [LookupTableService] Cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0] STARTING
2018-06-05T10:27:20.517+02:00 INFO [LookupTableService] Cache otx-api-ip-cache/5ac37ce361a3b445286ea5ca [@341cbd69] STARTING
2018-06-05T10:27:20.517+02:00 INFO [LookupTableService] Cache otx-api-ip-cache/5ac37ce361a3b445286ea5ca [@341cbd69] RUNNING
2018-06-05T10:27:20.517+02:00 INFO [LookupTableService] Cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0] RUNNING
2018-06-05T10:27:20.518+02:00 INFO [LookupTableService] Cache otx-api-domain-cache/5ac37ce361a3b445286ea5c7 [@1e0b8a14] STARTING
2018-06-05T10:27:20.518+02:00 INFO [LookupTableService] Cache otx-api-domain-cache/5ac37ce361a3b445286ea5c7 [@1e0b8a14] RUNNING
2018-06-05T10:27:20.533+02:00 INFO [LookupTableService] Starting lookup table abuse-ch-ransomware-ip/5ac37ce461a3b445286ea5d4 [@58910f24] using cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0], data adapter abuse-ch-ransomware-ip/5ac37ce361a3b445286ea5d0 [@4365ad1b]
2018-06-05T10:27:20.533+02:00 INFO [LookupTableService] Starting lookup table abuse-ch-ransomware-domains/5ac37ce461a3b445286ea5d5 [@2be54d53] using cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0], data adapter abuse-ch-ransomware-domains/5ac37ce361a3b445286ea5cd [@62f4dc8]
2018-06-05T10:27:20.533+02:00 INFO [LookupTableService] Starting lookup table tor-exit-node-list/5ac37ce461a3b445286ea5d6 [@a73f0dc] using cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0], data adapter tor-exit-node/5ac37ce361a3b445286ea5cc [@5fca3542]
2018-06-05T10:27:20.533+02:00 INFO [LookupTableService] Starting lookup table whois/5ac37ce461a3b445286ea5d7 [@4b642ec1] using cache whois-cache/5ac37ce361a3b445286ea5c9 [@4fe17df1], data adapter whois/5ac37ce461a3b445286ea5d2 [@69f29095]
2018-06-05T10:27:20.533+02:00 INFO [LookupTableService] Starting lookup table otx-api-domain/5ac37ce461a3b445286ea5d8 [@1b5cf0a6] using cache otx-api-domain-cache/5ac37ce361a3b445286ea5c7 [@1e0b8a14], data adapter otx-api-domain/5ac37ce361a3b445286ea5d1 [@7ea3d280]
2018-06-05T10:27:20.534+02:00 INFO [LookupTableService] Starting lookup table spamhaus-drop/5ac37ce461a3b445286ea5d9 [@1a52a94b] using cache spamhaus-e-drop-cache/5ac37ce361a3b445286ea5c8 [@ce88c88], data adapter spamhaus-drop/5ac37ce361a3b445286ea5cf [@4129f99]
2018-06-05T10:27:20.534+02:00 INFO [LookupTableService] Starting lookup table otx-api-ip/5ac37ce461a3b445286ea5da [@f325fcd] using cache otx-api-ip-cache/5ac37ce361a3b445286ea5ca [@341cbd69], data adapter otx-api-ip/5ac37ce361a3b445286ea5ce [@557e989e]
2018-06-05T10:27:20.678+02:00 ERROR [ServiceManager] Service JerseyService [FAILED] has failed in the STARTING state.
java.io.IOException: overrun, bytes = 1195
at javax.crypto.EncryptedPrivateKeyInfo.<init>(EncryptedPrivateKeyInfo.java:92) ~[?:1.8.0_161]
at org.graylog2.shared.security.tls.PemKeyStore.generateKeySpec(PemKeyStore.java:69) ~[graylog.jar:?]
at org.graylog2.shared.security.tls.PemKeyStore.buildKeyStore(PemKeyStore.java:98) ~[graylog.jar:?]
at org.graylog2.shared.initializers.JerseyService.buildSslEngineConfigurator(JerseyService.java:382) ~[graylog.jar:?]
at org.graylog2.shared.initializers.JerseyService.startUpApi(JerseyService.java:206) ~[graylog.jar:?]
at org.graylog2.shared.initializers.JerseyService.startUp(JerseyService.java:140) ~[graylog.jar:?]
at com.google.common.util.concurrent.AbstractIdleService$DelegateService$1.run(AbstractIdleService.java:62) [graylog.jar:?]
at com.google.common.util.concurrent.Callables$4.run(Callables.java:122) [graylog.jar:?]
at java.lang.Thread.run(Thread.java:748) [?:1.8.0_161]
2018-06-05T10:27:20.680+02:00 INFO [InputSetupService] Triggering launching persisted inputs, node transitioned from Uninitialized [LB:DEAD] to Failed [LB:DEAD]
2018-06-05T10:27:20.681+02:00 ERROR [InputSetupService] Not starting any inputs because lifecycle is: Failed [LB:DEAD]
2018-06-05T10:27:20.685+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.AlertScannerThread].
2018-06-05T10:27:20.685+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.AlertScannerThread] complete, took <0ms>.
2018-06-05T10:27:20.685+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.BatchedElasticSearchOutputFlushThread].
2018-06-05T10:27:20.685+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.BatchedElasticSearchOutputFlushThread] complete, took <0ms>.
2018-06-05T10:27:20.685+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.ClusterHealthCheckThread].
2018-06-05T10:27:20.685+02:00 INFO [LogManager] Shutting down.
2018-06-05T10:27:20.685+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.ClusterHealthCheckThread] complete, took <0ms>.
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.IndexerClusterCheckerThread].
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.IndexerClusterCheckerThread] complete, took <0ms>.
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.IndexRetentionThread].
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.IndexRetentionThread] complete, took <0ms>.
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.IndexRotationThread].
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.IndexRotationThread] complete, took <0ms>.
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.VersionCheckThread].
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.VersionCheckThread] complete, took <0ms>.
2018-06-05T10:27:20.687+02:00 INFO [LookupTableService] Cache otx-api-domain-cache/5ac37ce361a3b445286ea5c7 [@1e0b8a14] STOPPING, was RUNNING
2018-06-05T10:27:20.686+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.ThrottleStateUpdaterThread].
2018-06-05T10:27:20.687+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.ThrottleStateUpdaterThread] complete, took <0ms>.
2018-06-05T10:27:20.687+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.events.ClusterEventPeriodical].
2018-06-05T10:27:20.687+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.events.ClusterEventPeriodical] complete, took <0ms>.
2018-06-05T10:27:20.687+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.events.ClusterEventCleanupPeriodical].
2018-06-05T10:27:20.687+02:00 INFO [LookupTableService] Cache otx-api-ip-cache/5ac37ce361a3b445286ea5ca [@341cbd69] STOPPING, was RUNNING
2018-06-05T10:27:20.688+02:00 INFO [LookupTableService] Cache otx-api-ip-cache/5ac37ce361a3b445286ea5ca [@341cbd69] TERMINATED, was STOPPING
2018-06-05T10:27:20.688+02:00 INFO [LookupTableService] Cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0] STOPPING, was RUNNING
2018-06-05T10:27:20.690+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.events.ClusterEventCleanupPeriodical] complete, took <0ms>.
2018-06-05T10:27:20.690+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.IndexRangesCleanupPeriodical].
2018-06-05T10:27:20.691+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.IndexRangesCleanupPeriodical] complete, took <0ms>.
2018-06-05T10:27:20.691+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog2.periodical.TrafficCounterCalculator].
2018-06-05T10:27:20.691+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog2.periodical.TrafficCounterCalculator] complete, took <0ms>.
2018-06-05T10:27:20.692+02:00 INFO [PeriodicalsService] Shutting down periodical [org.graylog.plugins.collector.periodical.PurgeExpiredCollectorsThread].
2018-06-05T10:27:20.692+02:00 INFO [PeriodicalsService] Shutdown of periodical [org.graylog.plugins.collector.periodical.PurgeExpiredCollectorsThread] complete, took <0ms>.
2018-06-05T10:27:20.695+02:00 INFO [LookupTableService] Cache otx-api-domain-cache/5ac37ce361a3b445286ea5c7 [@1e0b8a14] TERMINATED, was STOPPING
2018-06-05T10:27:20.695+02:00 INFO [LookupTableService] Cache spamhaus-e-drop-cache/5ac37ce361a3b445286ea5c8 [@ce88c88] STOPPING, was RUNNING
2018-06-05T10:27:20.695+02:00 INFO [LookupTableService] Cache whois-cache/5ac37ce361a3b445286ea5c9 [@4fe17df1] STOPPING, was RUNNING
2018-06-05T10:27:20.695+02:00 INFO [LookupTableService] Cache whois-cache/5ac37ce361a3b445286ea5c9 [@4fe17df1] TERMINATED, was STOPPING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter spamhaus-drop/5ac37ce361a3b445286ea5cf [@4129f99] STOPPING, was RUNNING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter spamhaus-drop/5ac37ce361a3b445286ea5cf [@4129f99] TERMINATED, was STOPPING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter otx-api-ip/5ac37ce361a3b445286ea5ce [@557e989e] STOPPING, was RUNNING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter whois/5ac37ce461a3b445286ea5d2 [@69f29095] STOPPING, was RUNNING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter otx-api-ip/5ac37ce361a3b445286ea5ce [@557e989e] TERMINATED, was STOPPING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter whois/5ac37ce461a3b445286ea5d2 [@69f29095] TERMINATED, was STOPPING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter tor-exit-node/5ac37ce361a3b445286ea5cc [@5fca3542] STOPPING, was RUNNING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Cache threat-intel-uncached-adapters/5ac37ce361a3b445286ea5c6 [@63d56af0] TERMINATED, was STOPPING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter tor-exit-node/5ac37ce361a3b445286ea5cc [@5fca3542] TERMINATED, was STOPPING
2018-06-05T10:27:20.696+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-domains/5ac37ce361a3b445286ea5cd [@62f4dc8] STOPPING, was RUNNING
2018-06-05T10:27:20.697+02:00 INFO [LookupTableService] Data Adapter otx-api-domain/5ac37ce361a3b445286ea5d1 [@7ea3d280] STOPPING, was RUNNING
2018-06-05T10:27:20.697+02:00 INFO [LookupTableService] Data Adapter otx-api-domain/5ac37ce361a3b445286ea5d1 [@7ea3d280] TERMINATED, was STOPPING
2018-06-05T10:27:20.697+02:00 INFO [LookupTableService] Cache spamhaus-e-drop-cache/5ac37ce361a3b445286ea5c8 [@ce88c88] TERMINATED, was STOPPING
2018-06-05T10:27:20.697+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-domains/5ac37ce361a3b445286ea5cd [@62f4dc8] TERMINATED, was STOPPING
2018-06-05T10:27:20.810+02:00 INFO [LookupDataAdapterRefreshService] Stopping 0 jobs
2018-06-05T10:27:20.810+02:00 INFO [JournalReader] Stopping.
2018-06-05T10:27:20.695+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-ip/5ac37ce361a3b445286ea5d0 [@4365ad1b] STOPPING, was RUNNING
2018-06-05T10:27:20.812+02:00 INFO [LookupTableService] Data Adapter abuse-ch-ransomware-ip/5ac37ce361a3b445286ea5d0 [@4365ad1b] TERMINATED, was STOPPING
2018-06-05T10:27:20.817+02:00 INFO [Buffers] Waiting until all buffers are empty.
2018-06-05T10:27:20.818+02:00 INFO [Buffers] All buffers are empty. Continuing.
2018-06-05T10:27:20.819+02:00 INFO [OutputSetupService] Stopping output org.graylog2.outputs.BlockingBatchedESOutput
2018-06-05T10:27:20.825+02:00 INFO [LogManager] Shutdown complete.
2018-06-05T10:27:20.827+02:00 INFO [ServiceManagerListener] Services are now stopped.
2018-06-05T10:27:20.827+02:00 ERROR [ServerBootstrap] Graylog startup failed. Exiting. Exception was:
java.lang.IllegalStateException: Expected to be healthy after starting. The following services are not running: {FAILED=[JerseyService [FAILED]]}
at com.google.common.util.concurrent.ServiceManager$ServiceManagerState.checkHealthy(ServiceManager.java:740) ~[graylog.jar:?]
at com.google.common.util.concurrent.ServiceManager$ServiceManagerState.awaitHealthy(ServiceManager.java:553) ~[graylog.jar:?]
at com.google.common.util.concurrent.ServiceManager.awaitHealthy(ServiceManager.java:312) ~[graylog.jar:?]
at org.graylog2.bootstrap.ServerBootstrap.startCommand(ServerBootstrap.java:149) [graylog.jar:?]
at org.graylog2.bootstrap.CmdLineTool.run(CmdLineTool.java:209) [graylog.jar:?]
at org.graylog2.bootstrap.Main.main(Main.java:44) [graylog.jar:?]
2018-06-05T10:27:20.827+02:00 INFO [Server] SIGNAL received. Shutting down.
2018-06-05T10:27:20.833+02:00 INFO [GracefulShutdown] Graceful shutdown initiated.
2018-06-05T10:27:20.833+02:00 INFO [GracefulShutdown] Node status: [Halting [LB:DEAD]]. Waiting <3sec> for possible load balancers to recognize state change.
2018-06-05T10:27:20.833+02:00 WARN [DeadEventLoggingListener] Received unhandled event of type <org.graylog2.plugin.lifecycles.Lifecycle> from event bus <AsyncEventBus{graylog-eventbus}>
2018-06-05T10:27:24.835+02:00 INFO [GracefulShutdown] Goodbye.
2018-06-05T10:27:47.682+02:00 INFO [CmdLineTool] Loaded plugin: AWS plugins 2.4.3 [org.graylog.aws.plugin.AWSPlugin]
2018-06-05T10:27:47.684+02:00 INFO [CmdLineTool] Loaded plugin: Elastic Beats Input 2.4.3 [org.graylog.plugins.beats.BeatsInputPlugin]
2018-06-05T10:27:47.685+02:00 INFO [CmdLineTool] Loaded plugin: CEF Input 2.4.3 [org.graylog.plugins.cef.CEFInputPlugin]
2018-06-05T10:27:47.686+02:00 INFO [CmdLineTool] Loaded plugin: Collector 2.4.3 [org.graylog.plugins.collector.CollectorPlugin]
2018-06-05T10:27:47.686+02:00 INFO [CmdLineTool] Loaded plugin: Enterprise Integration Plugin 2.4.3 [org.graylog.plugins.enterprise_integration.EnterpriseIntegrationPlugin]
2018-06-05T10:27:47.687+02:00 INFO [CmdLineTool] Loaded plugin: MapWidgetPlugin 2.4.3 [org.graylog.plugins.map.MapWidgetPlugin]
2018-06-05T10:27:47.687+02:00 INFO [CmdLineTool] Loaded plugin: NetFlow Plugin 2.4.3 [org.graylog.plugins.netflow.NetFlowPlugin]
2018-06-05T10:27:47.694+02:00 INFO [CmdLineTool] Loaded plugin: Pipeline Processor Plugin 2.4.3 [org.graylog.plugins.pipelineprocessor.ProcessorPlugin]
2018-06-05T10:27:47.694+02:00 INFO [CmdLineTool] Loaded plugin: Threat Intelligence Plugin 2.4.3 [org.graylog.plugins.threatintel.ThreatIntelPlugin]
2018-06-05T10:27:47.996+02:00 INFO [CmdLineTool] Running with JVM arguments: -Xms1g -Xmx1g -XX:NewRatio=1 -XX:+ResizeTLAB -XX:+UseConcMarkSweepGC -XX:+CMSConcurrentMTEnabled -XX:+CMSClassUnloadingEnabled -XX:+UseParNewGC -XX:-OmitStackTraceInFastThrow -Dlog4j.configurationFile=file:///etc/graylog/server/log4j2.xml -Djava.library.path=/usr/share/graylog-server/lib/sigar -Dgraylog2.installation_source=rpm
2018-06-05T10:27:48.192+02:00 INFO [Version] HV000001: Hibernate Validator 5.1.3.Final
2018-06-05T10:28:00.256+02:00 INFO [InputBufferImpl] Message journal is enabled.
2018-06-05T10:28:00.277+02:00 INFO [NodeId] Node ID: c910ac4e-778c-4485-bcda-3aa3f93a0580
2018-06-05T10:28:00.465+02:00 INFO [LogManager] Loading logs.
2018-06-05T10:28:00.510+02:00 INFO [LogManager] Logs loading complete.
2018-06-05T10:28:00.510+02:00 INFO [KafkaJournal] Initialized Kafka based journal at /var/lib/graylog-server/journal
2018-06-05T10:28:00.523+02:00 INFO [InputBufferImpl] Initialized InputBufferImpl with ring size <65536> and wait strategy <BlockingWaitStrategy>, running 2 parallel message handlers.
2018-06-05T10:28:00.541+02:00 INFO [cluster] Cluster created with settings {hosts=[localhost:27017], mode=SINGLE, requiredClusterType=UNKNOWN, serverSelectionTimeout='30000 ms', maxWaitQueueSize=5000}
2018-06-05T10:28:00.584+02:00 INFO [cluster] No server chosen by ReadPreferenceServerSelector{readPreference=primary} from cluster description ClusterDescription{type=UNKNOWN, connectionMode=SINGLE, serverDescriptions=[ServerDescription{address=localhost:27017, type=UNKNOWN, state=CONNECTING}]}. Waiting for 30000 ms before timing out
2018-06-05T10:28:00.592+02:00 INFO [connection] Opened connection [connectionId{localValue:1, serverValue:7771}] to localhost:27017
2018-06-05T10:28:00.594+02:00 INFO [cluster] Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 6, 3]}, minWireVersion=0, maxWireVersion=6, maxDocumentSize=16777216, roundTripTimeNanos=439795}
2018-06-05T10:28:00.598+02:00 INFO [connection] Opened connection [connectionId{localValue:2, serverValue:7772}] to localhost:27017
Same error,I don’t know if i forget one step or i dont understand on step