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
11018009 10018002 index.html info.php
12018003 12018068 index.php nano.save
root@localhost /var/www/html # mkdir 12018099 //membuat directory atau folder dengan NIM saya sendiri
root@localhost /var/www/html # cd 12018099 //masuk ke directory 12018099
root@localhost /var/www/html/12018099# touch info.php //membuat isi dari file
root@localhost /var/www/html/12018099 # nano info.php //menulis file dengan ext. php
root@localhost /var/www/html/12018099# mv info.php index.php //mengganti nama info.php dengan index php
root@localhost /var/www/html/12018099# ls //masuk ke dalam folder 12018099
index.php
root@localhost /var/www/html/12018099# ls -l //mengganti hak akses
total 4
-rw-r--r-- 1 root root 26 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/12018099# 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.
0 komentar:
Posting Komentar