Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Non-24-7 Server: Techniques?

Reply
Thread Tools Display Modes

Non-24-7 Server: Techniques?

 
 
(PeteCresswell)
Guest
Posts: n/a

 
      08-14-2010
I've got a WHS box running 24-7.

But during, say, the hours of 1am and 6am, it's not doing
anything for me.

250 watts/1000 for the whole server closet * 6 hours/day * 365 *
..28/kWhr = $150/year.


Has anybody got a technique for auto-shutting down a whole server
closet at a certain time and then starting it back up at a later
time?

My best shot so far:

- Some sort of utility app running on the WHS box that initiates
a graceful shutdown at an assigned time.

- A mechanical timer switch that cuts all power some time after
the WSH box has shut itself down, and restores power at
the desired time - placed between the UPS and the WHS box.

- A load-sensitive power strip that cuts power to anything
connected to it when the WHS box stops drawing power - and
connecting all the other stuff in the closet to said strip.

- Setting the WHS box's BIOS to power on and boot when power is
restored.








--
PeteCresswell
 
Reply With Quote
 
 
 
 
Dave Warren
Guest
Posts: n/a

 
      08-14-2010
In message <>
"(PeteCresswell)" <> was claimed to have wrote:

>I've got a WHS box running 24-7.
>
>But during, say, the hours of 1am and 6am, it's not doing
>anything for me.
>
>250 watts/1000 for the whole server closet * 6 hours/day * 365 *
>.28/kWhr = $150/year.
>
>
>Has anybody got a technique for auto-shutting down a whole server
>closet at a certain time and then starting it back up at a later
>time?
>
>My best shot so far:
>
>- Some sort of utility app running on the WHS box that initiates
> a graceful shutdown at an assigned time.
>
>- A mechanical timer switch that cuts all power some time after
> the WSH box has shut itself down, and restores power at
> the desired time - placed between the UPS and the WHS box.
>
>- A load-sensitive power strip that cuts power to anything
> connected to it when the WHS box stops drawing power - and
> connecting all the other stuff in the closet to said strip.
>
>- Setting the WHS box's BIOS to power on and boot when power is
> restored.


Personally I'd stay away from a mechanical timer myself. If you can use
a load-sensitive power strip for "everything else" (internet connection,
router, wireless access point, etc? or anything more exotic?) then just
have the WHS box power itself down with a utility and use it's BIOS'
timer to power itself back on again.

This avoids problems if a shutdown fails, and gives you the ability to
power up or down easily if there is an exception.

That being said, I'd try and get a Kill-O-Watt meter or similar first
and see what sort of kWh you're actually seeing on the system, if the
hard drives spin down and the system is suitably built for lower power
you might find it takes less power to operate than you'd guess.

Obviously shutting down will still consume less resources, but the
hassle might not be worth it.

Lastly, I don't know WHS well enough to speak of it directly, but
investigate to make sure it doesn't perform any nightly maintenance that
might fail to ever run at other times.
 
Reply With Quote
 
Leythos
Guest
Posts: n/a

 
      08-14-2010
In article <>, d
says...
>
> I've got a WHS box running 24-7.
>
> But during, say, the hours of 1am and 6am, it's not doing
> anything for me.
>
> 250 watts/1000 for the whole server closet * 6 hours/day * 365 *
> .28/kWhr = $150/year.
>
>
> Has anybody got a technique for auto-shutting down a whole server
> closet at a certain time and then starting it back up at a later
> time?
>
> My best shot so far:
>
> - Some sort of utility app running on the WHS box that initiates
> a graceful shutdown at an assigned time.
>
> - A mechanical timer switch that cuts all power some time after
> the WSH box has shut itself down, and restores power at
> the desired time - placed between the UPS and the WHS box.
>
> - A load-sensitive power strip that cuts power to anything
> connected to it when the WHS box stops drawing power - and
> connecting all the other stuff in the closet to said strip.
>
> - Setting the WHS box's BIOS to power on and boot when power is
> restored.


