menggunakan layanan gmail dengan nama domain sendiri

Menggunakan gmail sebagai layanan webmail adalah sesuatu yang sangat mustahal.. karena kenapa.? coz kite harus sewa hosting sama google. Tapi untung nya saat ini gratis. Yaitu dengan menggunakan layanan google apps.. Untuk yang terbiasa pakai cPanel, biar ga kesusahan aja buka webmail nya.

langkah langkah nya tinggal buka ini lalu isi form kaya di bawah ini

1. Masukkan nama domain

Continue reading

install Windows Server di xen domU melalui hypervm

pada tutz sebelum nya yaitu installasi hypervm di centos sekarang ane lagi coba-coba untuk install windows server di hypervm. langkah-langkah nya adalah sbb :

Langkah awal nya adalah membuat file iso yang akan di simpan di server. tutorial nya ada di sini

[root@localhost ~]$  ln -s /iso/win2k3r2-cd1.iso /home/wincd.img

lalu ubah file permission nya ke 755

[root@localhost ~]$ chmod 775 /iso/win2k3r2-cd1.iso

Now login to HyperVM by entering the IP address of the computer you installed it to in a web browser and connect to port 8887 or 8888. For example:

The interface will return you to the Virtual Machines listing. Click on vm name to go to it’s control panel. From there you can open the vm’s output display by selecting VNC Client under the Console category. Alternatively you can connect using a third party VNC client to the host machine’s IP address at the port specified in the VNC Client page. Once you’ve connected, you can install Windows as you normally would on a regular computer.

In Windows Server 2003 R2, the main installation will use only the first disc. After the OS is set up during the first logon the installer will ask for a second disc. You can skip this but should you want to continue with the second disc, this is what you have to do in the terminal console of the host machine:

Continue reading

install SSL di web server apache

This guide will assist you with enabling SSL for websites served under the Apache web server. We assume you’ve completed the steps detailed in our getting started guide, and that you’ve successfully set up Apache for serving virtual hosts as outlined in our Apache 2 on CentOS 5 guide. These steps should be performed via an SSH session to your Linode as the root user.

These instructions work with the Linode platform. If you don’t have a Linode yet, sign up for a Linux VPS and get started today.

hese instructions will help you generate a generic self-signed certificate, which may be used to provide SSL service for all name-based hosts on your VPS. Please note that self-signed certificates will generate warnings in a visitor’s browser; proceed to “Installing a Commercial SSL Certificate” if you need to set up SSL on a domain using a certificate signed by a commercial SSL provider.

Continue reading

mengarahkan domain .com ke blogspot

Bila anda sudah bosan dengan nama.blogspot.com dan ingin berpindah ke namamu.com anda tinggal beli domain lalu arahkan domain ke blogspot. Dan di blogspot anda setting untuk domain tersebut, ini biasa disebut setting domain custom. Langkah yang harus anda lakukan :

1.  Setting di Blogspot anda

a.   Masuk ke dashboard www.blogspot.com dengan user dan password

b.   Klik Pengaturan (Setting)

Continue reading

install Apache, MySQL dan PHP pada CentOS

Artikel ini memuat langkah demi langkah instalasi dan konfigurasi untuk paket Apache (http server), MySQL (database server) dan PHP (Bahasa Program untuk pengembangan aplikasi web) di mesin CentOS 5.2 64 bit. Khusus dibuat untuk dijalankan di Virtual Private Server (VPS), yang mana sebelum nya udah di jabarkan di sini.

Paket yang dibutuhkan Apache, MySQL dan PHP

Pada instalasi Operating System CentOS 5.2 64 bit minimal install, silahkan instal paket-paket berikut dengan menggunakan yum;

yum installgettext httpd mysql mysql-server perl php php-mysql php-xml php-imap php-mbstring php-mcrypt php-pecl-Fileinfo php-pecl-memcache php-pear-DB php-pear-File php-pear-Log php-pear-Mail-Mime php-pear-Auth-SASL php-pear-Date php-pear-HTTP-Request php-pear-Mail php-pear-Net-Sieve php-pear-Net-Socket php-pear-Net-SMTP openssl perl-Net-SSLeay php-devel gcc gd php-gd

Services

Nyalakan service httpd dan MySQL dan kemudian masukkan ke dalam script startup agar menyala otomatis apabila reboot dilakukan;

    service httpd start
    service mysqld start
    chkconfig –levels 235 httpd on
    chkconfig –levels 235 mysqld on

Untuk memastikan apakah service httpd dan mysqld sudah termasuk service yang dinyalakan secara otomatis pada saat mesin dinyalakan silahkan periksa melalui perintah;

chkconfig –list

Cari entry terkait pada hasil yang terprintout di layar SSH console anda.

1.httpd 0 : off  1 : off  2 : on  3 : on  4 : off  5 : on  6 : off
2.mysqld  0 : off  1 : off  2 : on  3 : on  4 : off  5 : on  6 : off

Sampai dengan tahap ini, apache, mysql dan PHP di mesin anda telah siap untuk digunakan, silahkan periksa halaman default yang dibuat oleh CentOS melalui browsing ke ip address mesin anda atau melalui nama domain apabila sudah resolve.