Thursday, December 30, 2010

Install Lamp sebagai Web Server (Ubuntu)

Terminal
  • apt-get install lamp-server^
Tes MySQL di Terminal
  • mysql -u root -p
Tes Apache di Browser
  • http://localhost
    kalau bertuliskan seperti dibawah ini maka berhasil

    It works!

    This is the default web page for this server.

    The web server software is running but no content has been added, yet.

Tes Php di Terminal
  • gedit /var/www/tes.php
  • Tulis script seperti dibawah ini
  • restart apache dengan perintah
    /etc/init.d/apache2 restart
  • Tes di Browser
    http://localhost/tes.php
Terminal
  • apt-get install libapache2-mod-auth-mysql phpmyadmin
  • cek
    http://localhost/phpmyadmin

Comment