ownCloud is a web suite that provides a cloud storage over the network, data can be uploaded via web browser or using software client. Data will be stored on the server and can be downloaded or access any time with browser. The project is based on PHP and a SQLite, MySQL, Oracle or PostgreSQL database, so it can run on all platforms that meet these requirements. It provides almost all possibility of functions that are available on commercial suites; it is released under AGPLv3 license, so you can setup own cloud storage server without any additional cost; commercial version of ownCloud is also available.
Features
File storage in conventional directory structures (also via WebDAV)
Cryptography
Synchronization of personal computers
Calendar (also as CalDAV)
Task scheduler
Address book (also as CardDAV)
Music streaming (through Ampache)
User and group administration (via OpenID or LDAP)
Sharing of content across groups or public URLs
Online text editor with syntax highlighting and code folding
Bookmarking
URL shortening Suite
Photo gallery
PDF viewer (using pdf.js)
Viewer for ODF Files (.odt, .odp, .ods)
New Features in ownCloud 5:
Restore Deleted files.
contact groups
New powerful search
File Version
Mount External Storage (Dropbox, FTP, Google docs etc)
Migration and backup
Application store
Prerequisites
Step1 :- yum install httpd php php-mysql mysql-server mysql sqlite php-dom php-mbstring php-gd php-pdo
Disable SELinux
Step2 :- sudo nano /etc/selinux/config
SELINUX=disabled
Download and Setup:
Download ownCloud from official website or enter the fallowing command on terminal.
Step3 :- wget https://download.owncloud.org/community/owncloud-10.3.0.tar.bz2
Extract the archive.
Step4 :- tar -jxvf owncloud-10.3.0.tar.bz2
Move ownCloud under Apache server document root.
Step5 :- mv owncloud /var/www/cloud
Allow the web server to read and write the files on cloud directory.
Step6 :- chown -R apache.apache /var/www/cloud/
Create Database: (Optional)
MySQL server must be started before creating the database, login to MySQL server.
Step7 :- mysql -u root -p
Create database called “clouddb”
Step8 :- create database clouddb;
Allow “clouddbuser” to access the “clouddb” database on localhost with predefined password
Step9 :- grant all on clouddb.* to 'clouddbuser'@'localhost' identified by 'password';
Configure Apache server:
While configuring Apache web server, it is recommended that you to enable .htaccess to get a enhanced security features, by default .htaccess is disabled in Apache server. To enable it, open your virtual host file and make AllowOverride is set to All.For example, here i used external config file instead of modifying main file.
Step10 :-
Add the following
<IfModule mod_alias.c>
Alias /cloud /var/www/cloud/
</IfModule>
<Directory “/var/www/cloud”>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
Configure ownCloud:
Open up web browser, point a URL to http://127.0.0.1/cloud ( http://Your-custom-domain). Browser will automatically take you to ownCloud setup page where it must be configured before going to live. Enter admin user name, password, data folder location and database details.
username :- admin
passwd :-
Adv :- /var/ww/cloud/data
configure :- mysq
where as MySQL database requires database user, password and database name.