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-20-2002 04:57 AM
08-20-2002 04:57 AM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 04:58 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 04:59 AM
08-20-2002 04:59 AM
Re: shutdown
shutdown -hy 0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 04:59 AM
08-20-2002 04:59 AM
Re: shutdown
# shutdown -hy 0
You will receive a message on the console that indicates when you should actually power-off the server.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 05:00 AM
08-20-2002 05:00 AM
Re: shutdown
You have to be with root permission for doing this task. You cannot do this from a mounted file system. -h option is for halt, -y for answering "yes" to question and "0" is the seconds. For restarting replace -h with -r
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 05:07 AM
08-20-2002 05:07 AM
Re: shutdown
An alternative to use when you KNOW that you have no critical processes running is:
/etc/reboot
But note that this should never be used in "normal" situations as is does not gracefully shut processes down. It uses brute force to kill them. But it's an option for a faster shutdown when you're in maintenance mode.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2002 05:11 AM
08-20-2002 05:11 AM
Re: shutdown
To expand on Jeff's answer, you can use "reboot -rq" or "reboot -hq", depending on whether you want to really reboot or halt, respectively.
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2002 05:35 AM
08-21-2002 05:35 AM
Re: shutdown
shutdown -hy 0
Which says shut it down to a "Halt" state, answer the query with a "yes" and have "0" minutes of grace time. If you want to reboot:
shutdown -ry 0
note the "r" instead of the "h" which of course means reboot.