How to Install Pydio on Centos 6.X


Pydio on Centos 6.X

Pydio is an Open source, secure and powerful online file sharing and synchronization software solution that can be an alternative to many online cloud storage systems. It can be accessed from the web, desktop or mobile platforms and hosting is private therefore you can implement your own security measures.

Requirments: Apache, Php, Mysql (LAMP)

Step 1: Create Database for Pydio

# mysql -u root -predhat -e "create database pydio;"
# mysql -u root -predhat -e "grant all privileges on pydio.* to pydio@'localhost' identified by 'redhat';"
# mysql -u root -predhat -e "grant all privileges on pydio.* to pydio@'%' identified by 'redhat';"
# mysql -u root -predhat -e "flush privileges;"

Step 2: Download and Installing Pydio File Hosting Server

# cd /mnt
# service iptables stop
# chkconfig iptables off
# wget https://download.pydio.com/qtev2upyln3hfi46pcya/pydio-enterprise-6.2.1.zip --no-check-certificate
# unzip pydio-enterprise-6.2.1.zip
# mv pydio-enterprise-6.2.1.zip /var/www/html/pydio
# chmod -R 777 /var/www/html/pydio/data/
# vi /etc/httpd/conf/httpd.conf

Find the line, "AllowOverride None" and Change it to "AllowOverride All"

AllowOverride All (Line Number 339)

--- save and quit (:wq) ---

Step 3: Open pydio on browser to load the web installer

https://ip-address/pydio/

1. Click on "Click here to continue to Pydio"
2. Click on the “Start Wizard” and follow on screen installer instructions….
3. Create Pydio Admin Account
4. Setup Languages
5. Configure Pydio MySQL Database
6. Click "Install Pydio Now"
7. Now open the https://ip-address/pydio/ again after installation and then login with admin Details or Newly Created User and Test it.

Thanks For Visiting on My Blog, For More Tutorials Keep Visiting My Blog.