Self-Hosted Nextcloud, Data Directory to SSD Error

Summary of the issue you are facing:

My goal is to set up Nextcloud on an Intel NUC with less than 500GB of storage, using a 2TB external SSD to store the Nextcloud data instead of the NUC’s internal storage. I want to access Nextcloud only via a local IP (e.g., 192.x.x.x or 10.x.x.x) without exposing it to the internet.

The Basics

Here are my installation steps:

  1. Install Ubuntu Server 24 LTS
  • sudo apt update
  • sudo apt upgrade -y
  • reboot
  1. Install Nextcloud Steps
  • sudo snap install nextcloud
  • sudo nextcloud.enable-https self-signed (Same steps for renew -3 Months by default)
  • sudo ufw allow 80,443/tcp
  1. Attach External Drive
  • 3.1 Insert External Drive

  • 3.2. List all of the storage device
    sudo fdisk -l

  • 3.3. Make a Folder
    sudo mkdir /mnt/ssd

  • 3.4. Mount the external drive
    sudo mount /dev/sdb1 /mnt/ssd

    Note: Type df -h to check if it mounted.

  • 3.5. Change the permissions on disk
    sudo chmod ugo+rw /mnt/ssd

  • 3.6. Get the UUID for external drive
    sudo blkid

    Note: Copy the UUID

  • 3.7. Make an entry fstab
    sudo nano /etc/fstab

  • 3.8. Entry to paste
    UUID=xxxx-xxxx-xxxx-xxxx /mnt/ssd ext4 defaults 0 0

  • 3.9. Test it

    Unmount: sudo umount /mnt/ssd
    Mount: sudo mount -a
    Check: df -h

  1. Move Nextcloud Data Directory to External Hard-Drive
  • 4.1 Connect the removable-media plug
    sudo snap connect nextcloud:removable-media

    Connecting that interface gives Nextcloud permission to access things in /media/, so you can edit /var/snap/nextcloud/current/nextcloud/config/config.php and make sure the datadirectory is pointing to the right place.

  • 4.2 Now we need to change entry in config.php from
    'datadirectory' => '/var/snap/nextcloud/common/nextcloud/data',
    to
    'datadirectory' => '/mnt/ssd/nextcloud/data',

    But currently, that entry doesn’t exist in config.php

Hence:

  1. Setup initial Nextcloud via UI:
  • 5.1 Go to https://192.x.x.xxx/
  • 5.2 Provide ‘New admin account name’ and ‘New admin password’
  • 5.3 Click Install
  1. Move Nextcloud Data Directory to External Hard-Drive
  • 6.1 Change entry in config.php from
    'datadirectory' => '/var/snap/nextcloud/common/nextcloud/data',
    to
    'datadirectory' => '/mnt/ssd/nextcloud/data',

  • 6.2 Create directories in /mnt/ssd
    mkdir /mnt/ssd/nextcloud

  • 6.3. Disable the snap:
    sudo snap disable nextcloud

  • 6.4 Move (or copy) the current data directory to the new location:
    sudo mv /var/snap/nextcloud/common/nextcloud /mnt/ssd/nextcloud

  • 6.5 Re-enable the snap:
    sudo snap enable nextcloud

  1. Access Nextcloud via GUI

Error

Your data directory is invalid.

Ensure there is a file called ".ncdata" in the root of the data directory. It should have the content: "# Nextcloud data directory"

Cannot create "data" directory.

This can usually be fixed by giving the web server write access to the root directory. See https://docs.nextcloud.com/server/31/go.php?to=admin-dir_permissions

Steps to replicate it (hint: details matter!):

  1. Follow the above steps in order

Web Browser

PASTE

Configuration

Nextcloud

Sensitive information replaced with XXXXX:

