Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

INSTALLASI OWNCLOUD SERVER LOCAL

 Bahan – bahan :
 OS Debian 9.1
 MySql Server (Database Server)
 Apache2 (WebServer)
 Owncloud Server (Cloud Server)
 Owncloud Client (Tester)
 Installasi dan konfigurasi bahan di atas :
 OS Debian 9.1 (diasumsikan sudah terinstall)
 Mysq Server :
# apt install mysql-server
# mysql –u root –p
Password : (toor, linux21 / kosongkan)
>create database db_owncloud;
> grant all privileges on db_owncloud.* "owncloud"@"localhost" identified by "owncloud";
 Apache2 :
# apt install apache2 –y
Konfigurasi di apache web servernya buatlah konfigurasi owncloudnya
# nano /etc/apache2/sites-available/owncloud.conf
Lalu isikan script berikut :
Alias /owncloud "/var/www/owncloud/"

<Directory /var/www/owncloud/>
Options +FollowSymlinks
AllowOverride All

<IfModule mod_dav.c>
Dav off
</IfModule>

SetEnv HOME /var/www/owncloud


SetEnv HTTP_HOME /var/www/owncloud

</Directory>
Kemudian buat symlinknya ke /etc/apache2/sites-enabled:
#ln -s /etc/apache2/sites-available/owncloud.conf /etc/apache2/sites-
enabled/owncloud.conf
Setelah itu aktifkan modul – modul pendukungnya
# a2enmod rewrite
# a2enmod headers
# a2enmod env
# a2enmod dir
# a2enmod mime
# service apache2 restart

Menyalakan modul ssl konfig

# a2enmod ssl
# systemctl reload apache2
# a2ensite default-ssl

Run installasi wizard

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

Link :
https://doc.owncloud.org/server/latest/admin_manual/installation/source_installation.html

 Owncloud Server :
Download terlebih dahulu owncloud servernya https://owncloud.org/install/, ada 2 pilihan
(zip / tar.gz)
Ekstrack filenya
# tar –xf owncloud-x.y.z.tar.gz
# unzip owncloud-x.y.z.zip
Copy folder owncloud di folder root apache
# cp –r owncloud /var/www

 Owncloud Client :
Download di owncloud client di https://owncloud.org/install/
Cara installnya bias di lihat di link berikut:
https://ittutorials.net/linux/owncloud/installing-the-owncloud-client-in-windows-10/

Link :

- https://doc.owncloud.org/server/latest/admin_manual/installation/source
_installation.html
- https://owncloud.org/install/
- https://musaamin.web.id/cara-membuat-server-cloud-storage-sendiri-pada-
jaringan-lan/

You might also like