As reported in this Nextcloud issue, Nextcloud 33.0.0 per default requires access to the file /tmp/sfi_file_sequence. If another user on the same host has previously run an update, that user already owns the file and updating nextcloud fails with
Exception: File sequence directory exists but is not writable
Update failed
The upstream fix is included in milestone 33.0.1, targeted for 2026-03-26.
Workaround
As a workaround, creating and configuring a unique tempdirectory in config.php fixes the issue.
[isabell@stardust ~]$ mkdir ~/html/data/nextcloudtmp
Line to add to ~/html/config/config.php:
`tempdirectory` => `/var/www/virtual/<user>/html/data/nextcloudtmp`,
Should this temporary workaround be added to the guide?
As reported in this Nextcloud issue, Nextcloud 33.0.0 per default requires access to the file
/tmp/sfi_file_sequence. If another user on the same host has previously run an update, that user already owns the file and updating nextcloud fails withThe upstream fix is included in milestone 33.0.1, targeted for 2026-03-26.
Workaround
As a workaround, creating and configuring a unique tempdirectory in
config.phpfixes the issue.Line to add to
~/html/config/config.php:Should this temporary workaround be added to the guide?