sudo cat /var/snap/nextcloud/current/nextcloud/config/config.php
<?php
$CONFIG = array (
  'apps_paths' =>
  array (
    0 =>
    array (
      'path' => '/snap/nextcloud/current/htdocs/apps',
      'url' => '/apps',
      'writable' => false,
    ),
    1 =>
    array (
      'path' => '/var/snap/nextcloud/current/nextcloud/extra-apps',
      'url' => '/extra-apps',
      'writable' => true,
    ),
  ),
  'supportedDatabases' =>
  array (
    0 => 'mysql',
  ),
  'memcache.locking' => '\\OC\\Memcache\\Redis',
  'memcache.local' => '\\OC\\Memcache\\Redis',
  'redis' =>
  array (
    'host' => '/tmp/sockets/redis.sock',
    'port' => 0,
  ),
  'log_type' => 'file',
  'logfile' => '/var/snap/nextcloud/current/logs/nextcloud.log',
  'logfilemode' => 416,
  'maintenance_window_start' => 1,
  'instanceid' => 'XXXXX',
  'passwordsalt' => 'XXXXX',
  'secret' => 'XXXXX+XXXXX',
  'trusted_domains' =>
  array (
    0 => '192.168.1.XXX',
  ),
  'datadirectory' => '/mnt/ssd/nextcloud/data',
  'dbtype' => 'mysql',
  'version' => '31.0.8.1',
  'overwrite.cli.url' => 'https://192.168.1.XXX',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost:/tmp/sockets/mysql.sock',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'mysql.utf8mb4' => true,
  'dbuser' => 'XXXXX',
  'dbpassword' => 'XXXXX',
  'installed' => true,
);

Hey @salmoncarmen, welcome to the Nextcloud community and thanks for supporting Nextcloud snap :handshake:

Below are some links to how-to’s answering frequently asked questions and may help you help yourself;

Pay attention to this →

and especially Change data directory, procedure to move or define data directory

see How to install Nextcloud snap and How to manage Lets Encrypt for Nextcloud snap especially caveats of self-signed certificates and 101: Split-Brain DNS (split-horizon)

IMPORTANT

Self-signed certificate is easier to setup than Let’s Encrypt certificates, but will cause warnings in browsers and due to being very basic won’t work with some applications.

Thank you for your response! I appreciate the effort, but I’ve already gone through all the steps outlined in those links and documented everything thoroughly. My post here could practically be a blog on installing Nextcloud and moving data to an external drive.

That’s not quite what I’m asking about, though. I’ve specifically noted the error I’m encountering, even after following those guides.

Update for anyone who might run into this in the future:

My initial error message:

Error
Your data directory is invalid.
Ensure there is a file called “.ncdata” in the root of the data directory. It should have the content: “# Nextcloud data directory”
Cannot create “data” directory.
This can usually be fixed by giving the web server write access to the root directory. See https://docs.nextcloud.com/server/31/go.php?to=admin-dir_permissions

Then I ran this:

sudo chown root:root /media/lix/ssd
sudo chmod 700 /media/lix/ssd

That fixed error a bit, but now I’m running into below:

Error
Your data directory is invalid.
Ensure there is a file called “.ncdata” in the root of the data directory. It should have the content: “# Nextcloud data directory”

As per Wiki Change data directory · nextcloud-snap/nextcloud-snap Wiki · GitHub it says,

So regardless which procedure is used, the path to the data directory must include the complete path including .../data because this is where the required .ocdata or .ncdata file is located.

But as you can see in my config.php output above, my datadirectory does include the complete path, so Idk :man_shrugging:

can you locate .ncdata or .ocdata in /data ? if not, then you haven’t run first setup?

are you moving or defining the data directory?

So it looks like when you move data, it doesn’t move .ncdata

sudo mv /var/snap/nextcloud/common/nextcloud /mnt/ssd/nextcloud

Hence, I can’t find .ncdata in my

/mnt/ssd/nextcloud/data

Nextcloud snap issue debugging script

Run the following command (copy and paste the entire thing into your terminal and press enter). Paste the output into the issue; it’s pre-formatted to be a nice comment, so only make it an attachment if it’s too long to be a comment.

run the Debugging script and post the output here

It says,

An error occurred: Body is limited to 64000 characters; you entered 138357.

So I’ll break it down, but will make sure to format it properly.

Logrotate

Status

○ snap.nextcloud.logrotate.service - Service for snap application nextcloud.logrotate
     Loaded: loaded (/etc/systemd/system/snap.nextcloud.logrotate.service; static)
     Active: inactive (dead)
TriggeredBy: ● snap.nextcloud.logrotate.timer

