- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Reboot server
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
09-07-2004 03:46 AM
09-07-2004 03:46 AM
Reboot server
What is the sintax comand for reboot the N400 server ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 03:48 AM
09-07-2004 03:48 AM
Re: Reboot server
I use "shutdown -r now". Shutdown will execute shutdown scripts in /sbin/init.d so the system will go down cleanly.
Reboot will not do it other than setting the FSCLEAN flag on the filesystems. If I am in a hurry, I use "reboot -qs"
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 03:51 AM
09-07-2004 03:51 AM
Re: Reboot server
/sbin/shutdown [-h|-r] [-y] [-o] [grace]
reboot
# shutdown -r -y now
halt the system
# shutdown -h -y now
Regards,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 03:53 AM
09-07-2004 03:53 AM
Re: Reboot server
Under this two, i use :
shutdown -r -y 0
For any parameters, use man 1m shutdown
1m is important, because without, you will see how to shutdown ... a socket !!
Olivier.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 04:12 AM
09-07-2004 04:12 AM
Re: Reboot server
Usually don't need full PATH (/usr/sbin should be in the root PATH)
-r says to reboot
-y says 'yes' to the questions for rebooting
now means no grace period, do the reboot now.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 04:18 AM
09-07-2004 04:18 AM
Re: Reboot server
In addition, if you are planning to reboot with a script, add -y flag as indicated before and make sure you are in / filesystem.
#cd /
#shutdown -r -y now
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2004 04:18 AM
09-07-2004 04:18 AM
Re: Reboot server
More info in man pages:
man 1m shutdown
Rgds...Geoff