Stuck at 3:00 AM on change to Daylight Savings time; Path issues under FreeBSD

121 views
Skip to first unread message

Marius Schamschula

unread,
Mar 8, 2026, 1:54:14 PM (2 days ago) Mar 8
to weewx-user
Something broke my old installation of weewx 4.10.1. It stopped at 3:00 AM with the change to CDT around here.

As someone who spends a lot of time avoiding pip and venvs as a port maintainer on MacPorts I have held back updating to 5.x. I don't like the Python maintenance nightmare of having multiple (incompatible) versions of packages installed under various paths.

Despite the above, I tried installing 5.3.1 using pip and venv as a regular user.

The result: bad idea!

Under FreeBSD the unprivileged user can't open the device (in this case /dev/ttyU0)

Root can open the device, but the paths for root are broken.

Even after adding the path to /home/marius/.local/bin I get 

# weewxd

Traceback (most recent call last):

  File "/home/marius/.local/bin/weewxd", line 5, in <module>

    from weewxd import main

ModuleNotFoundError: No module named 'weewxd'


I have no idea how to tell python 3.11 where that module lives. In the olden days of 4.10.1, that wouldn't have been an issue.

So I uninstalled the enduser venv, and installed it as root.

I installed weewx-venv outside of the /root space, but sure enough weewx-data appeared under /root. This is a security issue. So I moved it under the same directory as weewx-venv and used --config to start weewxd. So far so good.

I see the live LOOP data come in on the console, the NOAA and html pages are created. 

However, I'm back at square one: the time is also stuck at 3:00 AM CDT.

Amy ideas?

Marius Schamschula

unread,
Mar 8, 2026, 2:17:40 PM (2 days ago) Mar 8
to weewx-user
It looks like the database is not being updated.

ls -l /tank/www/weewx/archive/

total 162211

-rw-rw-rw-  1 root wheel 197065728 Mar  8 03:00 weewx.sdb


I tried using the same .sdb file, as it has all the historical data, but it failed to update with 5.3.1.


I have now move that out of the way, and am testing to see if new data is use to update the web site:


That works!


However, I need to import data from the old database. I don't want to loose eighteen year of data.

Vince Skahan

unread,
Mar 8, 2026, 2:36:57 PM (2 days ago) Mar 8
to weewx-user
You generally can't avoid venvs on a modern python on a current os.  Nobody here did that.  The python project forced that on everybody.

Installing as root is generally a bad idea.  One big improvement in weewx v5 is that it no longer needs to run as root nor even 'require' root other than to install system-level things.  But to answer:
  • no module named 'weewxd' is due to you not activating your python venv.    Always run 'source /some/path/here/bin/activate' to activate your venv before installing any modules with pip3 or running weewxd or weectl. 
  • for a pip installation, weewxd will run as the user you used when you ran the pip command to install weewx itself.
  • if you installed weewx as a non-privileged user, you will usually need to add that user to whatever group has permissions to access the serial or usb devices. Typically adding them to group dialout helps.  Alternately you can set up udev rules to do the right thing. There are wiki and faq pages with a variety of ways to do this and which groups can typically do what (varies os by os).
  • you shouldn't need to import data from an old db.  The old db should work fine.
  • I have no idea what 'the time is also stuck at 3:00 AM' means.
  • I have no idea what '(the .sdb) failed to update with 5.3.1' means.  Your system logs should show what happened if anything.  My wild guess is your weewx.conf file is pointing someplace else.  Set debug=1 in weewx.conf and restart it and check your logs.

Marius Schamschula

unread,
Mar 8, 2026, 2:44:09 PM (2 days ago) Mar 8
to weewx-user
Sure enough the rc.d script is rather broken. It has the path to UTIL_ROOT hardcoded to the user directory. A quick edit got around this.

I also edited the paths in /usr/local/etc/rc.d/weewx, but service weewx status is not supported.

There is something else missing, as the daemon mode didn't update the database or web pages.

Further experimentation showed that when I restarted manually the updates also fail.

I moved the database file aside and restarted the daemon.  As expected, a new database was created. I'm just concerned what will happen when I need to restart weewx the next time.

Marius Schamschula

unread,
Mar 8, 2026, 2:58:04 PM (2 days ago) Mar 8
to weewx-user
Indeed, the venv mess is not of weewx's making.

I'm somewhat surprised at the permissions issue for the USB socket, as my regular user is a member of wheel.

I'll try setting up as regular user again.

Marius Schamschula

unread,
Mar 8, 2026, 3:16:08 PM (2 days ago) Mar 8
to weewx-user
After running (and restarting) weewx with the new database file I tried replacing it with the old file: Back to 3:00 AM!

Moved back the new database file: it works again!

Vince Skahan

unread,
Mar 8, 2026, 3:21:07 PM (2 days ago) Mar 8
to weewx-user
Marius we cannot read minds. ‘What’ is back to 3am ? Your computer clock ? The timestamp on a webpage ?

Marius Schamschula

unread,
Mar 8, 2026, 3:33:22 PM (2 days ago) Mar 8
to weewx-user
The time stamp on the web page is 3:00 AM, no change in the size of the weewx.sdb file since that time.

I tried to make sure there was no corruption to the database file, i.e. I ran sqlite3 weewx.sdb.old ".dump" | sqlite3 weewx.sdb.new before moving it back into place. No difference, i.e. same time stamp as when I ran the command.

The folder listing clearly shows that this new file was also not modified after being created.

I moved back the new database file, and data is being saved and the web page is being updated.

Vince Skahan

unread,
Mar 8, 2026, 3:44:43 PM (2 days ago) Mar 8
to weewx-user
If you will not share your logs nobody can help. Best of luck.

Greg Troxel

unread,
Mar 8, 2026, 3:45:33 PM (2 days ago) Mar 8
to Vince Skahan, weewx-user
Vince Skahan <vince...@gmail.com> writes:

> You generally can't avoid venvs on a modern python on a current os. Nobody
> here did that. The python project forced that on everybody.

That's not strictly true. pkgsrc has packages for a vast number of
py-foo all installed in the system site-packages, and it works fine. I
am actually running weewx that way, with the weewx code in
/usr/pkg/lib/python3.13/site-packages/weewx and so on.

