Creative advice needed for automating server restart

Hello all,

  • Platform information:
    • Hardware: _Intel 5i/ 8GB /500 GB
    • OS: Debian 11
    • Java Runtime Environment: OPENJDK 11
    • openHAB version: 3.3.0

Synopsis: I need a mechanism to start my openHAB server at given times.

Background:
I live in South Africa and here the government implemented a concept called Loadshedding - at a given schedule (which can change on a wink) the power for certain blocks of the grid is switched off for 2.5 hours at a time. This normally happens a few times per week, but if things go south with power generation, it can happen several times per day. Letā€™s call it a small 35 year long planning oversight by power generation parastatal.

I run my Openhab server on a Debian laptop that can run on battery mode just under 2 hours and then it goes into suspend mode. When the power comes back on, the laptop is unaware of this and keeps snoozing until I lift the lid.

Problem:
Iā€™m soon going on holiday and need my home automation more than ever, but no one will be home to lift the lid to wake up the laptop.

I have investigated:

  1. Wake on LAN - BIOS on my laptop does not cater for it (Lenovo T510)
  2. RTCWake - this may work, but I cannot seem to figure out a way to make this recurring? Once RTCWake woke up the laptop, it needs to be scheduled again.

I need a solution that:

  • at given intervals tries to wake up the laptop or,
  • at a given time wake it up (but only if there is power, otherwise it must try later again)

I can live with my home automation not being available for a few hours, but not for days on end. It must try and auto wake and start up at least every 6 hours.

Iā€™ve wrecked my brain in trying to solve this problem - any advice will be appreciated.
Thanks in advance

Frankly, any such workaround will be a real hack and fragile if working at all.

What about moving to a RPi, it consumes a lot less power.
Attach it to a UPS with enough battery to bridge outages and you will have no issues with on/off.

Thatā€™s a :100:

Either an full-blown UPS, which can also tell your Rasperry, when thereā€™s grid power and when thereā€™s none thereā€™s a neat little library ā€œnutā€ for that:

Have a look at various UPSs, thereā€™s almost certainly one available which is supported by NUT and lasts 3hours at last with an RPi. I use ā€œEaton Ellipse Eco 650USBā€ - which should suffice.

Bonus: if the power is out for longer than the UPS battery lasts, your Raspbian OS can shutdown properly by a simple NUT configuration - and when power is back, your Raspi boots your OH3-server normally back up again.
So no hassle - and all is good.

Or - thereā€™s some powerbanks, which can be charged and discharged without a problem, meaning it will power your pi and if thereā€™s an outage, theyā€™ll still power your pi - until power is back again. But some have a bit too long of a paus in between both modes and your Pi will cold reboot. So if you rely on your home automation => go with an UPS and NUT to gracefully shutdown your Pi if power is out for longer.

In case you would like to go the risky way. Some thoughts about peaces that may help to create scripts.

You could do some trials with a crontab entry that makes use @reboot instead of fixed times.
This entry then needs to schedule the next wakeup.
An other cron entry or an at job at now+30minutes can be used to shutdown the computer e.g. half an hour later than now.

Wake up needs to be done anyway. Once it is woken up a check like

upower -i /org/freedesktop/UPower/devices/battery_BAT0 |grep discharging

can be used to check if battery is discharging or charging and it can be turned off in case it runs on battery.

I would normally agree with @mstormi, but RPis are hard to get right now and it sounds like youā€™re on a short timeframe. For the sake of discussing options, Iā€™m going to assume that you canā€™t get one.

Plan for the worst-case scenario, which is power going out multiple times in the day. Nothing else matters.

A typical UPS with a lead acid battery is quick to discharge and slow to recharge. If the power might go off multiple times in one day, you donā€™t want to drain the battery. Better to immediately cut power to preserve the UPSā€™s runtime. Iā€™m guessing that this will be okay, since nothing else in your house will be working while the power is off.

If your laptop has a BIOS option to start when AC power is restored, then you could have a UPS immediately shut it down and then rely on the BIOS startup. However, Iā€™m not sure if a laptop will have that setting. Iā€™ve only ever used it with desktops, but Iā€™ve never looked for it in a laptop.

You would need a UPS that can be controlled by a linux client over USB (either the manufacturerā€™s or Network UPS Tools) and that cuts power to the socket after shutting down the laptop, so that the laptop can sense when power is restored.

Most (all?) inexpensive UPSes will only cut power to the socket when their batteries are depleted. But then they wonā€™t turn back on until the batteries have charged up sufficiently. That could be many hours later.

But hereā€™s the thing:

If you want the fastest and easiest solution, get a better laptop or replace the battery. If it can last 6-8 hours, you shouldnā€™t have to worry about it at all.

Itā€™s just Like to add that my server is hooked to a Eaton 5E 850 VƁ with 480 watt max load, and even at 17% load ( about 80 watts I believe), which is at right now, it only have around 35 minutes of battery power.

My server is an i3 7100, and has a bunch of hard drives, so the consumption is definitely on the higher side of things, but even if you decrease it, youā€™re barely talking about breaking the one hour threshold.

Iā€™m not sure that a normal ups will be the answerā€¦

So the real problem is to start the laptop when power comes back.
ā€¦just stating the obvious :slight_smile:

If you can not find something that remediate this in bios (or efi), you need to hack the power button, lid switch or something like thatā€¦

Hello All,

Firstly, sorry for the radio silence of a few days, life happened, so did a critical production problem and we didnā€™t see daylight for a few days :slight_smile: .

Secondly I appreciate all the replies and suggestions. I have a 1000W UPS that is driving a number of devices in the house when the power goes down, but this is not enough.

I have gotten the following concept right and will implement it within the next few days. It gives me external control of monitoring and switching on of the laptop. So Iā€™m sharing it here for the benefit of others.

  1. I managed to get WakeOnLAN enabled in the BIOS.
  2. I use several ESP32 and similar devices in my home automation and now one of these devices will use the WOL library (here) to wake up the laptop:
  3. When the power goes down, the laptop goes to sleep say after 1 hour (this allows enough time for OH3 to send me messages and for me to do things via OH3 whilst the power is off)
  4. When the power comes back on, a relay kicks in which brings a pin on the ESP32 to high. The ESP32 detects that the power is on. It then sends a WOL command to the laptop, the laptop wakes up, OH3 starts and sends me a message that it is back and gives me a status of my home.

This brings me a bit more control since the ESP32 controller can check a number of things and do a number of retries which is slightly more resilient than the cron job suggested.

Thanks again and keep well,

2 Likes

Sorta surprised that the T510 doesnt support WOL, i know the T500 did.

Never used RTCwake or know how its implemented but perhaps you could, for example, give the device a fixed IP via a DHCP reservation on your router and then have a script/task that runs regular pings to the device and if it stops responding, it sends a wake command? Something like that could work.