You are on page 1of 2

Steps to Install OwnCloud Server on Ubuntu 16.

04 are as follows:
Step 1: Update the Server
#apt-get update

Step 3: Download the Release Key of Owncloud, Importing the Key to Ubuntu, and Update
Ubuntu
#sudo curl
https://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/Release.key
| sudo apt-key add - && echo 'deb
https://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/ /' | sudo tee
/etc/apt/sources.list.d/owncloud.list && sudo apt-get update

Step 6: Download dan Install OwnCloud


#cd /var/www/html/
#sudo wget
http://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/owncloud-
files_10.0.4.orig.tar.gz
#tar -xvzf owncloud-files_10.0.4.orig.tar.gz
#sudo cp -r owncloud/ /var/www/html/
#sudo chown -R www-data:www-data owncloud

Step 7: Restart Apache Server


#systemctl restart apache2.service
#service apache2 restart

Step 8: Mysql Configuration


#mysql -u root -p
#CREATE DATABASE owncloud;
#GRANT ALL ON owncloud.* to 'root'@'localhost' IDENTIFIED BY 'root';
#FLUSH PRIVILEGES;
#exit

Open Web Browser


#https://localhost/owncloud

CATATAN TAMBAHAN:
*/etc/init.d/apache2 start
*rm -rf (namafolder)

CARA RENAME NAMA FOLDER:


mv /home/user/oldname /home/user/newname

================================ tidak perlu lagi =========================


Step 3: Download the Release Key of Owncloud
#curl
https://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/Release.key
| sudo apt-key add -

Step 4: Importing the Key to Ubuntu


#echo 'deb http://download.owncloud.org/download/repositories/stable/Ubuntu_16.04/ /'
| sudo tee /etc/apt/sources.list.d/owncloud.list

Step 5: Update the System


#apt-get update

===========================================================================
======================
CARA SIMPLE:

===========================================================================
======================

You might also like