In my case, the weewx progarm files are owned by root and live in the
system. I am running it in a data directory (with config file and
database) that is owned by a non-root user. Stepping back from weewx
and python, this is totally normal, to use installed programs with your
own data.

<rant>

I find that venvs are required because python culture says it is ok to
have requirements as foo==x.y.z, rather than foo>=x.y. Thus, there is
no way to have everything needed installed, and python packages with
unreasonably specific dependencies (Home Assistant) have to be in a venv
for isolation.

The root cause of pinned deps, besides people thinking it is ok, is API
instability within modules.

</rant>

Vince Skahan

unread,
Mar 8, 2026, 3:56:06 PM (2 days ago) Mar 8
to weewx-user
Sure.  The other os have python libs they install at the system level too.  Run 'pip3 list --verbose' to see what's where.

I'm personally ok with things installing as root.  I just like not 'running' as root whenever it can be avoided.

FWIW - I have run into the problems venv solve quite a lot.  Things needing certain versions of a library (or minimum versions thereof) and the os freezing to something lesser.  Any RHEL-like system or LTS debian is a good example.  They go for many year stability and freeze to old versions.  The venv thing is a good way to not be limited by the os vendor's choices.

Marius Schamschula

unread,
Mar 8, 2026, 5:10:17 PM (2 days ago) Mar 8
to weewx-user
I'm not sure what the log would tell you in this case. In the weewx.conf file for 4.10.1 had debug = 1 set. I have now also set that for the new install. I see nothing useful in the log file since I did that, i.e. no errors other than the ones I always see (e.g. ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 46 instead). It did show that an old cron job that was used to track the active tty caused multiple instances of weewx to run (FreeBSD changes the port from /dev/ttyU0 to /dev/ttyU1 or in reverse at random times). I commented that out in crontab to make sure only one instance is active. I tried one more time with the old .sdb file. Monitoring the /var/log/message file, I see no errors in the log. As before, the database doesn't update and a web page for 3:00 AM is rendered.

As the same thing happens with both weewx 4.10.1 and 5.3.1, but a clean database file works correctly with 5.3.1, so there is no problem with the basic functionality of both FreeBSD packages and weewx.

P.S. I'm leaving the root based install in place, as that is no different than what I was using for 4.10.1. No warnings of the sort:

Installing collected packages: pyserial, ephem, pyusb, PyMySQL, CT3, weewx

  WARNING: The scripts pyserial-miniterm and pyserial-ports are installed in '/home/marius/.local/bin' which is not on PATH.

  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.

  WARNING: The scripts weectl and weewxd are installed in '/home/marius/.local/bin' which is not on PATH.

  Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location.


when I installed as root. Of course, I've moved everything onto the ZFS array, rather than leaving it on the boot drive.

BTW: What happened to $HOME/bin? That's already in the $PATH.

In my experience some of the python version requirements are out of date or too strict, i.e. often you can ignore them and everything works correctly.

And yes, the venv install installed a newer version of py311-pillow than the current one provided by FreeBSD ports. So much for the install instructions for FreeBSD!

I now have to redo all the customization of the skin for both the private and public versions of the web site. It's been a while since I first did that so I have to rediscover what all needs to be edited.

I still need to get my all old data back!

I see that 5.3.1 uses an extended schema by default, while 4.10.1 was still using the old wview schema (yes, I did start out with wview). Could there be a problem with the database using the old schema?

Marius Schamschula

unread,
Mar 8, 2026, 9:08:50 PM (2 days ago) Mar 8
to weewx-user
Changing the schema under [[wx_binding]] doesn't make any difference. Back to the new default setting.

However, after running weectl database reconfigure I get a database with the new schema that updates, i.e. creates weewx.sdb-journal. Unfortunately, when it is done, there are no live updates, and the web page again is stuck at 3:00 AM. Nothing in the log file.

I have no idea what else I could try to get at the old database and continue to update it.

Perhaps, I'll need to repurpose some of my own code (wx.aamu.edu) to access the old data and just use weewx for the new data.

I certainly won't update the Raspberry Pi that is running weewx 4.10.1 at my other house. It didn't have an issue at the start of CDT.

Tom Keffer

unread,
Mar 8, 2026, 9:38:45 PM (2 days ago) Mar 8
to weewx...@googlegroups.com
Your symptoms smell like corrupted data in your logger, but without the logs, we cannot be sure. Humor me, set debug=1, restart weewxd, let it run through the first reporting cycle, then post the logs.

The database is not your problem. If it's working for you, there is no reason to "upgrade" from the old schema to the new schema. It just offers more types. 

--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/weewx-user/1e3e0173-f581-45cd-a954-d8ec514b558dn%40googlegroups.com.

Marius Schamschula

unread,
Mar 9, 2026, 8:00:39 AM (18 hours ago) Mar 9
to weewx-user
Thanks for the insights Tom!

The thought of corrupted data on the logger has also crossed my mind, but weewx builds a new database right past the problematic timestamp.

However, the old database file stops at 1772604000, which is March 4, 2026 at 12:00:00 AM CST, rather than March 8, 2026 03:00:00 AM CDT.

The new database goes back to February 27, 2026 at 3:20:00 PM CST.

As far as the logs are concerned, setting debug = 1, doesn't print any information on startup. I have restarted 5.3.1 several times w/o any output.

The only thing in the /var/log/messages file are comm errors:

Mar  8 23:48:18 mars weewxd[23459]: CRITICAL weewxd: Caught WeeWxIOError: LOOP max batch errors (3) exceeded.

Mar  8 23:48:18 mars weewxd[23459]: CRITICAL weewxd:     ****  Waiting 60.0 seconds then retrying...

Mar  9 00:00:04 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 00:05:03 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 27 instead

Mar  9 00:05:23 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 00:38:47 mars syslogd: last message repeated 1 times

Mar  9 00:39:05 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 00:56:51 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 01:13:05 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 62 instead

Mar  9 01:29:04 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 01:47:53 mars syslogd: last message repeated 1 times

Mar  9 02:03:13 mars syslogd: last message repeated 1 times

