- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- itanuim 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
02-25-2005 08:41 PM
02-25-2005 08:41 PM
itanuim server
I am installing a new itanuim server rx4640, is there any way in the itanuim technology to schedule the server to start at 8:00AM (the system start without user interaction), and Halted at 20:00PM.
Thx
TS
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-25-2005 10:14 PM
02-25-2005 10:14 PM
Re: itanuim server
I think shutdown can be scheduled but i don't think startup can be.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2005 12:33 AM
02-26-2005 12:33 AM
Re: itanuim server
What problem are you trying to solve?
Security?
Reduce energy usage/heat generation?
Reduce daily use hours hoping to extent the number of years of use?
In my personal experience, which is no official or compelling input by any standard, most system hardware problems are introduced on cold restart after a halt. Dunno, maybe things like thermal stress, and current peaks play a role. Fans that decide to get stuck, ethernet connections that fail to renegotiate, a dhcp server that happens not to be there when you needed it.
Whatever the cause, I personally find it more reliable to just leave the systems on, not to mention to be able to use them, should an unexpected need arise.
Restricted access can be obtained by normal security measures.
Of cours if you where to know that you'll loose power every night from 20:05 to some time in the morning then you would want to schedule a soft shutdown instead of a crash.
Allow the system to start itself when the power comes back?
Anyway... you should be able to use the remote console functions, through a 'Lights Out' package perhaps, as long as main power is retained, not all shutdown.
Just personal opinions,
Hth,
Hein.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-26-2005 07:18 PM
02-26-2005 07:18 PM
Re: itanuim server
Seems like you do not want access to the system from 20:00 to 08:00...
If that's the case - you could create a script that disables the network interfaces at 20:00, and enables them at 08:00...
Something like:
#!/usr/bin/sh
case $1 in
start_msg)
echo "Start network interfaces."
;;
stop_msg)
echo "Stop network interfaces."
;;
'start')
for i in `/usr/sam/lbin/laninfo |grep up |awk '{print $8}'`
do
ifconfig $i up
done
;;
'stop')
for i in `/usr/sam/lbin/laninfo |grep up |awk '{print $8}'`
do
ifconfig $i down
done
;;
*)
echo "usage: $0 {start|stop}"
;;
esac
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-27-2005 04:25 AM
02-27-2005 04:25 AM
Re: itanuim server
I do not know if WOL is supported for HP-UX or not. However, if not, you might research what can be "programmed" into UPS (Uninterruptible Power Supply) solutions.
There are I believe also remote power on/of solutions for the data centre - those would require another system to contol them.
Finally, if you have the management card installed in your 4640, you could connect it to your network, and give it its own IP address etc. From that you can control the "main" power on the system and would be able to affect a power-on from a remote location (so long as the network was running of course).