Journal

Aug 24 00:00:15 tinyserver systemd[1]: Started snap.nextcloud.logrotate.service - Service for snap application nextcloud.logrotate.
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: reading config file /tmp/tmp.GbMmfQ1Gjq
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Reading state from file: /var/snap/nextcloud/49897/logrotate/status
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Allocating hash table for state file, size 64 entries
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Handling 4 logs
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: rotating pattern: /var/snap/nextcloud/current/logs/apache_errors.log /var/snap/nextcloud/current/logs/apache_access.log  weekly (4 rotations)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: empty log files are not rotated, old logs are removed
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/apache_errors.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Now: 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Last rotated at 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log does not need rotating (log has been already rotated)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/apache_access.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Now: 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Last rotated at 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log does not need rotating (log has been already rotated)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: rotating pattern: /var/snap/nextcloud/current/logs/php_errors.log /var/snap/nextcloud/current/logs/php-fpm_errors.log /var/snap/nextcloud/current/logs/nextcloud.log  weekly (4 rotations)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: empty log files are not rotated, old logs are removed
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/php_errors.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log /var/snap/nextcloud/current/logs/php_errors.log does not exist -- skipping
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/php-fpm_errors.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Now: 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Last rotated at 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log does not need rotating (log has been already rotated)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/nextcloud.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Now: 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Last rotated at 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log does not need rotating (log has been already rotated)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: rotating pattern: /var/snap/nextcloud/current/logs/redis.log  weekly (4 rotations)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: empty log files are not rotated, old logs are removed
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/redis.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Now: 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Last rotated at 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log does not need rotating (log has been already rotated)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: rotating pattern: /var/snap/nextcloud/current/logs/mysql_errors.log  weekly (4 rotations)
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: empty log files are not rotated, old logs are removed
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: considering log /var/snap/nextcloud/current/logs/mysql_errors.log
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]: Creating new state
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Now: 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   Last rotated at 2025-08-24 00:00
Aug 24 00:00:15 tinyserver nextcloud.logrotate[1006099]:   log does not need rotating (log has been already rotated)
Aug 24 00:00:15 tinyserver systemd[1]: snap.nextcloud.logrotate.service: Deactivated successfully.

Nextcloud Cron

Status

● snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron
     Loaded: loaded (/etc/systemd/system/snap.nextcloud.nextcloud-cron.service; enabled; preset: enabled)
     Active: active (running) since Sun 2025-08-24 14:18:05 UTC; 13min ago
   Main PID: 870 (nextcloud-cron)
      Tasks: 2 (limit: 9279)
     Memory: 39.8M (peak: 81.4M)
        CPU: 3.262s
     CGroup: /system.slice/snap.nextcloud.nextcloud-cron.service
             ├─  870 /bin/sh /snap/nextcloud/49897/bin/nextcloud-cron
             └─32848 sleep 5m

Aug 24 14:18:05 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 24 14:18:09 tinyserver nextcloud.nextcloud-cron[870]: Waiting for Nextcloud config dir... done

Journal

