Jump to content

Problems after installing Emby Server 4.8.11.0


Go to solution Solved by Luke,

Recommended Posts

Posted

I'm logged in using WINSCP and see /share/CACHEDEV1_DATA, but there is no .qpkg folder. Should there be another name for it?

Happy2Play
Posted

Doesn't look your 4.8.11.0 upgrade took.

2025-03-16 00:59:38.515 Info App: Application version: 4.7.13.0

But all I see in the entire log is port mapper failing.

Looks like there may a be a daylight savings time issue per this midnight rollover log also.

  • Solution
Posted

OK so are you able to install a newer version? Try installing 4.8.11, then reboot the NAS as we've seen that sometimes this is necessary with QNAP.

Posted

Problem solved. I think rebooting the server was all it really needed.

Thank you!

  • Thanks 1
supertoto1977
Posted

Hello,

The reboot worked because Emby cannot be stopped properly.

There's an issue in the emby-server.sh. It uses the file /var/run/emby-server.pid to kill the current process. But this file is never created during the start.

So the stop cannot work.

I updated manually the emby-server.sh with the script below (to add in the start) part  just before ;; )

    sleep 10
    PID=$(ps -ef | grep "$QPKG_DIR"/system/EmbyServer | grep -v grep | awk '{print $1}')
    if [ -z "$PID" ]; then
      echo "Emby is not running."
      exit 1
    fi

 

@Luke

Could you please have a look on this issue?

supertoto1977
Posted

My bad, i forgot one line in the previous post

    sleep 10
    PID=$(ps -ef | grep "$QPKG_DIR"/system/EmbyServer | grep -v grep | awk '{print $1}')
    if [ -z "$PID" ]; then
      echo "Emby is not running."
      exit 1
    fi
    echo "$PID" > $PID_FILE

 

Posted
16 hours ago, supertoto1977 said:

Hello,

The reboot worked because Emby cannot be stopped properly.

There's an issue in the emby-server.sh. It uses the file /var/run/emby-server.pid to kill the current process. But this file is never created during the start.

So the stop cannot work.

I updated manually the emby-server.sh with the script below (to add in the start) part  just before ;; )

    sleep 10
    PID=$(ps -ef | grep "$QPKG_DIR"/system/EmbyServer | grep -v grep | awk '{print $1}')
    if [ -z "$PID" ]; then
      echo "Emby is not running."
      exit 1
    fi

 

@Luke

Could you please have a look on this issue?

What version did you test with?

supertoto1977
Posted
5 hours ago, Luke said:

What version did you test with?

The latest one : 4.8.11.0 (package emby-server-qnap_4.8.11.0_x86_64.qpkg)

 

Posted

OK there are changes related to this on the 4.9 beta channel so it could be resolved there already.

supertoto1977
Posted

Thanks for the info

 

  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...