Tutorial Ubuntu 20.04 LTS : Cara Instalasi dan Konfigurasi LEMPP (Linux, Nginx, MariaDB, PHP)
LEMPP (Linux, Nginx, MariaDB, PHP)
LEMPP (Linux, Nginx, MariaDB, PHP) merupakan bundling paket web server beserta database MariaDB untuk keperluan deployment sebuah web terutama yang menggunakan bahasa pemograman PHP. LEMPP disini menggunakan Nginx yang dikenal ringan dan kini begitu populer sebagai web servernya. Untuk database optinal kalian bisa gunakan mysql atau MariaDB. Pada tutorial ini kita akan melakukan instalasi dan konfigurasi LEMPP Stack pada sistem operasi Ubuntu Server 20.04 LTS.
Instalasi Nginx
Nginx merupakan salah satu web server yang kini sangat populer karena ringan dan cukup handal dalam menangani hal hal yang berkaitan dengan web server seperti proxy ataupun loadbalancer. Berikut cara melakukan instalasi nginx web server pada Ubuntu 20.04 LTS Server. Terlebih dahulu lakukan update repository dan upgrade system.
$ sudo apt update && sudo apt upgrade
$ sudo apt install nginx
Tunggu proses instalasi hingga selesai. Untuk melakukan akses terhadap web server nginx, kalian cukup lakukan akses ke http://ip-address
menggunakan web browser.
Atau dapat juga menggunakan curl
pastikan response dari perintah curl
tersebut adalah 200
.
$ curl -s -o /dev/null -I -w "%{http_code}\n" http://localhost
Install & Config PHP
Agar kita bisa menjalankan Web Framework ataupun CMS yang dibangun dengan PHP seperti Laravel, Wordpress, Drupal, Moodle, dll. Maka selanjutnya kita lakukan instalasi PHP FPM pada Ubuntu Server 20.04 LTS.
$ sudo apt install php-fpm
Secara default pada Nginx Web Server PHP tidak bisa secara otomatis running dengan Web Server. Ada sedikit konfigurasi yang perlu dilakukan. Yaitu dengan mengubah sedikit konfigurasi default nginx agar bisa running dengan PHP.
$ sudo nano /etc/nginx/sites-available/default
Tambahkan index.php
kedalam list dan enable fungsi php dengan cara uncomment (hapus tanda #) sehingga menyerupai snippet code berikut.
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ =404;
}
# pass PHP scripts to FastCGI server
#
location ~ \.php$ {
include snippets/fastcgi-php.conf;
#
# # With php-fpm (or other unix sockets):
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
# # With php-cgi (or other tcp sockets):
# fastcgi_pass 127.0.0.1:9000;
}
Jika sudah dirasa benar maka kita lakukan cek pada syntax config nginx.
$ sudo nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
Jangan lupa untuk melakukan restart service nginx.
$ sudo systemctl restart nginx
Buat file php sederhana contoh seperti phpinfo
untuk melakukan pengecekan.
$ sudo nano /var/www/html/info.php
<?php
phpinfo();
?>
Install MariaDB
MariaDB merupakan salah satu relational database yang populer dan masih banyak digunakan yang berlisensi Open Source. Berikut ini adalah cara melakukan instalasi MariaDB Server pada Ubuntu 20.04 LTS.
$ sudo apt install mariadb-server
$ sudo mysql_secure_installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none): ENTER
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
Set root password? [Y/n] Y
New password: [Buat baru Password ROOT]
Re-enter new password: [Ulangi Password ROOT]
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] Y
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] Y
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] Y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
Nah sampai disini kita sudah berhasil melakukan instalasi lempp stack (Linux, Nginx, MariaDB, PHP) pada sistem operasi Ubuntu Server 20.04 LTS.