Mar  9 02:03:59 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 02:37:24 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 02:38:00 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 03:28:44 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 03:29:38 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 03:29:48 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #3; error: Expected to read 99 chars; got 0 instead

Mar  9 03:29:48 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP max batch errors (3) exceeded.

Mar  9 03:29:48 mars weewxd[23459]: CRITICAL weewxd: Caught WeeWxIOError: LOOP max batch errors (3) exceeded.

Mar  9 03:29:48 mars weewxd[23459]: CRITICAL weewxd:     ****  Waiting 60.0 seconds then retrying...

Mar  9 03:45:44 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 04:02:08 mars syslogd: last message repeated 1 times

Mar  9 04:03:30 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 04:19:54 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 04:37:04 mars syslogd: last message repeated 1 times

Mar  9 04:54:04 mars syslogd: last message repeated 1 times

Mar  9 04:54:14 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 04:54:50 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #3; error: Expected to read 99 chars; got 0 instead

Mar  9 04:54:50 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP max batch errors (3) exceeded.

Mar  9 04:54:50 mars weewxd[23459]: CRITICAL weewxd: Caught WeeWxIOError: LOOP max batch errors (3) exceeded.

Mar  9 04:54:50 mars weewxd[23459]: CRITICAL weewxd:     ****  Waiting 60.0 seconds then retrying...

Mar  9 05:27:20 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

Mar  9 05:27:38 mars weewxd[23459]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

Mar  9 05:45:06 mars weewxd[55633]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead


I restarted weewxd toward the end of this timeframe. Nothing here.

Tom Keffer

unread,
Mar 9, 2026, 8:21:40 AM (18 hours ago) Mar 9
to weewx...@googlegroups.com
If all you are seeing is log level ERROR and CRITICAL, then the log level is too restrictive. I know nothing about FreeBSD, so you're going to have to figure that out on your own. One thing you could do is have weewx log to a file. See the wiki for how to do that.

However you do it, it would be very useful to see the whole log. It might show nothing, but that's a clue in its own way.

What kind of logger do you have? Serial, or USB? If the former, are you using a serial-to-USB converter?

Greg Troxel

unread,
Mar 9, 2026, 8:31:47 AM (17 hours ago) Mar 9
to Tom Keffer, weewx...@googlegroups.com
Tom Keffer <tke...@gmail.com> writes:

> If all you are seeing is log level ERROR and CRITICAL, then the log level
> is too restrictive. I know nothing about FreeBSD, so you're going to have
> to figure that out on your own. One thing you could do is have weewx log to
> a file. See the wiki
> <https://github.com/weewx/weewx/wiki/WeeWX-v4-and-logging#logging-to-rotating-files>
> for how to do that.

I've been running weewx on NetBSD since the very end of 2017.

FWIW:

I am using a USB/serial adaptor and a Davis VP2 serial logger.

I am now using a RPI3 (without RTC) and my boot scripts wait for NTP
sync before weewx is started.

The RPI3 is on a UPS.

With this setup, I have very little trouble.


It is totally normal on *BSD to use syslog, but syslog config out of the
box limits to INFO. So if the OP is not used to configuring syslog
(putting weewx into its own log file, allowing debug), files is a good
approach.

Marius Schamschula

unread,
Mar 9, 2026, 8:46:43 AM (17 hours ago) Mar 9
to weewx-user
First of all, I'm using the Davis logger, however with a USB cable,

Indeed, adding the custom log file gives more useful information for 5.3.1 with the new database:

2026-03-09 07:39:30 weewxd[58005]: INFO weewx.engine: Using binding 'wx_binding' to database 'weewx.sdb'

2026-03-09 07:39:30 weewxd[58005]: INFO weewx.manager: Starting backfill of daily summaries

2026-03-09 07:39:30 weewxd[58005]: INFO weewx.manager: Daily summaries up to date

2026-03-09 07:39:30 weewxd[58005]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-09 07:35:00 CDT (1773059700)

2026-03-09 07:39:31 weewxd[58005]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 07:39:31 weewxd[58005]: DEBUG weewx.drivers.vantage: Retrieving 0 page(s); starting index= 0

2026-03-09 07:39:31 weewxd[58005]: INFO weewx.engine: Starting main packet loop.

2026-03-09 07:39:31 weewxd[58005]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 07:39:31 weewxd[58005]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 07:39:32 weewxd[58005]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 07:40:14 weewxd[58005]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-09 07:35:00 CDT (1773059700)

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.drivers.vantage: Retrieving 1 page(s); starting index= 0

2026-03-09 07:40:15 weewxd[58005]: INFO weewx.manager: Added record 2026-03-09 07:40:00 CDT (1773060000) to database 'weewx.sdb'

2026-03-09 07:40:15 weewxd[58005]: INFO weewx.manager: Added record 2026-03-09 07:40:00 CDT (1773060000) to daily summary in 'weewx.sdb'

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 09:25:00 CST (1772292300) less than final timestamp 2026-03-09 07:40:00 CDT (1773060000)

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.reportengine: Running report 'SeasonsReport'

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.reportengine: Found configuration file /tank/www/weewx-data/skins/Seasons/skin.conf for report 'SeasonsReport'

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.reportengine: Unable to set locale 'en': unsupported locale setting. Using default locale instead ('C.UTF-8').

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.reportengine: Running generators for report 'SeasonsReport' in directory '/tank/www/weewx-data/skins/Seasons' with locale 'C.UTF-8'

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.DisplayOptions', 'weewx.cheetahgenerator.Extras', 'weewx.cheetahgenerator.Gettext', 'weewx.cheetahgenerator.JSONHelpers', 'weewx.cheetahgenerator.PlotInfo', 'weewx.cheetahgenerator.SkinInfo', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo']

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 07:40:15 weewxd[58005]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 07:40:16 weewxd[58005]: INFO weewx.cheetahgenerator: Generated 8 files for report SeasonsReport in 1.41 seconds

2026-03-09 07:40:16 weewxd[58005]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 07:40:17 weewxd[58005]: INFO weewx.imagegenerator: Generated 12 images for report SeasonsReport in 0.27 seconds

2026-03-09 07:40:17 weewxd[58005]: DEBUG weewx.reportengine: Copied 5 files to /tank/www/weewx-data/public_html

