is it possible to schedule automatic power on of server “hp dl360p gen8”?
I do not use server at night so I want to turn it on at 9.00 a.m. and turn off at 11.00 p.m.
Turning off is trivial I can just schedule corresponding task in OS. On my old home computer I was using special option in BIOS which allows to schedule when computer should be turned on.
But I can't find such BIOS option on my server HP DL360p Gen8.
- Am I correct that it is not possible to schedule server turn on in BIOS?
- What options do I have?
- I do not want to use wake up on LAN because LAN might not be available by some reason (no Internet etc.)
hp-proliant
add a comment |
I do not use server at night so I want to turn it on at 9.00 a.m. and turn off at 11.00 p.m.
Turning off is trivial I can just schedule corresponding task in OS. On my old home computer I was using special option in BIOS which allows to schedule when computer should be turned on.
But I can't find such BIOS option on my server HP DL360p Gen8.
- Am I correct that it is not possible to schedule server turn on in BIOS?
- What options do I have?
- I do not want to use wake up on LAN because LAN might not be available by some reason (no Internet etc.)
hp-proliant
What OS are you using? Under Windows you could schedule a task which could wake up your system.
– Simon
Apr 19 '13 at 8:16
Does this proliant come with a remove access card (e.g. HP ILO?) No experience here with HPs but Dell could be powered on via their DRAC (Dell remove access card) and those accept things like ssh. So worst case you could wake another computer at that time, have it ssh to the ILO and power up the proliant.
– Hennes
Aug 15 '16 at 13:54
add a comment |
I do not use server at night so I want to turn it on at 9.00 a.m. and turn off at 11.00 p.m.
Turning off is trivial I can just schedule corresponding task in OS. On my old home computer I was using special option in BIOS which allows to schedule when computer should be turned on.
But I can't find such BIOS option on my server HP DL360p Gen8.
- Am I correct that it is not possible to schedule server turn on in BIOS?
- What options do I have?
- I do not want to use wake up on LAN because LAN might not be available by some reason (no Internet etc.)
hp-proliant
I do not use server at night so I want to turn it on at 9.00 a.m. and turn off at 11.00 p.m.
Turning off is trivial I can just schedule corresponding task in OS. On my old home computer I was using special option in BIOS which allows to schedule when computer should be turned on.
But I can't find such BIOS option on my server HP DL360p Gen8.
- Am I correct that it is not possible to schedule server turn on in BIOS?
- What options do I have?
- I do not want to use wake up on LAN because LAN might not be available by some reason (no Internet etc.)
hp-proliant
hp-proliant
edited Aug 15 '16 at 13:52
Hennes
59.1k792141
59.1k792141
asked Apr 19 '13 at 6:29
javapoweredjavapowered
33841440
33841440
What OS are you using? Under Windows you could schedule a task which could wake up your system.
– Simon
Apr 19 '13 at 8:16
Does this proliant come with a remove access card (e.g. HP ILO?) No experience here with HPs but Dell could be powered on via their DRAC (Dell remove access card) and those accept things like ssh. So worst case you could wake another computer at that time, have it ssh to the ILO and power up the proliant.
– Hennes
Aug 15 '16 at 13:54
add a comment |
What OS are you using? Under Windows you could schedule a task which could wake up your system.
– Simon
Apr 19 '13 at 8:16
Does this proliant come with a remove access card (e.g. HP ILO?) No experience here with HPs but Dell could be powered on via their DRAC (Dell remove access card) and those accept things like ssh. So worst case you could wake another computer at that time, have it ssh to the ILO and power up the proliant.
– Hennes
Aug 15 '16 at 13:54
What OS are you using? Under Windows you could schedule a task which could wake up your system.
– Simon
Apr 19 '13 at 8:16
What OS are you using? Under Windows you could schedule a task which could wake up your system.
– Simon
Apr 19 '13 at 8:16
Does this proliant come with a remove access card (e.g. HP ILO?) No experience here with HPs but Dell could be powered on via their DRAC (Dell remove access card) and those accept things like ssh. So worst case you could wake another computer at that time, have it ssh to the ILO and power up the proliant.
– Hennes
Aug 15 '16 at 13:54
Does this proliant come with a remove access card (e.g. HP ILO?) No experience here with HPs but Dell could be powered on via their DRAC (Dell remove access card) and those accept things like ssh. So worst case you could wake another computer at that time, have it ssh to the ILO and power up the proliant.
– Hennes
Aug 15 '16 at 13:54
add a comment |
2 Answers
2
active
oldest
votes
In OS you can write a shell to turn off the server at a specific time! BUT you can't turn On the server From OS! Also BIOS!
If you want to turn off and on the server on specific time you have to think in Electric timer.
Best regards,
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
1
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
add a comment |
If you use Linux you can program it to wake up at a specified time. I'm not sure if it works for every Linux variant but you can try it out:
/root/bin/shutwake.sh
# unset alarm, set new time
sh -c "echo 0 > /sys/class/rtc/rtc0/wakealarm"
sh -c "echo `date '+%s' -d '+ 600 minutes'` > /sys/class/rtc/rtc0/wakealarm"
/sbin/poweroff
Then you need to add a line in cron to shutdown:
0 23 * * * /root/bin/shutwake.sh
I use this in a couple of rack servers and works like a charm.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f584819%2fis-it-possible-to-schedule-automatic-power-on-of-server-hp-dl360p-gen8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In OS you can write a shell to turn off the server at a specific time! BUT you can't turn On the server From OS! Also BIOS!
If you want to turn off and on the server on specific time you have to think in Electric timer.
Best regards,
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
1
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
add a comment |
In OS you can write a shell to turn off the server at a specific time! BUT you can't turn On the server From OS! Also BIOS!
If you want to turn off and on the server on specific time you have to think in Electric timer.
Best regards,
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
1
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
add a comment |
In OS you can write a shell to turn off the server at a specific time! BUT you can't turn On the server From OS! Also BIOS!
If you want to turn off and on the server on specific time you have to think in Electric timer.
Best regards,
In OS you can write a shell to turn off the server at a specific time! BUT you can't turn On the server From OS! Also BIOS!
If you want to turn off and on the server on specific time you have to think in Electric timer.
Best regards,
answered Apr 19 '13 at 7:52
Sepahrad SalourSepahrad Salour
885613
885613
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
1
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
add a comment |
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
1
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
Electric timer is not possible as I co-locate server.
– javapowered
Apr 19 '13 at 8:17
1
1
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
also some computers support wake on alarm in power management area of computer BIOS, unfortunately HP DL360p Gen8 doesn't have such option.
– javapowered
Apr 19 '13 at 8:18
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
Yes Electric Timer is not possible in co-locate servers. I said every thing i know, Sorry at all.
– Sepahrad Salour
Apr 19 '13 at 19:19
add a comment |
If you use Linux you can program it to wake up at a specified time. I'm not sure if it works for every Linux variant but you can try it out:
/root/bin/shutwake.sh
# unset alarm, set new time
sh -c "echo 0 > /sys/class/rtc/rtc0/wakealarm"
sh -c "echo `date '+%s' -d '+ 600 minutes'` > /sys/class/rtc/rtc0/wakealarm"
/sbin/poweroff
Then you need to add a line in cron to shutdown:
0 23 * * * /root/bin/shutwake.sh
I use this in a couple of rack servers and works like a charm.
add a comment |
If you use Linux you can program it to wake up at a specified time. I'm not sure if it works for every Linux variant but you can try it out:
/root/bin/shutwake.sh
# unset alarm, set new time
sh -c "echo 0 > /sys/class/rtc/rtc0/wakealarm"
sh -c "echo `date '+%s' -d '+ 600 minutes'` > /sys/class/rtc/rtc0/wakealarm"
/sbin/poweroff
Then you need to add a line in cron to shutdown:
0 23 * * * /root/bin/shutwake.sh
I use this in a couple of rack servers and works like a charm.
add a comment |
If you use Linux you can program it to wake up at a specified time. I'm not sure if it works for every Linux variant but you can try it out:
/root/bin/shutwake.sh
# unset alarm, set new time
sh -c "echo 0 > /sys/class/rtc/rtc0/wakealarm"
sh -c "echo `date '+%s' -d '+ 600 minutes'` > /sys/class/rtc/rtc0/wakealarm"
/sbin/poweroff
Then you need to add a line in cron to shutdown:
0 23 * * * /root/bin/shutwake.sh
I use this in a couple of rack servers and works like a charm.
If you use Linux you can program it to wake up at a specified time. I'm not sure if it works for every Linux variant but you can try it out:
/root/bin/shutwake.sh
# unset alarm, set new time
sh -c "echo 0 > /sys/class/rtc/rtc0/wakealarm"
sh -c "echo `date '+%s' -d '+ 600 minutes'` > /sys/class/rtc/rtc0/wakealarm"
/sbin/poweroff
Then you need to add a line in cron to shutdown:
0 23 * * * /root/bin/shutwake.sh
I use this in a couple of rack servers and works like a charm.
edited Aug 6 '18 at 10:10
answered Aug 3 '18 at 14:10
badc0debadc0de
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f584819%2fis-it-possible-to-schedule-automatic-power-on-of-server-hp-dl360p-gen8%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
What OS are you using? Under Windows you could schedule a task which could wake up your system.
– Simon
Apr 19 '13 at 8:16
Does this proliant come with a remove access card (e.g. HP ILO?) No experience here with HPs but Dell could be powered on via their DRAC (Dell remove access card) and those accept things like ssh. So worst case you could wake another computer at that time, have it ssh to the ILO and power up the proliant.
– Hennes
Aug 15 '16 at 13:54