Support intro
Sorry to hear youâre facing problems
help.nextcloud.com is for home/non-enterprise users. If youâre running a business, paid support can be accessed via portal.nextcloud.com where we can ensure your business keeps running smoothly.
In order to help you as quickly as possible, before clicking Create Topic please provide as much of the below as you can. Feel free to use a pastebin service for logs, otherwise either indent short log examples with four spaces:
example
Or for longer, use three backticks above and below the code snippet:
longer
example
here
Some or all of the below information will be requested if it isnât supplied; for fastest response please provide as much as you can
Nextcloud version (eg, 20.0.5): NextCloud AIO 7.4.1 & 7.5.0, NextCloud Hub 6 (27.1.2)
Operating system and version (eg, Ubuntu 20.04): Debian 12.2
Apache or nginx version (eg, Apache 2.4.25): Unknown
PHP version (eg, 7.4): Unknown
The issue you are facing: I am looking to replace my original Owncloud server so decided to install in Docker using NextCloud AIO. Install sits behind a reverse proxy. Small set up with about five users. We so far only do basic file syncing using desktop client on Windows. For the most part it works perfect except for a couple small issues.
- I am unable to delete users in Web UI.
- Unable to delete files or folders from web UI or sync client.
If I should separate these out please let me know. I am including both in case they are related. Been troubleshooting for a while and have tried:
- most things found in previous versions including the bug recent fixed in QuerySearchHelper.php.
- Tried disabling file locking.
- Removed all Optional add-ons (collabra, talk, etc).
- Tried plain deployment with no additonal apps.
- Also, tried completely blowing away all containers, volumes, etc and starting from scratch. Upon fresh deployment I would test by creating a test user and trying to delete. When the error is encountered I see no error in the logs. I have also tried enabling Debug logging but did not see anything during the timestamp of the attempt.
- Music app is not installed (caused this in a previou version)
Sure Iâm missing something but canât think of what else to try.
Also including my docker run command:
docker run
âinit
âsig-proxy=false
âname nextcloud-aio-mastercontainer
ârestart always
âpublish 8080:8080
âenv APACHE_PORT=12000
âenv APACHE_IP_BINDING=0.0.0.0
âvolume nextcloud_aio_mastercontainer:/mnt/docker-aio-config
âvolume /var/run/docker.sock:/var/run/docker.sock:ro
nextcloud/all-in-one:latest
Is this the first time youâve seen this error? (Y/N): N
Steps to replicate it:
User Deletion
- Create user
- Log on as user via Web UI
- After logging out attempt to delete user with either actions menu or three dots
File Deletion
- Delete file/folder on client. Nextcloud app reports â403 Access deniedâ
File Deletion on Web UI
- Browse to file/folder
- delete file "Error deleting file "
The output of your Nextcloud log in Admin > Logging:
Error core OCP\Files\NotFoundException: /appdata_octy7yjkaszl/theming/global
2023-10-27T09:56:06-0500
Error core OCP\Files\NotFoundException: /appdata_octy7yjkaszl/theming/global
2023-10-27T09:51:06-0500
Error richdocuments GuzzleHttp\Exception\ServerException: Server error: `GET https://nextcloud.ME.MY/hosting/capabilities` resulted in a `502 Connection refused` response: <HTML> <HEAD> <TITLE>Could Not Connect</TITLE> </HEAD> <BODY BGCOLOR="white" FGCOLOR="black"> <H1>Could Not Connect</H1 (truncated...)
2023-10-27T09:46:08-0500
Error core OCP\Files\NotFoundException: /appdata_octy7yjkaszl/theming/global
2023-10-27T09:46:07-0500
Warning fulltextsearch_elasticsearch Elastic\Elasticsearch\Exception\ClientResponseException: 404 Not Found: {"error":{"root_cause":[{"type":"index_not_found_exception","reason":"no such index [nextcloud-aio]","resource.type":"index_or_alias","resource.id":"nextcloud-aio","index_uuid":"_na_","index":"nextcloud-aio"}],"type":"index_not_found_exception","reason":"no such index [nextcloud-aio]","resource.type":"index_or_alias","resource.id":"nextcloud-aio","index_uuid":"_na_","index":"nextcloud-aio"},"status":404}
2023-10-27T09:45:50-0500
Warning fulltextsearch_elasticsearch Elastic\Elasticsearch\Exception\ClientResponseException: 404 Not Found: {"error":{"root_cause":[{"type":"resource_not_found_exception","reason":"pipeline [attachment] is missing"}],"type":"resource_not_found_exception","reason":"pipeline [attachment] is missing"},"status":404}
2023-10-27T09:45:50-0500
Fatal spreed RuntimeException: There can only be one Talk backend
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'one-click-instance' => true,
'one-click-instance.user-limit' => 100,
'memcache.local' => '\\OC\\Memcache\\APCu',
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'check_data_directory_permissions' => false,
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'nextcloud-aio-redis',
'password' => 'PASSWORD',
'port' => 6379,
),
'overwritehost' => 'nextcloud.ME.MY',
'overwriteprotocol' => 'https',
'passwordsalt' => 'password',
'secret' => 'secret',
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'nextcloud.ME.MY',
),
'datadirectory' => '/mnt/ncdata',
'dbtype' => 'pgsql',
'version' => '27.1.2.1',
'overwrite.cli.url' => 'https://nextcloud.ME.MY/',
'dbname' => 'nextcloud_database',
'dbhost' => 'nextcloud-aio-database',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'oc_nextcloud',
'dbpassword' => 'password',
'installed' => true,
'instanceid' => 'octy7yjdeszl',
'maintenance' => false,
'loglevel' => '2',
'log_type' => 'file',
'logfile' => '/var/www/html/data/nextcloud.log',
'log_rotate_size' => '10485760',
'log.condition' =>
array (
'apps' =>
array (
0 => 'admin_audit',
),
),
'preview_max_x' => '2048',
'preview_max_y' => '2048',
'jpeg_quality' => '60',
'enabledPreviewProviders' =>
array (
1 => 'OC\\Preview\\Image',
2 => 'OC\\Preview\\MarkDown',
3 => 'OC\\Preview\\MP3',
4 => 'OC\\Preview\\TXT',
5 => 'OC\\Preview\\OpenDocument',
6 => 'OC\\Preview\\Movie',
7 => 'OC\\Preview\\Krita',
0 => 'OC\\Preview\\Imaginary',
),
'enable_previews' => true,
'upgrade.disable-web' => true,
'mail_smtpmode' => 'smtp',
'trashbin_retention_obligation' => 'auto, 30',
'versions_retention_obligation' => 'auto, 30',
'activity_expire_days' => '30',
'simpleSignUpLink.shown' => false,
'share_folder' => '/Shared',
'one-click-instance.link' => 'https://nextcloud.com/all-in-one/',
'upgrade.cli-upgrade-link' => 'https://github.com/nextcloud/all-in-one/discussions/2726',
'updatedirectory' => '/nc-updater',
'davstorage.request_timeout' => 3600,
'htaccess.RewriteBase' => '/',
'dbpersistent' => false,
'files_external_allow_create_new_local' => false,
'trusted_proxies' =>
array (
0 => '127.0.0.1',
1 => '::1',
),
'allow_local_remote_servers' => true,
'preview_imaginary_url' => 'http://nextcloud-aio-imaginary:9000',
);
The output of your Apache/nginx/system log in /var/log/____
:
Given containers, not sure where the logs are. this is the apache-stdout---supervisor-vl6f5p18.log from the apache container/
10.100.0.5, 10.200.0.2 - - [27/Oct/2023:11:48:58 -0500] "GET /apps/richdocuments/settings/fonts.json HTTP/1.1" 200 102 "-" "COOLWSD HTTP Agent 23.05.5.1"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:48:48 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:17 -0500] "POST /apps/notify_push/pre_auth HTTP/1.1" 200 32 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:18 -0500] "PROPFIND /remote.php/dav/files/chris/Desktop HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:18 -0500] "PROPFIND /remote.php/dav/files/chris/Documents HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:18 -0500] "PROPFIND /remote.php/dav/files/chris/Downloads HTTP/1.1" 207 243 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:18 -0500] "PROPFIND /remote.php/dav/files/chris/Pictures HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:25 -0500] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 471 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:25 -0500] "GET /remote.php/dav/avatars/chris/128.png HTTP/1.1" 200 1692 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:08 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:28 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "GET /ocs/v2.php/apps/user_status/api/v1/user_status?format=json HTTP/1.1" 200 150 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "PROPFIND /remote.php/dav/files/chris/Desktop HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "GET /ocs/v2.php/apps/notifications/api/v2/notifications?format=json HTTP/1.1" 200 81 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "PROPFIND /remote.php/dav/files/chris/Documents HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "PROPFIND /remote.php/dav/files/chris/Downloads HTTP/1.1" 207 243 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "PROPFIND /remote.php/dav/files/chris/Pictures HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:55 -0500] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 471 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:55 -0500] "GET /remote.php/dav/avatars/chris/128.png HTTP/1.1" 200 1692 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.100.0.5, 10.200.0.2 - - [27/Oct/2023:11:49:58 -0500] "GET /apps/richdocuments/settings/fonts.json HTTP/1.1" 200 102 "-" "COOLWSD HTTP Agent 23.05.5.1"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:49:48 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:18 -0500] "PROPFIND /remote.php/dav/files/chris/Desktop HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:19 -0500] "PROPFIND /remote.php/dav/files/chris/Documents HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:19 -0500] "PROPFIND /remote.php/dav/files/chris/Downloads HTTP/1.1" 207 243 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:19 -0500] "POST /apps/notify_push/pre_auth HTTP/1.1" 200 32 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:19 -0500] "PROPFIND /remote.php/dav/files/chris/Pictures HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:25 -0500] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 473 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:25 -0500] "GET /remote.php/dav/avatars/chris/128.png HTTP/1.1" 200 1692 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:08 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:33 -0500] "GET /csrftoken HTTP/1.1" 200 123 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:41 -0500] "PUT /ocs/v2.php/apps/user_status/api/v1/heartbeat?format=json HTTP/1.1" 200 149 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:44 -0500] "GET /settings/admin/logging HTTP/1.1" 200 13481 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "GET /ocs/v2.php/search/providers?from=%2Fsettings%2Fadmin%2Flogging HTTP/1.1" 200 336 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "GET /apps/logreader/settings HTTP/1.1" 200 107 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1" 200 488 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "POST /apps/notify_push/pre_auth HTTP/1.1" 200 32 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "GET /ocs/v2.php/apps/user_status/api/v1/statuses/admin HTTP/1.1" 200 119 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "PUT /ocs/v2.php/apps/user_status/api/v1/heartbeat?format=json HTTP/1.1" 200 149 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "GET /apps/logreader/get?offset=0&count=50&levels=11111 HTTP/1.1" 200 2923 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:47 -0500] "POST /apps/notify_push/pre_auth HTTP/1.1" 200 32 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:48 -0500] "GET /ocs/v2.php/apps/notifications/api/v2/notifications?format=json HTTP/1.1" 200 81 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:28 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:48 -0500] "PROPFIND /remote.php/dav/files/chris/Desktop HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:48 -0500] "GET /ocs/v2.php/apps/user_status/api/v1/user_status?format=json HTTP/1.1" 200 150 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:48 -0500] "PROPFIND /remote.php/dav/files/chris/Documents HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:48 -0500] "PROPFIND /remote.php/dav/files/chris/Downloads HTTP/1.1" 207 243 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:48 -0500] "PROPFIND /remote.php/dav/files/chris/Pictures HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:54 -0500] "GET /settings/users HTTP/1.1" 200 13888 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:55 -0500] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 473 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:55 -0500] "GET /remote.php/dav/avatars/chris/128.png HTTP/1.1" 200 1692 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/search/providers?from=%2Fsettings%2Fusers HTTP/1.1" 200 342 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/apps/user_status/api/v1/statuses/admin HTTP/1.1" 200 119 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "PUT /ocs/v2.php/apps/user_status/api/v1/heartbeat?format=json HTTP/1.1" 200 149 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "POST /apps/notify_push/pre_auth HTTP/1.1" 200 32 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/apps/notifications/api/v2/notifications HTTP/1.1" 200 488 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/cloud/users/details?offset=0&limit=10&search= HTTP/1.1" 200 484 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/cloud/users/details?offset=0&limit=25&search= HTTP/1.1" 200 484 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/cloud/users/details?offset=0&limit=10&search= HTTP/1.1" 200 484 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:56 -0500] "GET /ocs/v2.php/cloud/users/details?offset=0&limit=10&search= HTTP/1.1" 200 484 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.100.0.5, 10.200.0.2 - - [27/Oct/2023:11:50:58 -0500] "GET /apps/richdocuments/settings/fonts.json HTTP/1.1" 200 102 "-" "COOLWSD HTTP Agent 23.05.5.1"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:50:45 -0500] "GET /apps/logreader/poll?lastReqId=GKWn1x29oYh47gYGqsoN HTTP/1.1" 200 22 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:18 -0500] "PROPFIND /remote.php/dav/files/chris/Desktop HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:18 -0500] "PROPFIND /remote.php/dav/files/chris/Documents HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:18 -0500] "PROPFIND /remote.php/dav/files/chris/Downloads HTTP/1.1" 207 243 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:18 -0500] "PROPFIND /remote.php/dav/files/chris/Pictures HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:22 -0500] "POST /login/confirm HTTP/1.1" 200 44 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:22 -0500] "POST /ocs/v2.php/cloud/users HTTP/1.1" 200 89 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:23 -0500] "GET /ocs/v2.php/cloud/users/test HTTP/1.1" 200 342 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:23 -0500] "GET /ocs/v2.php/cloud/users/details?offset=0&limit=10&search= HTTP/1.1" 200 534 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:25 -0500] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 473 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:25 -0500] "GET /remote.php/dav/avatars/chris/128.png HTTP/1.1" 200 1692 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:30 -0500] "GET /core/templates/message.html HTTP/1.1" 200 111 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:48 -0500] "GET /ocs/v2.php/apps/notifications/api/v2/notifications?format=json HTTP/1.1" 200 81 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:48 -0500] "GET /ocs/v2.php/apps/user_status/api/v1/user_status?format=json HTTP/1.1" 200 150 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:48 -0500] "POST /apps/notify_push/pre_auth HTTP/1.1" 200 32 "-" "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:48 -0500] "PROPFIND /remote.php/dav/files/chris/Desktop HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:49 -0500] "PROPFIND /remote.php/dav/files/chris/Documents HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:49 -0500] "PROPFIND /remote.php/dav/files/chris/Downloads HTTP/1.1" 207 243 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:49 -0500] "PROPFIND /remote.php/dav/files/chris/Pictures HTTP/1.1" 207 242 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:55 -0500] "GET /ocs/v1.php/cloud/user?format=json HTTP/1.1" 200 474 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
10.0.0.237, 10.200.0.2 - - [27/Oct/2023:11:51:55 -0500] "GET /remote.php/dav/avatars/chris/128.png HTTP/1.1" 200 1692 "-" "Mozilla/5.0 (Windows) mirall/3.10.1stable-Win64 (build 20231025) (Nextcloud, windows-10.0.22621 ClientArchitecture: x86_64 OsArchitecture: x86_64)"
868d1f2be61f:/var/log/supervisord$
PASTE HERE
Output errors in nextcloud.log in /var/www/ or as admin user in top right menu, filtering for errors. Use a pastebin service if necessary.
{"reqId":"xLlxwEsI9nwwwGswweSJ","level":4,"time":"2023-10-27T14:45:22+00:00","remoteAddr":"","user":"--","app":"spreed","method":"","url":"--","message":"Error during app service registration: There can only be one Talk backend","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"RuntimeException","Message":"There can only be one Talk backend","Code":0,"Trace":[{"file":"/var/www/html/lib/private/AppFramework/Bootstrap/RegistrationContext.php","line":335,"function":"registerTalkBackend","class":"OC\\AppFramework\\Bootstrap\\RegistrationContext","type":"->","args":["spreed","OCA\\Talk\\OCP\\TalkBackend"]},{"file":"/var/www/html/custom_apps/spreed/lib/AppInfo/Application.php","line":166,"function":"registerTalkBackend","class":"OCP\\AppFramework\\Bootstrap\\IRegistrationContext@anonymous\u0000/var/www/html/lib/private/AppFramework/Bootstrap/RegistrationContext.php:160$4e","type":"->","args":["OCA\\Talk\\OCP\\TalkBackend"]},{"file":"/var/www/html/lib/private/AppFramework/Bootstrap/Coordinator.php","line":142,"function":"register","class":"OCA\\Talk\\AppInfo\\Application","type":"->","args":[["OCP\\AppFramework\\Bootstrap\\IRegistrationContext@anonymous\u0000/var/www/html/lib/private/AppFramework/Bootstrap/RegistrationContext.php:160$4e"]]},{"file":"/var/www/html/lib/private/AppFramework/Bootstrap/Coordinator.php","line":94,"function":"registerApps","class":"OC\\AppFramework\\Bootstrap\\Coordinator","type":"->","args":[["spreed"]]},{"file":"/var/www/html/lib/private/Installer.php","line":143,"function":"runLazyRegistration","class":"OC\\AppFramework\\Bootstrap\\Coordinator","type":"->","args":["spreed"]},{"file":"/var/www/html/lib/private/legacy/OC_App.php","line":278,"function":"installApp","class":"OC\\Installer","type":"->","args":["spreed"]},{"file":"/var/www/html/core/Command/App/Install.php","line":97,"function":"enable","class":"OC_App","type":"->","args":["spreed"]},{"file":"/var/www/html/3rdparty/symfony/console/Command/Command.php","line":298,"function":"execute","class":"OC\\Core\\Command\\App\\Install","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":1040,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":301,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["OC\\Core\\Command\\App\\Install"],["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":171,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/lib/private/Console/Application.php","line":211,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->","args":[]},{"file":"/var/www/html/occ","line":11,"args":["/var/www/html/console.php"],"function":"require_once"}],"File":"/var/www/html/lib/private/AppFramework/Bootstrap/RegistrationContext.php","Line":490,"message":"Error during app service registration: There can only be one Talk backend","exception":{},"CustomMessage":"Error during app service registration: There can only be one Talk backend"}}
{"reqId":"kxjsmsiRZoc3CmugVePP","level":2,"time":"2023-10-27T14:45:50+00:00","remoteAddr":"","user":"--","app":"fulltextsearch_elasticsearch","method":"","url":"--","message":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"}],\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"},\"status\":404}","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"Elastic\\Elasticsearch\\Exception\\ClientResponseException","Message":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"}],\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"},\"status\":404}","Code":404,"Trace":[{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/elasticsearch/elasticsearch/src/Client.php","line":172,"function":"setResponse","class":"Elastic\\Elasticsearch\\Response\\Elasticsearch","type":"->","args":[["GuzzleHttp\\Psr7\\Response"],true]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/elasticsearch/elasticsearch/src/Endpoints/Ingest.php","line":64,"function":"sendRequest","class":"Elastic\\Elasticsearch\\Client","type":"->","args":[["GuzzleHttp\\Psr7\\Request"]]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/lib/Service/IndexService.php","line":137,"function":"deletePipeline","class":"Elastic\\Elasticsearch\\Endpoints\\Ingest","type":"->","args":[["attachment"]]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/lib/Service/IndexService.php","line":99,"function":"resetIndexAll","class":"OCA\\FullTextSearch_Elasticsearch\\Service\\IndexService","type":"->","args":[["Elastic\\Elasticsearch\\Client"]]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/lib/Platform/ElasticSearchPlatform.php","line":160,"function":"initializeIndex","class":"OCA\\FullTextSearch_Elasticsearch\\Service\\IndexService","type":"->","args":[["Elastic\\Elasticsearch\\Client"]]},{"file":"/var/www/html/custom_apps/fulltextsearch/lib/Command/Test.php","line":355,"function":"initializeIndex","class":"OCA\\FullTextSearch_Elasticsearch\\Platform\\ElasticSearchPlatform","type":"->","args":[]},{"file":"/var/www/html/custom_apps/fulltextsearch/lib/Command/Test.php","line":168,"function":"testInitIndexing","class":"OCA\\FullTextSearch\\Command\\Test","type":"->","args":[["Symfony\\Component\\Console\\Output\\ConsoleOutput"],["OCA\\FullTextSearch_Elasticsearch\\Platform\\ElasticSearchPlatform"]]},{"file":"/var/www/html/3rdparty/symfony/console/Command/Command.php","line":298,"function":"execute","class":"OCA\\FullTextSearch\\Command\\Test","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/core/Command/Base.php","line":177,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":1040,"function":"run","class":"OC\\Core\\Command\\Base","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":301,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["OCA\\FullTextSearch\\Command\\Test"],["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":171,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/lib/private/Console/Application.php","line":211,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->","args":[]},{"file":"/var/www/html/occ","line":11,"args":["/var/www/html/console.php"],"function":"require_once"}],"File":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/elasticsearch/elasticsearch/src/Response/Elasticsearch.php","Line":65,"message":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"}],\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"},\"status\":404}","exception":{},"CustomMessage":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"}],\"type\":\"resource_not_found_exception\",\"reason\":\"pipeline [attachment] is missing\"},\"status\":404}"}}
{"reqId":"kxjsmsiRZoc3CmugVePP","level":2,"time":"2023-10-27T14:45:50+00:00","remoteAddr":"","user":"--","app":"fulltextsearch_elasticsearch","method":"","url":"--","message":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"}],\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"},\"status\":404}","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"Elastic\\Elasticsearch\\Exception\\ClientResponseException","Message":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"}],\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"},\"status\":404}","Code":404,"Trace":[{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/elasticsearch/elasticsearch/src/Client.php","line":172,"function":"setResponse","class":"Elastic\\Elasticsearch\\Response\\Elasticsearch","type":"->","args":[["GuzzleHttp\\Psr7\\Response"],true]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/elasticsearch/elasticsearch/src/Endpoints/Indices.php","line":385,"function":"sendRequest","class":"Elastic\\Elasticsearch\\Client","type":"->","args":[["GuzzleHttp\\Psr7\\Request"]]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/lib/Service/IndexService.php","line":144,"function":"delete","class":"Elastic\\Elasticsearch\\Endpoints\\Indices","type":"->","args":[["nextcloud-aio"]]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/lib/Service/IndexService.php","line":99,"function":"resetIndexAll","class":"OCA\\FullTextSearch_Elasticsearch\\Service\\IndexService","type":"->","args":[["Elastic\\Elasticsearch\\Client"]]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/lib/Platform/ElasticSearchPlatform.php","line":160,"function":"initializeIndex","class":"OCA\\FullTextSearch_Elasticsearch\\Service\\IndexService","type":"->","args":[["Elastic\\Elasticsearch\\Client"]]},{"file":"/var/www/html/custom_apps/fulltextsearch/lib/Command/Test.php","line":355,"function":"initializeIndex","class":"OCA\\FullTextSearch_Elasticsearch\\Platform\\ElasticSearchPlatform","type":"->","args":[]},{"file":"/var/www/html/custom_apps/fulltextsearch/lib/Command/Test.php","line":168,"function":"testInitIndexing","class":"OCA\\FullTextSearch\\Command\\Test","type":"->","args":[["Symfony\\Component\\Console\\Output\\ConsoleOutput"],["OCA\\FullTextSearch_Elasticsearch\\Platform\\ElasticSearchPlatform"]]},{"file":"/var/www/html/3rdparty/symfony/console/Command/Command.php","line":298,"function":"execute","class":"OCA\\FullTextSearch\\Command\\Test","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/core/Command/Base.php","line":177,"function":"run","class":"Symfony\\Component\\Console\\Command\\Command","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":1040,"function":"run","class":"OC\\Core\\Command\\Base","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":301,"function":"doRunCommand","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["OCA\\FullTextSearch\\Command\\Test"],["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/3rdparty/symfony/console/Application.php","line":171,"function":"doRun","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/lib/private/Console/Application.php","line":211,"function":"run","class":"Symfony\\Component\\Console\\Application","type":"->","args":[["Symfony\\Component\\Console\\Input\\ArgvInput"],["Symfony\\Component\\Console\\Output\\ConsoleOutput"]]},{"file":"/var/www/html/console.php","line":100,"function":"run","class":"OC\\Console\\Application","type":"->","args":[]},{"file":"/var/www/html/occ","line":11,"args":["/var/www/html/console.php"],"function":"require_once"}],"File":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/elasticsearch/elasticsearch/src/Response/Elasticsearch.php","Line":65,"message":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"}],\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"},\"status\":404}","exception":{},"CustomMessage":"404 Not Found: {\"error\":{\"root_cause\":[{\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"}],\"type\":\"index_not_found_exception\",\"reason\":\"no such index [nextcloud-aio]\",\"resource.type\":\"index_or_alias\",\"resource.id\":\"nextcloud-aio\",\"index_uuid\":\"_na_\",\"index\":\"nextcloud-aio\"},\"status\":404}"}}
{"reqId":"lwvxDjPiZkYdtbxGSIN3","level":3,"time":"2023-10-27T14:46:07+00:00","remoteAddr":"","user":"--","app":"core","method":"","url":"--","message":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"OCP\\Files\\NotFoundException","Message":"/appdata_octy7yjkaszl/theming/global","Code":0,"Trace":[{"function":"get","class":"OC\\Files\\Node\\Root","type":"->","args":["/appdata_octy7yjkaszl/theming/global"]},{"file":"/var/www/html/lib/private/Files/Node/LazyFolder.php","line":74,"function":"call_user_func_array","args":[[["OC\\Files\\Node\\Root"],"get"],["appdata_octy7yjkaszl/theming/global"]]},{"file":"/var/www/html/lib/private/Files/Node/LazyFolder.php","line":151,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->","args":["get",["appdata_octy7yjkaszl/theming/global"]]},{"file":"/var/www/html/lib/private/Files/AppData/AppData.php","line":132,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->","args":["appdata_octy7yjkaszl/theming/global"]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":168,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->","args":["global"]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":100,"function":"storeUserIdsToProcess","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[[]]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":79,"function":"runPreparation","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[]},{"file":"/var/www/html/lib/public/BackgroundJob/Job.php","line":81,"function":"run","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[["prepare"]]},{"file":"/var/www/html/lib/public/BackgroundJob/QueuedJob.php","line":57,"function":"start","class":"OCP\\BackgroundJob\\Job","type":"->","args":[["OC\\BackgroundJob\\JobList"]]},{"file":"/var/www/html/lib/public/BackgroundJob/QueuedJob.php","line":47,"function":"start","class":"OCP\\BackgroundJob\\QueuedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"]]},{"file":"/var/www/html/cron.php","line":152,"function":"execute","class":"OCP\\BackgroundJob\\QueuedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"],["OC\\Log"]]}],"File":"/var/www/html/lib/private/Files/Node/Root.php","Line":206,"message":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)","exception":{},"CustomMessage":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)"}}
{"reqId":"lwvxDjPiZkYdtbxGSIN3","level":3,"time":"2023-10-27T14:46:08+00:00","remoteAddr":"","user":"--","app":"richdocuments","method":"","url":"--","message":"Failed to fetch the Collabora capabilities endpoint: Server error: `GET https://nextcloud.me.my/hosting/capabilities` resulted in a `502 Connection refused` response:\n<HTML>\n<HEAD>\n<TITLE>Could Not Connect</TITLE>\n</HEAD>\n\n<BODY BGCOLOR=\"white\" FGCOLOR=\"black\">\n<H1>Could Not Connect</H1 (truncated...)\n","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"GuzzleHttp\\Exception\\ServerException","Message":"Server error: `GET https://nextcloud.infosecur.biz/hosting/capabilities` resulted in a `502 Connection refused` response:\n<HTML>\n<HEAD>\n<TITLE>Could Not Connect</TITLE>\n</HEAD>\n\n<BODY BGCOLOR=\"white\" FGCOLOR=\"black\">\n<H1>Could Not Connect</H1 (truncated...)\n","Code":502,"Trace":[{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/guzzle/src/Middleware.php","line":72,"function":"create","class":"GuzzleHttp\\Exception\\RequestException","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":209,"function":"GuzzleHttp\\{closure}","class":"GuzzleHttp\\Middleware","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":158,"function":"callHandler","class":"GuzzleHttp\\Promise\\Promise","type":"::","args":[1,"*** sensitive parameters replaced ***","*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/TaskQueue.php","line":52,"function":"GuzzleHttp\\Promise\\{closure}","class":"GuzzleHttp\\Promise\\Promise","type":"::","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":251,"function":"run","class":"GuzzleHttp\\Promise\\TaskQueue","type":"->","args":[true]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":227,"function":"invokeWaitFn","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":272,"function":"waitIfPending","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":229,"function":"invokeWaitList","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/promises/src/Promise.php","line":69,"function":"waitIfPending","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/guzzle/src/Client.php","line":189,"function":"wait","class":"GuzzleHttp\\Promise\\Promise","type":"->","args":[]},{"file":"/var/www/html/lib/private/Http/Client/Client.php","line":230,"function":"request","class":"GuzzleHttp\\Client","type":"->","args":["get","https://nextcloud.infosecur.biz/hosting/capabilities",["/mnt/ncdata/files_external/rootcerts.crt",45,[true],["Nextcloud Server Crawler","gzip"],true]]},{"file":"/var/www/html/custom_apps/richdocuments/lib/Service/CapabilitiesService.php","line":135,"function":"get","class":"OC\\Http\\Client\\Client","type":"->","args":["https://nextcloud.infosecur.biz/hosting/capabilities",[45,[true]]]},{"file":"/var/www/html/custom_apps/richdocuments/lib/Backgroundjobs/ObtainCapabilities.php","line":40,"function":"refetch","class":"OCA\\Richdocuments\\Service\\CapabilitiesService","type":"->","args":[]},{"file":"/var/www/html/lib/private/BackgroundJob/Job.php","line":54,"function":"run","class":"OCA\\Richdocuments\\Backgroundjobs\\ObtainCapabilities","type":"->","args":["*** sensitive parameters replaced ***"]},{"file":"/var/www/html/lib/private/BackgroundJob/TimedJob.php","line":60,"function":"execute","class":"OC\\BackgroundJob\\Job","type":"->","args":[["OC\\BackgroundJob\\JobList"],["OC\\Log"]]},{"file":"/var/www/html/cron.php","line":152,"function":"execute","class":"OC\\BackgroundJob\\TimedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"],["OC\\Log"]]}],"File":"/var/www/html/custom_apps/fulltextsearch_elasticsearch/vendor/guzzlehttp/guzzle/src/Exception/RequestException.php","Line":113,"message":"Failed to fetch the Collabora capabilities endpoint: Server error: `GET https://nextcloud.infosecur.biz/hosting/capabilities` resulted in a `502 Connection refused` response:\n<HTML>\n<HEAD>\n<TITLE>Could Not Connect</TITLE>\n</HEAD>\n\n<BODY BGCOLOR=\"white\" FGCOLOR=\"black\">\n<H1>Could Not Connect</H1 (truncated...)\n","exception":{},"CustomMessage":"Failed to fetch the Collabora capabilities endpoint: Server error: `GET https://nextcloud.infosecur.biz/hosting/capabilities` resulted in a `502 Connection refused` response:\n<HTML>\n<HEAD>\n<TITLE>Could Not Connect</TITLE>\n</HEAD>\n\n<BODY BGCOLOR=\"white\" FGCOLOR=\"black\">\n<H1>Could Not Connect</H1 (truncated...)\n"}}
{"reqId":"IftgZBYkk33fTS6gbLBm","level":3,"time":"2023-10-27T14:51:06+00:00","remoteAddr":"","user":"--","app":"core","method":"","url":"--","message":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"OCP\\Files\\NotFoundException","Message":"/appdata_octy7yjkaszl/theming/global","Code":0,"Trace":[{"function":"get","class":"OC\\Files\\Node\\Root","type":"->","args":["/appdata_octy7yjkaszl/theming/global"]},{"file":"/var/www/html/lib/private/Files/Node/LazyFolder.php","line":74,"function":"call_user_func_array","args":[[["OC\\Files\\Node\\Root"],"get"],["appdata_octy7yjkaszl/theming/global"]]},{"file":"/var/www/html/lib/private/Files/Node/LazyFolder.php","line":151,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->","args":["get",["appdata_octy7yjkaszl/theming/global"]]},{"file":"/var/www/html/lib/private/Files/AppData/AppData.php","line":132,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->","args":["appdata_octy7yjkaszl/theming/global"]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":168,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->","args":["global"]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":100,"function":"storeUserIdsToProcess","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[[]]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":79,"function":"runPreparation","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[]},{"file":"/var/www/html/lib/public/BackgroundJob/Job.php","line":81,"function":"run","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[["prepare"]]},{"file":"/var/www/html/lib/public/BackgroundJob/QueuedJob.php","line":57,"function":"start","class":"OCP\\BackgroundJob\\Job","type":"->","args":[["OC\\BackgroundJob\\JobList"]]},{"file":"/var/www/html/lib/public/BackgroundJob/QueuedJob.php","line":47,"function":"start","class":"OCP\\BackgroundJob\\QueuedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"]]},{"file":"/var/www/html/cron.php","line":152,"function":"execute","class":"OCP\\BackgroundJob\\QueuedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"],["OC\\Log"]]}],"File":"/var/www/html/lib/private/Files/Node/Root.php","Line":206,"message":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)","exception":{},"CustomMessage":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)"}}
{"reqId":"GKWn1x29oYh47gYGqsoN","level":3,"time":"2023-10-27T14:56:06+00:00","remoteAddr":"","user":"--","app":"core","method":"","url":"--","message":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)","userAgent":"--","version":"27.1.2.1","exception":{"Exception":"OCP\\Files\\NotFoundException","Message":"/appdata_octy7yjkaszl/theming/global","Code":0,"Trace":[{"function":"get","class":"OC\\Files\\Node\\Root","type":"->","args":["/appdata_octy7yjkaszl/theming/global"]},{"file":"/var/www/html/lib/private/Files/Node/LazyFolder.php","line":74,"function":"call_user_func_array","args":[[["OC\\Files\\Node\\Root"],"get"],["appdata_octy7yjkaszl/theming/global"]]},{"file":"/var/www/html/lib/private/Files/Node/LazyFolder.php","line":151,"function":"__call","class":"OC\\Files\\Node\\LazyFolder","type":"->","args":["get",["appdata_octy7yjkaszl/theming/global"]]},{"file":"/var/www/html/lib/private/Files/AppData/AppData.php","line":132,"function":"get","class":"OC\\Files\\Node\\LazyFolder","type":"->","args":["appdata_octy7yjkaszl/theming/global"]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":168,"function":"getFolder","class":"OC\\Files\\AppData\\AppData","type":"->","args":["global"]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":100,"function":"storeUserIdsToProcess","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[[]]},{"file":"/var/www/html/apps/theming/lib/Jobs/MigrateBackgroundImages.php","line":79,"function":"runPreparation","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[]},{"file":"/var/www/html/lib/public/BackgroundJob/Job.php","line":81,"function":"run","class":"OCA\\Theming\\Jobs\\MigrateBackgroundImages","type":"->","args":[["prepare"]]},{"file":"/var/www/html/lib/public/BackgroundJob/QueuedJob.php","line":57,"function":"start","class":"OCP\\BackgroundJob\\Job","type":"->","args":[["OC\\BackgroundJob\\JobList"]]},{"file":"/var/www/html/lib/public/BackgroundJob/QueuedJob.php","line":47,"function":"start","class":"OCP\\BackgroundJob\\QueuedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"]]},{"file":"/var/www/html/cron.php","line":152,"function":"execute","class":"OCP\\BackgroundJob\\QueuedJob","type":"->","args":[["OC\\BackgroundJob\\JobList"],["OC\\Log"]]}],"File":"/var/www/html/lib/private/Files/Node/Root.php","Line":206,"message":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)","exception":{},"CustomMessage":"Error while running background job (class: OCA\\Theming\\Jobs\\MigrateBackgroundImages, arguments: Array\n(\n [stage] => prepare\n)\n)"}}