2026-03-09 07:40:17 weewxd[58005]: DEBUG weewx.reportengine: Report 'SmartphoneReport' not enabled. Skipping.

2026-03-09 07:40:17 weewxd[58005]: DEBUG weewx.reportengine: Report 'MobileReport' not enabled. Skipping.

2026-03-09 07:40:17 weewxd[58005]: DEBUG weewx.reportengine: Report 'StandardReport' not enabled. Skipping.

2026-03-09 07:40:17 weewxd[58005]: DEBUG weewx.reportengine: Report 'FTP' not enabled. Skipping.

2026-03-09 07:40:17 weewxd[58005]: DEBUG weewx.reportengine: Report 'RSYNC' not enabled. Skipping.



Tom Keffer

unread,
Mar 9, 2026, 6:40:03 PM (7 hours ago) Mar 9
to weewx...@googlegroups.com
From what I can see, the log excerpt looks totally normal. You did not include the startup sequence so there could be something in there, but I kind of doubt it.

Just to understand the problem: after the above log, you looked at the results in /tank/www/weewx-data/public_html and they say 0300? The last timestamp in the database should be 2026-03-09 0740 CDT.

-tk

Marius Schamschula

unread,
Mar 9, 2026, 7:47:28 PM (6 hours ago) Mar 9
to weewx-user
My previous post was just to show that the alternate log file worked with the database auto-generated yesterday. The beginning was clipped by using tail -f on the log file. I was busy @ work today (lots of grading, as midterms are underway).

Note: I am using service weewx start/stop, i.e. the daemon.

Now on to some experimenting with the old database:

First up the unaltered database from 4.10.1 setting schema = weewx.schemas.wview.schema in weewx.conf and running for two update cycles: 

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Initializing weewxd version 5.3.1

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Command line: /tank/www/weewx-venv/bin/weewxd --daemon --pidfile=/var/run/weewx.pid /tank/www/weewx-data/weewx.conf

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Using Python: 3.11.15 (main, Mar  8 2026, 11:24:54) [Clang 19.1.7 (https://github.com/llvm/llvm-project.git llvmorg-19.1.7-0-gcd7080

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Located at:   /tank/www/weewx-venv/bin/python3.11

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Platform:     FreeBSD-15.0-RELEASE-p4-amd64-64bit-ELF

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Locale:       'C.UTF-8'

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Entry path:   /tank/www/weewx-venv/bin/weewxd

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: WEEWX_ROOT:   /tank/www/weewx-data

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Config file:  /tank/www/weewx-data/weewx.conf

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: User module:  /tank/www/weewx-data/bin/user

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Debug:        1

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: User:         root

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Group:        wheel

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: Groups:       wheel operator

2026-03-09 18:23:00 weewxd[71030]: DEBUG weewxd: loop_on_init: False

2026-03-09 18:23:00 weewxd[71030]: INFO weewxd: PID file is /var/run/weewx.pid

2026-03-09 18:23:00 weewxd[71036]: DEBUG weewxd: Initializing engine

2026-03-09 18:23:00 weewxd[71036]: INFO weewx.engine: Loading station type Vantage (weewx.drivers.vantage)

2026-03-09 18:23:00 weewxd[71036]: DEBUG weewx.drivers.vantage: Driver version is 3.6.3

2026-03-09 18:23:00 weewxd[71036]: DEBUG weewx.drivers.vantage: Option loop_request=1

2026-03-09 18:23:00 weewxd[71036]: DEBUG weewx.drivers.vantage: Opened up serial port /dev/ttyU1; baud 19200; timeout 4.00

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: Hardware type is 16

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: ISS ID is 1

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: Hardware name: Vantage Pro2

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdTimeSynch

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdTimeSynch

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdConvert

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: StdConvert target unit is 0x1

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdConvert

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdCalibrate

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdCalibrate

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdQC

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdQC

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.wxservices.StdWXCalculate

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.wxservices: StdWXCalculate will use data binding wx_binding

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.wxservices.StdWXCalculate

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdWXXTypes

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdWXXTypes

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdPressureCooker

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdPressureCooker

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdRainRater

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdRainRater

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdDelta

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdDelta

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdArchive

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: Archive will use data binding wx_binding

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: Record generation will be attempted in 'hardware'

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: Using archive interval of 300 seconds (specified by hardware)

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Use LOOP data in hi/low calculations: 1

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdArchive

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdStationRegistry

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: StationRegistry: Registration not requested.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdStationRegistry

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdWunderground

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: Wunderground: Posting not enabled.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWunderground

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdPWSweather

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: PWSweather: Posting not enabled.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdPWSweather

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdCWOP

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: CWOP: Posting not enabled.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdCWOP

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdWOW

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: WOW: Posting not enabled.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWOW

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdWOWBE

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: WOW-BE: Posting not enabled.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWOWBE

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.restx.StdAWEKAS

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.restx: AWEKAS: Posting not enabled.

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.restx.StdAWEKAS

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdPrint

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdPrint

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Loading service weewx.engine.StdReport

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: 'pyephem' detected, extended almanac data is available

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.engine: Finished loading service weewx.engine.StdReport

2026-03-09 18:23:01 weewxd[71036]: INFO weewxd: Starting up weewx version 5.3.1

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: Clock error is -0.81 seconds (positive is fast)

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.engine: Using binding 'wx_binding' to database 'weewx.sdb'

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.manager: Starting backfill of daily summaries

2026-03-09 18:23:01 weewxd[71036]: INFO weewx.manager: Daily summaries up to date

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:23:02 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 4

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:05:00 CST (1772330700) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:23:04 weewxd[71036]: INFO weewx.engine: Starting main packet loop.

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:23:05 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:25:15 weewxd[71036]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:25:16 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 0

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:10:00 CST (1772331000) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.reportengine: Running report 'SeasonsReport'

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.reportengine: Found configuration file /tank/www/weewx-data/skins/Seasons/skin.conf for report 'SeasonsReport'

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.reportengine: Unable to set locale 'en': unsupported locale setting. Using default locale instead ('C.UTF-8').

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.reportengine: Running generators for report 'SeasonsReport' in directory '/tank/www/weewx-data/skins/Seasons' with locale 'C.UTF-8'

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.DisplayOptions', 'weewx.cheetahgenerator.Extras', 'weewx.cheetahgenerator.Gettext', 'weewx.cheetahgenerator.JSONHelpers', 'weewx.cheetahgenerator.PlotInfo', 'weewx.cheetahgenerator.SkinInfo', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo']

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:25:18 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:25:19 weewxd[71036]: INFO weewx.cheetahgenerator: Generated 8 files for report SeasonsReport in 1.56 seconds

2026-03-09 18:25:19 weewxd[71036]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:25:21 weewxd[71036]: INFO weewx.imagegenerator: Generated 36 images for report SeasonsReport in 1.87 seconds

2026-03-09 18:25:21 weewxd[71036]: DEBUG weewx.reportengine: Copied 5 files to /tank/www/weewx-data/public_html

2026-03-09 18:25:21 weewxd[71036]: DEBUG weewx.reportengine: Report 'SmartphoneReport' not enabled. Skipping.

2026-03-09 18:25:21 weewxd[71036]: DEBUG weewx.reportengine: Report 'MobileReport' not enabled. Skipping.

2026-03-09 18:25:21 weewxd[71036]: DEBUG weewx.reportengine: Report 'StandardReport' not enabled. Skipping.

2026-03-09 18:25:21 weewxd[71036]: DEBUG weewx.reportengine: Report 'FTP' not enabled. Skipping.

2026-03-09 18:25:21 weewxd[71036]: DEBUG weewx.reportengine: Report 'RSYNC' not enabled. Skipping.

2026-03-09 18:29:15 weewxd[71036]: ERROR weewx.drivers.vantage: LOOP batch try #1; error: Expected to read 99 chars; got 0 instead

2026-03-09 18:29:16 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:29:43 weewxd[71036]: ERROR weewx.drivers.vantage: LOOP batch try #2; error: Expected to read 99 chars; got 0 instead

2026-03-09 18:29:44 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:30:14 weewxd[71036]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:30:15 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:30:16 weewxd[71036]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 1

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:15:00 CST (1772331300) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.reportengine: Running report 'SeasonsReport'

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.reportengine: Found configuration file /tank/www/weewx-data/skins/Seasons/skin.conf for report 'SeasonsReport'

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.reportengine: Unable to set locale 'en': unsupported locale setting. Using default locale instead ('C.UTF-8').

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.reportengine: Running generators for report 'SeasonsReport' in directory '/tank/www/weewx-data/skins/Seasons' with locale 'C.UTF-8'

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.DisplayOptions', 'weewx.cheetahgenerator.Extras', 'weewx.cheetahgenerator.Gettext', 'weewx.cheetahgenerator.JSONHelpers', 'weewx.cheetahgenerator.PlotInfo', 'weewx.cheetahgenerator.SkinInfo', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo']

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:30:17 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:30:18 weewxd[71036]: INFO weewx.cheetahgenerator: Generated 8 files for report SeasonsReport in 1.19 seconds

