Dear All, I setup my Raspberry PI 3 B+ with the script method. I'm running Raspbian Buster and I'm already feeding FA and FR24. The installation scripts gave me no error. but I have a couple of questions: 1) Why don't I see myself on the stats page? I'm living in the Rome zone, Italy 2) How can I see that I'm really feeding Adsbexchange? Thanks in advance alessand
@1) Pin on coverage map will appear within 1 hour (if mlat client is running and --privacy is not set) @2) Go to https://www.adsbexchange.com/myip/
Thank you Gentlemen! I found myself on the map, and I saw through .../myip that I'm feeding. Enjoy your day! ciao alessandro
Hi all, I am having the same problems. It seems that I am connected but I can't see it on any map ( 4a or 4B) Can some one please enlighten me? Thanks Dutchyb
I searched you in all the regions, and actually you do not appear. Just an idea.... did you properly set you latitude and longitude? Bye Alessandro
Thanks for the reply. I did set my location I don't know how to check it in my PI. But used the same coordinates as for the other feeds
It's most likely the servers acting up. Just leave it running and check back now and then on the correct map.
Re run the setup. Your attachment is relevant to the map, not to the feeder. They're definitely two different things
Post content of adsbexchange-mlat_maint.sh and /etc/rc.local I bet there is a mistake in one of them.
Look the differences between your adsbexchange-mlat_maint.sh and mine. You're missing several parameters, first coordinates and username. I suggest you to rerun the setup, rather than modify the file. You'll have a more clean installation. Good luck!
You both, those screenshots have ridiculously large fonts. Anyway in nano there is probably not the whole line visible.
Use cat /home/pi/adsb-exchange/adsbexchange-mlat_maint.sh and paste output Code: #!/bin/sh while true do sleep 30 /usr/bin/mlat-client --input-type dump1090 --input-connect localhost:30005 --lat xx.27726 --lon xx.48626 --alt 121 --user UNAME --server feed.adsbexchange.com:31090 --no-udp --results beast,connect,localhost:30104 --results basestation,listen,31003 done cat /etc/rc.local Code: #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. # Print the IP address _IP=$(hostname -I) || true if [ "$_IP" ]; then printf "My IP address is %s\n" "$_IP" fi /home/pi/adsb-exchange/adsbexchange-mlat_maint.sh & /home/pi/adsb-exchange/adsbexchange-netcat_maint.sh & exit 0