Aug 23 13:48:36 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 23 13:48:53 tinyserver nextcloud.nextcloud-cron[18949]: Waiting for Nextcloud config dir... done
Aug 23 13:48:53 tinyserver nextcloud.nextcloud-cron[20311]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 13:53:53 tinyserver nextcloud.nextcloud-cron[39605]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 13:58:53 tinyserver nextcloud.nextcloud-cron[57776]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:03:53 tinyserver nextcloud.nextcloud-cron[75920]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:08:53 tinyserver nextcloud.nextcloud-cron[94102]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:10:56 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron...
Aug 23 14:10:57 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Deactivated successfully.
Aug 23 14:10:57 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 23 14:10:57 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Consumed 1.958s CPU time, 16.6M memory peak, 0B memory swap peak.
-- Boot fdfaaa7a8f8c451da9677a69310e1043 --
Aug 23 14:32:47 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 23 14:32:50 tinyserver nextcloud.nextcloud-cron[803]: Waiting for Nextcloud config dir... done
Aug 23 14:32:56 tinyserver nextcloud.nextcloud-cron[1915]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:57 tinyserver nextcloud.nextcloud-cron[20984]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:44:35 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron...
Aug 23 14:44:35 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Deactivated successfully.
Aug 23 14:44:35 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 23 14:44:35 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Consumed 2.628s CPU time, 41.6M memory peak, 0B memory swap peak.
Aug 23 14:46:31 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 23 14:46:31 tinyserver nextcloud.nextcloud-cron[28370]: Waiting for Nextcloud config dir... done
-- Boot 70bb3846dd4b426dba3499d53f047f06 --
Aug 23 18:28:08 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 23 18:28:11 tinyserver nextcloud.nextcloud-cron[865]: Waiting for Nextcloud config dir... done
Aug 24 13:42:10 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron...
Aug 24 13:42:10 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Deactivated successfully.
Aug 24 13:42:10 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 24 13:42:10 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Consumed 1min 34.066s CPU time.
Aug 24 13:42:26 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 24 13:42:27 tinyserver nextcloud.nextcloud-cron[3491589]: Waiting for Nextcloud config dir... done
Aug 24 14:04:18 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron...
Aug 24 14:04:18 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Deactivated successfully.
Aug 24 14:04:18 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 24 14:04:18 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Consumed 2.238s CPU time.
Aug 24 14:16:36 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 24 14:16:36 tinyserver nextcloud.nextcloud-cron[3559630]: Waiting for Nextcloud config dir... done
Aug 24 14:17:44 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron...
Aug 24 14:17:44 tinyserver systemd[1]: snap.nextcloud.nextcloud-cron.service: Deactivated successfully.
Aug 24 14:17:44 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
-- Boot 61bc5ef11dee407a9b195bc91f51e2d1 --
Aug 24 14:18:05 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-cron.service - Service for snap application nextcloud.nextcloud-cron.
Aug 24 14:18:09 tinyserver nextcloud.nextcloud-cron[870]: Waiting for Nextcloud config dir... done

Nextcloud Fixer

Status

● snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer
     Loaded: loaded (/etc/systemd/system/snap.nextcloud.nextcloud-fixer.service; enabled; preset: enabled)
     Active: active (running) since Sun 2025-08-24 14:18:05 UTC; 13min ago
   Main PID: 873 (nextcloud-fixer)
      Tasks: 2 (limit: 9279)
     Memory: 5.5M (peak: 47.5M)
        CPU: 3min 40.755s
     CGroup: /system.slice/snap.nextcloud.nextcloud-fixer.service
             ├─  873 /bin/sh -e /snap/nextcloud/49897/bin/nextcloud-fixer
             └─43401 sleep 1

Aug 24 14:18:05 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 14:18:09 tinyserver nextcloud.nextcloud-fixer[873]: Waiting for Apache...
Aug 24 14:18:19 tinyserver nextcloud.nextcloud-fixer[873]: done
Aug 24 14:18:20 tinyserver nextcloud.nextcloud-fixer[873]: Waiting for Nextcloud to be installed...

Journal

