Kode Iklan 300x600

Cara Raspberry memasang server web Apache

Cara Raspberry ini akan menginstal Apache HTTP server web. Instalasi perbedaan untuk web server lighttpd dan Nginx akan dibahas pada akhir pos ini.

Web server Apache adalah salah satu yang paling sering digunakan web server pada GNU Linux platform seperti distribusi Raspbian Linux yang digunakan oleh Raspberry Pi. Apache adalah server web lengkap, extensible yang dapat digunakan untuk berbagai aplikasi; proxy akses ke situs web internal dan eksternal; juga host statis halaman web dan gambar.
Setelah memahami cara Raspberry ini, Raspberry Pi anda akan dapat melayani halaman web statis dan dinamis dari SD kartu boot disk ataupun dari disk eksternal.
Apache web server


Caranya ...

Langkah-langkah untuk menginstal Apache web server adalah:
1. Log in ke Raspberry Pi baik secara langsung atau remote.
2. Gunakan apt-get install perintah untuk men-download dan menginstal Apache HTTP server web (apache2).
pi@raspberrypi ~ $ sudo apt-get install -y apache2
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
apache2-mpm-worker apache2-utils apache2.2-bin apache2.2-common libapr1
libaprutil1 libaprutil1-dbd-sqlite3 libaprutil1-ldap ssl-cert

...

Setting up apache2.2-common (2.2.22-13+deb7u5) ...
Enabling site default.
Enabling module alias.
Enabling module autoindex.
Enabling module dir.
Enabling module env.
Enabling module mime.
Enabling module negotiation.
Enabling module setenvif.
Enabling module status.
Enabling module auth_basic.
Enabling module deflate.
Enabling module authz_default.
Enabling module authz_user.
Enabling module authz_groupfile.
Enabling module authn_file.
Enabling module authz_host.
Enabling module reqtimeout.
Setting up apache2-mpm-worker (2.2.22-13+deb7u5) ...
[....] Starting web server: apache2apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1 for ServerName
. ok
Setting up apache2 (2.2.22-13+deb7u5) ...
Setting up ssl-cert (1.0.32) ...
pi@raspberrypi ~ $
3. Perintah apt-get install download dan menginstal apache2.
Jika ufw firewall diinstal (cara Raspberry membuat firewall), maka gunakan perintah ufw allow http agar rule mengijinkan protokol HTTP (web server) melalui firewall.
pi@raspberrypi ~ $ sudo ufw allow http
Rules updated
pi@raspberrypi ~ $
4. Pakailah web browser pada komputer (atau gadget) lain untuk menguji koneksi HTTP pada Raspberry Pi.

Dalam gambar di atas, browser web di komputer lain digunakan untuk mengakses halaman web default server web Apache sedang berjalan di Raspberry Pi. Web server bekerja!
5. Gunakan perintah ls-l untuk melihat isi direktori root server web, /var/www
pi@raspberrypi ~ $ ls -l /var/wwwtotal 4
-rw-r--r-- 1 root root 177 Aug 12 20:11 index.html
pi@raspberrypi ~ $
Hanya ada satu file di direktori root server web, yaitu index.html.

Cara Raspberry memasang server web Apache Cara Raspberry memasang server web Apache Reviewed by Mas Sam on 12:49 PM Rating: 5
Powered by Blogger.