Instalasi dan Konfigurasi LAMP server di Ubuntu 9.04 (Jaunty Jackalope)

By | 1 July 2009

Berikut ini adalah instalasi LAMP (Linux-Apache-MySQL-PHP) di Ubuntu 9.04 (Jaunty Jackalope) melalui command line:

  1. Instal Apache: $ sudo apt-get install apache2 apache2-doc apache2-mpm-prefork apache2-utils apache2-suexec libexpat1 ssl-cert
  2. Instal PHP: $ sudo apt-get install libapache2-mod-php5 libapache2-mod-ruby libapache2-mod-python php5 php5-common php5-curl php5-dev php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-mysql php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
  3. Instal MySQL: $ sudo apt-get install mysql-server mysql-client libmysqlclient15-dev
  4. Instal phpMyAdmin: $ sudo apt-get install phpmyadmin

Konfigurasi Web Server Apache:

  • Edit file /etc/apache2/sites-enabled/000-default, rubah pada bagian:

<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>

menjadi:

<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>

  • Untuk aktifkan module rewrite gunakan command: $ sudo a2enmod rewrite, sehingga akan muncul:Module rewrite installed; run /etc/init.d/apache2 force-reload to enable.
  • Jalankan/restart web server apache untuk mengaktifkan perubahan yang sudah dilakukan dengan command: $ sudo /etc/init.d/apache2 restart, jika berhasil maka akan muncul:

Restarting web server apache2
…waiting                                                          [ok]

Konfigurasi MySQL:

Untuk mengelola database MySQL gunakan phpMyAdmin. Anda perlu menambahkan user baru selain root untuk akses database nantinya.

  1. Dari browser arahkan URL ke: http://localhost/phpmyadmin. Kemudian masukkan username root dan password.
  2. Setelah login dihalaman phpMyAdmin, pilih tab Hak Akses. Kemudian tambahkan pengguna baru, beri hak atas akses database untuk host localhost.

Konfigurasi php.ini:
Silakan edit  file /etc/php5/apache2/php.ini

One thought on “Instalasi dan Konfigurasi LAMP server di Ubuntu 9.04 (Jaunty Jackalope)

  1. Pingback: Cara Install Webserver di Centos 7 | Whplus Blog

Comments are closed.