Manual Installation ownCloud/en

Aus EUserv Wiki

(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „{{Languages|Manual Installation ownCloud}} Kategorie:Operation Systems and Software Kategorie:Software vServers Kategorie:Software/en ''''' Installati…“)
Zeile 6: Zeile 6:
__TOC__
__TOC__
= Installation and configuration of ownCloud =
= Installation and configuration of ownCloud =
 +
== General ==
== General ==
 +
Create a cloud on your own server and be independent from commercial storage services. The ownCloud is a free software suite with which you can address and share data locally via an interface.
Create a cloud on your own server and be independent from commercial storage services. The ownCloud is a free software suite with which you can address and share data locally via an interface.
As a basis the project relies on a working web server (Apache) with PHP and a connected SQLite, MySQL or PostgreSQL database.
As a basis the project relies on a working web server (Apache) with PHP and a connected SQLite, MySQL or PostgreSQL database.
   
   
-
== Installation ==
+
 
 +
== Installation of ownCloud==
 +
 
For ownCloud to work properly on your machine the packages php5, php5-json php-xml php-mbstring php5-zip and phph5-gd have to be installed:
For ownCloud to work properly on your machine the packages php5, php5-json php-xml php-mbstring php5-zip and phph5-gd have to be installed:
Zeile 32: Zeile 36:
   tar -xjf /tmp/owncloud-x.x.x.tar.bz2 --strip 1 -C /tmp/owncloud
   tar -xjf /tmp/owncloud-x.x.x.tar.bz2 --strip 1 -C /tmp/owncloud
-
   cp -r owncloud /pfad/zu/ihrem/webserver/ (bei Debian /var/www/)
+
   cp -r owncloud /path/to/your/webserver/ (Debian: /var/www/)
and copy the owncloud folder into the path of your web servers.
and copy the owncloud folder into the path of your web servers.
Zeile 44: Zeile 48:
Now open your web browser an enter http://yourwebsite/ (or: http://yourwebsite/owncloud) into the address bar.
Now open your web browser an enter http://yourwebsite/ (or: http://yourwebsite/owncloud) into the address bar.
-
 
+
<br>
<center>
<center>
-
[[Datei:owncloud1.png]]
+
[[Datei:owncloud_6_1.jpg]]
</center>
</center>
-
 
+
<br>
== Configuration ==
== Configuration ==
 +
Now you can set up your ownCloud with username, password and database connection (database user, database password, database name).
Now you can set up your ownCloud with username, password and database connection (database user, database password, database name).
At the same time you can determine the data directory where all ownCloud files are installed:
At the same time you can determine the data directory where all ownCloud files are installed:
-
under Debian: ''/var/www/owncloud/install/data''
+
under Debian: ''/var/www/owncloud/data''
-
under CentOS: ''/var/www/html/owncloud/install/data''
+
under CentOS: ''/var/www/html/owncloud/data''
<center>
<center>
-
[[Datei:OwnCloud.png]]
+
[[Datei:owncloud_6_2.jpg]]
</center>
</center>
After you have set up your ownCloud successfully log in with your usernam and password.
After you have set up your ownCloud successfully log in with your usernam and password.

Version vom 07:54, 14. Jul. 2014

Installation and configuration of ownCloud

Inhaltsverzeichnis

Installation and configuration of ownCloud

General

Create a cloud on your own server and be independent from commercial storage services. The ownCloud is a free software suite with which you can address and share data locally via an interface.

As a basis the project relies on a working web server (Apache) with PHP and a connected SQLite, MySQL or PostgreSQL database.


Installation of ownCloud

For ownCloud to work properly on your machine the packages php5, php5-json php-xml php-mbstring php5-zip and phph5-gd have to be installed:

under Debian:

 apt-get install apache2 php5 php5-json php-xml php-mbstring php5-zip php5-gd

under Ubuntu:

 sudo apt-get install apache2 php5 php5-json php-xml php-mbstring php5-zip php5-gd

Download the latest version of ownCloud from the website www.owncloud.org and create a folder called owncloud in /tmp.

Upload the previously downloaded file owncloud-x.x.x.tar.bz2 there.

An FTP client like FileZilla serves you best.

 cd /tmp
 mkdir owncloud

Unzip this file (owncloud-x.x.x.tar.bz2) using the following commands:

 tar -xjf /tmp/owncloud-x.x.x.tar.bz2 --strip 1 -C /tmp/owncloud
 cp -r owncloud /path/to/your/webserver/ (Debian: /var/www/)

and copy the owncloud folder into the path of your web servers.

Now specify the permissions for the configuration and data of the ownCloud.

The owner of the web server also has to have the user permissions for the folders data/ and config :

 chown -R www-data:www-data /pfad/zu/ihrer/owncloud/install/data

Now open your web browser an enter http://yourwebsite/ (or: http://yourwebsite/owncloud) into the address bar.


Datei:owncloud_6_1.jpg



Configuration

Now you can set up your ownCloud with username, password and database connection (database user, database password, database name).

At the same time you can determine the data directory where all ownCloud files are installed:

under Debian: /var/www/owncloud/data under CentOS: /var/www/html/owncloud/data


Datei:owncloud_6_2.jpg


After you have set up your ownCloud successfully log in with your usernam and password.