Owncloud installieren

Aus Tutorials
Zur Navigation springen Zur Suche springen

Installation

Datenbank erstellen:

mysql -u root -p
mysql> create database if not exists <database name>;
create user 'onwcloud'@'%' identified by '<password>';
grant usage on *.* to 'owncloud'@'%' identified by '<password>'; 
grant all privileges on owncloud.* to 'owncloud'@'%';
create user 'onwcloud'@'localhost' identified by '<password>';
grant usage on *.* to 'owncloud'@'localhost' identified by '<password>'; 
grant all privileges on owncloud.* to 'owncloud'@'localhost';
flush privileges;

Konfiguration

Links

Zurück zu Ubuntu