NextCloud : Passage en version 27.0.1

En passant

Pas de problème à noter, j’ai du lancer une commande en ligne :

# sudo -u www-data php /usr/share/nginx/nextcloud/occ  db:add-missing-indices
Check indices of the share table.
Check indices of the filecache table.
Adding additional parent index to the filecache table, this can take some time...
Filecache table updated successfully.
Check indices of the twofactor_providers table.
Check indices of the login_flow_v2 table.
Check indices of the whats_new table.
Check indices of the cards table.
Check indices of the cards_properties table.
Check indices of the calendarobjects_props table.
Check indices of the schedulingobjects table.
Check indices of the oc_properties table.
Check indices of the oc_jobs table.
Check indices of the oc_direct_edit table.
Check indices of the oc_preferences table.
Check indices of the oc_mounts table.
Adding mounts_user_root_path_index index to the oc_mounts table, this can take some time...
oc_mounts table updated successfully.
Check indices of the oc_systemtag_object_mapping table.
Adding systag_by_tagid index to the oc_systemtag_object_mapping table, this can take some time...
oc_systemtag_object_mapping table updated successfully.
Adding additional textstep_session index to the oc_text_steps table, this can take some time...
oc_text_steps table updated successfully.

 

NEXTCLOUD : Les modèles de machine learning doivent encore être téléchargés.

J’ai vu l’erreur suivante sur NEXTCLOUD :  » Les modèles de machine learning doivent encore être téléchargés. »

J’ai donc fait ceci :

cd /usr/share/nginx/nextcloud/
sudo -u www-data php --define apc.enable_cli=1 occ recognize:download-models

 

Ensuite le message a changé : »Les modèles de machine learning ont été téléchargés avec succès. »

J’ai donc voulu continuer en ligne de commande :

sudo -u www-data php --define apc.enable_cli=1 occ recognize:classify

A suivre …

Nextcloud : No space left on device in /usr/share/nginx/nextcloud/lib/private/Log/File.php on line 89

J’ai eu l’erreur : « No space left on device in /usr/share/nginx/nextcloud/lib/private/Log/File.php on line 89 »

J’ai essayé

# sudo -u www-data php /usr/share/nginx/nextcloud/occ files:cleanup  
0 orphaned file cache entries deleted
0 orphaned mount entries deleted

J’ai bien de l’espace libre :

# du -sh /usr/share/nginx/nextcloud/
195G	/usr/share/nginx/nextcloud/
# df -h /usr/share/nginx/nextcloud/
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda2       908G  712G  151G  83% 
# find /usr/share/nginx/nextcloud/ -type f | wc -l
621801

Les droits sur le répertoire sont bons …

Je vais essayé un scan complet :

# sudo -u www-data php /usr/share/nginx/nextcloud/occ files:scan --all
+---------+--------+--------------+
| Folders | Files  | Elapsed time |
+---------+--------+--------------+
| 22476   | 326448 | 00:47:17     |
+---------+--------+--------------+

J’ai du mal à comprendre …

Au final j’ai fixé en ajoutant dans NGINX :

    large_client_header_buffers 4 16k;
    client_max_body_size 300m;
    client_body_buffer_size 128k;
    proxy_connect_timeout 600;
    proxy_read_timeout 600;
    proxy_send_timeout 600;
    proxy_buffer_size 64k;
    proxy_buffers   4 32k;
    proxy_busy_buffers_size 64k;
    proxy_temp_file_write_size 64k;

Et en suprimant certains plugins :

MetaData
Joplin
Google Sync

Nextcloud : Migration to 25.0.3

En passant

J’ai fait la migration sur 25.0.3 sur Ubuntu.

  • Système d’exploitation: Linux 5.15.0-58-generic x86_64
  • CPU : Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz (8 cores)
  • Mémoire : 62.50 GB
  • Version : 8.1.2
  • Limite de mémoire PHP : 512 MB
  • Max Execution Time PHP : 3600
  • Taille de téléversement maximale PHP : 512 MB
  • Type : mysql
  • Version : 10.6.11
  • Taille : 955 MB

j’ai eu aucun problème ….