it’s simply a matter of a time…

about // addons // orasnap// gallery

HP-UX

Problem, logging, tips and tricks with HP-UX

HP Certified Professional

Beberapa waktu lalu saya sempat mengikuti ujian dengan kode HP0-A01 atau yang dikenal dengan HP-UX 11i v3 System Administration, yup betul, exam ini adalah salah satu syarat untuk mendapatkan sertifikasi sebagai “HP Certified Systems Administrator (CSA)”. Exam ini sendiri diperuntukan oleh System and network administrators, system integrators, support engineers, dan technical consultans yang sudah sering [...]

Extend New Logical Volume

This shows how to increase the size of the logical volume, where that mounted on “/rdbms/oradata/data2″, size was grab from unnecessary logical volume was mounted on “/rdbms/oradata/data1″ on another Volume group vg71.

bdf |grep vg56

/dev/vg56/lvol1 209715200 200494696 9148512 96% /rdbms/oradata/data2

bdf | grep vg71

/dev/vg71/lvol2 314507264 9630632 302495344 [...]

Oh..Archive Log

Damn…
when project upgrade veritas netbackup from 5.0 to 6.0 never shown their progress.
and the database archive log was grown rapidly, so for the quickly action, I build this script.
works on HP-UX environments

#!/usr/bin/sh
# moving archive log
#####################################
bdf -l /oracle/archivelog | grep -iv Filesystem |awk ‘{print $6" "$5}’ | while
read LINE; do
ASS=`echo $LINE | cut -d"%" -f1 | [...]

No locks available

Hari ini gue mendapatkan banyak error di mesin yang menurut gue paling canggih, paling banyak CPU (20), paling banyak Memory (143GB), boros disk (30 TB), pokoknya
serba paling.
tapi di hari ini dia juga mengumpulkan daftar error paling banyak, berikut error list hari ini.

List Error Hari ini
“lckpwdf: Lockf deadlock detection Cannot obtain lock for /etc/.pwd.lock”
“WARNING: Failed to [...]

Collect Data In Your Box with cfg2html

Cfg2html is a UNIX shell script similar to check_config or get_config, except that it creates a HTML (and plain ASCII) system documentation..

1
2
3
4
5
sudo apt-get install gawk
wget http://www.cfg2html.com/cfg2html-linux_1.39-4_all.deb
sudo dpkg -i cfg2html-linux_1.39-4_all.deb
sudo cfg2html-linux
firefox /etc/cfg2html/&lt;your-hostname&gt;.html</code>

Enjoy The Document..
Cheers.