User Tools

Site Tools


software:nextcloud:installation

Differences

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

Link to this comparison view

Next revision
Previous revision
software:nextcloud:installation [2021/04/28 23:44] – created rodolicosoftware:nextcloud:installation [2023/11/01 23:28] (current) rodolico
Line 4: Line 4:
  
 http://kb.unixservertech.com/unix/linux/debian/devuan_sury http://kb.unixservertech.com/unix/linux/debian/devuan_sury
 +
 +
 +  * https://docs.nextcloud.com/server/20/admin_manual/installation/example_ubuntu.html
 +  * https://docs.nextcloud.com/server/20/admin_manual/installation/source_installation.html
 +  * https://nextcloud.com/install/#instructions-server
 +
 +
 +
 +
  
 <code bash> <code bash>
Line 19: Line 28:
 joe /etc/php/7.??/apache2/php.ini joe /etc/php/7.??/apache2/php.ini
  
-<text>+<code>
 memory_limit = 512M memory_limit = 512M
 upload_max_filesize = 500M upload_max_filesize = 500M
Line 25: Line 34:
 max_execution_time = 300 max_execution_time = 300
 date.timezone = America/Chicago date.timezone = America/Chicago
-</text>+</code>
  
 <code bash> <code bash>
Line 37: Line 46:
  
 <code sql> <code sql>
-CREATE DATABASE nextcloud; +CREATE USER 'username'@'localhost' IDENTIFIED BY 'password'; 
-GRANT ALL ON nextcloud.* to 'nextcloud'@'localhost' IDENTIFIED BY '_Pa$$w0rd_';+CREATE DATABASE IF NOT EXISTS nextcloud CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci
 +GRANT ALL PRIVILEGES ON nextcloud.* TO 'username'@'localhost'; 
 +FLUSH PRIVILEGES; 
 </code> </code>
  
software/nextcloud/installation.1619671493.txt.gz · Last modified: 2021/04/28 23:44 by rodolico