Skip to main content

Installasi Webserver di Opensuse 11.4



 Instalasi Pada Opensuse 11.4 64 bit
Buka Console / Terminal

 Ketik Perintah :
zypper in -t pattern lamp_server

Running Service , jalankan perintah dibawah ini :

chkconfig --add apache2

chkconfig apache2 on

service apache2 restart

Edit Konfigurasi file di  /etc/apache2/default-server.conf

 DocumentRoot "/srv/www/htdocs"

#
# Configure the DocumentRoot
#

<Directory "/srv/www/htdocs">
        # Possible values for the Options directive are "None", "All",
        # or any combination of:
        #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
        #
        # Note that "MultiViews" must be named *explicitly* --- "Options All"
        # doesn't give it to you.
        #
        # The Options directive is both complicated and important.  Please see
        # http://httpd.apache.org/docs-2.2/mod/core.html#options
        # for more information.
        Options All
        # AllowOverride controls what directives may be placed in .htaccess files.
        # It can be "All", "None", or any combination of the keywords:
        #   Options FileInfo AuthConfig Limit
        AllowOverride None


ubah Options None menjadi Options All

Restart ulang service Apache 

service apache2 restart

Buka Browser , kemudian akses IP address Webserver
Misal : 192.168.1.36

Jika Muncul It's Work berarti Webserver anda sudah berjalan



 
 Folder utama dari web server terletak pada folder /srv/www/htdocs

Comments

Popular posts from this blog

Install Remote Desktop di Linux Mint 15

Ketika saya menginstall Linux Mint 15 di laptop saya  , setelah 1 jam selesai install OSnya  , ketika ingin remote desktop server , di search Aplikasi remote desktop di linux mint 15  knp tidak ada ... akhirnya saya install untuk remote desktop bernama aplikasi Remmina Dengan terminal : sudo apt-get install remmina Setelah terinstall , buka menu > Internet > Remmina silahkan coba remote desktop OS Windows , masukan Ip address , pilh Protokol VNC - Virtual Network Computing Masukkan Password Hasil Remote destop seperti diatas . SSH - Secure Shell , pilih Protokol SSH - Secure Shell  Masukkan IP Adderess Server dan masukan Password ,Ok Hasil SSH seprti diatas . Protokol SFTP Sekian , semoga bermanfaat Taufan M| email me

Membuat fungsi “terbilang” Excel menggunakan macro VBA

Jika Anda ingin menerjemahkan Angka menjadi Kata-kata , contohnya saja dalam pembuatan Form Kwitansi suatu Transaksi , anda dapat membuatnya dengan menggunakan aplikasi Microsoft Excel dan Macro Visual Basic Application ( VBA ) .saya menggunakan Excel 2007 Untuk membuatnya silahkan ikuti langkah-langkah dibawah ini :  buka Microsoft Excel , lalu tekan alt+F11  Setelah Muncul Microsoft Visual Basic , lalu pilih Insert > module Isikan code Seperti diatas  silahkan anda download source code nya disini !! Save Book ( ctrl+S)   Save As type : pilih Excel Macro - Enable Workbook  (*.xlsm) lalu klik Save  pilih File > Close and return to microsoft excel , macro sudah dibuat , sekarang kita tinggal test macro tersebut Tempatkan cell A2 , pilih Formulas > Insert Function lalu pilih Category User Defined Terlihat Function terbilang yang sudah dibuat tadi di VBA , klik Ok Akan Tampil Form Seperti diatas ,  Nilai_angka  arahkan ke Cell A1 ( ters...

Install PHPMotion di Ubuntu 12.04 sebagai Self Hosted Video Player

kali ini saya mencoba membuat Appliace untuk Server Video Player seperti Youtube   , dengan menggunakan Applikasi PHPMotion , saya menginstall di Ubuntu 12.04 LTS 64 Bit di dalam VM , Installasi : 1. Instalasi System Ubuntu 12.04 di Virtualbox ,  tutorial     Setting /etc/hosts,/etc/hostname , /etc/resolv.conf     kemudian apt-get update 2. Login sebagai root     sudo su 3. Install Paket untuk Phpmotion      a pt-get install apache2 mysql-server php5 ffmpeg flvtool2 mencoder lame libogg0 php5-ffmpeg php5-curl curl libapache2-mod-php5 php5-mysql lynx-cur libapache2-mod-speedycgi      Hasil File download paketnya sekitar 230 MB , tunggulah dengan sabar :) 4. Download phpmotion di phpmotion.com ( masukan alamat email untuk download)     sebelum download pastikan versi PHP anda       buat file info.php simpan di var/www      <?php      phpinfo();     ...