Tag: AIX

How to find the queue_depth of a lun based filesystem on AIX?

# Displays information of all volume group, in the following example vb_TESTDB_data1 is one of the oracle filesystem /home/oracle $ lsvg .. rootvg vg_TESTDB_data1 ... # Display the filesystem the volume group maps to /home/oracle $ lsvg -l vg_TESTDB_data1 vg_TESTDB_data1: LV NAME TYPE LPs PPs PVs LV STATE MOUNT POINT fslv06 jfs2 7671 7671 1 … Continue reading How to find the queue_depth of a lun based filesystem on AIX?

Monitoring AIX

On AIX - nmon on AIX can be used to monitoring a machine (CPU, Memory, Network traffic, I/O, top processes, etc). Here is the link to download nmon http://www.ibm.com/developerworks/wikis/display/WikiPtype/nmon Example to collect nmon data and extract output to a file: $ nmon_aix53 -fTNWLA -I 0.001 -s 300 -c 288 -m /home/nmon_data This collects the data … Continue reading Monitoring AIX

How to fix cannot load program when trying to run sqlplus when using local connection?

On AIX ran into the following issue where sqlplus generated the following error when using local connection (bequeath). scott@localhost:/home/scott:$ sqlplus system SQL*Plus: Release 10.2.0.5.0 - Production on Fri Apr 1 15:47:21 2011 Copyright (c) 1982, 2010, Oracle. All Rights Reserved. Enter password: exec(): 0509-036 Cannot load program oracleTEST because of the following error 0509-150 Dependent … Continue reading How to fix cannot load program when trying to run sqlplus when using local connection?

AIX commands you should not leave home without

http://www.ibm.com/developerworks/aix/library/au-dutta_cmds.html Here are some of the commands How many processors does my system have? To display the number of processors on your system, type: $ lscfg | grep proc + proc0 Processor + proc2 Processor + proc4 Processor + proc6 Processor + proc8 Processor + proc10 Processor + proc12 Processor + proc14 Processor How much … Continue reading AIX commands you should not leave home without

How to find shared libraries needed to run a binary?

Depending on the platform different command may be available, below are the commands for AIX and SUN to find the shared libraries needed to run a binary. This may not show all the libraries needed as the application may be referenced in the code and dynamically loading them during different phases of execution of a … Continue reading How to find shared libraries needed to run a binary?