Announcement

Collapse
No announcement yet.

FR24Feeder not starting automatically

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • FR24Feeder not starting automatically

    Hi there,

    I have a raspi installed with all updates, etc. and the latest FR24feeder. The system by itself is working but when for whatever reason a reboot is necessary the fr24feeder service is not starting automatically.

    A sudo systemctl status fr24feed give the following:

    fr24feed.service - Flightradar24 Decoder & Feeder

    Loaded: loaded (/etc/systemd/system/fr24feed.service; disabled; preset: enabled)

    Active: active (running) since Wed 2024-04-17 12:36:22 BST; 6min ago

    Process: 50760 ExecStartPre=/usr/lib/fr24/install_dump1090.sh (code=exited, status=0/SUCCESS)

    Process: 50763 ExecStartPre=/usr/lib/fr24/unregister_kernel_modules.sh (code=exited, status=0/SUCCESS)

    Process: 50770 ExecStartPre=/usr/lib/fr24/create_missing_directories.sh (code=exited, status=1/FAILURE)

    Process: 50777 ExecStartPre=/usr/bin/fr24feed --validate-config --config-file=/etc/fr24feed.ini (code=exited, status=0/SUCCESS)

    Main PID: 50778 (fr24feed)

    Tasks: 16 (limit: 3917)

    CPU: 2.835s

    CGroup: /system.slice/fr24feed.service

    └─50778 /usr/bin/fr24feed




    Apr 17 12:42:27 ADSB-GHTC fr24feed[50778]: [feed][i]sent 31,0 AC

    Apr 17 12:42:32 ADSB-GHTC fr24feed[50778]: [feed][i]sent 38,0 AC

    Apr 17 12:42:32 ADSB-GHTC fr24feed[50778]: [feed][n]syncing stream async: 1

    Apr 17 12:42:33 ADSB-GHTC fr24feed[50778]: [feed][n]syncing stream result: 1

    Apr 17 12:42:38 ADSB-GHTC fr24feed[50778]: [feed][i]sent 29,0 AC

    Apr 17 12:42:43 ADSB-GHTC fr24feed[50778]: [feed][i]sent 31,0 AC

    Apr 17 12:42:48 ADSB-GHTC fr24feed[50778]: [feed][i]sent 30,0 AC

    Apr 17 12:42:54 ADSB-GHTC fr24feed[50778]: [feed][i]sent 29,0 AC

    Apr 17 12:42:59 ADSB-GHTC fr24feed[50778]: [feed][i]sent 33,0 AC

    Apr 17 12:43:04 ADSB-GHTC fr24feed[50778]: [feed][i]sent 34,0 AC




    Any advices?

    Thanks Marcus

  • #2
    The error message is not harmful, and you can simply ignore it.

    However if you are getting irritated/upset by this error message, then see below the solution given by bimmerdriver in another thread:

    Originally posted by bimmerdriver View Post

    The message you're seeing in the status is caused by an error in the referenced shell script. Specifically, a chown command is being executed on a directory that doesn't exist. Basically, it's sloppy coding on the part of FR24.

    If you want to fix the error, revise the command as follows:

    Code:
    chown -R fr24:fr24 /dev/shm/decoder.txt /run/fr24feed
    Last edited by abcd567; 2024-04-17, 15:03.

    Comment


    • #3
      abcd567 Thta's what I did and the failure is gone. What is not though is this message "Loaded: loaded (/etc/systemd/system/fr24feed.service; disabled; preset: enabled)​"

      Comment


      • #4
        Originally posted by highchain View Post
        abcd567 Thta's what I did and the failure is gone. What is not though is this message "Loaded: loaded (/etc/systemd/system/fr24feed.service; disabled; preset: enabled")

        Try this:

        Code:
        sudo systemctl enable fr24feed  
        
        sudo reboot  
        
        ## After reboot, check status.
        ## You will find that it has started
        ## automatically on boot
        
        sudo systemctl status fr24feed
        Last edited by abcd567; 2024-04-18, 17:13.

        Comment


        • #5
          abcd567 Perffect, that works!!!! Thank you so much!!!!

          Comment

          Working...
          X