Hi,
Thank you for help. The Unix version is HP-Unix B.10.20. And I cannot connect to the web page u mentioned. Is there any problem?
Thank you.
Main Topics
Browse All TopicsSometimes, some users of our system report that the system is very slow. Is there any procedure that can help us the Unix OS status e.g. swap memory etc.
Also, is there any web resources that teach us about the system administration of a UNIX machine.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I can connect to http://www.groupsys.com/to
Since you're running HP-UX you can also use sar. "sar -g 30 10" will list the number of pagescans/second. See "man sar" for more information.
There are several commands you can use with HP-UX 10.x to help you troubleshoot a performance problem. The system can appear to be slow when there is one of 4 possible bottlenecks: CPU, memory, disk or network. Provided below are some usefull commands to help you determine the bottleneck:
# sar -u 2 100
Will tell you how much time during the interval the CPU is spending in user, kernel and waiting for I/O modes.
Look for values > 80%
# sar -v 2 100
Will show you how your kernel tables are doing
# sar -b 2 100
Will show you how you are using your buffer cache. If you see low %rcache and %wcache values (these are your hit rates for buffer cache) then you are not using your buffer cache efficiently. 80% to 100% is optimal.
# sar -d 2 100
Will show you perfomance metrics on each device. avserv should be lower that avwait and avqueue should not be higher that 1-10.
# vmstat 2 100
Will show you your virtual memory metrics. sr should be very low (0-5) po should also be low (0-5). pi (page ins) are OK, it is the pageouts you need to be concerned about
# swapinfo -tma
Will show you how your devices are being used for swap activity. Want to see low values for PCT USED field (0-10). PCT USED values coorespond to how swap is used for pageout activity.
# iostat 2 100
Will show you seek times and transfer rates of your devices.
# netstat -i
Will show you network packet traffic and collision rates.
Also GlancePlus is a must for troubleshooting performance problems. You can try the trial version on the Application CD for free.
Feel free to post some of the output of these commands if you are not sure how to interpret their meaning.
Tony
Business Accounts
Answer for Membership
by: akehPosted on 2000-12-05 at 21:31:28ID: 346
What UNIX version are you running? p/.
Most UNIX versions have a vmstat command. Run "vmstat 30" and check the sr column (scan rate) if you suspect that you have a memory shortage. A high scan rate (> 100) is an indication of this. To check the memory usage per process on Solaris you can do a "ps -eo pid,rss,args" to list Process id, resident memory size in KBytes and the name of the process.
Also check the disk activity with "iostat 30" (or "iostat -x 30" if you're running Solaris) to see if the bottleneck is there.
top is another nice tool: http://www.groupsys.com/to