deb_mutism

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
deb_mutism [2025/03/18 01:38] โ€“ [Install Nextcloud] Jรบne Parkdeb_mutism [2025/03/18 02:13] (current) โ€“ [Install Nextcloud] Jรบne Park
Line 461: Line 461:
  
 ==== Install Nextcloud ====  ==== Install Nextcloud ==== 
- 
-=== Memory caching configuration ===  
- 
-{{mdi>information-variant?24&color=#be0027}} [[https://doc.owncloud.org/server/admin_manual/configuration/server/caching_configuration.html|Referral manuals]] --- by ownCloud Documentation \\ 
-{{mdi>information-variant?24&color=#be0027}} [[https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/caching_configuration.html|Referral manuals]] --- by Nextcloud Documentation  
- 
- 
-== Install Redis ==  
- 
-<code bash>  
-sudo apt install redis-server php-redis 
-</code>  
- 
-== Check running service ==  
- 
-<code bash>  
-sudo ps ax | grep redis 
-sudo netstat -tlnp | grep redis 
-</code>  
- 
-== Clearing the Redis Cache ==  
- 
-<code bash>  
-sudo redis-cli 
-  SELECT <dbIndex> 
-  FLUSHDB 
-</code>  
- 
-== Add configuration in ownCloud ==  
- 
-Edit ''/var/www/owncloud/config/config.php'' if ownCloud root is ''/var/www/owncloud'' and add the followings,  
- 
-<code php>  
-<?php 
-$CONFIG = array ( 
-... ... ...  
-... 
-), 
-'memcache.local' => '\\OC\\Memcache\\Redis', 
-'filelocking.enabled' => 'true', 
-'memcache.distributed' => '\\OC\\Memcache\\Redis', 
-'memcache.locking' => '\\OC\\Memcache\\Redis', 
-'redis' => 
-array ( 
-'host' => 'localhost', 
-'port' => 6379, 
-'timeout' => 0, 
-'dbindex' => 0, 
-), 
-);  
-</code>  
- 
----- 
-=== Run background jobs ===  
- 
-Add ''crontab'' with web user such as ''www-data''  
- 
-<code bash>  
-# crontab -u www-data -e 
-</code>  
- 
-Add job  
- 
-<code bash>  
-*  *  *  *  * /usr/bin/php -f /path/to/your/owncloud/cron.php 
-</code>  
- 
----- 
  
 === Setting for uploading large size files === === Setting for uploading large size files ===
Line 577: Line 509:
 ---- ----
  
-=== Enable PHP OPcache ===  
  
-[[https://docs.nextcloud.com/server/23/admin_manual/installation/server_tuning.html#enable-php-opcache|Nextcloud Manual]]  
- 
----- 
- 
- 
-=== Post installation ===  
- 
-Check overview  
- 
-  * The PHP module "imagick" in this instance has no SVG support.  
- 
-<code bash>  
-sudo apt install php-imagick imagemagick 
-</code>  
- 
- 
- 
- 
----- 
 ==== Reset MySQL password ====  ==== Reset MySQL password ==== 
  
  • deb_mutism.1742261922
  • Last modified: 2025/03/18 01:38
  • by Jรบne Park