Thank you for the tests you performed.
I decided to try using the “Pre-built image” to eliminate any doubts about my configuration.
I just performed exactly the steps indicated in the documentation: Installation — NS8 documentation
I proceed with installation and setup :
LDAP server - OK
Mail server - OK
Crowdsec - OK
Collabora app - OK
I proceed with the installation of Nextcloud OK
proceed with the setup of Nextcloud the task module/nextcloud2/configure-module fails
In the Log I read:
action “configure-module” status is “aborted” (1) at step 90apps_management
2025-05-09T10:40:52+02:00 [1:nextcloud2:agent@nextcloud2] task/module/nextcloud2/da8ab122-fa15-4658-b8a9-c25a9164122b: configure-module/90apps_management is starting
...
2025-05-09T10:40:58+02:00 [1:nextcloud2:agent@nextcloud2] task/module/nextcloud2/da8ab122-fa15-4658-b8a9-c25a9164122b: action "configure-module" status is "aborted" (1) at step 90apps_management
Then I proceed with the identification of the problem by observing what “90apps_management” does:
[root@neth ~]# cat /home/nextcloud2/.config/actions/configure-module/90apps_management
#!/bin/bash
#
# Copyright (C) 2024 Nethesis S.r.l.
# SPDX-License-Identifier: GPL-3.0-or-later
#
# with nextcloud 28 the logreader app is compatible only with `file` log type
# see https://github.com/nextcloud/server/issues/45517
# Failed to get an iterator for log entries: Logreader application only supports "file" log_type
occ app:disable logreader
# install and configure files high performance backend
occ app:install notify_push
occ app:enable notify_push
occ -n notify_push:setup http://127.0.0.1/push
So I execute the individual commands to understand where the error occurs:
[root@neth ~]# runagent -m nextcloud2 occ app:install notify_push
notify_push already installed
[root@neth ~]# runagent -m nextcloud2 occ app:enable notify_push
notify_push already enabled
[root@neth ~]# runagent -m nextcloud2 occ -n notify_push:setup http://127.0.0.1/push
✓ redis is configured
🗴 using unencrypted http for push server is strongly discouraged
✓ push server is receiving redis messages
✓ push server can load mount info from database
✓ push server can connect to the Nextcloud server
✓ push server is a trusted proxy
🗴 push server (version 1.0.0) is not the same version as the app (version 1.1.0).
So currently push server (version 1.0.0) is not the same version as the app (version 1.1.0).
How can I solve it? Thanks for the help