ownCloud is an open-source, self-hosted file-syncing and sharing platform similar to Dropbox, OneDrive, and Google Drive. It lets you create your cloud in your environment with your servers. Now that you can install Linux OS inside Windows via WSL, the steps below show you how to install ownCloud in Windows with Windows Subsystem for Linux (WSL). With WSL, you can install and run a full Linux operating system inside Windows. So get Windows, enable WSL, install a Linux OS and run ownCloud. Back in 2017, Windows released the original WSL version. WSL 2 is an improvement over version 1 and comes with a performance boost, full system call compatibility, and built with a new architecture that delivers features that make WSL an amazing way to run a Linux environment in Windows. If you have a machine that meets the requirements above to run WSL 2, then continue below. To get started with running ownCloud on Windows with WSL, follow the steps below:

Enable WSL in Windows

To enable WSL in Windows, you will want to open the PowerShell terminal as administrator. Click on Start then begin typing PowerShell. Next, right-click the Windows PowerShell app and choose to run as administrator. When the console opens, run the commands below: After installing, you should get a success message similar to the lines below:

Enable Virtual Machine Platform

WSL 2 requires Windows 10 Virtual Machine Platform to be enabled. This is not Hyper-V. To enable the VM platform feature in Windows, run the commands below from the same PowerShell administrator’s console. If you’re using Windows 10 version lower than 2004, then use the commands below: When you’re done running the commands above, restart your computer for all the configuration changes to apply. If you don’t restart, the below command might not be recognized. After restarting your computer, login back in and launch PowerShell as administrator. Then run the commands below to configure WSL 2 as the default version of WSL.

Install Ubuntu on Windows 10

Now that WSL 2 is installed and ready to be used, open the link below to download and install a copy of Ubuntu 20.04 from the Windows store. Get Ubuntu 20.04 LTS – Microsoft Store Ubuntu 20.04 LTS on Windows allows you to use Ubuntu Terminal and run Ubuntu command line utilities including bash, ssh, git, apt, and many more. Click the Get button and install. After installing Ubuntu, you’ll want the option to launch Ubuntu from the Windows WSL environment. After launching Ubuntu, it should install and prompt you to create your account. That should do it! Some troubleshooting commands to run when you run into the issues above. These run below and try to launch the Ubuntu image again. Now that Windows 10 WSL environment is ready, continue below to install Apache, MariaDB, and PHP and configure ownCloud to run.

Install Apache HTTP Server

Apache is the most popular open-source web server powering the majority of websites online. Since ownCloud needs, it, use the commands below to install it on Ubuntu. To install Apache on Ubuntu, run the commands below: After installing Apache2, the commands below can be used to stop, start and restart Apache2 services. To validate that Apache is installed and functioning, open your web browser and browse to the server’s hostname or IP address. You should get a test page if every works. http://localhost

Install MariaDB Database Server

For this tutorial, we’re going to be installing MariaDB. ownCloud needs a database server to store its content. MariaDB is a truly open-source database server you can run with your projects. It is fast, secure and the default server for almost all Linux. To install MariaDB, run the commands below: After installing MariaDB, the commands below can be used to stop, start and restart MariaDB services. Next, run the commands below to secure the database server with a root password if you were not prompted to do so during the installation. When prompted, answer the questions below by following the guide.

Enter current password for root (enter for none): Just press the Enter Set root password? [Y/n]: Y New password: Enter password Re-enter new password: Repeat password 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

To verify and validate that MariaDB is installed and working, log in to the database console using the commands below: Type the root password when prompted. If you see a similar screen as shown above, then the server was successfully installed.

PHP is a general-purpose scripting language that glues all the above components together. ownCloud is a PHP application and requires PHP and related modules to function. To install PHP and recommended modules, run the commands below. That should get PHP installed with recommended PHP modules that you can run with many PHP-based applications. To validate that PHP is installed, run the commands below: You should see an output like the one below: You can also test with a test PHP script and display the installed version as well as related modules that are enabled or disabled. To do that, run the commands below to create a PHP test file called phpinfo.php Then type the content below and save the file. Save the file. Open your browser and browse to your server hostname followed by phpinfo.php Restart Apache, then type the address and browse the file. You should see the PHP default test page. At this stage, all required components that ownCloud needs are installed above. Continue below to download and configure ownCloud settings.

Create ownCloud Database

Now that you’ve installed all the packages that are required for OwnCloud to function, continue below to start configuring the servers. First, run the commands below to create a blank OwnCloud database. To log on to the MariaDB database server, run the commands below. Then create a database called owncloud Create a database user called ownclouduser with a new password Then grant the user full access to the database. Finally, save your changes and exit.

Download ownCloud

Next, go and download the latest version of ownCloud. At the time of writing this article, the latest stable version of ownCloud is version 10.7. Before continuing with the next step, visit the ownCloud download page and check if there is a new version of ownCloud available. Then run the commands below to set the correct permissions for OwnCloud to function.

Configure ownCloud Site

Finally, configure the Apahce2 site configuration file for OwnCloud. This file will control how users access OwnCloud content. Run the commands below to create a new configuration file called owncloud. conf Then copy and paste the content below into the file and save it. Replace the highlighted line with your domain name and directory root location. Save the file and exit. After configuring the VirtualHost above, enable it by running the commands below, including other modules. When you’re done, restart Apache Now browse to the server hostname or IP address and begin setting up the ownCloud platform. Create an admin account, enter the database details and finish the installation. Log in with the account you create above and start building your environment. Conclusion: This post showed you how to install ownCloud in Windows WSL. If you find any error above, please use the comment form below to report.