LinuxTutorialsUbuntu

How To Install OwnCloud 8 on Ubuntu 15.04

Install OwnCloud 8 on Ubuntu 15.04

In this tutorial, we will show you how to install OwnCloud 8 on Ubuntu 15.04. For those of you who didn’t know, OwnCloud is free and open-source software that enables you to create a private “file-hosting” cloud. OwnCloud is similar to DropBox service with the difference of being free to download and install on your private server. Owncloud is made by PHP and backend database MySQL/MariaDB, SQLLite, or PostgreSQL. OwnCloud also enables you to easily view and sync address books, calendar events, tasks, and bookmarks. You can access it via the good-looking and easy-to-use web interface or install the OwnCloud client on your Desktop or Laptop machine (which supports Linux, Windows, and Mac OSX).

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple. I will show you through the step-by-step installation OwnCloud 8 on Ubuntu 15.04.

  • A server running one of the following operating systems: Ubuntu 15.04, and any other Debian-based distribution.
  • It’s recommended that you use a fresh OS install to prevent any potential issues.
  • SSH access to the server (or just open Terminal if you’re on a desktop).
  • A non-root sudo user or access to the root user. We recommend acting as a non-root sudo user, however, as you can harm your system if you’re not careful when acting as the root.

Install OwnCloud 8 on Ubuntu 15.04

Step 1. First of all, log in to your server as root and make sure that all packages are up to date.

apt-get update
apt-get upgrade

Step 2. Install Apache web server on your Ubuntu 15.04 VPS if it is not already installed.

apt-get install apache2

Step 3. Next, install PHP on your server.

Use the following command below to install PHP:

apt-get install php5 php5-mysql

Once the installation is done add the following PHP modules required by OwnCloud:

apt-get install php5-gd php5-json php5-curl php5-intl php5-mcrypt php5-imagick

Step 4. Install the MySQL database server.

Use the following command below to install MySQL:

apt-get install mysql-server

By default, MySQL is not hardened. You can secure MySQL using the mysql_secure_installation script. you should read and below each step carefully which will set a root password, remove anonymous users, disallow remote root login, and remove the test database and access to secure MySQL.

mysql_secure_installation

Next, we will need to log in to the MySQL console and create a database for the OwnCloud. Run the following command:

mysql -u root -p

This will prompt you for a password, so enter your MySQL root password and hit Enter. Once you are logged in to your database server you need to create a database for OwnCloud installation:

mysql> CREATE USER 'ownclouduser'@'localhost' IDENTIFIED BY 'YOURPASSWORD';
mysql> CREATE DATABASE ownclouddb;
mysql> GRANT ALL ON ownclouddb.* TO 'ownclouduser'@'localhost';
mysql> FLUSH PRIVILEGES;
mysql> exit

Step 6. Installing Owncloud 8.

First, we will need to download the latest stable release of OwnCloud on your server (at the time version 8.1.0).

wget https://download.owncloud.org/community/owncloud-8.1.0.tar.bz2
tar -xvf owncloud-8.1.0.tar.bz2 -C /var/www/html/

Set the directory permissions:

chown www-data:www-data -R /var/www/html/owncloud/

Step 7. Configuring Apache for OwnCloud.

While configuring the Apache web server, it is recommended that you enable .htaccess to get enhanced security features, by default .htaccess is disabled in the Apache server. To enable it, open your virtual host file and make AllowOverride is set to All. For example, here I used an external config file instead of modifying the main file.

### nano /etc/apache2/sites-available/owncloud.conf

<IfModule mod_alias.c>
Alias /owncloud /var/www/html/owncloud
</IfModule>
<Directory “/var/www/html/owncloud”>
Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>

Remember to restart all services related to the Apache server.

service apache2 restart

Step 8. Access the OwnCloud application.

Navigate to http://your-domain.com/ and follow the easy instructions. Enter username and password for the administrator user account, click on the ‘Advanced options’ hyperlink and enter the data directory (or leave the default setting), then enter database username, database password, database name, host (localhost), and click ‘Finish setup’.

Install OwnCloud 8 on Ubuntu 15.04

Congratulations! You have successfully installed OwnCloud. Thanks for using this tutorial for installing OwnCloud 8 on Ubuntu 15.04 system. For additional help or useful information, we recommend you check the official OwnCloud website.

VPS Manage Service Offer
If you don’t have time to do all of this stuff, or if this is not your area of expertise, we offer a service to do “VPS Manage Service Offer”, starting from $10 (Paypal payment). Please contact us to get the best deal!

r00t

r00t is a seasoned Linux system administrator with a wealth of experience in the field. Known for his contributions to idroot.us, r00t has authored numerous tutorials and guides, helping users navigate the complexities of Linux systems. His expertise spans across various Linux distributions, including Ubuntu, CentOS, and Debian. r00t's work is characterized by his ability to simplify complex concepts, making Linux more accessible to users of all skill levels. His dedication to the Linux community and his commitment to sharing knowledge makes him a respected figure in the field.
Back to top button