- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Break from Managment Station
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
08-23-2004 06:19 AM
08-23-2004 06:19 AM
Break from Managment Station
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 08:20 AM
08-23-2004 08:20 AM
Re: Break from Managment Station
I don't know of any way other than to login to the system & send some sort of kill command to the PID.
You can try 24 (SIGSTOP) to stop it & that would allow a 26 (SIGCONT) later to restart it. If you want to stop it & not restart try 2 (SIGINT) to interrupt it or a 3 (SIGQUIT) to quit out, but these may be trapped. So you may be forced to do a "normal" 15 (SIGTERM) to terminate it. Only use 9 (SIGKILL) as a kill of last resort.
IF the PID s in HP-UX realtime priority range 0 -to-> 127 or POSIX realtime 0 -to-> 32, then you may have to use between 37 (SIGRTMIN) and 44 (SIGRTMAX) to halt them as no other kill would work.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 08:35 AM
08-23-2004 08:35 AM
Re: Break from Managment Station
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 05:56 PM
08-23-2004 05:56 PM
Re: Break from Managment Station
"NFS server (pid733@/net) not responding still trying"
and I have to do the break to get the login promt to correct the problem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2004 07:46 PM
08-23-2004 07:46 PM
Re: Break from Managment Station
If the NFS mount has the options "hard,nointr", there is no way to break the connection attempt. You must reset the server (or the partition, if your Superdome is partitioned) and re-boot to single-user mode.
If the NFS mount is with default options (hard,intr) it depends on what program has caused the NFS access attempt and how it behaves. If the program has already disconnected from the console (preparing to daemonize itself), you'd need a login... which you don't have. Again a reset and reboot to single-user mode is needed.
If the program still receives input from the console, the keyboard interrupt might still work. However, the keyboard interrupt character might not be the usual Ctrl-C: since at this point there has been no getty on the console yet, it is possible that the interrupt character is still set as the "factory default" for all tty devices... which seems to be "@" on HP-UX. (This is a holdover from the age of printing terminals, I guess.)
When your immediate problem is solved, remember to modify the startup script of the program that caused the NFS access so that the server can complete the boot even if NFS is not available. Without knowing more from your setup, I can't give any specific help in that.