Hello Guys
I have already a Raspberry Pi running the FR24feed with a dvbt dongle. Now i tried to install the RadarBox Feed as well. But my problem at the moment, when i open my own RadarBox page i don't see any aircrafts.
If i use sudo rbfeeder --set-network-mode off --no-start
then the RadarBox Feed is running but without MLAT, but then i have the problem that my FR24 feed stops running.
I looked around in the Forum but, i am really confused, how i can get both feeds running with 1 antenna and 1 DVBT dongle. There are to many different informations.
I hope somebody can help me.
If that helps:
My RBFeeder ini: network_mode=true
log_file=/var/log/rbfeeder.log
key=
sn=EXTRPI007289
[network]
mode=beast
external_port=30005
external_host=127.0.0.1
[mlat]
autostart_mlat=true
#mlat_cmd=/usr/bin/python3.5 /usr/bin/mlat-client
[dump978]
#dump978_enabled=true
My FR24Feed ini
eceiver="dvbt"
fr24key=""
path="/usr/lib/fr24/dump1090"
bs="no"
raw="no"
logmode="1"
logpath="/var/log/fr24feed"
mlat="yes"
mlat-without-gps="yes"
Thanks
As you have already done OPTION-1 of
Bake a Pi thread and your system is running ok, what I am going to tell is only of academic interest, and you dont have to do it. I am telling this just in case someone else faces this situation.
SOLUTION:Edit file fr24feed.ini
sudo nano /etc/fr24feed.ini
In the file opened, add this line below the last line
procargs="--net"
Restart fr24feed
sudo systemctl restart fr24feed
EXPLANATION:With "network_mode=true" in rbfeeder's configuration file, the rbfeeder tries to get data from port 30005.
Due to fr24feed setting "receiver=dvbt", the integral dump1090 of fr24feed starts and grabs the dvbt dongle. The dump1090 provides data to fr24feed, but does not make it available on port 30005 for use by other feeders, unless procargs="--net" is not added to fr24feed config. Once this is added, dump1090 makes data available at port 30005 for use by rbfeeder.