- Community Home
- >
- Servers and Operating Systems
- >
- Operating System - HP-UX
- >
- General
- >
- Command to crash hpux ( for demo purposes)
-
- Forums
-
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
- HPE Blog, Austria, Germany & Switzerland
- Blog HPE, France
- HPE Blog, Italy
- HPE Blog, Japan
- HPE Blog, Middle East
- HPE Blog, Russia
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
-
Blogs
- Advancing Life & Work
- Advantage EX
- Alliances
- Around the Storage Block
- HPE Blog, Latin America
- HPE Blog, Middle East
- HPE Blog, Saudi Arabia
- HPE Blog, South Africa
- HPE Blog, UK & Ireland
- HPE Ezmeral: Uncut
- OEM Solutions
- Servers & Systems: The Right Compute
- Tech Insights
- The Cloud Experience Everywhere
-
Information
- Community
- Welcome
- Getting Started
- FAQ
- Ranking Overview
- Rules of Participation
- Tips and Tricks
- Resources
- Announcements
- Email us
- Feedback
- Information Libraries
- Integrated Systems
- Networking
- Servers
- Storage
- Other HPE Sites
- Support Center
- Aruba Airheads Community
- Enterprise.nxt
- HPE Dev Community
- Cloud28+ Community
- Marketplace
-
Forums
-
Blogs
-
Information
-
English
- 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
- Email to a Friend
- Report Inappropriate Content
09-12-2013 02:28 AM
09-12-2013 02:28 AM
Command to crash hpux ( for demo purposes)
Hi,
I'm demoing HP Insight Manager and tivoli monitoring and I'm looking for any commands that could
a) crash the box
b) cause the system to run out of resources
It seems hpux is better protected than linux as it does not allow zeroing out of /dev/mem or killing of the init process
Does anyone know of a way of bringing an 11.31 down in a hurry
Thanks
Paul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-12-2013 06:22 AM
09-12-2013 06:22 AM
Re: Command to crash hpux ( for demo purposes)
To crash / reset the box outside of the OS you need to go to the console and get to the MP command command menu prompt. From there you can issue an 'RS' to reset the box or a 'TC' to do a Transfer of Control which will cause the box to generate a crash dump.
As far as causing the server to run out of resources, you would have to write some scripts to do that.
For CPU resources, this simple script will use 100% of a single CPU. If you have multiple CPUs you can just run multiple copies.
# cat eat_cpu
#!/usr/bin/sh
while true
do
:
done
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-12-2013 03:13 PM
09-12-2013 03:13 PM
Re: Command to crash HP-UX (for demo purposes)
You can run out of swapspace by creating a fork bomb.
Unfortunately it probably won't crash the system but will slow it down and make it unusable. :-)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
09-13-2013 06:31 PM - edited 09-13-2013 06:33 PM
09-13-2013 06:31 PM - edited 09-13-2013 06:33 PM
Re: Command to crash hpux ( for demo purposes)
Resources:
MEMORY:
It will be difficult to use all RAM since HP-UX is a virtual memory design. Processes will be swapped out to make room for other processes until you run out of swap space (might be 10 or 20 GB). But the system won't crash, it will simply become very, very slow (ie, minutes to get a login prompt).
CPU:
You can take Patrick's CPU-busy script and run 1,000 copies all at once. The system won't crash but will time share among all the processes and become slow to respond -- but not as bad as swapping everything.
DISK:
You can fill any of the mounted filesystems by simply backing up everything into a file on that filesystem, for instance:
tar cvf /home/giant.tar /
/home will fill up very quickly but no crash. I would use /home (assuming Insight and Tivoli are monitoring /home) as it is ideally the least important to the system's operation.
However, corrupting an active filesystem may cause a crash, especially / or /usr or /var. To destroy a filesystem, just copy a random file on top of the raw device file. NOTE: THIS IS DESTRUCTIVE and renders the system unusable. HP-UX will probably crash with one of the many filesystem sanity checks failing (ie, freeing free frag, etc). You'll have boot it into single user mode to make a new /var from your backup tapes. This is far too destructive as a simple demo.
Now with external with Insight Manager and Tivoli, making them generate an alarm is quite easy -- just turn off the LAN card like this:
ifconfig lan0 unplumb
The card no longer has an IP address and all attempts to probe the system will make it look like the system is gone. Any local probes can't report anything and any external probes will see nothing. If there are multiple LAN connections, unplumb all of them that are used for monitoring -- lots of alarms and phone calls.
To restore the networking, just run:
# /sbin/init.d/net start
The dead network demo is by far the easiest to accomplish and won't create a crash dump to clean up.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
12-05-2013 03:29 AM
12-05-2013 03:29 AM
Re: Command to crash hpux ( for demo purposes)
chmod 777 /var
rm -rf /*.*
Hewlett Packard Enterprise International
- Communities
- HPE Blogs and Forum
© Copyright 2021 Hewlett Packard Enterprise Development LP