Manual Installation ownCloud/en
Aus EUserv Wiki
Svtr1 (Diskussion | Beiträge) |
Svtr1 (Diskussion | Beiträge) |
||
Zeile 3: | Zeile 3: | ||
[[Kategorie:Software vServers]] | [[Kategorie:Software vServers]] | ||
[[Kategorie:Software/en]] | [[Kategorie:Software/en]] | ||
- | [[ | + | [[Kategorie:Service_%2B_Support/en]] |
''''' Installation and configuration of ownCloud ''''' | ''''' Installation and configuration of ownCloud ''''' | ||
__TOC__ | __TOC__ |
Aktuelle Version vom 16:52, 12. Nov. 2014
Languages: |
Deutsch • English |
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 /path/to/your/owncloud/
Now open your web browser an enter http://yourwebsite/ (or: http://yourwebsite/owncloud) into the address bar.
Configuration of ownCloud
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
After you have set up your ownCloud successfully log in with your usernam and password.