This video shows how to install Own Cloud on Centos. Own Cloud is simailr to dropbox but you install it on your own server which gives you full control over your data. There are several prerequisites needed to follow along with this video, which I have also included below.
Firstly the commands needed are:
sudo rpm –import https://download.owncloud.org/download/repositories/stable/CentOS_7/repodata/repomd.xml.key
sudo curl -L https://download.owncloud.org/download/repositories/stable/CentOS_7/ce:stable.repo -o /etc/yum.repos.d/ownCloud.repo
sudo yum clean expire-cache
sudo yum install owncloud
sudo mysql -u root -p
CREATE DATABASE owncloud;
GRANT ALL ON owncloud.* to ‘owncloud’@’localhost’ IDENTIFIED BY ‘password123’;
FLUSH PRIVILEGES
exit
sudo setenforce 0
How To Install Own Cloud on CentOS 7:
How To Install Apache (HTTPD) On CentOs7:
How to download and install MariaDB (MySQL) on centos 7:
How to set up Lets Encrypt on CentOS 7
How To Disable SELinux on CentOS 7