On 27/08/15 01:04, [email protected] wrote: > Then I clicked Launch. After that I received a new notification that > the permission is denied. graylog-server is running as an unprivileged username - so it cannot bind to ports <1024
Either run it on a higher port (and configure all clients to use that port), or you can hopefully use your OS firewall to redirect udp port 514 to the higher port (that's what I did) eg for Linux iptables -t nat -A PREROUTING -p tcp -m tcp --dport 514 -j REDIRECT --to-ports 1514 iptables -t nat -A PREROUTING -p udp -m udp --dport 514 -j REDIRECT --to-ports 1514 That would cause the OS to accept tcp and udp syslog packets and redirects them to port 1514 - which graylog-server would happily run on You can do the same thing with the web interface/graylog-web - that way it can appear to run on port 80 (or port 443) -- Cheers Jason Haar Corporate Information Security Manager, Trimble Navigation Ltd. Phone: +1 408 481 8171 PGP Fingerprint: 7A2E 0407 C9A6 CAF6 2B9F 8422 C063 5EBB FE1D 66D1 -- 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/55DE1DAD.8030002%40trimble.com. For more options, visit https://groups.google.com/d/optout.