Aug 23 14:36:27 tinyserver nextcloud.nextcloud-fixer[15427]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:28 tinyserver nextcloud.nextcloud-fixer[15504]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:29 tinyserver nextcloud.nextcloud-fixer[15574]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:31 tinyserver nextcloud.nextcloud-fixer[15644]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:32 tinyserver nextcloud.nextcloud-fixer[15715]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:33 tinyserver nextcloud.nextcloud-fixer[15785]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:34 tinyserver nextcloud.nextcloud-fixer[15855]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:35 tinyserver nextcloud.nextcloud-fixer[15926]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:36 tinyserver nextcloud.nextcloud-fixer[15997]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:38 tinyserver nextcloud.nextcloud-fixer[16067]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:39 tinyserver nextcloud.nextcloud-fixer[16139]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:40 tinyserver nextcloud.nextcloud-fixer[16263]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:41 tinyserver nextcloud.nextcloud-fixer[16333]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:42 tinyserver nextcloud.nextcloud-fixer[16405]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:43 tinyserver nextcloud.nextcloud-fixer[16475]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:45 tinyserver nextcloud.nextcloud-fixer[16546]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:46 tinyserver nextcloud.nextcloud-fixer[16616]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:47 tinyserver nextcloud.nextcloud-fixer[16686]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:48 tinyserver nextcloud.nextcloud-fixer[16759]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:49 tinyserver nextcloud.nextcloud-fixer[16831]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:50 tinyserver nextcloud.nextcloud-fixer[16901]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:52 tinyserver nextcloud.nextcloud-fixer[16971]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:53 tinyserver nextcloud.nextcloud-fixer[17041]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:54 tinyserver nextcloud.nextcloud-fixer[17111]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:55 tinyserver nextcloud.nextcloud-fixer[17181]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:56 tinyserver nextcloud.nextcloud-fixer[17252]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:57 tinyserver nextcloud.nextcloud-fixer[17324]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:36:59 tinyserver nextcloud.nextcloud-fixer[17394]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:00 tinyserver nextcloud.nextcloud-fixer[17464]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:01 tinyserver nextcloud.nextcloud-fixer[17559]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:02 tinyserver nextcloud.nextcloud-fixer[17629]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:03 tinyserver nextcloud.nextcloud-fixer[17700]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:04 tinyserver nextcloud.nextcloud-fixer[17770]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:06 tinyserver nextcloud.nextcloud-fixer[17840]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:07 tinyserver nextcloud.nextcloud-fixer[17910]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:08 tinyserver nextcloud.nextcloud-fixer[17980]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:09 tinyserver nextcloud.nextcloud-fixer[18050]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:10 tinyserver nextcloud.nextcloud-fixer[18123]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:12 tinyserver nextcloud.nextcloud-fixer[18193]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:13 tinyserver nextcloud.nextcloud-fixer[18263]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:14 tinyserver nextcloud.nextcloud-fixer[18335]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:15 tinyserver nextcloud.nextcloud-fixer[18407]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:16 tinyserver nextcloud.nextcloud-fixer[18479]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:17 tinyserver nextcloud.nextcloud-fixer[18553]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:19 tinyserver nextcloud.nextcloud-fixer[18628]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:20 tinyserver nextcloud.nextcloud-fixer[18700]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:21 tinyserver nextcloud.nextcloud-fixer[18772]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:22 tinyserver nextcloud.nextcloud-fixer[18842]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:23 tinyserver nextcloud.nextcloud-fixer[18912]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:24 tinyserver nextcloud.nextcloud-fixer[18983]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:26 tinyserver nextcloud.nextcloud-fixer[19053]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:27 tinyserver nextcloud.nextcloud-fixer[19123]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:28 tinyserver nextcloud.nextcloud-fixer[19193]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:29 tinyserver nextcloud.nextcloud-fixer[19263]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:30 tinyserver nextcloud.nextcloud-fixer[19334]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:31 tinyserver nextcloud.nextcloud-fixer[19405]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:33 tinyserver nextcloud.nextcloud-fixer[19475]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:34 tinyserver nextcloud.nextcloud-fixer[19545]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:35 tinyserver nextcloud.nextcloud-fixer[19617]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:36 tinyserver nextcloud.nextcloud-fixer[19689]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:37 tinyserver nextcloud.nextcloud-fixer[19759]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:38 tinyserver nextcloud.nextcloud-fixer[19831]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:40 tinyserver nextcloud.nextcloud-fixer[19901]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:41 tinyserver nextcloud.nextcloud-fixer[19973]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:42 tinyserver nextcloud.nextcloud-fixer[20043]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:43 tinyserver nextcloud.nextcloud-fixer[20115]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:44 tinyserver nextcloud.nextcloud-fixer[20188]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:45 tinyserver nextcloud.nextcloud-fixer[20261]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:47 tinyserver nextcloud.nextcloud-fixer[20333]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:48 tinyserver nextcloud.nextcloud-fixer[20405]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:49 tinyserver nextcloud.nextcloud-fixer[20475]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:50 tinyserver nextcloud.nextcloud-fixer[20550]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:51 tinyserver nextcloud.nextcloud-fixer[20622]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:52 tinyserver nextcloud.nextcloud-fixer[20693]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:54 tinyserver nextcloud.nextcloud-fixer[20764]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:55 tinyserver nextcloud.nextcloud-fixer[20835]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:56 tinyserver nextcloud.nextcloud-fixer[20905]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:57 tinyserver nextcloud.nextcloud-fixer[21060]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:58 tinyserver nextcloud.nextcloud-fixer[21130]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:37:59 tinyserver nextcloud.nextcloud-fixer[21201]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:01 tinyserver nextcloud.nextcloud-fixer[21271]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:02 tinyserver nextcloud.nextcloud-fixer[21342]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:03 tinyserver nextcloud.nextcloud-fixer[21413]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:04 tinyserver nextcloud.nextcloud-fixer[21483]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:05 tinyserver nextcloud.nextcloud-fixer[21553]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:06 tinyserver nextcloud.nextcloud-fixer[21624]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:08 tinyserver nextcloud.nextcloud-fixer[21695]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:09 tinyserver nextcloud.nextcloud-fixer[21765]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:10 tinyserver nextcloud.nextcloud-fixer[21835]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:11 tinyserver nextcloud.nextcloud-fixer[21906]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:12 tinyserver nextcloud.nextcloud-fixer[21977]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:13 tinyserver nextcloud.nextcloud-fixer[22048]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:15 tinyserver nextcloud.nextcloud-fixer[22118]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:16 tinyserver nextcloud.nextcloud-fixer[22188]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:17 tinyserver nextcloud.nextcloud-fixer[22258]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:18 tinyserver nextcloud.nextcloud-fixer[22328]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:19 tinyserver nextcloud.nextcloud-fixer[22398]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:20 tinyserver nextcloud.nextcloud-fixer[22470]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:22 tinyserver nextcloud.nextcloud-fixer[22543]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:23 tinyserver nextcloud.nextcloud-fixer[22613]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:24 tinyserver nextcloud.nextcloud-fixer[22683]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:25 tinyserver nextcloud.nextcloud-fixer[22753]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:26 tinyserver nextcloud.nextcloud-fixer[22823]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:27 tinyserver nextcloud.nextcloud-fixer[22894]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:29 tinyserver nextcloud.nextcloud-fixer[22964]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:30 tinyserver nextcloud.nextcloud-fixer[23034]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:31 tinyserver nextcloud.nextcloud-fixer[23104]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:32 tinyserver nextcloud.nextcloud-fixer[23174]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:33 tinyserver nextcloud.nextcloud-fixer[23244]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:34 tinyserver nextcloud.nextcloud-fixer[23315]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:36 tinyserver nextcloud.nextcloud-fixer[23385]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:37 tinyserver nextcloud.nextcloud-fixer[23456]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:38 tinyserver nextcloud.nextcloud-fixer[23526]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:39 tinyserver nextcloud.nextcloud-fixer[23597]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:40 tinyserver nextcloud.nextcloud-fixer[23667]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:41 tinyserver nextcloud.nextcloud-fixer[23738]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:43 tinyserver nextcloud.nextcloud-fixer[23808]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:44 tinyserver nextcloud.nextcloud-fixer[23879]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:45 tinyserver nextcloud.nextcloud-fixer[23949]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:46 tinyserver nextcloud.nextcloud-fixer[24020]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:47 tinyserver nextcloud.nextcloud-fixer[24090]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:48 tinyserver nextcloud.nextcloud-fixer[24161]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:50 tinyserver nextcloud.nextcloud-fixer[24231]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:51 tinyserver nextcloud.nextcloud-fixer[24301]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:52 tinyserver nextcloud.nextcloud-fixer[24371]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:53 tinyserver nextcloud.nextcloud-fixer[24442]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:54 tinyserver nextcloud.nextcloud-fixer[24513]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:55 tinyserver nextcloud.nextcloud-fixer[24585]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:57 tinyserver nextcloud.nextcloud-fixer[24655]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:58 tinyserver nextcloud.nextcloud-fixer[24726]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:38:59 tinyserver nextcloud.nextcloud-fixer[24797]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:00 tinyserver nextcloud.nextcloud-fixer[24867]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:01 tinyserver nextcloud.nextcloud-fixer[24938]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:02 tinyserver nextcloud.nextcloud-fixer[25009]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:04 tinyserver nextcloud.nextcloud-fixer[25079]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:05 tinyserver nextcloud.nextcloud-fixer[25149]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:06 tinyserver nextcloud.nextcloud-fixer[25219]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:07 tinyserver nextcloud.nextcloud-fixer[25289]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:08 tinyserver nextcloud.nextcloud-fixer[25360]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:09 tinyserver nextcloud.nextcloud-fixer[25431]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:11 tinyserver nextcloud.nextcloud-fixer[25501]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:12 tinyserver nextcloud.nextcloud-fixer[25571]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:13 tinyserver nextcloud.nextcloud-fixer[25641]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:14 tinyserver nextcloud.nextcloud-fixer[25713]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:15 tinyserver nextcloud.nextcloud-fixer[25783]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:16 tinyserver nextcloud.nextcloud-fixer[25854]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:18 tinyserver nextcloud.nextcloud-fixer[25924]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:19 tinyserver nextcloud.nextcloud-fixer[25995]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:20 tinyserver nextcloud.nextcloud-fixer[26065]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:21 tinyserver nextcloud.nextcloud-fixer[26137]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:22 tinyserver nextcloud.nextcloud-fixer[26207]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:24 tinyserver nextcloud.nextcloud-fixer[26294]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:25 tinyserver nextcloud.nextcloud-fixer[26364]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:26 tinyserver nextcloud.nextcloud-fixer[26434]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:27 tinyserver nextcloud.nextcloud-fixer[26508]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:28 tinyserver nextcloud.nextcloud-fixer[26578]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:30 tinyserver nextcloud.nextcloud-fixer[26652]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:31 tinyserver nextcloud.nextcloud-fixer[26722]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:32 tinyserver nextcloud.nextcloud-fixer[26795]: Nextcloud is not installed - only a limited number of commands are available
Aug 23 14:39:34 tinyserver nextcloud.nextcloud-fixer[805]: done
Aug 23 14:39:34 tinyserver nextcloud.nextcloud-fixer[26886]: run-parts: executing /snap/nextcloud/49897/fixes/fresh-install/2_add-missing-indices.sh
Aug 23 14:39:34 tinyserver nextcloud.nextcloud-fixer[26886]: run-parts: executing /snap/nextcloud/49897/fixes/fresh-install/3_add-missing-columns.sh
Aug 23 14:39:35 tinyserver nextcloud.nextcloud-fixer[27018]: Done.
Aug 23 14:39:35 tinyserver nextcloud.nextcloud-fixer[26886]: run-parts: executing /snap/nextcloud/49897/fixes/fresh-install/4_convert-filecache-bigint.sh
Aug 23 14:39:35 tinyserver nextcloud.nextcloud-fixer[27086]: All tables already up to date!
Aug 23 14:39:35 tinyserver nextcloud.nextcloud-fixer[26886]: run-parts: executing /snap/nextcloud/49897/fixes/fresh-install/99_record_snap_version.sh
Aug 23 14:39:35 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Deactivated successfully.
Aug 23 14:39:35 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Consumed 1min 2.517s CPU time, 23.1M memory peak, 0B memory swap peak.
Aug 23 14:46:31 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 23 14:46:31 tinyserver nextcloud.nextcloud-fixer[28377]: Waiting for Apache...
Aug 23 14:46:37 tinyserver nextcloud.nextcloud-fixer[28377]: done
Aug 23 14:46:38 tinyserver nextcloud.nextcloud-fixer[28377]: Waiting for Nextcloud to be installed...
-- Boot 70bb3846dd4b426dba3499d53f047f06 --
Aug 23 18:28:08 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 23 18:28:11 tinyserver nextcloud.nextcloud-fixer[867]: Waiting for Apache...
Aug 23 18:28:21 tinyserver nextcloud.nextcloud-fixer[867]: done
Aug 23 18:28:22 tinyserver nextcloud.nextcloud-fixer[867]: Waiting for Nextcloud to be installed...
Aug 24 13:42:10 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer...
Aug 24 13:42:10 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Deactivated successfully.
Aug 24 13:42:10 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 13:42:10 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Consumed 5h 12min 52.417s CPU time.
Aug 24 13:42:26 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 13:42:27 tinyserver nextcloud.nextcloud-fixer[3491544]: Waiting for Apache...
Aug 24 13:42:32 tinyserver nextcloud.nextcloud-fixer[3491544]: done
Aug 24 13:42:32 tinyserver nextcloud.nextcloud-fixer[3491544]: Waiting for Nextcloud to be installed...
Aug 24 14:04:16 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer...
Aug 24 14:04:16 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Deactivated successfully.
Aug 24 14:04:16 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 14:04:16 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Consumed 5min 53.937s CPU time.
Aug 24 14:16:36 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 14:16:36 tinyserver nextcloud.nextcloud-fixer[3559645]: Waiting for Apache...
Aug 24 14:16:42 tinyserver nextcloud.nextcloud-fixer[3559645]: done
Aug 24 14:16:43 tinyserver nextcloud.nextcloud-fixer[3559645]: Waiting for Nextcloud to be installed...
Aug 24 14:17:44 tinyserver systemd[1]: Stopping snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer...
Aug 24 14:17:44 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Deactivated successfully.
Aug 24 14:17:44 tinyserver systemd[1]: Stopped snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 14:17:44 tinyserver systemd[1]: snap.nextcloud.nextcloud-fixer.service: Consumed 17.618s CPU time.
-- Boot 61bc5ef11dee407a9b195bc91f51e2d1 --
Aug 24 14:18:05 tinyserver systemd[1]: Started snap.nextcloud.nextcloud-fixer.service - Service for snap application nextcloud.nextcloud-fixer.
Aug 24 14:18:09 tinyserver nextcloud.nextcloud-fixer[873]: Waiting for Apache...
Aug 24 14:18:19 tinyserver nextcloud.nextcloud-fixer[873]: done
Aug 24 14:18:20 tinyserver nextcloud.nextcloud-fixer[873]: Waiting for Nextcloud to be installed...

