Owncloud: Difference between revisions

From James's Wiki
(Created page with "download it mysql -u<username> -p<password> MariaDB [(none)]> create database owncloud; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> create user owncloud@localho...")
 
No edit summary
Line 20: Line 20:


navigate to your page
navigate to your page
force owncloud to rescan file (use if you have maunally copied files in the owncloud directories)
sudo -u www-data php occ files:checksums:verify -r

Revision as of 03:50, 10 September 2023

download it


mysql -u<username> -p<password>

MariaDB [(none)]> create database owncloud;

Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> create user owncloud@localhost identified by '12345';

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on owncloud.* to owncloud@localhost identified by '12345';

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges;

Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit;

Bye

navigate to your page

force owncloud to rescan file (use if you have maunally copied files in the owncloud directories)

sudo -u www-data php occ files:checksums:verify -r