Инструменты пользователя

Инструменты сайта


service:nextcloud

Различия

Показаны различия между двумя версиями страницы.

Ссылка на это сравнение

Предыдущая версия справа и слеваПредыдущая версия
Следующая версия
Предыдущая версия
service:nextcloud [18.10.2024 12:01] – ["Module php-imagick in this instance has no SVG support. For better compatibility it is recommended to install it] viacheslavservice:nextcloud [14.03.2025 10:21] (текущий) – [High-performance backend (HPB)] viacheslav
Строка 1481: Строка 1481:
 https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#maintenance-window-start\\ https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#maintenance-window-start\\
 https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/background_jobs_configuration.html https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/background_jobs_configuration.html
 +
 +==== Expected filesize of X bytes but read (from Nextcloud client) and wrote (to Nextcloud storage) Y bytes ====
 +Проблема закачки файлов в Nextcloud.
 +<code>
 +[no app in context] Error: Expected filesize of 6609487 bytes but read (from Nextcloud client) and wrote (to Nextcloud storage) 4833280 bytes.
 +Could either be a network problem on the sending side or a problem writing to the storage on the server side.
 +</code>
 +Причина в реверс-прокси Traefik, у которого с какого-то момента изменилось умолчание readTimeout с 0 до 60 сек, и он рвёт соединение. Если поставить обратно 0, всё начинает нормально работать.
 +<code bash>
 +--entryPoints.web.transport.respondingTimeouts.readTimeout=0s
 +# Либо добавить переменную в Докере
 +TRAEFIK_ENTRYPOINTS_WEB_TRANSPORT_RESPONDINGTIMEOUTS_READTIMEOUT: "0s"
 +</code>
 +https://github.com/nextcloud/server/issues/37695#issuecomment-2259203772
 +
 +==== Incorrect row format found in your database ====
 +После обновления на версию 31
 +
 +<color #ff7f27>Incorrect row format found in your database. ROW_FORMAT=Dynamic offers the best database performances for Nextcloud. Please update row format on the following list: oc_profile_config, oc_talk_internalsignaling, oc_calendar_appt_bookings, oc_notifications_pushhash, oc_talk_attendees, oc_talk_bridges, oc_accounts_data, oc_circles_event, oc_recent_contact, oc_talk_commands, oc_ratelimit_entries, oc_notifications_settings, oc_calendar_appt_configs, oc_circles_token, oc_circles_membership, oc_talk_rooms, oc_user_status, oc_webauthn, oc_circles_member, oc_circles_remote, oc_authorized_groups, oc_known_users, oc_circles_circle, oc_circles_share_lock, oc_talk_sessions, oc_circles_mount, oc_circles_mountpoint, oc_storages_credentials. For more details see the documentation (https://dev.mysql.com/doc/refman/en/innodb-row-format.html).</color>
 +
 +<code bash>
 +#!/bin/bash
 +
 +DB_USER='root'
 +DB_PASS='P@ssw0rd'
 +DB_NAME='nc'
 +
 +mysql -u "$DB_USER" -p"$DB_PASS" -e "
 +SELECT CONCAT('ALTER TABLE \`', TABLE_NAME, '\` ROW_FORMAT=DYNAMIC;'
 +FROM INFORMATION_SCHEMA.TABLES 
 +WHERE TABLE_SCHEMA = '$DB_NAME' 
 +AND ENGINE = 'InnoDB';
 +" -B -N | while read -r sql; do
 +    mysql -u "$DB_USER" -p"$DB_PASS" -e "$sql" "$DB_NAME"
 +done
 +</code>
 +https://help.nextcloud.com/t/upgrade-to-nextcloud-hub-10-31-0-0-incorrect-row-format-found-in-your-database/218366
 +
 +==== High-performance backend (HPB) ====
 +<color #ed1c24>No High-performance backend configured - Running Nextcloud Talk without the High-performance backend only scales for very small calls (max. 2-3 participants). Please set up the High-performance backend to ensure calls with multiple participants work seamlessly. For more details see the documentation ↗.</color>
 +
 +При домашнем использовании проще отключить это предупреждение в настройках Talk, т. к. вряд ли там будет больше 2-3 участников.
 +
 +В другом случае https://www.google.com/search?q=nextcloud+hpb+docker-compose
 +
 ===== Ссылки ===== ===== Ссылки =====
 [[https://nextcloud.com/changelog/|Changelog на сайте производителя]]\\ [[https://nextcloud.com/changelog/|Changelog на сайте производителя]]\\
service/nextcloud.1729252880.txt.gz · Последнее изменение: 18.10.2024 12:01 — viacheslav

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki