Owncloud installieren: Unterschied zwischen den Versionen

Aus Tutorials
Zur Navigation springen Zur Suche springen
Zeile 1: Zeile 1:
== Installation ==
== Installation ==
Download:
<pre>
wget https://download.owncloud.org/community/owncloud-8.2.2.zip
</pre>
== In Apache Wurzelverzeichnis verschieben ==
<pre>
unzip owncloud-8.2.2.zip
sudo mv owncloud-8.2.2 /var/www/owncloud/
sudo chown -R www-data:www-data /var/www/owncloud/
<pre>


Datenbank erstellen:
Datenbank erstellen:

Version vom 10. April 2016, 10:45 Uhr

Installation

Download:

wget https://download.owncloud.org/community/owncloud-8.2.2.zip

In Apache Wurzelverzeichnis verschieben

unzip owncloud-8.2.2.zip
sudo mv owncloud-8.2.2 /var/www/owncloud/
sudo chown -R www-data:www-data /var/www/owncloud/
<pre>

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

Konfiguration

Links

Zurück zu Ubuntu