Owncloud

From Alpine Linux

Jump to: navigation, search

Contents

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…

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. Can be used as an open source dropbox alternative too.

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.

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:

Install lighttpd, PHP, and MySql

Install the additional packages:

apk add lighttpd php-common php-iconv php-json php-gd php-curl php-xml php-pgsql php-imap

apk add php-pdo php-pdo_pgsql php-soap php-xmlrpc php-posix php-mcrypt php-gettext php-ldap php-ctype php-dom

Configure Lighttpd

vi /etc/lighttpd/lighttpd.conf

Uncomment line:

include "mod_fastcgi.conf"

Start lighttpd service and add to needed runlevel

/etc/init.d/lighttpd start && rc-update add lighttpd default

Install extra packages:

apk add php-mysql mysql mysql-client

Installing and configuring ownCloud

Install ownCloud

mkdir /usr/share/webapps/ -p

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

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

chown -R lighttpd:lighttpd /usr/share/webapps/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

http://WEBSERVER_IP_ADDRESS/ownCloud/

  • User Name: <username> - new admin username
  • Password: <password> - new admin password
  • </usr/share/webapps/owncloud/data> - Storage folder
  • 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!

Note: You will need to create at least one user.

WebDAV

You can access ownCloud directly via WebDAV, as an Dropbox alternative.

Here we will explain how to setup WebDAV access on several Operating Systems. Some applications only allow you to save to a local folder. By mounting ownCloud to a local folder, you can get around this issue.

Server configuration

apk add lighttpd-mod_webdav mod_dav_svn

nano +36 /etc/lighttpd/lighttpd.conf

/etc/init.d/lighttpd restart

nano /etc/fstab

Add:

 usr/share/webapps/owncloud/files/webdav.php /usr/share/webapps/owncloud/<username>/data/ davfs user,rw,noauto 0 0

Change <username> to the username created in the owncloud. e.g. public

mount -a

Client configuration

Windows XP and Vista should work perfectly fine.

In Windows 7, you can map ownCloud as a network folder.

Enable the Webclient service Services.

Modify the registry

Map the network folder

Personal tools
Namespaces
Variants
Actions
Welcome
Services
Wiki
Toolbox