Owncloud

From Alpine Linux
Revision as of 08:10, 13 April 2012 by Danieloc (talk | contribs) (Created page with "== What is ownCloud?== ownCloud gives you easy and universal access to all of your files. It also provides a platform to easily view, sync and share your contacts, calendars, bo...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

What is ownCloud?

ownCloud gives you easy and universal access to all of your files. It also provides a platform to easily view, sync and share your contacts, calendars, bookmarks and files across all your devices. ownCloud 3 brings loads of new features and hundred of fixes…

  • Sharing at the click of a button

We like to share things, so we made sure you can do that easily. You can share files with other users in your ownCloud instance or through a public link that you can send to anyone.

  • Explore your photos

ownCloud features a photo gallery application to help, view and organize photos of different file types. Photo albums are automatically created for uploaded photos and make it easy to scroll through your pictures.

  • Edit your files on the go

With ownCloud, you can access and edit your documents in multiple ways. You can edit text files directly in your browser with the online text editor, or mount your files locally via WebDAV, viewing and editing them with the desktop apps you are used to.

Set up ownCloud on Alpine Linux

This document will be a quick c/p guide to setup this file sharing system on Alpine linux. What we will setup is the following:

  • Lighttpd with PHP
  • MySql
  • ownCloud

Install lighttpd, PHP, and MySql

Basic Installation

For installing the additional packages first activate community packages and update the package index

Install the required packages:

# apk add lighttpd php82 fcgi php82-cgi

Configure Lighttpd

Edit lighttpd.conf (/etc/lighttpd/lighttpd.conf) and uncomment the line:

Contents of /etc/lighttpd/lighttpd.conf

... include "mod_fastcgi.conf" ...

Edit mod_fastcgi.conf (/etc/lighttpd/mod_fastcgi.conf), find and change /usr/bin/php-cgi to /usr/bin/php-cgi82.

Contents of /etc/lighttpd/mod_fastcgi.conf

... "bin-path" => "/usr/bin/php-cgi82" # php-cgi ...

Start lighttpd service and add it to default runlevel

# rc-service lighttpd start # rc-update add lighttpd default

Install extra packages:

apk add php-mysql mysql mysql-client

Installing and configuring ownCloud

Install ownCloud

  • Make webapps folder

mkdir /usr/share/webapps/ -p

  • Download

cd /usr/share/webapps/ wget wget http://owncloud.org/releases/owncloud-3.0.2.tar.bz2

  • Unpack

tar xfj owncloud-3.0.2.tar.bz2 rm owncloud-3.0.2.tar.bz2

  • Change Folder Persmissions

chown -R lighttpd:lighttpd /usr/share/webapps/owncloud

  • Make symlinks to ownCloud

ln -s /usr/share/webapps/owncloud/ /var/www/localhost/htdocs/owncloud

Config and start MySql

/usr/bin/mysql_install_db --user=mysql /etc/init.d/mysql start && rc-update add mysql default /usr/bin/mysqladmin -u root password 'password'

Create the ownCloud database

mysql -u root -p

CREATE DATABASE owncloud; GRANT ALL PRIVILEGES ON owncloud.* TO 'owncloud'@'localhost' IDENTIFIED BY 'owncloud password'; FLUSH PRIVILEGES; EXIT

Config your ownCloud

  • Browse

http://WEBSERVER_IP_ADDRESS/ownCloud/

  • "Create a administrator account"
  • User Name: <username> - new admin username
  • Password: <password> - new admin password
  • "Set the storage folder:"
  • </usr/share/webapps/owncloud/data> - Storage folder
  • "Configure the database"
  • User Name: <username> - db admin username
  • Password: <password> - db admin password
  • Database Name: owncloud - db name
  • Database Host: localhost - db host


After you've done that, click "Complete Installation"

You have ownCloud working, to access go to http://WEBSERVER_IP_ADDRESS/owncloud and enjoy!