Instalasi LAMP Stack di Ubuntu Server 20.04
Tutorial Instal LAMP Stack dan Wordpress di Ubuntu Server 20.04
Tutorial Instalasi Web Server
➤ Update Ubuntu Server (Update Repository)
⇔ sudo apt-get update
➤ Instalasi Web Server (Apache)
⇔ sudo apt install apache2
⇔ sudo systemctl restart apache2.service
Ketikkan ip
address ubuntu server kita
➤ Instalasi PHP
⇔ sudo apt install php
⇔ nano info.php
Ketikkan:
<?php
phpinfo();
?>
Ketikkan
ip address ubuntu server kita/info.php Pada Browser
➤ Instalasi & Konfigurasi Database Server (Mariadb)
§ Install Mariadb
⇔ sudo apt install mariadb-server
§ Mysql Secure
⇔ sudo mysql_secure_installation
§ Make Database & User
⇔ sudo mysql –u root –p
⇔ insert your root password
⇔ create database namadatabasekita;
⇔ create user ‘usernamekita’@’127.0.0.1’identified by’passwordkita’;
⇔ grant all privileges on databasekita.*to’usernamekita’@’127.0.0.1’;
⇔ flush privileges;
⇔ exit
➤ Instalasi FTP Server (Proftpd)
⇔ sudo apt install proftpd-basic
Tutorial Membuat Web Wordpress Menggunakan LAMP Stack Ubuntu Server
➤ Pembuatan user dengan home direktori di direktori website
⇔ sudo useradd –d /var/www/html/ usernamekita
⇔ sudo passwd usernamekita
⇔ cat /etc/passwd
§ Download Web Wordpress
Link download https://id.wordpress.org/download/
§ Download FileZila
Link download https://filezilla-project.org/download.php?type=client
Buka FileZila
Isi Host dengan ip address ubuntu server kita
Cek dengan ubuntu server ⇔ sudo ip a
Isi username dengan username yang telah kita
buat.
Isi password dengan password dari username yang
telah kita buat.
Give Permission
⇔ cd /var/www/
⇔ sudo chmod –R 777 html/
Drag & Drop Wordpress yang telah kita
download sebelumnya
Install unzip dapa ubuntu server
⇔ sudo apt install unzip
Unzip Wordpress
⇔ unzip namafilewordpress.zip
⇔ sudo apt install php-mysql
⇔ sudo systemctl restarrt apache2.service
Ketikkan ip
address ubuntu server kita/wordpress
Klik Let’s go
Lalu masukkan
Nama database kita, username dan password yang sudah kita buat sebelumnya, dan
juga masukkan Host database. Klik submit.
Copy code yang telah di sediakan.
Pergi ke PuTTY
terminal
Wordpress directory
⇔ cd /var/www/html/
⇔ ls
⇔ cd wordpress/
⇔ ls
⇔ sudo nano wp-config.php
Paste code yang telah di copy tadi
Kembali ke browser
Ketikkan ip
address ubuntu server kita/wordpress
Masukkan judul, Username, Password, Email, kemudian klik install
WordPress.
➤ Upload file website ke
server melalui ftp (website bebas bisa wordpress / semacamnya asal memiliki
akses ke database / bukan website statis)
§ Login
§ Masuk Ke Dashbord
Ketikkan kembali ip address ubuntu server kita/wordpress
INTALATION
DONE!
Komentar
Posting Komentar