Workaround

A workaround that I decided to go with was to simply extend my backup of the nextcloud snap to simply include the entirety of /var/snap/nextcloud instead of just taking the data directory, and the dump of the database. If I restore /var/snap/nextcloud, everything is immediately restored to its previous working order. This seems to accomplish what I want.

I still have no idea what was causing the previous issue, though. I’m thinking that it might be that some important files, or directories are being left out in the previous backup that nextcloud is expecting to be present, but I’m really not sure.


Original Post

I have been scratching my head for hours over this – I’m really not sure what the problem could be. I have nextcloud installed as a Snap on Ubuntu Server.

Here’s how I went about restoring the backup (fresh install of nextcloud):

  1. Copy over the data: # rsync -Aax data-backup data-directory
  2. Drop the existing database: # nextcloud.mysql-client -e "DROP DATABASE nextcloud"
  3. Create a new database: # nextcloud.mysql-client -e "CREATE DATABASE nextcloud"
  4. Restore the dumped database: # nextcloud.mysql-client nextcloud < database-dump

When I log in to nextcloud in the browser, it initially appears that it worked fine: calendar data, task data, contacts, etc. are all properly loaded, and the images viewer is displaying images; however, when you look at the files tab, there’s nothing there, and, when you try to create a folder, it spits out an error saying “Unable to create folder”. If I run nextcloud.occ files:scan --all it can see all the files in the data directory just fine, it’s just not able to display them in the files taband I cannot figure out why. I would really appreciate any help, ideas, or suggestions.

    • skilltheamps@feddit.de
      link
      fedilink
      English
      arrow-up
      1
      ·
      10 months ago

      Ahh that’s very helpful! I made a cron job to scan regularly as a bandaid solution before…

    • KalciferOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      10 months ago

      I enabled that in /var/snap/nextcloud/current/nextcloud/config/config.php with 'filesystem_check_changes' => 1,, but it did not fix the issue. It did seem to remove one error that was popping up, but I am still getting a prompt stating that the file could not be created (which is strange because, when I did a file scan, it shows that they were created), and the files are still not displayed.

      It should also be noted that I restart nextcloud after applying the changes with # snap restart nextcloud.

  • kolorafa@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    arrow-down
    2
    ·
    10 months ago

    Sounds like a permission problem, probably when you did copy the files then permission did change from like www-data into your user, simplest solution would be to change the permissions for those files (for example to 777 as a temporary solution)

    • KalciferOP
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      10 months ago

      for example to 777 as a temporary solution

      Just tried this, and still nothing.

      # chmod -R 777 data-directory

      • kolorafa@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        ·
        10 months ago

        Check also all parent directories, as the whole path need to have access (execute) permissions.

    • KalciferOP
      link
      fedilink
      English
      arrow-up
      2
      ·
      10 months ago

      occ files:scan --all (or something like that)

      I have already done this, as was mentioned in the post.