Nextcloud version 29.0.7
Operating system and version Ubuntu 22.04 server
Apache 2.4.52
PHP version 8.1
My server:
XEON E5-10cores with 16GB ram
running in Proxmox 7.4.3
Hi Everyone
My issue is when I try to upload big file from webui exsample a file around 1-2GB, the cpu always stay on 60-80% usage until transfer done and back to normal. The WebUI will very slow or stop work during this time. Also this big file will show you or need reload the web after seconds or 1mint after transfered.
Anybody has same problem for how I can to do?
I searched from google and someone said don’t deploy everything in one server, just 1 server for web another for database, is that real?
Thanks advance.
No important error in log file.
My config.php:
<?php
$CONFIG = array (
'instanceid' => 'xxx',
'passwordsalt' => 'xxx',
'secret' => 'xxx',
'trusted_domains' =>
array (
0 => '192.168.31.247',
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'mysql',
'version' => '29.0.7.1',
'overwrite.cli.url' => 'http://192.168.31.247',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbtableprefix' => 'oc_',
'mysql.utf8mb4' => true,
'dbuser' => 'admin',
'dbpassword' => 'xxx',
'installed' => true,
'proxy' => '192.168.31.248:7890',
'maintenance_window_start' => 1,
'preview_max_x' => 512,
'preview_max_y' => 512,
'preview_max_scale_factor' => 1,
'filesystem_check_changes' => 1,
'memcache.local' => '\\OC\\Memcache\\APCu',
'distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'filelocking.enabled' => '0',
'redis' =>
array (
'host' => '/var/run/redis/redis-server.sock',
'port' => 0,
'timeout' => 0.0,
),
'default_phone_region' => 'CN',
'maintenance' => false,
);