praktikan@localhost ~ $ su // untuk masuk ke root atau super-user
praktikan@localhost ~ $ yum install apache mysql php //untuk install apache bila tidak ada apache, mysql, dan php sebagai web browser
root@localhost /home/praktikan # service httpd start // mengecek apakah apache sudah terinstall
Redirecting to /bin/systemctl start httpd.service
root@localhost /home/praktikan # cd /var/www/html // masuk ke directory
root@localhost /var/www/html # ls //masuk ke directory root
10018203 12018169 index.html info.php
12018095 1300018051 index.php nano.save
root@localhost /var/www/html # mkdir 12018095 //membuat directory atau folder dengan NIM saya sendiri
root@localhost /var/www/html # cd 12018095 //masuk ke directory 12018095
root@localhost /var/www/html/12018095 # touch info.php //membuat isi dari file
root@localhost /var/www/html/12018095 # nano info.php //menulis file dengan ext. php
root@localhost /var/www/html/12018095 # mv info.php index.php //mengganti nama info.php dengan index php
root@localhost /var/www/html/12018095 # ls //masuk ke dalam folder 12018095
index.php
root@localhost /var/www/html/12018095# ls -l //mengganti hak akses
total 4
-rw-r--r-- 1 root root 29 Mei 24 12:48 index.php
Penjelasan HAK AKSES pada file
1. owner : pemilik file
2. group : untuk kelompok
3. other : yang lain
Dengan nilai dari setiap hak akses adalah r(read)=4, w(write)=2 ,x(excecution), dan - = 0
root@localhost /var/www/html/12018095# chmod 644 index.php /
/supaya bisa read untuk everyone , 644 maksudnya adalah membuat agar
owner=read=6, group=read=4, dan other=read=4 jadi semua orang bisa
membaca fifle tersebut.