What’s the complete configuration of Graylog and Elasticsearch?
What’s in the logs of Graylog and Elasticsearch?
What’s the output of the following command:
I guess you added the port: firewall-cmd --add-port=9000/tcp --permanent. This requires firewall restart unless you issue two commands:
firewall-cmd --add-port=9000/tcp --permanent
firewall-cmd --add-port=9000/tcp
Looks like the webserver never goes up. You need to look into logs at the time the graylog server was started or restart the server to see the same logs. It will show why it does act this way.
I am using CentOS Linux release 7.4.1708 (Core). Other specs are:
lscpu
Architecture: x86_64
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 1
On-line CPU(s) list: 0
Thread(s) per core: 1
Core(s) per socket: 1
Socket(s): 1
NUMA node(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 44
Model name: Intel® Xeon® CPU E5620 @ 2.40GHz
Stepping: 2
CPU MHz: 2400.085
BogoMIPS: 4800.17
Hypervisor vendor: VMware
Virtualization type: full
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 12288K
NUMA node0 CPU(s): 0
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts nopl xtopology tsc_reliable nonstop_tsc aperfmperf pni pclmulqdq ssse3 cx16 sse4_1 sse4_2 popcnt aes hypervisor lahf_lm epb dtherm arat
free -m
total used free shared buff/cache available
Mem: 488 425 7 0 56 34
Swap: 1023 597 426
tailf /var/log/graylog-server/server.log
2017-10-03T10:29:19.084+05:45 INFO [connection] Opened connection [connectionId{localValue:1, serverValue:12841}] to localhost:27017
2017-10-03T10:29:19.089+05:45 INFO [cluster] Monitor thread successfully connected to server with description ServerDescription{address=localhost:27017, type=STANDALONE, state=CONNECTED, ok=true, version=ServerVersion{versionList=[3, 2, 17]}, minWireVersion=0, maxWireVersion=4, maxDocumentSize=16777216, roundTripTimeNanos=2328494}
2017-10-03T10:29:19.112+05:45 INFO [connection] Opened connection [connectionId{localValue:2, serverValue:12842}] to localhost:27017
2017-10-03T10:29:20.361+05:45 INFO [NodeId] Node ID: 3eab92f3-e48a-4e57-ba32-0722542d704c
2017-10-03T10:29:20.931+05:45 INFO [node] [graylog-3eab92f3-e48a-4e57-ba32-0722542d704c] version[2.3.2], pid[11426], build[b9e4a6a/2016-04-21T16:03:47Z]
2017-10-03T10:29:20.931+05:45 INFO [node] [graylog-3eab92f3-e48a-4e57-ba32-0722542d704c] initializing …
2017-10-03T10:29:20.950+05:45 INFO [plugins] [graylog-3eab92f3-e48a-4e57-ba32-0722542d704c] modules [], plugins [graylog-monitor], sites []
2017-10-03T10:29:28.218+05:45 INFO [node] [graylog-3eab92f3-e48a-4e57-ba32-0722542d704c] initialized
2017-10-03T10:29:29.067+05:45 INFO [Version] HV000001: Hibernate Validator 5.2.4.Final
2017-10-03T10:29:30.154+05:45 INFO [ProcessBuffer] Initialized ProcessBuffer with ring size <65536> and wait strategy .
Going through the link you provided everything are in their specified path.
I have managed the memory and had a fresh install in new machine. http://<serverip>:9000 loads the web interface but i dont know which credentials to use. I tried user:admin and password:(ciphered and deciphered form of root_password_sha2 ). It didnot work. Please suggest.
You were correct. i tried echo -n Hello@123 | sha256sum
99f2bdf9942653ab32d9dfa0b43c72c3fbbb9679450fd965c590c224897b848a -
i have copied the whole chiphered to server.conf but it didnt work. Later i tried only with 99f2bdf9942653ab32d9dfa0b43c72c3fbbb9679450fd965c590c224897b848a
It is working fine now. Thankyou so much for the help.