• MentallyExhausted@reddthat.com
    link
    fedilink
    English
    arrow-up
    20
    ·
    6 months ago

    I run it and mariaDB in docker and they run perfectly when left alone, but everything breaks horribly if I try to do an update. I recently figured out that you need to do updates for NC in steps, and docker (unRAID’s, specifically) defaults to jumping to the latest version. I think I figured out how to specify version now so fingers crossed I won’t destroy it the next time I do updates.

    • atmur@lemmy.worldOP
      link
      fedilink
      English
      arrow-up
      12
      ·
      6 months ago

      This is probably what I’m doing wrong. I’m using linuxserver’s docker which should be okay to auto update, but it just continuously degrades over time with updates until it becomes non-functional. Random login failures, logs failing to load, file thumbnails disappearing, the goddamn Collabora office docker that absolutely refuses to work for more than one week, etc.

      I just nuke the NC docker and database and start from scratch every year or so.

      • thisisawayoflife@lemmy.world
        link
        fedilink
        English
        arrow-up
        6
        ·
        6 months ago

        You absolutely need to move from patch to patch and cannot just do a multiple version jump safely. You also need to validate the configs between versions, especially major release updates or you risk breaking. New features and optimizations happen and you also may need to change our update your reverse proxy configuration on update, or modify db table configuration (just puking this from memory as I’ve had to do it before). I don’t know that there’s automation for each one of those steps.

        Because of that, I run nextcloud in a VM and install it from the binary package. I wrote a shell script that handles downloading, moving the files, updating permissions and copying the old config forward, symlinking and doing the upgrade. Then all I have to do is log in as administrator, check out the admin dashboard and make sure there aren’t new things I have to address in the status page. It’s a pain, but my nextcloud uses external db and redis and PHP caching so it’s not an easy out of the box setup. But it’s been solid for a long time once I adopted using this script.

        • eos300v@lemmy.world
          link
          fedilink
          English
          arrow-up
          1
          ·
          6 months ago

          Would love to take a look at that bash script (or at least a template of it) if you wouldn’t mind

          • thisisawayoflife@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            edit-2
            6 months ago

            Here you go:

            https://pastebin.com/f5tL7xwx

            There could probably be some additional refactoring here, but it works for my setup. I’m using default nginx paths, so they probably look different than other installs that use custom stuff like /var/www, etc.

            Use it by putting it in a shell script, make it executable, then call it:

            sudo scriptName.sh 28.0.1

            Replace the version with whatever version you’re upgrading to. I would highly recommend never upgrading to a .0, always wait for at least a .1 patch. I left some sleeps in the when I was debugging a while back, those are safe to remove assuming it works in your setup. I also noticed some variables weren’t quoted, I’m not a bash programmer so there’s probably some consistency issues that could be addressed if someone is OCD.

      • thisfro@slrpnk.net
        link
        fedilink
        English
        arrow-up
        3
        ·
        6 months ago

        For me everything works fine since years, EXCEPT collabora. I use onlyoffice now, it’s much faster and very stable

      • fine_sandy_bottom@lemmy.dbzer0.com
        link
        fedilink
        English
        arrow-up
        2
        ·
        6 months ago

        Yeah I don’t like auto upgrades. Everyone says it’s fine but that’s not my experience.

        My stuff isn’t public facing so I’m not worried about 0-days