Pertama aplikasi Web Server, aplikasi ini wajib di install. Karena merupakan dasar untuk tempat menyimpan aplikasi kita yang berbasis web. Disini saya menggunakan web server LAMP.
- Install Apache2
apt-get install apache2
- Kemudian install MySQL
apt-get install mysql-server mysql-client
- Install PHP5
apt-get install php5 libapache2-mod-php5
service apache2 restart
- Coba membuat file info.php di folder var/www/html, dengan cara :
nano /var/www/html/info.php
- Masukkan tulisan berikut kemudian simpan
<?php
phpinfo();
?>
- Supaya mysql support di PHP5, berikut caranya :
apt-cache search php5
apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
service apache2 restart
apt-get install php5-xcache
service apache2 restart
- Install phpMyAdmin
apt-get install phpmyadmin
- Jika muncul tulisan pertanyaan seperti berikut :
Web server to reconfigure automatically: <-- apache2
Configure database for phpmyadmin with dbconfig-common? <-- No
- Terakhir setting folder var/www/html supaya bisa membuat dan edit folder/file
chmod 777 -R /var/www/
Posting Komentar