2026-03-09 18:30:18 weewxd[71036]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:30:20 weewxd[71036]: INFO weewx.imagegenerator: Generated 36 images for report SeasonsReport in 1.86 seconds

2026-03-09 18:30:20 weewxd[71036]: DEBUG weewx.reportengine: Report 'SmartphoneReport' not enabled. Skipping.

2026-03-09 18:30:20 weewxd[71036]: DEBUG weewx.reportengine: Report 'MobileReport' not enabled. Skipping.

2026-03-09 18:30:20 weewxd[71036]: DEBUG weewx.reportengine: Report 'StandardReport' not enabled. Skipping.

2026-03-09 18:30:20 weewxd[71036]: DEBUG weewx.reportengine: Report 'FTP' not enabled. Skipping.

2026-03-09 18:30:20 weewxd[71036]: DEBUG weewx.reportengine: Report 'RSYNC' not enabled. Skipping.

2026-03-09 18:30:52 weewxd[71036]: INFO weewxd: Received signal TERM (15).

2026-03-09 18:30:52 weewxd[71036]: INFO weewx.engine: Main loop exiting. Shutting engine down.

2026-03-09 18:30:52 weewxd[71036]: INFO weewx.engine: Shutting down StdReport thread

2026-03-09 18:30:52 weewxd[71036]: DEBUG weewx.engine: StdReport thread has been terminated

2026-03-09 18:30:52 weewxd[71036]: INFO weewxd: Terminating weewx version 5.3.1


Result, as before, everything stuck at 3:00 AM, March 8th.

