TranslateProject/sources/Setup your personal Cloud server in minutes using ownCloud On RHEL, CentOS, Scientific Linux 6.5.md

113 lines
4.2 KiB
Markdown
Raw Normal View History

2013-12-31 17:08:07 +08:00
Setup your personal Cloud server in minutes using ownCloud On RHEL, CentOS, Scientific Linux 6.5
================================================================================
[ownCloud][1] is a free Open Source software, used to setup your own personal cloud for file sharing, Calender, Contact and Bookmark sharing and Personal Audio/Video Streaming. It is pretty easy to setup and manage.
### Prerequisites ###
In this tutorial i am using CentOS 6.5 minimal server to setup ownCloud. My testbox details are given below.
Operating system: CentOS 6.5 Minimal Installation
IP Address: 192.168.1.101/24
While it was tested on CentOS 6.5, it is applicable for all RPM based distros.
Then your server should have a working LAMP stack. Refer the following link to setup LAMP server.
- [Install LAMP server on RHEL/CentOS/Scientific Linux][2]
Install following necessary PHP extensions:
# yum install php-mysql php-json php-xml php-mbstring php-zip php-gd curl php-curl php-pdo
### Setting up database for ownCloud ###
Let us create a database called ownclouddb and database user ownclouduser with passwor centos.
# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 66
Server version: 5.5.34-MariaDB MariaDB Server
Copyright (c) 2000, 2013, Oracle, Monty Program Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> CREATE DATABASE ownclouddb;
Query OK, 1 row affected (0.04 sec)
MariaDB [(none)]> GRANT ALL ON ownclouddb.* TO ownclouduser@localhost IDENTIFIED BY 'centos';
Query OK, 0 rows affected (0.01 sec)
MariaDB [(none)]> flush privileges;
Query OK, 0 rows affected (0.01 sec)
MariaDB [(none)]> exit
Bye
### Getting owncloud ###
Switch to your apache root folder and download ownCloud latest version
Goto to Apache root document folder and download the latest version of owncloud.
# wget http://download.owncloud.org/community/owncloud-6.0.0a.tar.bz2
Extract the tar package using command:
# tar xvf owncloud-6.0.0a.tar.bz2
Move the extracted folder to your apache root folder (i.e /var/www/html/)
# mv owncloud/ /var/www/html/
Set the ownership and permissions to the following folders:
# chown -R apache:apache /var/www/html/owncloud/
# chmod 777 /var/www/html/owncloud/config/
Enable apache rewrite mode.
Edit file “**/etc/httpd/conf/httpd.conf**”,
# vi /etc/httpd/conf/httpd.conf
Find the following section and Change **AllowOverride None** to **Allowoverride All**.
[...]
AllowOverride All
[...]
Finally, restart the apachehttpd and mysql services.
# service mysql restart
# service httpd restart
### Begin ownCloud Installation ###
Navigate to **http://ip-address/owncloud** or **http://domain-name/owncloud** from your web browser.
**Note**: If encountered with any permission errors, disable SELinux and try again.
The index page of own cloud will shown up. You will asked be to create a new admin account. Enter the admin account details.
Then, Click on the **Advanced** drop-down box, select mysql and enter the mysal database name, database user name and password. Finally click **Finish setup** to complete installation.
![](http://180016988.r.cdn77.net/wp-content/uploads/2013/03/ownCloud-Mozilla-Firefox_001.jpg)
This is how my ownCloud dashboard looks:
![](http://180016988.r.cdn77.net/wp-content/uploads/2013/03/Files-ownCloud-Mozilla-Firefox_002.jpg)
Thats it. Our cloud server is ready. From here, you can upload/download your images, files, Audio, Video and also can access them from your client systems over LAN/WAN.
--------------------------------------------------------------------------------
via: http://www.unixmen.com/setup-your-personal-cloud-server-in-minutes-using-owncloud/
译者:[译者ID](https://github.com/译者ID) 校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[1]:https://owncloud.org/
[2]:http://www.unixmen.com/install-lamp-apache-with-mariadb-and-php-on-centosrhelscientific-linux-6/