Graylog docker installation

Hello,

I installed graylog docker, I do not recover the logs of my firewall while with the appliance I see the logs arrived

Wht’s the problem ?

Best Regards,

Bilifive

Please describe exactly what you’ve done, including the full configuration of all relevant components and all commands you’ve executed including their complete output, and what you’re trying to achieve.

Hello,

i’ve installed Graylog Docker on Ubuntu server on Hyper-V , i followed the offical tutorial for installation.

$ docker run --name mongo -d mongo:3
$ docker run --name elasticsearch \
    -e "http.host=0.0.0.0" -e "xpack.security.enabled=false" \
    -d docker.elastic.co/elasticsearch/elasticsearch:5.6.2
$ docker run --link mongo --link elasticsearch \
    -p 9000:9000 -p 12201:12201 -p 514:514 \
    -e GRAYLOG_WEB_ENDPOINT_URI="http://My-Ip-Address:9000/api" \
    -d graylog/graylog:2.4.0-1

and i access to my web interface, i created an input

But the problem is: i don’t receive logs.

Best regards,

You’re exposing only TCP ports with your Docker command but you’re trying to use UDP-based inputs.

See https://docs.docker.com/network/links/#connect-using-network-port-mapping for details.

Ok now it’s works, but i can’t show received messages

When i clicked on show received messages its always on loading

Check the logs of your Graylog and Elasticsearch containers.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.