Panduan cara install Apache, MariaDB/MySQL, PHP (LAMP stack) di Linux Ubuntu 16.04. Untuk memulai tutorial ini bagi teman-teman pengguna windows, silahkan menggunakan aplikasi Putty.
Langkah 1 – Update system
Biasakan update system linux dengan menjalankan baris perintah berikut. Perintah dengan opsi -y
= yes biar nanti tidak perlu konfirmasi ulang menekan abjad y
.
apt-get update -y
Langkah 2 – Install Apache
apt-get install apache2 -y
systemctl enable apache2
Cek melalui browser http://ip/, jikalau sukses, ada tulisan It works!
.
Langkah 3 – Install MariaDB/MySQL
Ada dua opsi, silahkan pilih mau pakai MariaDB atau MySQL (rekomendasi pakai MariaDB saja)
Instalasi untuk MariaDB
apt-get install mariadb-server
Jika ingin MySQL sebagai database (tidak disarankan)
apt-get install mysql-server
Selanjutnya ialah menigkatkan keamanan instalasi MariaDB/MySQL, menyerupai mengatur password dan lain-lain.
mysql_secure_installation
Ada beberapa pertanyaan yang perlu dijawab, dan diantaranya sebagai berikut, lihat bab yang aku warnai
Securing the MySQL server deployment.
Enter password for user root: ketik password kemudian tekan Enter
VALIDATE PASSWORD PLUGIN can be used to test passwords
and improve security. It checks the strength of password
and allows the users to set only those passwords which are
secure enough. Would you like to setup VALIDATE PASSWORD plugin?
Press y|Y for Yes, any other key for No: Enter saja
Using existing password for root.
Change the password for root ? ((Press y|Y for Yes, any other key for No) : Enter saja
... skipping.
By default, a MySQL installation has an anonymous user,
allowing anyone to log into MySQL 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? (Press y|Y for Yes, any other key for No) : y
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? (Press y|Y for Yes, any other key for No) : y
By default, MySQL 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? (Press y|Y for Yes, any other key for No) : 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? (Press y|Y for Yes, any other key for No) : y
Success.
All done!
Pastikan service MariaDB/MySQL auto start ketika mesin restart
untuk MariaDB
systemctl enable mariadb
untuk MySQL
systemctl enable mysql
Langkah 4 – Install PHP
Langkah selanjutnya, install PHP dan modul-modul yang umum di-install.
apt-get install php7.0 php7.0-common php7.0-mbstring php7.0-gd php7.0-mcrypt libapache2-mod-php7.0 php7.0-curl php7.0-zip php7.0-mysql
Buat file info.php
untuk mengecek keberhasilan dari tutorial ini.
nano /var/www/html/info.php
Isi dengan baris isyarat berikut
<?php phpinfo();
Simpan, cara menyimpan di nano editor, dengan menekan Ctrl+O
kemudian Ctrl+X
Kemudian kita perlu me-restart apache2,
systemctl restart apache2
Terakhir, cek melalui browser http://ip/info.php
Selesai, selamat mencoba 😀
Sumber https://idnetter.com
Mari berteman dengan saya
Follow my Instagram _yudha58Related Posts :
Cara Install Dan Konfigurasi Linux Malware Detect Dan ClamavSelain melaksanakan konfigurasi firewall, hal yang tak kalah penting ialah selalu update system dan software-softare yang dipakai didalam se… Read More...
Perintah CdPerintah Linux cd atau change directory yaitu perintah Linux yang dipakai untuk berpindah ke direktori lain dari lokasi direktori aktif keti… Read More...
Cara Menciptakan Backup Website Otomatis Di VpsPanduan cara menciptakan backup website otomatis di VPS (Virtual Private Server) ini meliputi file termasuk database website. File akan dibe… Read More...
Perintah Lsls atau list directory contents, atau sanggup diartikan ls yakni perintah untuk menampilkan isi daftar file dan direktori yang berada di dal… Read More...
Cara Menciptakan User Gres Di LinuxPanduan cara menciptakan user gres di Linux, baris perintah ini sanggup dipakai pada operasi sistem Linux Ubuntu, Debian, Centos, Fedora, SU… Read More...
0 Response to "Cara Install Lamp Di Ubuntu 16.04"
Posting Komentar