Use the BIOS power on to start the computer, use a scheduled task to
shutdown the server at the desired time - use a UPS with a "Master" plug
connection that powers everything off when the Server is powered down
(with the server connected to the master jack).


--
You can't trust your best friends, your five senses, only the little
voice inside you that most civilians don't even hear -- Listen to that.
Trust yourself.
(remove 999 for proper email address)
 
Reply With Quote
 
John John -MVP
Guest
Posts: n/a

 
      08-18-2010
On 8/14/2010 11:32 AM, (PeteCresswell) wrote:
> I've got a WHS box running 24-7.
>
> But during, say, the hours of 1am and 6am, it's not doing
> anything for me.
>
> 250 watts/1000 for the whole server closet * 6 hours/day * 365 *
> .28/kWhr = $150/year.
>
>
> Has anybody got a technique for auto-shutting down a whole server
> closet at a certain time and then starting it back up at a later
> time?


Providing that the computer can be awakened with the Real Time Clock the
Windows Task Scheduler can do both for you, it will wake the computer
with the ACPI Real Time Clock (BIOS Function).

John
 
Reply With Quote
 
(PeteCresswell)
Guest
Posts: n/a

 
      08-31-2010
Per John John -MVP:
>Providing that the computer can be awakened with the Real Time Clock the
>Windows Task Scheduler can do both for you, it will wake the computer
>with the ACPI Real Time Clock (BIOS Function).


Am I reading that correctly? Can the Windows Task Scheduler
somehow poke into the PC's BIOS to set the power management parms
to use RCT to start the PC?

I Googled a little bit, but did not come away any wiser.

Not a big deal in the long term, since I can just go into BIOS at
startup time as make the needed setting; but it would be a major
convenience for testing - avoiding multiple shutdowns/restarts to
test the scheme.
--
PeteCresswell
 
Reply With Quote
 
Dave Warren
Guest
Posts: n/a

 
      09-01-2010
In message <>
"(PeteCresswell)" <> was claimed to have wrote:

>Per John John -MVP:
>>Providing that the computer can be awakened with the Real Time Clock the
>>Windows Task Scheduler can do both for you, it will wake the computer
>>with the ACPI Real Time Clock (BIOS Function).

>
>Am I reading that correctly? Can the Windows Task Scheduler
>somehow poke into the PC's BIOS to set the power management parms
>to use RCT to start the PC?


As a rule, yes. This requires hardware support, but most modern
hardware has the aforementioned support.
 
Reply With Quote
 
John John -MVP
Guest
Posts: n/a

 
      09-06-2010
On 8/31/2010 6:39 PM, (PeteCresswell) wrote:
> Per John John -MVP:
>> Providing that the computer can be awakened with the Real Time Clock the
>> Windows Task Scheduler can do both for you, it will wake the computer
>> with the ACPI Real Time Clock (BIOS Function).

>
> Am I reading that correctly? Can the Windows Task Scheduler
> somehow poke into the PC's BIOS to set the power management parms
> to use RCT to start the PC?
>
> I Googled a little bit, but did not come away any wiser.
>
> Not a big deal in the long term, since I can just go into BIOS at
> startup time as make the needed setting; but it would be a major
> convenience for testing - avoiding multiple shutdowns/restarts to
> test the scheme.


Like Dave said, most modern computers support this, look in the task's
Advanced Properties for the setting.

http://search.yahoo.com/search;_ylt=...p&fr=yfp-t-501

John
 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
disable Exchange Server 2003 Smart Host janine Giganti Windows Small Business Server 0 07-27-2010 02:30 PM
Re: SBS 2008 + terminal services. Charlie Russel - MVP Windows Small Business Server 7 04-22-2010 01:59 PM
Re: Active Directory problems/dcdiag error kj [SBS MVP] Windows Small Business Server 3 03-24-2010 09:19 PM
Same Issue....Please help! Quality Department Active Directory 0 02-13-2010 01:12 PM
I also have an error 646 in Windows update. Please help. Jose Windows Update 12 01-09-2010 01:00 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59