hello everyone
I do have a slight mismatch of shown used space on the data page of nextcloud vs. the actual used space of the folders (also on the data page of nextcloud)
it’s the first time I have seen this issue after a complete reinstall with a new jail for NC 27
I have seen several threads about storage not showing the right size but that doesn’t apply here, everything is fine in this regard. it is not an actual problem (at the moment) but I am rather interested in figuring out what is happening here
I have tried some straight forward solutions mainly using occ commands, e.g.:
- files:cleanup
- files:scan --all
- maintenance:repair
so far with no luck. any ideas or maybe anyone who faced the same issue?
Nextcloud version: 27.1.2
Operating system and version: TrueNAS 13 Jail / 13.2-RELEASE-p4
Caddy v2.7.5
PHP version: 8.2.11
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
?php
$CONFIG = array (
'passwordsalt' => '',
'secret' => '',
'trusted_domains' =>
array (
0 => 'localhost',
),
'datadirectory' => '/mnt/files',
'dbtype' => 'mysql',
'version' => '27.1.2.1',
'overwrite.cli.url' => 'https://',
'dbname' => 'nextcloud',
'dbhost' => 'localhost:/var/run/mysql/mysql.sock',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'nextcloud',
'dbpassword' => '',
'installed' => true,
'instanceid' => '',
'logtimezone' => 'Europe/Berlin',
'default_phone_region' => '',
'log_type' => 'file',
'logfile' => '/var/log/nextcloud/nextcloud.log',
'loglevel' => '2',
'logrotate_size' => '104847600',
'memcache.local' => '\\OC\\Memcache\\APCu',
'redis' =>
array (
'host' => '/var/run/redis/redis.sock',
'port' => 0,
),
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'overwritehost' => '',
'overwriteprotocol' => 'http',
'htaccess.RewriteBase' => '/',
'trusted_proxies' =>
array (
1 => 'localhost',
),
'mail_smtpmode' => 'smtp',
'mail_sendmailmode' => 'smtp',
'mail_from_address' => '',
'mail_domain' => '',
'mail_smtpauth' => 1,
'mail_smtphost' => 'smtp.',
'mail_smtpport' => '587',
'mail_smtpname' => '',
'mail_smtppassword' => '',
'maintenance' => false,
);