Sallary negotiation process
, lookout for the "Offering Letter".
16 Oktober 2008, Jam 10 Gedung BRI2
All negotiation done 18 october 2008, "Job Agreement letter" assigned at 20 october 2008.
next 30 days is the remaining time ...... thanks Allah for everything ... may it be the best way for my future ... since i've been working in Q for the last 6 year ... its time to move on ... noone but our self can change our future ...
... lets start think smarter and do harder ...
*** Install openssl-0.9.8g :
tar -xvzf openssl-0.9.8g.tar.gz
./Configure --prefix=/usr/local
./config
make
make all
make install
*** Create Certificate :
mkdir /usr/local/sslkey
cd /usr/local/sslkey
/usr/local/ssl/bin/openssl genrsa -des3 -out localhost.key
/usr/local/ssl/bin/openssl rsa -in localhost.key -out localhost.key.unsecure
/usr/local/ssl/bin/openssl req -new -key localhost.key -out localhost.key.csr
/usr/local/ssl/bin/openssl x509 -req -days 90 -in localhost.key.csr -signkey localhost.key -out localhost.cert
*** Install mysql-5.0.20 :
tar -xvzf mysql-5.0.20.tar.gz
cd mysql-5.0.20
./configure --prefix=/usr/local/mysql --with-big-tables --with-unix-sock-path=/tmp/mysql.sock
make
make all
make install
groupadd mysql
useradd -g mysql mysql
cp support-files/my-large.cnf /etc/my.cnf
cd /usr/local/mysql
bin/mysql_install_db --user=mysql
chown -R root .
chown -R mysql var
chgrp -R mysql .
Kemudian jalankan mysql : /usr/local/mysql/bin/mysqld_safe &
Rubah password root mysql : /usr/local/mysql/bin/mysqladmin -u root password 'mypass'
*** Install httpd-2.2.4 :
tar -xvzf httpd-2.2.4.tar.gz
cd httpd-2.2.4
./configure --prefix=/usr/local/apache2 --enable-so --enable-auth-digest --enable-rewrite --enable-setenvif --enable-mime --enable-deflate --enable-ssl --with-ssl=/usr/local --enable-headers
make
make all
make install
*** Install php-5.2.6 :
Installasi lib yang dibutuhkan :
tar -zxvf libiconv-1.10.tar.gz
cd libiconv-1.10
./configure --prefix=/usr/local
make
make install
tar -zxvf jpegsrc.v6b.tar.gz
cd jpeg-6b
./configure --prefix=/usr/local
make
make install
make install-lib
tar -zxvf libpng-1.2.29.tar.gz
cd libpng-1.2.29
cp scripts/makefile.linux makefile
make
make install
tar -xvjf curl-7.15.0.tar.bz2
cd curl-7.15.0
./configure --prefix=/usr/local
make
make install
tar -xvjf freetype-2.1.10.tar.bz2
cd freetype-2.1.10
./configure --prefix=/usr/local
make
make install
tar -xvjf libxml2-2.6.11.tar.bz2
cd libxml2-2.6.11
./configure --prefix=/usr/local
make
make all
make install
tar -xvzf bzip2-1.0.5.i586.tar.gz
mv usr/ /usr/local/bzip2
tar -xvjf php-5.2.6.tar.bz2
cd php-5.2.6
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-zlib --with-zlib-dir --with-bz2=/usr/local/bzip2 --with-gd --enable-gd-native-ttf --with-jpeg-dir=/usr/local --with-png-dir=/usr/local --with-ttf --with-freetype-dir=/usr/local --with-iconv=/usr/local --with-curl=/usr/local --with-gettext --with-config-file-path=/usr/local/apache2/conf --with-openssl=/usr/local/ssl
make
make test ( kalau ingin melakukan pengetesan konfigurasi )
make all
make install
cp php.ini-dist /usr/local/apache2/conf/php.ini
Edit konfigurasi php (safety) : /usr/local/apache2/conf/php.ini, menjadi sebagai berikut :
mysql.default_socket = /tmp/mysql.sock
short_open_tag = Off
register_globals = Off
allow_url_fopen = Off
Edit konfigurasi apache : /usr/local/apache2/conf/httpd.conf masukkan line berikut dibawah loader modul <IfModule mime_module> :
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .phtml
Jalankan Apache : /usr/local/apache2/bin/apachectl start
Check apakah PHP dan Apache berjalan dengan baik :
vi /usr/local/apache2/htdocs/test.php ,isi dengan : <? phpinfo(); ?>
Kemudian browse ke http://localhost/test.php, anda akan ditampilkan info mengenai PHP dan Apache.
Untuk mengaktifkan SSL :
cp /usr/local/apache2/conf/extra/httpd-ssl.conf /usr/local/apache2/conf/extra/httpd-ssl.conf.backup
echo "" > /usr/local/apache2/conf/extra/httpd-ssl.conf
kemudian edit :
vi /usr/local/apache2/conf/extra/httpd-ssl.conf
isi dengan informasi berikut :
Listen 443
ServerName localhost
SSLEngine on
SSLCertificateFile /usr/local/sslkey/localhost.cert
SSLCertificateKeyFile /usr/local/sslkey/localhost.key.unsecure
Hilangkan tanda pagar pada baris berikut :
Include conf/extra/httpd-ssl.conf
.
Suatu hari yang membosankan, aku memutuskan untuk menginstall ulang OS Window ... bla ... bla ... sampai proses installasi aplikasi tambahan "Yahoo Messenger", langsung saja copy file dari USB dan RUN Yahoo Messenger installer, kemudian seorang rekan datang dan bertanya "Lho kok install Yahoo Messenger nya nggak pake download internet, biasanya kan file installernya kecil, trus musti download dulu pas mau install ?"
Rupanya rekan ini belum tahu cara download versi terbaru "Installer Yahoo Messenger" yang full, berikut cara downloadnya ;
1. Ketika download "Yahoo Messenger 9" installer dari situs resmi Yahoo ( http://messenger.yahoo.com/ ) anda akan diberikan link download ;
http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/us/msgr9us.exe
File tersebut adalah file installer yang mengharuskan anda untuk melakukan online install.
2. Untuk mendapatkan "Yahoo Messenger 9" installer yang full install, tambahkan karakter "y" didepan link yang anda dapatkan, sebagai contoh ;
Link awal :
http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/us/msgr9us.exe
Link yang digunakan :
http://us.dl1.yimg.com/download.yahoo.com/dl/msgr9/us/ymsgr9us.exe
Proses download akan berlangsung, dan anda akan mendapatkan "Yahoo Messenger 9" installer yang full install ... 
Thats it ...


Jakarta Time


































