Web Server di TSL  

Basa basi

Membuat server web di TSL support php dan mysql cukup simple dan mudah untuk konfigurasi dasarnya. :D mungkin ini dikarenakan TSL di rekomendasikan khusus untuk server, jadi semuanya tentang server di buat serba simple.

Knp TSL??? dari pengalaman TSL sangat cepat (mungkin karena gak banyak aplikasi yang otomatis dijalanin), gak boros resource hardware, dan emmhh initstyle nya redhat dkk, gw banget gt :-D, karena itulah gw gunain TSL.

Step by step

  • Install apache web server
$ mount /mnt/cdrom
$ swup --repository-URI file:///mnt/cdrom/trustix/rdfs --install apache

  • Install php
$ swup --repository-URI file:///mnt/cdrom/trustix/rdfs --install php php-cli

  • Install mysql
$ swup --repository-URI file:///mnt/cdrom/trustix/rdfs --install mysql php-mysql

  • konfigurasi supaya webserver support pada php
$ vi /etc/httpd/conf.d/httpd-php.conf
  • hilangkan tanda pagar kecuali yang comment keterangannya (baris pertama)
### The follwoing is needed to enable PHP5 support
# LoadModule php5_module /usr/lib/apache/libphp5.so
# AddType application/x-httpd-php .php .php4 .php5 .inc
# AddType application/x-httpd-php-source .phps

  • konfigurasi supaya webserver support mysql
$ vi /etc/httpd/php.ini

  • Tambahkan baris
extension=mysql.so

  • baru jalankan apachenya
$ service httpd start

  • Pengetesan php
$ vi /etc/home/httpd/html/test.php --> isinya
$ lynx localhost/test.php


pengetesan mysql, anda bisa test mysql menggunakan tool mysql client, like as phpmyadmin dll

0 komentar: to “ Web Server di TSL