User Tools

Site Tools


software:nextcloud:installation

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:nextcloud:installation [2021/07/14 15:36] rodolicosoftware:nextcloud:installation [2023/11/01 23:28] (current) rodolico
Line 28: 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 34: 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 46: 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.1626294985.txt.gz · Last modified: 2021/07/14 15:36 by rodolico