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: 18
Operating system and version: Ubuntu 18.04
Apache or nginx version: Apache 2.4.41
PHP version: PHP 7.3.14
The issue you are facing:
The log is reporting an error with the text app (I think?) every second. The error does not appear to affect the instance, which is running and working fine for all users.
OCP\Files\NotFoundException: Node for share not found, fileid: 840790
No idea why it started it, but about the same time when the error started, I created a text file from the web interface, created a share link, downloaded it, and then deleted it. That´s the only clue I have.
Other files have been created, shared and downloaded around the same time, but no other “text” file.
Is this the first time you’ve seen this error? (Y/N): Y
Steps to replicate it:
- Create Text File on web interface
- Share link and download
- Delete Text file from web interface
The output of your Nextcloud log in Admin > Logging:
Every second one of this:
OCP\Files\NotFoundException: Node for share not found, fileid: 840790
Full output from the nextcloud.log file
{"reqId":"biZ7RrzNeSU8PFX8BBVd","level":3,"time":"2020-02-12T15:26:00+00:00","remoteAddr":"xx.xx.xx.xxx","user":"admin","app":"text","method":"POST","url":"/index.php/apps/text/public/session/sync","message":{"Exception":"OCP\\Files\\NotFoundException","Message":"Node for share not found, fileid: 840790","Code":0,"Trace":[{"file":"/var/www/html/nextcloud/apps/text/lib/Service/DocumentService.php","line":332,"function":"getNode","class":"OC\\Share20\\Share","type":"->","args":[]},{"file":"/var/www/html/nextcloud/apps/text/lib/Service/ApiService.php","line":160,"function":"getFileForSession","class":"OCA\\Text\\Service\\DocumentService","type":"->","args":[{"id":28,"__class__":"OCA\\Text\\Db\\Session"},"HxpdfPQPf2Jton2"]},{"file":"/var/www/html/nextcloud/apps/text/lib/Controller/PublicSessionController.php","line":108,"function":"sync","class":"OCA\\Text\\Service\\ApiService","type":"->","args":[840790,28,"uAzBI7YHNHBgmBE9bxo2Lp2yOwBumnGFE11NtVFLxzNNANpBHPHsHOXNmgt+1LmK",0,null,false,false,"HxpdfPQPf2Jton2"]},{"file":"/var/www/html/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":170,"function":"sync","class":"OCA\\Text\\Controller\\PublicSessionController","type":"->","args":["HxpdfPQPf2Jton2",840790,28,"uAzBI7YHNHBgmBE9bxo2Lp2yOwBumnGFE11NtVFLxzNNANpBHPHsHOXNmgt+1LmK",0,null,false,false]},{"file":"/var/www/html/nextcloud/lib/private/AppFramework/Http/Dispatcher.php","line":99,"function":"executeController","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Text\\Controller\\PublicSessionController"},"sync"]},{"file":"/var/www/html/nextcloud/lib/private/AppFramework/App.php","line":125,"function":"dispatch","class":"OC\\AppFramework\\Http\\Dispatcher","type":"->","args":[{"__class__":"OCA\\Text\\Controller\\PublicSessionController"},"sync"]},{"file":"/var/www/html/nextcloud/lib/private/AppFramework/Routing/RouteActionHandler.php","line":47,"function":"main","class":"OC\\AppFramework\\App","type":"::","args":["OCA\\Text\\Controller\\PublicSessionController","sync",{"__class__":"OC\\AppFramework\\DependencyInjection\\DIContainer"},{"_route":"text.PublicSession.sync"}]},{"function":"__invoke","class":"OC\\AppFramework\\Routing\\RouteActionHandler","type":"->","args":[{"_route":"text.PublicSession.sync"}]},{"file":"/var/www/html/nextcloud/lib/private/Route/Router.php","line":299,"function":"call_user_func","args":[{"__class__":"OC\\AppFramework\\Routing\\RouteActionHandler"},{"_route":"text.PublicSession.sync"}]},{"file":"/var/www/html/nextcloud/lib/base.php","line":1008,"function":"match","class":"OC\\Route\\Router","type":"->","args":["/apps/text/public/session/sync"]},{"file":"/var/www/html/nextcloud/index.php","line":38,"function":"handleRequest","class":"OC","type":"::","args":[]}],"File":"/var/www/html/nextcloud/lib/private/Share20/Share.php","Line":190,"CustomMessage":"--"},"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:72.0) Gecko/20100101 Firefox/72.0","version":"18.0.0.10"}
The output of your config.php file in /path/to/nextcloud
(make sure you remove any identifiable information!):
<?php
$CONFIG = array (
'instanceid' => 'xxxxxxxxxxxx',
'passwordsalt' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
'trusted_domains' =>
array (
0 => 'xxxxxxxxxxxxxx',
1 => 'xxxxxxxxxxxxxx',
),
'datadirectory' => '/DATA_SSD',
'dbtype' => 'mysql',
'version' => '18.0.0.10',
'overwrite.cli.url' => 'xxxxxxxxxxxxxxx',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'xxxxxxx',
'dbpassword' => 'xxxxxxxxxxxxxxxx',
'installed' => true,
'skeletondirectory' => '',
'memcache.local' => '\\OC\\Memcache\\APCu',
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'maintenance' => false,
'theme' => '',
'loglevel' => 2,
'ldapIgnoreNamingRules' => false,
'ldapProviderFactory' => 'OCA\\User_LDAP\\LDAPProviderFactory',
'lost_password_link' => 'disabled',
'simpleSignUpLink.shown' => false,
'updater.release.channel' => 'stable',
);
UPDATE: Definitely is the text app. Disabling it stops the continuous messages in the log. Scaning the files with occ didn´t help.
UDATE 2: Found this entries in the database
-oc_text_documents
+--------+-----------------+--------------------+-------------------------+----------------------------------+----------------------------------+
| id | current_version | last_saved_version | last_saved_version_time | last_saved_version_etag | base_version_etag |
+--------+-----------------+--------------------+-------------------------+----------------------------------+----------------------------------+
| 840790 | 0 | 0 | 1581511219 | 301897b1cfbc922e2b7bcf40e3a95c99 | 301897b1cfbc922e2b7bcf40e3a95c99 |
+--------+-----------------+--------------------+-------------------------+----------------------------------+----------------------------------+
-oc_text_sessions
+----+---------+------------+---------+------------------------------------------------------------------+-------------+--------------+
| id | user_id | guest_name | color | token | document_id | last_contact |
+----+---------+------------+---------+------------------------------------------------------------------+-------------+--------------+
| 28 | admin | NULL | #d09e6d | uAzBI7YHNHBgmBE9bxo2Lp2yOwBumnGFE11NtVFLxzNNANpBHPHsHOXNmgt+1LmK | 840790 | 1581575427 |
+----+---------+------------+---------+------------------------------------------------------------------+-------------+--------------+
I´m pretty much sure that file does not exist anymore. Is it safe to delete the entries in the database?