Just bought an RTL-SDR.com device to feed ADS-B data to some projects.
At first, I ran dump1090 --net, but the web interface was MIA. Using netstat, I did not see where anything was listening on port 8080. I noticed in /usr/share/dump1090, there is a lighttpd.conf file as well as an html/ directory containing the web app.
So rather than continuing on the assumption that dump1090 had an HTTP server built in (I noticed in some RaspPi instructions that it installed Lighttpd as a dependency), I went ahead and installed Lighttpd myself, and added a line to include the dump1090 config file. Now I seem to be listening on both ports 80 and 8080, however browsing to 127.0.0.1 in Firefox, I get "Unable to connect" and with Links from the command line, I get "Connection Refused" on both ports. Port 80 also still fails without the dump1090 config included. Of course, I tried emptying my iptables, and rebooting, to cover basics. There's simply nothing in the lighttpd logs (access.log is literally empty, and error.log just shows start/stop warnings).
Code: Select all
# netstat -tan | grep LISTEN
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:27036 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:57343 0.0.0.0:* LISTEN
tcp 0 0 127.0.0.1:27060 0.0.0.0:* LISTEN
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN
tcp6 0 0 ::1:631 :::* LISTEN
tcp6 0 0 :::80 :::* LISTEN
tcp6 0 0 :::22 :::* LISTENI've installed and configured many web servers in my life, and can count on 0 hands the number of times I've failed this hard
Thanks for reading!

