Problem scenario
Using PowerShell you test TCP/IP connectivity over port 9000 to your Graylog instance. You use these commands:
$tcp = New-Object System.Net.Sockets.TcpClient
$tcp.connect(‘x.x.x.x’, ‘9000’)
You get “Exception calling “Connect” with “2” argument(s): “N connection could be made because the target maching actively refused it.”
You know there is no firewall blocking port 9000. Using nmap you test TCP/IP connectivity over port 9000 to your Graylog instance.
…