Instalasi Nextcloud di Ubuntu 22.04/ Linux Mint 21

NextCloud merupakan aplikasi untuk kolaborasi dokumen file kalendar dan data lainnya. Aplikasinya gratis dan opensource, pengguna dapat menyimpan dan mengakses datanya dari manapun asal terkoneksi internet.

NextCloud dapat di hosting di server sendiri termasuk server lokal . Merupakan alternatif dari layanan berbayar seperti Dropbox, Google Drive dan Microsoft OneDrive.

Di Blog ini akan dijelaskan tentang cara instalasi di server lokal yang terinstall Ubuntu 22.04/ Linux Mint 21

Silahkan jalankan terminal

1. Update daftar paket aplikasi yang ada di repo

sudo apt update

2. Install Apache web server dan PHP

sudo apt install apache2 php libapache2-mod-php -y

3. Install MariaDB server

sudo apt install mariadb-server -y

4. Buat Database dan usernya

sudo mysql -u root
MariaDB [(none)]> CREATE DATABASE nextcloud;
MariaDB [(none)]> CREATE USER 'nextclouduser'@'localhost' IDENTIFIED BY 'linux20';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON nextcloud.* TO 'nextclouduser'@'localhost';
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> exit;

5. Install modul PHP

sudo apt install php-gd php-mysql php-curl php-xml php-mbstring php-zip php-in

6. Download Nextcloud

Masuk ke directory  “/var/www/html

cd /var/www/html

 

Download Nextcloud
sudo wget https://download.nextcloud.com/server/releases/nextcloud-24.0.1.zip

7. Unzip

sudo unzip nextcloud-24.0.1.zip

8. Rubah permissionnya

sudo chown -R www-data:www-data /var/www/html/nextcloud

How to Launch/Open NextCloud on Ubuntu 22.04?

Open your Ubuntu 22.04 web browser, and type “127.0.0.1” in the address bar:

Sumber:

Diterjemahkan bebas dari https://linuxgenie.net/how-to-install-nextcloud-on-ubuntu-22-04/

 

Related Post

0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x