×
Community Blog How to Install Pydio File Sharing Platform on Ubuntu 18.04 Server

How to Install Pydio File Sharing Platform on Ubuntu 18.04 Server

In this article, we will take you through the steps of installing Pydio on your Alibaba Cloud ECS instance running Ubuntu 18.04.

By Francis Ndungu, Alibaba Cloud Community Blog author.

Pydio is one of the best open-source software for sharing and storing files in the cloud. Competing with software applications like ownCloud and Dropbox, Pydio is great for syncing data with your cloud server, desktop computer and mobile phone. The software allows you to keep your data secure in a cloud server. If you have a virtual private server (VPS) such as an ECS instance from Alibaba Cloud, you can use Pydio while still conforming to your data security policies and user rights management.

In this guide, we will walk you through the steps of installing Pydio on your Alibaba Cloud Elastic Compute Service (ECS) instance running Ubuntu 18.04. Once the installation is complete, users in your organization can log in to save and share files across different Pydio instances.

Prerequisites

Before you begin, make sure you have the following:

  • An Alibaba Cloud Account. Signing up is free. Create an Alibaba Cloud account and enjoy a free trial worth up to $1200 to test over 50 Alibaba Cloud products.
  • An Alibaba Cloud Elastic Compute Service (ECS) instance running Ubuntu 18.04 as the Operating System. You may follow the initial ECS setup guide to create one
  • A non-root user that can perform sudo privileges on the ECS instance.

Step 1: Installing Apache Web Server

SSH to your Ubuntu 18.04 server. Then, update the package information index.

$ sudo apt-get update

Then, run the command below to install Apache web server:

$ sudo apt-get -y install apache2

You can check if Apache was installed successfully by entering the public/internet IP address or domain name associated with your Alibaba Cloud ECS instance.

http://198.18.0.1

If there were no errors with the Apache setup, you should see a page similar to the one shown below:

1

Once, Apache is installed, enable mod_rewrite by running the command below:

$ sudo a2enmod rewrite

Then, restart Apache for the changes to be effected.

$ sudo systemctl restart apache2

You have setup Apache web server and enabled mod_rewrite, in the next step, you will configure a database for the Pydio software.

Step 2: Installing MySQL Server and Setting Up a Database for Pydio

Pydio requires a database in order to initialize its structures. So, you need to install MySQL database server by running the command below

$ sudo apt-get -y install mysql-server

The default MySQL installation is not secure. So, you should run the mysql_secure_installation command to secure it.

$ sudo mysql_secure_installation

Next, you will get some prompts, Respond with the values shown below. Remember to replace PASSWORD with a strong value.

Would you like to Setup VALIDATE PASSWORD plugin? [Y/N] Y
Password Validation policy level : 2
New password for root: PASSWORD
Re-enter new password: PASSWORD
Continue with the password provided: Y
Remove anonymous users? [Y/N] Y
Disallow root login remotely? [Y/N] Y
Remove test database and access to it? [Y/N] Y
Reload privilege tables now? [Y/N] Y

Once you have tightened the security of your MySQL server, log in to the database:

$ sudo mysql -uroot -p

Enter the root password of your database server and hit Enter to continue. Then, run the following SQL commands one by one to create a database and a privileged user for Pydio software. Replace PASSWORD with a strong value.

mysql > CREATE DATABASE pydio_db DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
mysql > GRANT ALL PRIVILEGES ON pydio_db.* TO 'pydio_user'@'localhost' IDENTIFIED BY 'PASSWORD';
mysql > Flush privileges;
mysql > Quit

You have now installed MySQL, secured the server and created a database for Pydio to run. In the next step, you will install PHP and all required extensions needed by Pydio.

Step 3: Installing PHP and Required Extensions

Pydio is written in PHP and thus you must install this scripting language in this step. To do this, run the command below:

$ sudo apt-get install -y php libapache2-mod-php

Also, Pydio relies heavily on some PHP extensions. Run the command below to install all of them in one line:

$ sudo apt-get install -y php-cli php-common php-mbstring php-gd php-intl php-xml php-mysql php-zip php-curl php-xmlrpc

To effect the changes, restart Apache web server.

$ sudo systemctl restart apache2

Once you have installed PHP and all the required extensions, you will move over to installing Pydio in the next step.

Step 4: Installing Pydio Software

Pydio software is not available on the default Ubuntu package repository, so you will need to add the package installation information on the sources list. Run the command below.

$ sudo sh -c 'echo "deb https://download.pydio.com/pub/linux/debian/ $(lsb_release -sc) main" >> /etc/apt/sources.list.d/pydio.list'

Next, add the pydio GPG key on the system.

$ wget -qO - https://download.pydio.com/pub/linux/debian/key/pubkey | sudo apt-key add -

You can now updated the package information index to sync the changes.

$ sudo apt-get update

Then, run the command below to install Pydio on the server;

$ sudo apt-get install -y apt-transport-https pydio pydio-all

Towards the end of the installation, you will get a prompt to configure encfs, just hit Enter to continue.

2

You have now installed the Pydio package on your Ubuntu 18.04 server. You will now go ahead and setup Pydio via a web browser in the following step.

Step 5: Configuring Pydio On the Web Interface Wizard

In this step, you will be configuring Pydio on the web interface. You will run a wizard to configure the database that you created earlier and create a user account for accessing Pydio.

Visit the address below on your web browser. Remember to replace 198.18.0.1 with the public/internet IP address associated with your Alibaba Cloud ECS instance or domain name.

http://198.18.0.1/pydio

Once the page loads, click CONTINUE TO PYDIO INSTALLATION.

3

Next, choose your desired language and click START WIZARD.

4

On the next screen, you can define your Pydio application title and welcome message or just leave them intact. Then, click NEXT to continue

5

Next, create a user account by entering the username, full names and password and click NEXT.

6

Next, configure a database connection using the database and user that you created earlier and click on TEST DB CONFIGURATION.

7

Then, click on INSTALL PYDIO to finalize the installation

8

If the installation succeeds, you will be taken to the Pydio login page, use the Pydio user account details that you created above to login

9

Congratulations. If you were able to log in, you can now access the Pydio dashboard to upload, manage and share your files in the cloud.

10

Conclusion

In this guide, we took you through the steps for installing Pydio on an ECS instance hosted on Alibaba Cloud. You can use this tutorial to create a cloud infrastructure for storing, securing and sharing your files in the cloud. Remember, if you are new to Alibaba Cloud, you can sign up now and get up to $1200 worth of free credit to test Pydio and other Alibaba cloud products.

0 0 0
Share on

francisndungu

31 posts | 8 followers

You may also like

Comments

francisndungu

31 posts | 8 followers

Related Products