Archive for September, 2008

GUI on Centos

Biar minimalis install server ya yang perlu-perlu saja.  Begitu jadi, ada yang minta bisa di akses pake GUI.

tambahkan command ini:

yum groupinstall "X Window System" "KDE (K Desktop Environment)"

Friday, September 26th, 2008

Indosat 3.5G unlimited

Setelah kuciwa dengan produk unlimited te******* hari ini aku pake Indosat.  Sudah aktif dan saatnya testing.  Baru testing bentar dan nemu keanehan seperti ini:

Kok uploadnya ya yang ruar biasa.

Padahal cuma 1 bar, tetapi bisa mendekati 1 Mbps loh.  Padahal katanya upto 256 :) .  Gak banyak komen ah, ntar pada pingin trus ikutan.

Youtube lancar, download ok.

Irit quota ah diatas 2 Gb kan turun jadi 64 kbps, kalau butuh download gede di kantor saja.

Kalau banyak yang pake lama-lama lambat juga kali :)

Sore sampai malam akses lambat.  Coba di pagi hari lumayan seperti ini

Wednesday, September 24th, 2008

Doa Penutup Majelis

 

سُبْحَانَكَ اللَّهُمَّ وَبِحَمْدِكَ أَشْهَدُ أَنْ لاَ إِلهَ إِلاَّ أَنْتَ أَسْتَغْفِرُكَ وَأَتُوْبُ إِلَيْكَ

Subhahanakallahuma Wabihamdika, Ashyadu alaa
ilaa ha ilaa anta, astaghfiruka wa atubuu ilaih

Artinya: “Maha suci Engkau ya Allah, dan segala puji bagi-Mu. Aku bersaksi bahwa tiada Tuhan melainkan Engkau. aku mohon ampun dan bertaubat kepada-Mu.”

Tuesday, September 16th, 2008

Google Chrome

Ada yang lucu di google hari ini.  Muncul link baru Download Chrome.  Ya sudah coba saja download dan install.

Tralaaa…..!

Mulailah coba buat browsing ke sana-sini.  Hm, ok juga.  Lumayan cepet dan tampilannya ga rame.  Tapi mana ya yang ada hubungannya dengan chrome?  warna-warna dan lain-lain kagak ada tuh yang chrome…

Coba tengok blog dan posting.  Loh, kok ga muncul fckeditornya? Apa ini termasuk bug?

 

Friday, September 5th, 2008

Apache2, PHP5 & MySQL5 with Yum on CentOS

This guide shows you how to install Apache2, PHP5 and MySQL5 on a CentOS 5+ server with Yum.

Please note that this guide assumes you know basic shell commands, however all steps are documented.

Our first step, is fairly simple. Once you’ve connected to your server over SSH, use the following Yum command to install everything you need:

yum -y install httpd php mysql mysql-server php-mysql

This will take a few minutes to download (total package size is 16Mb)

Once its done Yum will say “Complete!” and you will be returned to shell.

Next, you need to set a MySQL root password. Without this, your MySQL server is open to attack, and it WILL happen! Use the following command (WITH QUOTES) to set your root password:

mysqladmin -u root password 'ENTER-PASSWORD-HERE'

Next we want to do additional security checks on MySQL by removing any other users that managed to get created, as well as removing the MySQL test database as that wont be needed!

mysql -u root -p
mysql> DROP DATABASE test;
mysql> DELETE FROM mysql.user WHERE user = '';
mysql> FLUSH PRIVILEGES;

Finally, we are going to set Apache & MySQL to run on startup. This is useful if your server has a power outage or needs to be rebooted as it will automatically restart Apache & MySQL for you.

  /sbin/chkconfig httpd on
  /sbin/chkconfig --add mysqld
  /sbin/chkconfig mysqld on
  /sbin/service httpd start
  /sbin/service mysqld start

To check everything worked, browse to the web servers directory (on CentOS its /var/www/html) and create a new file using NANO text editor called phpinfo.php (enter “nano phpinfo.php” to open the text editor). Enter the following code into that file to check PHP is working:

<php echo phpinfo(); ?>

All done :)

Thursday, September 4th, 2008