- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- shutdown -r now does not reboot
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
тАО04-27-2004 04:35 PM
тАО04-27-2004 04:35 PM
shutdown -r now does not reboot
My server is a RP5430 and I am using an HPUX B.11.00.
I need to reboot my server by using this command :
remsh myhost -n "cd/; super shutdown -y -r now"
super means : as root
The shutdown seems to be fine but at the end the reboot is not started ...
If any body has any idea .
Thanks in advance,
S├Г┬йbastien
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 04:54 PM
тАО04-27-2004 04:54 PM
Re: shutdown -r now does not reboot
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 05:24 PM
тАО04-27-2004 05:24 PM
Re: shutdown -r now does not reboot
I believe there are syntax error in your command itself.Can you try this below command:-
#remsh myhost -l super -n "cd /; /usr/sbin/shutdown -y -r now"
or
#remsh myhost -n "cd /; /usr/sbin/shutdown -y -r now"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 06:16 PM
тАО04-27-2004 06:16 PM
Re: shutdown -r now does not reboot
First and foremost do not use "shutdown -r now".This syntax sounds more like BSD version.Since HPUX is svr5 compatible try using
"shutdown -ry 0" instead.
regards
Senthil
p.s: Do not forget to allocate points if it solves your problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-27-2004 06:22 PM
тАО04-27-2004 06:22 PM
Re: shutdown -r now does not reboot
one more inference. Even if "shutdown -r now" work probably since you haven't included -y option in your command,may be it is still expecting from you to confirm the action by expecting "y".
therefore the more assured syntax would be using "shutdown -ry 0"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 12:20 AM
тАО04-28-2004 12:20 AM
Re: shutdown -r now does not reboot
remsh myhost -n "cd/; super shutdown -r 0"
Bruno
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-28-2004 12:37 AM
тАО04-28-2004 12:37 AM
Re: shutdown -r now does not reboot
remsh hostsb -l root -n "cd / ; shutdown -ry 0"
It will prompt you for root password for system B
Anil
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО04-29-2004 12:22 AM
тАО04-29-2004 12:22 AM
Re: shutdown -r now does not reboot
hosta USERID
...so that the command syntax:
"remsh hostsb -l root -n "cd / ; shutdown -ry 0"
will not ask for a password (provided that you are logged in as USERID on hosta).