Second the old database ported to the new default schema, same thing:

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Initializing weewxd version 5.3.1

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Command line: /tank/www/weewx-venv/bin/weewxd --daemon --pidfile=/var/run/weewx.pid /tank/www/weewx-data/weewx.conf

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Using Python: 3.11.15 (main, Mar  8 2026, 11:24:54) [Clang 19.1.7 (https://github.com/llvm/llvm-project.git llvmorg-19.1.7-0-gcd7080

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Located at:   /tank/www/weewx-venv/bin/python3.11

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Platform:     FreeBSD-15.0-RELEASE-p4-amd64-64bit-ELF

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Locale:       'C.UTF-8'

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Entry path:   /tank/www/weewx-venv/bin/weewxd

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: WEEWX_ROOT:   /tank/www/weewx-data

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Config file:  /tank/www/weewx-data/weewx.conf

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: User module:  /tank/www/weewx-data/bin/user

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Debug:        1

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: User:         root

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Group:        wheel

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: Groups:       wheel operator

2026-03-09 18:33:23 weewxd[71352]: DEBUG weewxd: loop_on_init: False

2026-03-09 18:33:23 weewxd[71352]: INFO weewxd: PID file is /var/run/weewx.pid

2026-03-09 18:33:23 weewxd[71356]: DEBUG weewxd: Initializing engine

2026-03-09 18:33:23 weewxd[71356]: INFO weewx.engine: Loading station type Vantage (weewx.drivers.vantage)

2026-03-09 18:33:23 weewxd[71356]: DEBUG weewx.drivers.vantage: Driver version is 3.6.3

2026-03-09 18:33:23 weewxd[71356]: DEBUG weewx.drivers.vantage: Option loop_request=1

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.drivers.vantage: Opened up serial port /dev/ttyU1; baud 19200; timeout 4.00

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.drivers.vantage: Hardware type is 16

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.drivers.vantage: ISS ID is 1

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.drivers.vantage: Hardware name: Vantage Pro2

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdTimeSynch

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdTimeSynch

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdConvert

2026-03-09 18:33:25 weewxd[71356]: INFO weewx.engine: StdConvert target unit is 0x1

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdConvert

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdCalibrate

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdCalibrate

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdQC

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdQC

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.wxservices.StdWXCalculate

2026-03-09 18:33:25 weewxd[71356]: INFO weewx.wxservices: StdWXCalculate will use data binding wx_binding

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.wxservices.StdWXCalculate

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdWXXTypes

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdWXXTypes

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdPressureCooker

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdPressureCooker

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdRainRater

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdRainRater

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdDelta

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdDelta

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdArchive

2026-03-09 18:33:25 weewxd[71356]: INFO weewx.engine: Archive will use data binding wx_binding

2026-03-09 18:33:25 weewxd[71356]: INFO weewx.engine: Record generation will be attempted in 'hardware'

2026-03-09 18:33:25 weewxd[71356]: INFO weewx.engine: Using archive interval of 300 seconds (specified by hardware)

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Use LOOP data in hi/low calculations: 1

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdArchive

2026-03-09 18:33:25 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdStationRegistry

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: StationRegistry: Registration not requested.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdStationRegistry

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdWunderground

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: Wunderground: Posting not enabled.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWunderground

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdPWSweather

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: PWSweather: Posting not enabled.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdPWSweather

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdCWOP

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: CWOP: Posting not enabled.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdCWOP

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdWOW

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: WOW: Posting not enabled.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWOW

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdWOWBE

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: WOW-BE: Posting not enabled.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWOWBE

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.restx.StdAWEKAS

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.restx: AWEKAS: Posting not enabled.

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.restx.StdAWEKAS

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdPrint

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdPrint

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Loading service weewx.engine.StdReport

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.engine: 'pyephem' detected, extended almanac data is available

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.engine: Finished loading service weewx.engine.StdReport

2026-03-09 18:33:26 weewxd[71356]: INFO weewxd: Starting up weewx version 5.3.1

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.engine: Clock error is -1.58 seconds (positive is fast)

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.engine: Using binding 'wx_binding' to database 'weewx.sdb'

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.manager: Starting backfill of daily summaries

2026-03-09 18:33:26 weewxd[71356]: INFO weewx.manager: Daily summaries up to date

2026-03-09 18:33:26 weewxd[71356]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:33:27 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:33:28 weewxd[71356]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 1

2026-03-09 18:33:29 weewxd[71356]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:15:00 CST (1772331300) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:33:29 weewxd[71356]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:33:29 weewxd[71356]: INFO weewx.engine: Starting main packet loop.

2026-03-09 18:33:29 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:33:29 weewxd[71356]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:33:30 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:35:15 weewxd[71356]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:35:16 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 2

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:20:00 CST (1772331600) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.reportengine: Running report 'SeasonsReport'

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.reportengine: Found configuration file /tank/www/weewx-data/skins/Seasons/skin.conf for report 'SeasonsReport'

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.reportengine: Unable to set locale 'en': unsupported locale setting. Using default locale instead ('C.UTF-8').

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.reportengine: Running generators for report 'SeasonsReport' in directory '/tank/www/weewx-data/skins/Seasons' with locale 'C.UTF-8'

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.DisplayOptions', 'weewx.cheetahgenerator.Extras', 'weewx.cheetahgenerator.Gettext', 'weewx.cheetahgenerator.JSONHelpers', 'weewx.cheetahgenerator.PlotInfo', 'weewx.cheetahgenerator.SkinInfo', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo']

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:35:19 weewxd[71356]: INFO weewx.cheetahgenerator: Generated 8 files for report SeasonsReport in 1.54 seconds

2026-03-09 18:35:19 weewxd[71356]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:35:21 weewxd[71356]: INFO weewx.imagegenerator: Generated 36 images for report SeasonsReport in 1.87 seconds

2026-03-09 18:35:21 weewxd[71356]: DEBUG weewx.reportengine: Copied 5 files to /tank/www/weewx-data/public_html

2026-03-09 18:35:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'SmartphoneReport' not enabled. Skipping.

2026-03-09 18:35:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'MobileReport' not enabled. Skipping.

2026-03-09 18:35:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'StandardReport' not enabled. Skipping.

2026-03-09 18:35:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'FTP' not enabled. Skipping.

2026-03-09 18:35:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'RSYNC' not enabled. Skipping.

2026-03-09 18:40:15 weewxd[71356]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:40:16 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 3

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:25:00 CST (1772331900) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.reportengine: Running report 'SeasonsReport'

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.reportengine: Found configuration file /tank/www/weewx-data/skins/Seasons/skin.conf for report 'SeasonsReport'

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.reportengine: Unable to set locale 'en': unsupported locale setting. Using default locale instead ('C.UTF-8').

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.reportengine: Running generators for report 'SeasonsReport' in directory '/tank/www/weewx-data/skins/Seasons' with locale 'C.UTF-8'

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.DisplayOptions', 'weewx.cheetahgenerator.Extras', 'weewx.cheetahgenerator.Gettext', 'weewx.cheetahgenerator.JSONHelpers', 'weewx.cheetahgenerator.PlotInfo', 'weewx.cheetahgenerator.SkinInfo', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo']

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:40:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:40:19 weewxd[71356]: INFO weewx.cheetahgenerator: Generated 8 files for report SeasonsReport in 1.42 seconds

2026-03-09 18:40:19 weewxd[71356]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:40:21 weewxd[71356]: INFO weewx.imagegenerator: Generated 36 images for report SeasonsReport in 1.85 seconds

2026-03-09 18:40:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'SmartphoneReport' not enabled. Skipping.

2026-03-09 18:40:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'MobileReport' not enabled. Skipping.

