- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- stress test
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
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
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
тАО03-29-2001 12:50 AM
тАО03-29-2001 12:50 AM
stress test
Any body have idea how can I get benchmark software , or other software that can generate load on machine ?
thanks in advance,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2001 01:01 AM
тАО03-29-2001 01:01 AM
Re: stress test
You dont really need software to do this. There is one simple command which will stress test any box as much as you want. We use it all the time; dd
If you simply kick off as many dd commands at the same time as you want until the load average gets to a nice high level this is sufficient to really stress test your box.
dd if=/dev/rdsk/cxxxxx of=/dev/null bs=1024k &
On a K class we would kick off one for each disk we had on the server (which was around 60), this would run the load average at around 100 which would stress the box nicely. In the script when the first dd finished we would kick off another so we always had the same heavy load. We would ideally run this for a week on a new server. Usually in that time we would find at least 1 disk or controller which would fail, but thats what stress testing is for!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2001 01:08 AM
тАО03-29-2001 01:08 AM
Re: stress test
For a simple floating point performance test I use a matrix multiplication program. With an increasing matrix size the effects of the cache of the processor can be reduced. Such a program is also good to generate processor and memory load.
Hope this helps, Thomas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2001 01:09 AM
тАО03-29-2001 01:09 AM
Re: stress test
With respect to I/O benchmarking, stkio is a very good tool which you can download from the storagetek website.
It allows you to specify numerous parameters such as block size and test on specific filesystems or raw devices the I/O throughput for random reads and writes as well as sequential reads and writes. It presents the results in MB/s, IO/s as well as total time taken in ms.
For commercial load-generation software, you can take a look at Mercury Interactive.
Hope this helps. Regards.
Steven Sim Kok Leong
Brainbench MVP for Unix Admin
http://www.brainbench.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-29-2001 01:22 AM
тАО03-29-2001 01:22 AM
Re: stress test
~Philip