Operating System - HP-UX
1753701 Members
4983 Online
108799 Solutions
New Discussion юеВ

Re: Performance of HP-Ux Servers

 
SOLVED
Go to solution
S.S.
Super Advisor

Performance of HP-Ux Servers

Dear All,

I would like to know how to analyze the performance of CPU, Memory, Disk.

If suppose the disk or cpu or memory usage is high then how would we analyze and troubleshoot the problem.

As an administrator what should we perform during that time?

Kindly understand me by giving the steps to follow during that time.

Thank you all in advance! I know this is very lengthy one. Thank you for sparing your precious time for answering to my thread.
8 REPLIES 8
Kanagaraj
Regular Advisor

Re: Performance of HP-Ux Servers

Install glance plus on server for analyze system performance like CPU utilization,memory use and free memory and system load.
johnsonpk
Honored Contributor

Re: Performance of HP-Ux Servers

Jupinder Bedi
Respected Contributor

Re: Performance of HP-Ux Servers

you can use Glance plus , top , vmstat , iostat to analyze the performance of CPU , memory and disk


Good luck
All things excellent are as difficult as they are rare
Johnson Punniyalingam
Honored Contributor
Solution

Re: Performance of HP-Ux Servers

The following are several commands that can be run on the Server / system should they experience the issue with the 'find' and 'du' commands as before:

# ps -ef
-- Check for large time values

# swapinfo -tam
-- How much RAM, device swap, etc. and what their utilization is

# echo total_lockable_mem/D | adb /stand/vmunix /dev/mem
-- How much lockable memory is being used?

# ipcs -mob
-- What is the shared memory load?

# sar -b 5 50
-- What is the buffer cache usage?

# sar -Mu 5 50
# sar -Mq 5 50
-- What is the CPU load?

# sar -d 5 50
-- What is the disk I/O load?

# sar -v 5 30
-- What is the process and file table load?

# more /etc/fstab
-- What type of filesystems are being affected?

# bdf -I
-- How full are the filesystems?

# kmtune (or 'kctune' on some systems)
-- Give a listing of kernel parameters; especially:
swapmem_on
maxswapchunks
buffpages
dbc_max_pct
dbc_min_pct
maxdsiz
maxdsiz_64
maxusers
nfiles
ninode
nproc
nbuf
shmem

Again, run these commands during the time that the system is experiencing the issue. This is the only way that the data from most of the above commands will be useful.
Problems are common to all, but attitude makes the difference
Johnson Punniyalingam
Honored Contributor

Re: Performance of HP-Ux Servers

To check which process holding on more "virtual memory"

$ UNIX95= ps -efo vsz,ruser,pid,ppid,args | sort -rn | more
Problems are common to all, but attitude makes the difference
Johnson Punniyalingam
Honored Contributor

Re: Performance of HP-Ux Servers

You can Also , Look into it
# Glance -> which easy to use
Problems are common to all, but attitude makes the difference
Nido
Trusted Contributor

Re: Performance of HP-Ux Servers

Hi & How are you?

No-one here knows your system better than you.

Attached support document should give you some idea.
"Attached document deleted as it contravenes ITRC Guidelines"

Also, refer itrc older threads about performance issues.

Cheers!!
" Let Villagers Be Happy!! "
S.S.
Super Advisor

Re: Performance of HP-Ux Servers

Thank you! :-)