Jumat, 11 Juli 2014

Langkah Installasi LAMP Server pada Debian 7

1. Installing Apache + PHP.
Membuka terminal terlebih dahulu lalu tulis di terminal perintah di bawah ini.
apt-get install apache2 php4 libapache2-mod-php4
apt-get install apache2 php5 libapache2-mod-php5
nano /var/www/test.php

<?php
 phpinfo();
 ?>

http://10.30.1.1/test.php  Tulis di broswer akan muncul seperti di bawah ini. bearti sudah berhasil.



apt-get install php5-gd
# a2enmod rewrite
nano /etc/apache2/sites-enabled/000-default

<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All (None di ganti All)
Order allow,deny
allow from all
# Uncomment this directive is you want to see apache2's
# default start page (in /apache2-default) when you go to /
#RedirectMatch ^/$ /apache2-default/
</Directory>

chmod 644 /etc/apache2/sites-enabled/000-default

2. Installing MySQL Database Server
apt-get install mysql-server mysql-client php5-mysql



3. Instalasi PhpMyAdmin

apt-get install phpmyadmin

File konfigurasi phpmyadmin terletak di: folder / etc / phpmyadmin.

Untuk setup di bawah apache semua yang perlu Anda lakukan adalah memasukkan baris berikut di / etc/apache2/apache2.conf

/etc/phpmyadmin/apache.conf
/etc/init.d/apache2 restart
Jika sudah selesai lalu di coba tulis browser ip komputer/phpmyadmin kemudian akan muncul seperti gambar di bawah ini bearti penginstallan berhasil.



 http://www.howtoforge.com/perfect-server-debian-wheezy-apache2-bind-dovecot-ispconfig-3
http://www.mysql-apache-php.com/

Tidak ada komentar:

Posting Komentar