2026-03-09 18:40:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'StandardReport' not enabled. Skipping.

2026-03-09 18:40:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'FTP' not enabled. Skipping.

2026-03-09 18:40:21 weewxd[71356]: DEBUG weewx.reportengine: Report 'RSYNC' not enabled. Skipping.

2026-03-09 18:40:28 weewxd[71356]: INFO weewxd: Received signal TERM (15).

2026-03-09 18:40:28 weewxd[71356]: INFO weewx.engine: Main loop exiting. Shutting engine down.

2026-03-09 18:40:28 weewxd[71356]: INFO weewx.engine: Shutting down StdReport thread

2026-03-09 18:40:28 weewxd[71356]: DEBUG weewx.engine: StdReport thread has been terminated

2026-03-09 18:40:28 weewxd[71356]: INFO weewxd: Terminating weewx version 5.3.1


Bottom line, once I replaced the new database, new data is captured and processed:

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Initializing weewxd version 5.3.1

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Command line: /tank/www/weewx-venv/bin/weewxd --daemon --pidfile=/var/run/weewx.pid /tank/www/weewx-data/weewx.conf

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Using Python: 3.11.15 (main, Mar  8 2026, 11:24:54) [Clang 19.1.7 (https://github.com/llvm/llvm-project.git llvmorg-19.1.7-0-gcd7080

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Located at:   /tank/www/weewx-venv/bin/python3.11

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Platform:     FreeBSD-15.0-RELEASE-p4-amd64-64bit-ELF

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Locale:       'C.UTF-8'

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Entry path:   /tank/www/weewx-venv/bin/weewxd

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: WEEWX_ROOT:   /tank/www/weewx-data

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Config file:  /tank/www/weewx-data/weewx.conf

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: User module:  /tank/www/weewx-data/bin/user

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Debug:        1

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: User:         root

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Group:        wheel

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: Groups:       wheel operator

2026-03-09 18:42:09 weewxd[71732]: DEBUG weewxd: loop_on_init: False

2026-03-09 18:42:09 weewxd[71732]: INFO weewxd: PID file is /var/run/weewx.pid

2026-03-09 18:42:09 weewxd[71736]: DEBUG weewxd: Initializing engine

2026-03-09 18:42:09 weewxd[71736]: INFO weewx.engine: Loading station type Vantage (weewx.drivers.vantage)

2026-03-09 18:42:09 weewxd[71736]: DEBUG weewx.drivers.vantage: Driver version is 3.6.3

2026-03-09 18:42:09 weewxd[71736]: DEBUG weewx.drivers.vantage: Option loop_request=1

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.drivers.vantage: Opened up serial port /dev/ttyU1; baud 19200; timeout 4.00

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.drivers.vantage: Hardware type is 16

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.drivers.vantage: ISS ID is 1

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.drivers.vantage: Hardware name: Vantage Pro2

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdTimeSynch

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdTimeSynch

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdConvert

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.engine: StdConvert target unit is 0x1

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdConvert

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdCalibrate

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdCalibrate

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdQC

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdQC

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.wxservices.StdWXCalculate

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.wxservices: StdWXCalculate will use data binding wx_binding

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.wxservices.StdWXCalculate

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdWXXTypes

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdWXXTypes

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdPressureCooker

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdPressureCooker

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdRainRater

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdRainRater

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.wxxtypes.StdDelta

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.wxxtypes.StdDelta

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdArchive

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.engine: Archive will use data binding wx_binding

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.engine: Record generation will be attempted in 'hardware'

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.engine: Using archive interval of 300 seconds (specified by hardware)

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Use LOOP data in hi/low calculations: 1

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdArchive

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdStationRegistry

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: StationRegistry: Registration not requested.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdStationRegistry

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdWunderground

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: Wunderground: Posting not enabled.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWunderground

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdPWSweather

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: PWSweather: Posting not enabled.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdPWSweather

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdCWOP

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: CWOP: Posting not enabled.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdCWOP

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdWOW

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: WOW: Posting not enabled.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWOW

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdWOWBE

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: WOW-BE: Posting not enabled.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdWOWBE

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.restx.StdAWEKAS

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.restx: AWEKAS: Posting not enabled.

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.restx.StdAWEKAS

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdPrint

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdPrint

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Loading service weewx.engine.StdReport

2026-03-09 18:42:10 weewxd[71736]: INFO weewx.engine: 'pyephem' detected, extended almanac data is available

2026-03-09 18:42:10 weewxd[71736]: DEBUG weewx.engine: Finished loading service weewx.engine.StdReport

2026-03-09 18:42:10 weewxd[71736]: INFO weewxd: Starting up weewx version 5.3.1

2026-03-09 18:42:11 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:42:11 weewxd[71736]: INFO weewx.engine: Clock error is -1.28 seconds (positive is fast)

2026-03-09 18:42:11 weewxd[71736]: INFO weewx.engine: Using binding 'wx_binding' to database 'weewx.sdb'

2026-03-09 18:42:11 weewxd[71736]: INFO weewx.manager: Starting backfill of daily summaries

2026-03-09 18:42:11 weewxd[71736]: INFO weewx.manager: Daily summaries up to date

2026-03-09 18:42:11 weewxd[71736]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-09 18:40:00 CDT (1773099600)

2026-03-09 18:42:11 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:42:11 weewxd[71736]: DEBUG weewx.drivers.vantage: Retrieving 0 page(s); starting index= 0

2026-03-09 18:42:11 weewxd[71736]: INFO weewx.engine: Starting main packet loop.

2026-03-09 18:42:12 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:42:12 weewxd[71736]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:42:12 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:45:15 weewxd[71736]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-09 18:40:00 CDT (1773099600)

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Retrieving 1 page(s); starting index= 3

2026-03-09 18:45:16 weewxd[71736]: INFO weewx.manager: Added record 2026-03-09 18:45:00 CDT (1773099900) to database 'weewx.sdb'

2026-03-09 18:45:16 weewxd[71736]: INFO weewx.manager: Added record 2026-03-09 18:45:00 CDT (1773099900) to daily summary in 'weewx.sdb'

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:30:00 CST (1772332200) less than final timestamp 2026-03-09 18:45:00 CDT (1773099900)

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Running report 'SeasonsReport'

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Found configuration file /tank/www/weewx-data/skins/Seasons/skin.conf for report 'SeasonsReport'

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Unable to set locale 'en': unsupported locale setting. Using default locale instead ('C.UTF-8').

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Running generators for report 'SeasonsReport' in directory '/tank/www/weewx-data/skins/Seasons' with locale 'C.UTF-8'

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.DisplayOptions', 'weewx.cheetahgenerator.Extras', 'weewx.cheetahgenerator.Gettext', 'weewx.cheetahgenerator.JSONHelpers', 'weewx.cheetahgenerator.PlotInfo', 'weewx.cheetahgenerator.SkinInfo', 'weewx.cheetahgenerator.Station', 'weewx.cheetahgenerator.Stats', 'weewx.cheetahgenerator.UnitInfo']

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:45:17 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:45:17 weewxd[71736]: INFO weewx.cheetahgenerator: Generated 8 files for report SeasonsReport in 1.25 seconds

2026-03-09 18:45:17 weewxd[71736]: DEBUG weewx.manager: Daily summary version is 4.0

2026-03-09 18:45:18 weewxd[71736]: INFO weewx.imagegenerator: Generated 12 images for report SeasonsReport in 0.27 seconds

2026-03-09 18:45:18 weewxd[71736]: DEBUG weewx.reportengine: Copied 5 files to /tank/www/weewx-data/public_html

2026-03-09 18:45:18 weewxd[71736]: DEBUG weewx.reportengine: Report 'SmartphoneReport' not enabled. Skipping.

2026-03-09 18:45:18 weewxd[71736]: DEBUG weewx.reportengine: Report 'MobileReport' not enabled. Skipping.

2026-03-09 18:45:18 weewxd[71736]: DEBUG weewx.reportengine: Report 'StandardReport' not enabled. Skipping.

2026-03-09 18:45:18 weewxd[71736]: DEBUG weewx.reportengine: Report 'FTP' not enabled. Skipping.

2026-03-09 18:45:18 weewxd[71736]: DEBUG weewx.reportengine: Report 'RSYNC' not enabled. Skipping.

Vince Skahan

unread,
Mar 9, 2026, 8:33:41 PM (5 hours ago) Mar 9
to weewx-user
Tom - were there Vantage driver changes between 4.10.1 and 5.3.1 associated with catchup from the logger ?


2026-03-09 18:33:29 weewxd[71356]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:33:30 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:35:15 weewxd[71356]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:35:16 weewxd[71356]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 2

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:20:00 CST (1772331600) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:35:18 weewxd[71356]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.


But the new db log looks like the logger is ok perhaps ????



2026-03-09 18:42:11 weewxd[71736]: INFO weewx.engine: Starting main packet loop.

2026-03-09 18:42:12 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:42:12 weewxd[71736]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:42:12 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:45:15 weewxd[71736]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-09 18:40:00 CDT (1773099600)

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Retrieving 1 page(s); starting index= 3

2026-03-09 18:45:16 weewxd[71736]: INFO weewx.manager: Added record 2026-03-09 18:45:00 CDT (1773099900) to database 'weewx.sdb'

2026-03-09 18:45:16 weewxd[71736]: INFO weewx.manager: Added record 2026-03-09 18:45:00 CDT (1773099900) to daily summary in 'weewx.sdb'

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:30:00 CST (1772332200) less than final timestamp 2026-03-09 18:45:00 CDT (1773099900)

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Catch up complete.

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Running reports for latest time in the database.

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Requesting 200 LOOP packets.

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.reportengine: Running report 'SeasonsReport'



Wondering if the path forward is to just use the new db and to dump/restore the old data into it to catch up on the years of old data....

  • run weectl database to update a copy of the old db to the newer extended schema in 5.3.1
  • dump it to a file
  • restore the sqlite3 dump into a copy of the new db
  • rebuild daily summaries in the copy of the new db
  • stop weewx, put the updated new db into place, start weewx



Tom Keffer

unread,
Mar 9, 2026, 8:44:25 PM (5 hours ago) Mar 9
to weewx...@googlegroups.com
Your logger has corrupted data in it.

Log #1 and #2 show the symptoms. For example:

2026-03-09 18:23:01 weewxd[71036]: DEBUG weewx.drivers.vantage: Getting archive packets since 2026-03-08 03:00:00 CDT (1772956800)

2026-03-09 18:23:02 weewxd[71036]: DEBUG weewx.drivers.vantage: Successfully woke up Vantage console

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: Retrieving 513 page(s); starting index= 4

2026-03-09 18:23:04 weewxd[71036]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:05:00 CST (1772330700) less than final timestamp 2026-03-08 03:00:00 CDT (1772956800)



The Davis logger uses a wraparound memory. You ask it for records since the last record you have. It responds by telling you how many pages of new data it has, and then you start downloading them. You detect when you've reached the last record when the timestamp jumps backwards: you're reached the end of the wraparound.


In your case, WeeWX looked for data since 0300, which is the last record in the database. The logger announces that it has 513 pages available, yet when you try to retrieve them, you immediately hit a date way in the past: 2026-02-28 instead of the new record.


Things worked in attempt #3 not because you used a different schema, but because you were downloading from an uncorrupted region in the memory:


2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: Retrieving 1 page(s); starting index= 3

2026-03-09 18:45:16 weewxd[71736]: INFO weewx.manager: Added record 2026-03-09 18:45:00 CDT (1773099900) to database 'weewx.sdb'

2026-03-09 18:45:16 weewxd[71736]: INFO weewx.manager: Added record 2026-03-09 18:45:00 CDT (1773099900) to daily summary in 'weewx.sdb'

2026-03-09 18:45:16 weewxd[71736]: DEBUG weewx.drivers.vantage: DMPAFT complete: page timestamp 2026-02-28 20:30:00 CST (1772332200) less than final timestamp 2026-03-09 18:45:00 CDT (1773099900)


The schema has nothing to do with anything.


The fix is to stop weewx, then follow the Corrupt station memory procedure in the Wiki. This will clear the memory.


Then restart.


-tk



Reply all
Reply to author
Forward
0 new messages