Nextcloud configuration

Your data directory is invalid.
Ensure there is a file called ".ncdata" in the root of the data directory. It should have the content: "# Nextcloud data directory"

An unhandled exception has been thrown:
Exception: Environment not properly prepared. in /snap/nextcloud/49897/htdocs/lib/private/Console/Application.php:143
Stack trace:
#0 /snap/nextcloud/49897/htdocs/console.php(81): OC\Console\Application->loadCommands()
#1 /snap/nextcloud/49897/htdocs/occ(33): require_once('...')
#2 {main}```
  </p>
</details>

<details>
  <summary>Nextcloud logs</summary>
  <p>

  </p>
</details>

<details>
  <summary>Over-mounts</summary>
  <p>

/var/lib/snapd/snaps/nextcloud_49897.snap on /snap/nextcloud/49897 type squashfs (ro,nodev,relatime,errors=continue,threads=single,x-gdu.hide,x-gvfs-hide)
nsfs on /run/snapd/ns/nextcloud.mnt type nsfs (rw)

  </p>
</details>

<details>
  <summary>snap version</summary>
  <p>

snap 2.71
snapd 2.71
series 16
ubuntu 24.04
kernel 6.8.0-78-generic

  </p>
</details>

<details>
  <summary>nextcloud version</summary>
  <p>

Name Version Rev Tracking Publisher Notes
nextcloud 31.0.8snap1 49897 latest/stable nextcloud✓ -

  </p>
</details>

<details>
  <summary>nextcloud interfaces</summary>
  <p>

Interface Plug Slot Notes
network nextcloud:network :network -
network-bind nextcloud:network-bind :network-bind -
network-observe nextcloud:network-observe - -
removable-media nextcloud:removable-media :removable-media manual

  </p>
</details>

i’ve deleted non relevant…

please be clear, did you move your data?

post the result of:

`sudo la -al /mnt/ssd/nextcloud/data

we’re looking for something like this:


`

Solution

  1. Disable Nextcloud:

sudo snap disable nextcloud

  1. Create .ncdata

cd /mnt/ssd/user/data/
sudo nano .ncdata

 2.1 Content of the file:

# Nextcloud data directory

  1. Enable Nextcloud

sudo snap enable nextcloud

:face_with_steam_from_nose: :face_with_steam_from_nose: :face_with_steam_from_nose:

This topic was automatically closed 8 days after the last reply. New replies are no longer allowed.