- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- hpux stress / load testing
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2006 09:38 PM
06-11-2006 09:38 PM
hpux stress / load testing
thanks
John
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2006 10:11 PM
06-11-2006 10:11 PM
Re: hpux stress / load testing
http://www.nrgglobal.com/products/pureload_features.php
Though it may do it from a remote windows based system, seems this product can test verious services.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-11-2006 10:11 PM
06-11-2006 10:11 PM
Re: hpux stress / load testing
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=899730
which probably has answer to your question.
Regards,
Ninad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2006 12:11 AM
06-12-2006 12:11 AM
Re: hpux stress / load testing
Good stress-testing is non-trivial, but here's a way to (at least) create CPU, I/O and memory utilization. You can encapsulate each of the code snippets into a shell script and launch multiple invocations too.
For creating a CPU load that stops after 60-seconds:
# perl -e '$SIG{ALRM}=sub {exit};alarm 60;1 while {}'
...change the value of 'alarm 60' according to your tastes.
For allocating some memory and sleeping for some period thereafter:
# perl -e '$sz=$ARGV[0] ||1_000_000;@a=1..$sz;sleep 30'
...You may need to adjuct the default allocation of 1,000,000 characters depending upon your kernel parameters. You can pass any value you want, too:
# perl -e '$sz=$ARGV[0] ||1_000_000;@a=1..$sz;sleep 30' 50000
...means allocate a string of 50,000 characters instead of the default 1,000,000.
As for I/O, use the classic one:
# dd if=/dev/rdsk/c2t0d0 of=/dev/null bs=256k count=1000
...vary the count parameter to vary the amount of time doing I/O.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2006 01:13 AM
06-12-2006 01:13 AM
Re: hpux stress / load testing
Check this link,
http://opensourcetesting.org/performance.php
You can click on the test and find the installables for your testing.
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2006 01:20 AM
06-12-2006 01:20 AM
Re: hpux stress / load testing
beside many other tools you can use the exerciser tool from the diagnostics too.
Hope this helps!
Regards
Torsten.
__________________________________________________
There are only 10 types of people in the world -
those who understand binary, and those who don't.
__________________________________________________
No support by private messages. Please ask the forum!
If you feel this was helpful please click the KUDOS! thumb below!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2006 07:26 AM
06-12-2006 07:26 AM
Re: hpux stress / load testing
see:
http://www.iozone.org/