Monday, August 11, 2014

Setup Private Cloud Storage In Linux - OwnCloud

                            Cloud storage is a network-based service which physically do not exist but remains somewhere in the cloud.Cloud storage means sharing data over network, rather than having local servers or personal device.
                             OwnCloud is a free, open-source and powerful web application for data synchronization, file sharing, and remote storage of files. ownCloud is written in PHP/JavaScript languages. It is designed to work with several database management systems, including MySQL, MariaDB, SQLite, Oracle Database, and PostgreSQL. Moreover owncloud can be deployed on all known platforms viz., Linux, Macintosh, Windows and Android.
                        This article aims Building a personal cloud storage using ownCloud application
Install Apache-Php-Mysql
apt-get install apache2 apache2-doc apache2-utils mysql-server mysql-client php5 php5-mysql
Create Cloud Database
             mysql -u root -p
             mysql> create database cloud;
Create and assign privileges to a new MySQL user to handle database operations for OwnCloud:
           mysql>grant all on cloud.* to jagan@localhost identified by '****';
Install OwnCloud Application
           apt-get install owncloud
Restart the Service
           service apache2 restart
Access Own Cloud Application
           http://localhost/owncloud

No comments:

Post a Comment

bloggerwidgets