Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Mike Doneske
That fixed the problem Edited skin.conf and told it to copy those 
things always. Format was correct at the next report run.

On Monday, May 4, 2020 at 2:16:45 PM UTC-5, Mike Doneske wrote:
>
> It is set to use the default of running at the archive interval if this is 
> what you mean by report timing. I'll try option 2 to see of that fixes the 
> report format. 
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/2a55ff79-c81a-47a3-879a-2c8fb1765c6b%40googlegroups.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Mike Doneske
It is set to use the default of running at the archive interval if this is 
what you mean by report timing. I'll try option 2 to see of that fixes the 
report format. 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/4d18ef59-5f14-4c87-9220-ba9205e06d5f%40googlegroups.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Tom Keffer
OK. I think I see what's going on. It's a bug in the report engine.

You are using the report timing option, right?

The report engine copies the static files only the first time it runs.
However, the report timing option is kicking in that first time, preventing
the Seasons report from running. So, it misses out in the opportunity to
copy the static files.

Two options until we can fix this:

   - Forgo using the timing option. This will cause the Seasons report to
   run every time. Or, somehow arrange the timing option so that it always
   runs the first time through.
   - Change skin.conf. Move the stuff under "copy_once" to "copy_always".
   This way, they will always get copied, not just the first time. Come to
   think of it, this is probably the bug fix: the performance hit from copying
   these files is tiny.

Issue #535 .

On the other hand, if you are not using the timing option, then I have no
clue what's going on. :-)

-tk

On Mon, May 4, 2020 at 11:08 AM Mike Doneske  wrote:

> latest log attached
>
> On Monday, May 4, 2020 at 12:23:46 PM UTC-5, Tom Keffer wrote:
>>
>> Good. Looks like we've got the debug messages.
>>
>> Not so good is that I forgot to include the format specifiers. Try this
>> version.
>>
>> We'll get there.
>>
>> -tk
>>
>> On Mon, May 4, 2020 at 10:13 AM Mike Doneske  wrote:
>>
>>> New log
>>>
>>> On Monday, May 4, 2020 at 11:21:23 AM UTC-5, Tom Keffer wrote:

 It looks like Centos must be suppressing debug messages. Go into
 /etc/rsyslog.conf. You'll find something that looks like this:

 *.info;   /var/log/messages

 Change it to

 *.debug;   /var/log/messages

 You may have to reboot to have it take affect. Or, at least, restart
 rsyslog:

 *sudo systemctl restart rsyslog*

 Then restart weewx. Hopefully, that will get you the debug messages.


 On Mon, May 4, 2020 at 6:47 AM Mike Doneske  wrote:

> debug = 1 is set. It is always set to 1
>
> On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:
>>
>> Looks like debug is not on. Double check weewx.conf, and make sure
>> you've set
>>
>> debug = 1
>>
>> -tk
>>
>> On Sun, May 3, 2020 at 8:00 PM Mike Doneske 
>> wrote:
>>
>>> Attached is log after installing new reportengine.py in
>>> /usr/shr/weewx/weewx. Was expecting more log output than what I 
>>> received. I
>>> included a directory listing to show the new module was installed.
>>> reportengine.py.orig was the original module prior to moving in the new 
>>> one.
>>>
>>> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:

 Well, you've got me stumped, although I'm sure it's something silly.

 Please replace your copy of reportengine.py with this one. It's
 instrumented to help us understand what's going on. It goes in
 /usr/share/weewx/weewx/reportengine.py.

 Restart weewxd, post the log.

 -tk

 On Sun, May 3, 2020 at 4:27 PM Mike Doneske 
 wrote:

> Skin.conf file
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
> 
> .
>
 --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/eb9445b6-fc2c-433f-bc5b-721575c1283b%40googlegroups.com
> 
> .
>
 --
>>> You received this message because you are subscribed to the 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Mike Doneske
latest log attached

On Monday, May 4, 2020 at 12:23:46 PM UTC-5, Tom Keffer wrote:
>
> Good. Looks like we've got the debug messages.
>
> Not so good is that I forgot to include the format specifiers. Try this 
> version.
>
> We'll get there.
>
> -tk
>
> On Mon, May 4, 2020 at 10:13 AM Mike Doneske  > wrote:
>
>> New log
>>
>> On Monday, May 4, 2020 at 11:21:23 AM UTC-5, Tom Keffer wrote:
>>>
>>> It looks like Centos must be suppressing debug messages. Go into 
>>> /etc/rsyslog.conf. You'll find something that looks like this:
>>>
>>> *.info;   /var/log/messages
>>>
>>> Change it to
>>>
>>> *.debug;   /var/log/messages
>>>
>>> You may have to reboot to have it take affect. Or, at least, restart 
>>> rsyslog:
>>>
>>> *sudo systemctl restart rsyslog*
>>>
>>> Then restart weewx. Hopefully, that will get you the debug messages.
>>>
>>>
>>> On Mon, May 4, 2020 at 6:47 AM Mike Doneske  wrote:
>>>
 debug = 1 is set. It is always set to 1

 On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:
>
> Looks like debug is not on. Double check weewx.conf, and make sure 
> you've set
>
> debug = 1
>
> -tk
>
> On Sun, May 3, 2020 at 8:00 PM Mike Doneske  wrote:
>
>> Attached is log after installing new reportengine.py in 
>> /usr/shr/weewx/weewx. Was expecting more log output than what I 
>> received. I 
>> included a directory listing to show the new module was installed. 
>> reportengine.py.orig was the original module prior to moving in the new 
>> one.
>>
>> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:
>>>
>>> Well, you've got me stumped, although I'm sure it's something silly.
>>>
>>> Please replace your copy of reportengine.py with this one. It's 
>>> instrumented to help us understand what's going on. It goes in 
>>> /usr/share/weewx/weewx/reportengine.py.
>>>
>>> Restart weewxd, post the log.
>>>
>>> -tk
>>>
>>> On Sun, May 3, 2020 at 4:27 PM Mike Doneske  
>>> wrote:
>>>
 Skin.conf file 

 -- 
 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...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
  
 
 .

>>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
 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...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/weewx-user/eb9445b6-fc2c-433f-bc5b-721575c1283b%40googlegroups.com
  
 
 .

>>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/9c5ba820-7a21-42bc-a183-bdf3bdc8eacd%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/5f5d74cd-4862-40c3-b22a-772c605b2848%40googlegroups.com.
May  4 12:58:15 india journal[1776]: weewx[1776] DEBUG weewx.reportengine: 
Report 'SmartphoneReport' not enabled. Skipping.
May  4 12:58:15 india journal[1776]: weewx[1776] DEBUG weewx.reportengine: 
Report 'MobileReport' not enabled. Skipping.
May  4 12:58:15 india journal[1776]: 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Tom Keffer
Good. Looks like we've got the debug messages.

Not so good is that I forgot to include the format specifiers. Try this
version.

We'll get there.

-tk

On Mon, May 4, 2020 at 10:13 AM Mike Doneske  wrote:

> New log
>
> On Monday, May 4, 2020 at 11:21:23 AM UTC-5, Tom Keffer wrote:
>>
>> It looks like Centos must be suppressing debug messages. Go into
>> /etc/rsyslog.conf. You'll find something that looks like this:
>>
>> *.info;   /var/log/messages
>>
>> Change it to
>>
>> *.debug;   /var/log/messages
>>
>> You may have to reboot to have it take affect. Or, at least, restart
>> rsyslog:
>>
>> *sudo systemctl restart rsyslog*
>>
>> Then restart weewx. Hopefully, that will get you the debug messages.
>>
>>
>> On Mon, May 4, 2020 at 6:47 AM Mike Doneske  wrote:
>>
>>> debug = 1 is set. It is always set to 1
>>>
>>> On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:

 Looks like debug is not on. Double check weewx.conf, and make sure
 you've set

 debug = 1

 -tk

 On Sun, May 3, 2020 at 8:00 PM Mike Doneske  wrote:

> Attached is log after installing new reportengine.py in
> /usr/shr/weewx/weewx. Was expecting more log output than what I received. 
> I
> included a directory listing to show the new module was installed.
> reportengine.py.orig was the original module prior to moving in the new 
> one.
>
> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:
>>
>> Well, you've got me stumped, although I'm sure it's something silly.
>>
>> Please replace your copy of reportengine.py with this one. It's
>> instrumented to help us understand what's going on. It goes in
>> /usr/share/weewx/weewx/reportengine.py.
>>
>> Restart weewxd, post the log.
>>
>> -tk
>>
>> On Sun, May 3, 2020 at 4:27 PM Mike Doneske 
>> wrote:
>>
>>> Skin.conf file
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
> 
> .
>
 --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/eb9445b6-fc2c-433f-bc5b-721575c1283b%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/9c5ba820-7a21-42bc-a183-bdf3bdc8eacd%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEBpRag-2eZcEULsay_8VDyqfFyW1KV8dXhrXRtzo1VAHQ%40mail.gmail.com.
#
#Copyright (c) 2009-2020 Tom Keffer 
#
#See the file LICENSE.txt for your full rights.
#
"""Engine for generating reports"""

from __future__ import absolute_import

# System imports:
import datetime
import ftplib
import glob
import logging
import os.path
import socket
import threading
import time
import traceback

# 3rd party imports
from six.moves import zip
import configobj

# WeeWX imports:
import weeutil.config
import weeutil.logger
import weeutil.weeutil
import weewx.defaults
import weewx.manager
from 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Mike Doneske
New log

On Monday, May 4, 2020 at 11:21:23 AM UTC-5, Tom Keffer wrote:
>
> It looks like Centos must be suppressing debug messages. Go into 
> /etc/rsyslog.conf. You'll find something that looks like this:
>
> *.info;   /var/log/messages
>
> Change it to
>
> *.debug;   /var/log/messages
>
> You may have to reboot to have it take affect. Or, at least, restart 
> rsyslog:
>
> *sudo systemctl restart rsyslog*
>
> Then restart weewx. Hopefully, that will get you the debug messages.
>
>
> On Mon, May 4, 2020 at 6:47 AM Mike Doneske  > wrote:
>
>> debug = 1 is set. It is always set to 1
>>
>> On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:
>>>
>>> Looks like debug is not on. Double check weewx.conf, and make sure 
>>> you've set
>>>
>>> debug = 1
>>>
>>> -tk
>>>
>>> On Sun, May 3, 2020 at 8:00 PM Mike Doneske  wrote:
>>>
 Attached is log after installing new reportengine.py in 
 /usr/shr/weewx/weewx. Was expecting more log output than what I received. 
 I 
 included a directory listing to show the new module was installed. 
 reportengine.py.orig was the original module prior to moving in the new 
 one.

 On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:
>
> Well, you've got me stumped, although I'm sure it's something silly.
>
> Please replace your copy of reportengine.py with this one. It's 
> instrumented to help us understand what's going on. It goes in 
> /usr/share/weewx/weewx/reportengine.py.
>
> Restart weewxd, post the log.
>
> -tk
>
> On Sun, May 3, 2020 at 4:27 PM Mike Doneske  wrote:
>
>> Skin.conf file 
>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
 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...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
  
 
 .

>>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/eb9445b6-fc2c-433f-bc5b-721575c1283b%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/9c5ba820-7a21-42bc-a183-bdf3bdc8eacd%40googlegroups.com.
May  4 11:59:15 india journal[17711]: weewx[17711] DEBUG weewx.reportengine: 
Report 'MobileReport' not enabled. Skipping.
May  4 11:59:15 india journal[17711]: weewx[17711] DEBUG weewx.reportengine: 
Report 'StandardReport' not enabled. Skipping.
May  4 11:59:15 india journal[17711]: weewx[17711] DEBUG weewx.reportengine: 
Report 'FTP' not enabled. Skipping.
May  4 11:59:15 india journal[17711]: weewx[17711] DEBUG weewx.reportengine: 
Report 'RSYNC' not enabled. Skipping.
May  4 12:02:02 india systemd[1]: Starting SYSV: start and stop the weewx 
weather system...
May  4 12:02:04 india journal[1608]: weewx[1608] INFO __main__: Initializing 
weewx version 4.0.0
May  4 12:02:04 india journal[1608]: weewx[1608] INFO __main__: Using Python 
3.6.8 (default, Apr 16 2020, 01:36:27) #012[GCC 8.3.1 20191121 (Red Hat 
8.3.1-5)]
May  4 12:02:04 india journal[1608]: weewx[1608] INFO __main__: Platform 
Linux-4.18.0-193.10.el8.x86_64-x86_64-with-centos-8.1.1911-Core
May  4 12:02:04 india journal[1608]: weewx[1608] INFO __main__: Locale is 
'en_US.UTF-8'
May  4 12:02:04 india journal[1608]: weewx[1608] INFO __main__: PID file is 
/var/run/weewx.pid
May  4 12:02:04 india weewx[1550]: Starting weewx: [  OK  ]
May  4 12:02:04 india systemd[1]: Started SYSV: start and stop the weewx 
weather system.
May  4 12:02:04 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Tom Keffer
It looks like Centos must be suppressing debug messages. Go into
/etc/rsyslog.conf. You'll find something that looks like this:

*.info;   /var/log/messages

Change it to

*.debug;   /var/log/messages

You may have to reboot to have it take affect. Or, at least, restart
rsyslog:

*sudo systemctl restart rsyslog*

Then restart weewx. Hopefully, that will get you the debug messages.


On Mon, May 4, 2020 at 6:47 AM Mike Doneske  wrote:

> debug = 1 is set. It is always set to 1
>
> On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:
>>
>> Looks like debug is not on. Double check weewx.conf, and make sure you've
>> set
>>
>> debug = 1
>>
>> -tk
>>
>> On Sun, May 3, 2020 at 8:00 PM Mike Doneske  wrote:
>>
>>> Attached is log after installing new reportengine.py in
>>> /usr/shr/weewx/weewx. Was expecting more log output than what I received. I
>>> included a directory listing to show the new module was installed.
>>> reportengine.py.orig was the original module prior to moving in the new one.
>>>
>>> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:

 Well, you've got me stumped, although I'm sure it's something silly.

 Please replace your copy of reportengine.py with this one. It's
 instrumented to help us understand what's going on. It goes in
 /usr/share/weewx/weewx/reportengine.py.

 Restart weewxd, post the log.

 -tk

 On Sun, May 3, 2020 at 4:27 PM Mike Doneske  wrote:

> Skin.conf file
>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
> 
> .
>
 --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/eb9445b6-fc2c-433f-bc5b-721575c1283b%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEDNJROkU08K_QvR8hJ7P3E28KFGfcG3P%2B7RazF506mCYw%40mail.gmail.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Mike Doneske
One question: How is WEEWX_BINDIR passed to the daemon? I see where it is 
set but not passed to the daemon in the startup script. Is it passed as 
part of the start up environment? How is weewx daemon finding those modules 
in /usr/share/weewx/weewx? If debug is set to "1", it might be useful to 
print out the weewx used environment variables and debug value just to 
verify that everything is set as expected.  

On Monday, May 4, 2020 at 8:47:06 AM UTC-5, Mike Doneske wrote:
>
> debug = 1 is set. It is always set to 1
>
> On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:
>>
>> Looks like debug is not on. Double check weewx.conf, and make sure you've 
>> set
>>
>> debug = 1
>>
>> -tk
>>
>> On Sun, May 3, 2020 at 8:00 PM Mike Doneske  wrote:
>>
>>> Attached is log after installing new reportengine.py in 
>>> /usr/shr/weewx/weewx. Was expecting more log output than what I received. I 
>>> included a directory listing to show the new module was installed. 
>>> reportengine.py.orig was the original module prior to moving in the new one.
>>>
>>> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:

 Well, you've got me stumped, although I'm sure it's something silly.

 Please replace your copy of reportengine.py with this one. It's 
 instrumented to help us understand what's going on. It goes in 
 /usr/share/weewx/weewx/reportengine.py.

 Restart weewxd, post the log.

 -tk

 On Sun, May 3, 2020 at 4:27 PM Mike Doneske  wrote:

> Skin.conf file 
>
> -- 
> 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...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
>  
> 
> .
>
 -- 
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/0730f99e-b44c-40a9-9a9d-f14f2b385e7f%40googlegroups.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Mike Doneske
debug = 1 is set. It is always set to 1

On Monday, May 4, 2020 at 7:14:18 AM UTC-5, Tom Keffer wrote:
>
> Looks like debug is not on. Double check weewx.conf, and make sure you've 
> set
>
> debug = 1
>
> -tk
>
> On Sun, May 3, 2020 at 8:00 PM Mike Doneske  > wrote:
>
>> Attached is log after installing new reportengine.py in 
>> /usr/shr/weewx/weewx. Was expecting more log output than what I received. I 
>> included a directory listing to show the new module was installed. 
>> reportengine.py.orig was the original module prior to moving in the new one.
>>
>> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:
>>>
>>> Well, you've got me stumped, although I'm sure it's something silly.
>>>
>>> Please replace your copy of reportengine.py with this one. It's 
>>> instrumented to help us understand what's going on. It goes in 
>>> /usr/share/weewx/weewx/reportengine.py.
>>>
>>> Restart weewxd, post the log.
>>>
>>> -tk
>>>
>>> On Sun, May 3, 2020 at 4:27 PM Mike Doneske  wrote:
>>>
 Skin.conf file 

 -- 
 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...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
  
 
 .

>>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/eb9445b6-fc2c-433f-bc5b-721575c1283b%40googlegroups.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-04 Thread Tom Keffer
Looks like debug is not on. Double check weewx.conf, and make sure you've
set

debug = 1

-tk

On Sun, May 3, 2020 at 8:00 PM Mike Doneske  wrote:

> Attached is log after installing new reportengine.py in
> /usr/shr/weewx/weewx. Was expecting more log output than what I received. I
> included a directory listing to show the new module was installed.
> reportengine.py.orig was the original module prior to moving in the new one.
>
> On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:
>>
>> Well, you've got me stumped, although I'm sure it's something silly.
>>
>> Please replace your copy of reportengine.py with this one. It's
>> instrumented to help us understand what's going on. It goes in
>> /usr/share/weewx/weewx/reportengine.py.
>>
>> Restart weewxd, post the log.
>>
>> -tk
>>
>> On Sun, May 3, 2020 at 4:27 PM Mike Doneske  wrote:
>>
>>> Skin.conf file
>>>
>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEDn2rBRtJN63bFujaiWx3%3DgwwyoQ2skQD1XS1RT1Hgtwg%40mail.gmail.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
Attached is log after installing new reportengine.py in 
/usr/shr/weewx/weewx. Was expecting more log output than what I received. I 
included a directory listing to show the new module was installed. 
reportengine.py.orig was the original module prior to moving in the new one.

On Sunday, May 3, 2020 at 7:17:17 PM UTC-5, Tom Keffer wrote:
>
> Well, you've got me stumped, although I'm sure it's something silly.
>
> Please replace your copy of reportengine.py with this one. It's 
> instrumented to help us understand what's going on. It goes in 
> /usr/share/weewx/weewx/reportengine.py.
>
> Restart weewxd, post the log.
>
> -tk
>
> On Sun, May 3, 2020 at 4:27 PM Mike Doneske  > wrote:
>
>> Skin.conf file 
>>
>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/a438f619-b50f-47ac-be30-4f4284f8890a%40googlegroups.com.
May  3 21:40:15 india journal[10840]: weewx[10840] INFO weewx.cheetahgenerator: 
Generated 8 files for report SeasonsReport in 0.59 seconds
May  3 21:40:16 india journal[10840]: weewx[10840] INFO weewx.imagegenerator: 
Generated 15 images for report SeasonsReport in 0.59 seconds
May  3 21:40:16 india journal[10840]: weewx[10840] INFO weewx.reportengine: 
Copied 0 files to /var/www/html/weewx
May  3 21:41:15 india journal[10840]: weewx[10840] INFO weewx.manager: Added 
record 2020-05-03 21:41:00 CDT (1588560060) to database 'weewx.sdb'
May  3 21:41:15 india journal[10840]: weewx[10840] INFO weewx.manager: Added 
record 2020-05-03 21:41:00 CDT (1588560060) to daily summary in 'weewx.sdb'
May  3 21:42:15 india journal[10840]: weewx[10840] INFO weewx.manager: Added 
record 2020-05-03 21:42:00 CDT (1588560120) to database 'weewx.sdb'
May  3 21:42:15 india journal[10840]: weewx[10840] INFO weewx.manager: Added 
record 2020-05-03 21:42:00 CDT (1588560120) to daily summary in 'weewx.sdb'
May  3 21:43:02 india systemd[1]: Stopping SYSV: start and stop the weewx 
weather system...
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: Received 
signal TERM (15).
May  3 21:43:02 india journal[10840]: weewx[10840] INFO weewx.engine: Main loop 
exiting. Shutting engine down.
May  3 21:43:02 india journal[10840]: weewx[10840] INFO weewx.engine: Shutting 
down StdReport thread
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: Terminating 
weewx version 4.0.0
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
Traceback (most recent call last):
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/share/weewx/weewxd", line 154, in main
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
engine.run()
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/share/weewx/weewx/engine.py", line 188, in run
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
for packet in self.console.genLoopPackets():
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 532, in genLoopPackets
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
for _loop_packet in self.genDavisLoopPackets(200):
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 559, in 
genDavisLoopPackets
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
loop_packet = self._get_packet()
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 572, in _get_packet
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
_buffer = self.port.read(99)
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 279, in read
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__:   
_buffer = self.serial_port.read(chars)
May  3 21:43:02 india journal[10840]: weewx[10840] INFO __main__: 
File "/usr/lib/python3.6/site-packages/serial/serialposix.py", line 450, in read
May  3 21:43:02 india 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Tom Keffer
Well, you've got me stumped, although I'm sure it's something silly.

Please replace your copy of reportengine.py with this one. It's
instrumented to help us understand what's going on. It goes in
/usr/share/weewx/weewx/reportengine.py.

Restart weewxd, post the log.

-tk

On Sun, May 3, 2020 at 4:27 PM Mike Doneske  wrote:

> Skin.conf file
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEDDcph%2Bm%2BFcTp%2B-CbhaFCY5ZuiWOhC7v8tPOiFR6_QAWQ%40mail.gmail.com.
#
#Copyright (c) 2009-2020 Tom Keffer 
#
#See the file LICENSE.txt for your full rights.
#
"""Engine for generating reports"""

from __future__ import absolute_import

# System imports:
import datetime
import ftplib
import glob
import logging
import os.path
import socket
import threading
import time
import traceback

# 3rd party imports
from six.moves import zip
import configobj

# WeeWX imports:
import weeutil.config
import weeutil.logger
import weeutil.weeutil
import weewx.defaults
import weewx.manager
from weeutil.weeutil import to_bool

log = logging.getLogger(__name__)

# spans of valid values for each CRON like field
MINUTES = (0, 59)
HOURS = (0, 23)
DOM = (1, 31)
MONTHS = (1, 12)
DOW = (0, 6)
# valid day names for DOW field
DAY_NAMES = ('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat')
# valid month names for month field
MONTH_NAMES = ('jan', 'feb', 'mar', 'apr', 'may', 'jun',
   'jul', 'aug', 'sep', 'oct', 'nov', 'dec')
# map month names to month number
MONTH_NAME_MAP = list(zip(('jan', 'feb', 'mar', 'apr',
   'may', 'jun', 'jul', 'aug',
   'sep', 'oct', 'nov', 'dec'), list(range(1, 13
# map day names to day number
DAY_NAME_MAP = list(zip(('sun', 'mon', 'tue', 'wed',
 'thu', 'fri', 'sat'), list(range(7
# map CRON like nicknames to equivalent CRON like line
NICKNAME_MAP = {
"@yearly": "0 0 1 1 *",
"@anually": "0 0 1 1 *",
"@monthly": "0 0 1 * *",
"@weekly": "0 0 * * 0",
"@daily": "0 0 * * *",
"@hourly": "0 * * * *"
}
# list of valid spans for CRON like fields
SPANS = (MINUTES, HOURS, DOM, MONTHS, DOW)
# list of valid names for CRON lik efields
NAMES = ((), (), (), MONTH_NAMES, DAY_NAMES)
# list of name maps for CRON like fields
MAPS = ((), (), (), MONTH_NAME_MAP, DAY_NAME_MAP)


# =
#Class StdReportEngine
# =

class StdReportEngine(threading.Thread):
"""Reporting engine for weewx.

This engine runs zero or more reports. Each report uses a skin. A skin
has its own configuration file specifying things such as which 'generators'
should be run, which templates are to be used, what units are to be used,
etc..
A 'generator' is a class inheriting from class ReportGenerator, that
produces the parts of the report, such as image plots, HTML files.

StdReportEngine inherits from threading.Thread, so it will be run in a
separate thread.

See below for examples of generators.
"""

def __init__(self, config_dict, stn_info, record=None, gen_ts=None, first_run=True):
"""Initializer for the report engine.

config_dict: The configuration dictionary.

stn_info: An instance of weewx.station.StationInfo, with static
  station information.

record: The current archive record [Optional; default is None]

gen_ts: The timestamp for which the output is to be current
[Optional; default is the last time in the database]

first_run: True if this is the first time the report engine has been
run.  If this is the case, then any 'one time' events should be done.
"""
threading.Thread.__init__(self, name="ReportThread")

self.config_dict = config_dict
self.stn_info = stn_info
self.record = record
self.gen_ts = gen_ts
self.first_run = first_run

def run(self):
"""This is where the actual work gets done.

Runs through the list of reports. """

if self.gen_ts:
log.debug("Running reports for 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
Skin.conf file 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/4a18cc78-bfe4-4033-a742-baa652ff7fcd%40googlegroups.com.
###
# SEASONS SKIN CONFIGURATION FILE #
# Copyright (c) 2018 Tom Keffer  and Matthew Wall  #
# See the file LICENSE.txt for your rights.   #
###

###

# The following section is for any extra tags that you want to be available in
# the templates

[Extras]

# This radar image would be available as $Extras.radar_img
#radar_img = http://radar.weather.gov/ridge/lite/N0R/RTX_loop.gif
# This URL will be used as the image hyperlink:
#radar_url = 
http://radar.weather.gov/ridge/radar.php?product=NCR=RTX=yes

# Similar to radar, but for satellite image.
#satellite_img = 
http://images.intellicast.com/WxImages/SatelliteLoop/hipacsat_None_anim.gif
#satellite_url = 
http://images.intellicast.com/WxImages/SatelliteLoop/hipacsat_None_anim.gif

# To display a map, enter an API key for google maps
#google_maps_apikey = xxx

# If you have a Google Analytics ID, uncomment and edit the next line, and
# the analytics code will be included in your generated HTML files:
#googleAnalyticsId = UA-12345678-1

###

[Labels]

# Override some labels. No need to identify these as a "Battery"
# or "Voltage", because that is included in the template.
[[Generic]]
txBatteryStatus  = Transmitter
windBatteryStatus= Wind
rainBatteryStatus= Rain
outTempBatteryStatus = Outside Temperature
inTempBatteryStatus  = Inside Temperature
consBatteryVoltage   = Console
heatingVoltage   = Heating
supplyVoltage= Supply
referenceVoltage = Reference

# Some specialized labels
rain_today   = Rain Today
wind = Wind


###

# The CheetahGenerator creates files from templates.  This section
# specifies which files will be generated from which template.

[CheetahGenerator]

# Possible encodings are 'html_entities', 'utf8', or 'strict_ascii'
encoding = html_entities

[[SummaryByMonth]]
# Reports that summarize "by month"
[[[NOAA_month]]]
encoding = strict_ascii
template = NOAA/NOAA-%Y-%m.txt.tmpl

[[SummaryByYear]]
# Reports that summarize "by year"
[[[NOAA_year]]]
encoding = strict_ascii
template = NOAA/NOAA-%Y.txt.tmpl

[[ToDate]]
# Reports that show statistics "to date", such as day-to-date,
# week-to-date, month-to-date, etc.
[[[index]]]
template = index.html.tmpl
[[[statistics]]]
template = statistics.html.tmpl
[[[telemetry]]]
template = telemetry.html.tmpl
[[[tabular]]]
template = tabular.html.tmpl
[[[celestial]]]
template = celestial.html.tmpl
# Uncomment the following to generate a celestial page only once
# an hour instead of every report cycle.
# stale_age = 3600
[[[RSS]]]
template = rss.xml.tmpl

###

# The CopyGenerator copies files from one location to another.

[CopyGenerator]

# List of files to be copied only the first time the generator runs
copy_once = seasons.css, seasons.js, favicon.ico, font/*.woff, font/*.woff2

# List of files to be copied each time the generator runs
# copy_always = 


###

# The ImageGenerator creates image plots of data.

[ImageGenerator]

# This section lists all the images to be generated, what SQL types are to
# be included in them, along with many plotting options. There is a default
# for almost everything. Nevertheless, values for most options are included
# to make it easy to see and understand the options.
#
# Fonts can be anything accepted by the Python Imaging Library (PIL), which
# includes truetype (.ttf), or PIL's own font format (.pil). See
# http://www.pythonware.com/library/pil/handbook/imagefont.htm for more
# details.  Note that "font size" is only used with truetype 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Tom Keffer
>From your directory listing, it looks like the static files are there but,
for some reason, are not getting copied over.

Could you post the skin configuration file,
/etc/weewx/skins/Seasons/skin.conf. It should not have any confidential
information in it.

-tk

On Sun, May 3, 2020 at 4:04 PM Mike Doneske  wrote:

> Also added ls -l output for /etc/weewx/skins/Seasons
>
> On Sunday, May 3, 2020 at 5:59:43 PM UTC-5, Mike Doneske wrote:
>>
>> Attached is the log after a restart and debug=1.
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/01d1abf2-c874-4f99-a5c4-f44bc23cd5c8%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEBbKXV9jbXnVycguLuP%3DRa17R3tNyPBzhTqHQo8jOOzKw%40mail.gmail.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
Also added ls -l output for /etc/weewx/skins/Seasons

On Sunday, May 3, 2020 at 5:59:43 PM UTC-5, Mike Doneske wrote:
>
> Attached is the log after a restart and debug=1. 
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/01d1abf2-c874-4f99-a5c4-f44bc23cd5c8%40googlegroups.com.


dirout
Description: Binary data


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
Attached is the log after a restart and debug=1. 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/eb773abd-a631-4067-9da9-140a395c6b7f%40googlegroups.com.
May  3 17:37:16 india journal[26104]: weewx[26104] INFO weewx.manager: Added 
record 2020-05-03 17:37:00 CDT (1588545420) to daily summary in 'weewx.sdb'
May  3 17:37:21 india systemd[1]: Stopping SYSV: start and stop the weewx 
weather system...
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: Received 
signal TERM (15).
May  3 17:37:21 india journal[26104]: weewx[26104] INFO weewx.engine: Main loop 
exiting. Shutting engine down.
May  3 17:37:21 india journal[26104]: weewx[26104] INFO weewx.engine: Shutting 
down StdReport thread
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: Terminating 
weewx version 4.0.0
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
Traceback (most recent call last):
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewxd", line 154, in main
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
engine.run()
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewx/engine.py", line 188, in run
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
for packet in self.console.genLoopPackets():
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 532, in genLoopPackets
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
for _loop_packet in self.genDavisLoopPackets(200):
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 559, in 
genDavisLoopPackets
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
loop_packet = self._get_packet()
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 572, in _get_packet
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
_buffer = self.port.read(99)
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewx/drivers/vantage.py", line 279, in read
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
_buffer = self.serial_port.read(chars)
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/lib/python3.6/site-packages/serial/serialposix.py", line 450, in read
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
ready, _, _ = select.select([self.fd, self.pipe_abort_read_r], [], [], timeout)
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__: 
File "/usr/share/weewx/weewxd", line 257, in sigTERMhandler
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
raise Terminate
May  3 17:37:21 india journal[26104]: weewx[26104] INFO __main__:   
Terminate
May  3 17:37:21 india weewx[10804]: Shutting down weewx: [  OK  ]
May  3 17:37:21 india systemd[1]: Stopped SYSV: start and stop the weewx 
weather system.
May  3 17:37:29 india systemd[1]: Starting SYSV: start and stop the weewx 
weather system...
May  3 17:37:30 india journal[10836]: weewx[10836] INFO __main__: Initializing 
weewx version 4.0.0
May  3 17:37:30 india journal[10836]: weewx[10836] INFO __main__: Using Python 
3.6.8 (default, Nov 21 2019, 19:31:34) #012[GCC 8.3.1 20190507 (Red Hat 
8.3.1-4)]
May  3 17:37:30 india journal[10836]: weewx[10836] INFO __main__: Platform 
Linux-4.18.0-151.el8.x86_64-x86_64-with-centos-8.1.1911-Core
May  3 17:37:30 india journal[10836]: weewx[10836] INFO __main__: Locale is 
'en_US.UTF-8'
May  3 17:37:30 india journal[10836]: weewx[10836] INFO __main__: PID file is 
/var/run/weewx.pid
May  3 17:37:30 india journal[10840]: weewx[10840] INFO __main__: Using 
configuration file /etc/weewx/weewx.conf
May  3 17:37:30 india journal[10840]: weewx[10840] INFO weewx.engine: Loading 
station type Vantage (weewx.drivers.vantage)
May  3 17:37:30 india weewx[10827]: Starting weewx: [  OK  ]
May  3 17:37:30 india systemd[1]: Started SYSV: start and stop the weewx 
weather system.
May  3 17:37:30 india journal[10840]: weewx[10840] INFO weewx.engine: 
StdConvert target unit is 0x1
May  3 17:37:30 india journal[10840]: weewx[10840] INFO weewx.wxservices: The 
following values will be calculated: pressure=prefer_hardware, 
barometer=prefer_hardware, altimeter=prefer_hardware, 
windchill=prefer_hardware, heatindex=prefer_hardware, 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Tom Keffer
That's it? That's definitely caused by a missing CSS file. Looks like the
javascript seasons.js file is missing too.

We need the log. Set debug=1, restart weewx, post the log from the startup
through the first reporting cycle.

On Sun, May 3, 2020 at 3:08 PM Mike Doneske  wrote:

> Nothing was changed or modified after install. No local customizations
> except for what's in the weewx.conf. I was able to open a port on the
> router to get to the weewx weather screen (easier than the old equipment).
> Try to connect to 136.244.14.125/weewx. This is a test platform.
>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/a67770d2-39d0-41db-b32c-51f7c0a3ef80%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zECnwH2BLvycPvwH6MXE47vP%3DvMsQ9QcucvBBf4HZRm2Dg%40mail.gmail.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
Nothing was changed or modified after install. No local customizations 
except for what's in the weewx.conf. I was able to open a port on the 
router to get to the weewx weather screen (easier than the old equipment). 
Try to connect to 136.244.14.125/weewx. This is a test platform.

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/a67770d2-39d0-41db-b32c-51f7c0a3ef80%40googlegroups.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Tom Keffer
On program startup, weewx copies over all static files: javascript (.js)
files, CSS files, and icons. So, you've got fresh copies if you've
restarted weewx.

Most likely this is a CSS problem. Have you changed anything in
skins/Seasons?

-tk



On Sun, May 3, 2020 at 2:29 PM Mike Doneske  wrote:

> I don't have a public available website. Changed over to a fiber internet
> connection and had to update most of the equipment to take advantage of the
> speed then had routing challenges that caused a re-configuration of routing
> from their equipment to mine. I can probalby set something up temporarily
> for testing. Will take a day or so I imagine. Is it possible to completely
> empty the /etc/weewx/skins/Seasons directory and let weewx rebuild the css
> files? I'm not sure what is put in that directory by the installer and what
> is built at startup.
>
> On Sunday, May 3, 2020 at 10:48:09 AM UTC-5, Tom Keffer wrote:
>>
>> That looks pretty normal but then, of course, it all depends what's in
>> the CSS files!
>>
>> No publicly available website?
>>
>> On Sun, May 3, 2020 at 8:10 AM Mike Doneske  wrote:
>>
>>> Here is the index.html file from /var/www/html/weewx:
>>>
>>>
>>>
>>> On Saturday, May 2, 2020 at 1:21:14 PM UTC-5, Tom Keffer wrote:

 OK.

 HTML pages look as expected for me when using Firefox. Can you post an
 HTML file that does this? Or, give an URL to one?

 -tk

 On Sat, May 2, 2020 at 11:17 AM Mike Doneske  wrote:

> This was a new install on an OS that never had WeeWx installed. Only
> files copied from old machine was weewx.sdb and weewx.conf
>
> On Friday, May 1, 2020 at 5:03:57 PM UTC-5, Tom Keffer wrote:
>>
>> Skins are not touched by an upgrade, so what you're looking at is
>> your old skin.
>>
>> On Fri, May 1, 2020 at 1:46 PM Mike Doneske 
>> wrote:
>>
>>> Followed new installation instructions and everything worked as
>>> expected. Only issue identified so far is default index.html doesn't
>>> display as before on Fire fox. Graphs have all moved to the bottom of 
>>> the
>>> display and a lot of white space to the right of the text at the top.
>>>
>>> On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:



 On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>
> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske
> wrote:
>>
>> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske
>> wrote:
>>
>>> Trying to install weewx on Centos 8 following the instructions
>>> in the compatibility matrix. I'm trying to install the b18 version 
>>> Python3.
>>> All works OK until I get to the *dnf install weewx* step. I get
>>> a message: *no match for argument weewx* I'm using
>>> epel-release-8-8.el8.noarch. Did I miss a step? Am I using the 
>>> right r
>>>
>>
>>
>>
> If you can hold out for a day or two (hopefully max), Matthew is
> 'really' close to releasing the rpms for weewx v4 and associated 
> procedure.
>
> I've tested it on a centos8 vm and the procedure works great.   So
> if you can hang tight for a 'little' bit then it'll be very very
> straightforward...
>

 It's a new install so I can hold off for a bit... Thanks for the
 reply

>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/5f00b3ca-2e42-4da7-9da0-bd6f9ef1c56a%40googlegroups.com
> 
> .
>
 --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
I don't have a public available website. Changed over to a fiber internet 
connection and had to update most of the equipment to take advantage of the 
speed then had routing challenges that caused a re-configuration of routing 
from their equipment to mine. I can probalby set something up temporarily 
for testing. Will take a day or so I imagine. Is it possible to completely 
empty the /etc/weewx/skins/Seasons directory and let weewx rebuild the css 
files? I'm not sure what is put in that directory by the installer and what 
is built at startup.

On Sunday, May 3, 2020 at 10:48:09 AM UTC-5, Tom Keffer wrote:
>
> That looks pretty normal but then, of course, it all depends what's in the 
> CSS files!
>
> No publicly available website?
>
> On Sun, May 3, 2020 at 8:10 AM Mike Doneske  > wrote:
>
>> Here is the index.html file from /var/www/html/weewx:
>>
>>
>>
>> On Saturday, May 2, 2020 at 1:21:14 PM UTC-5, Tom Keffer wrote:
>>>
>>> OK. 
>>>
>>> HTML pages look as expected for me when using Firefox. Can you post an 
>>> HTML file that does this? Or, give an URL to one?
>>>
>>> -tk
>>>
>>> On Sat, May 2, 2020 at 11:17 AM Mike Doneske  wrote:
>>>
 This was a new install on an OS that never had WeeWx installed. Only 
 files copied from old machine was weewx.sdb and weewx.conf

 On Friday, May 1, 2020 at 5:03:57 PM UTC-5, Tom Keffer wrote:
>
> Skins are not touched by an upgrade, so what you're looking at is your 
> old skin.
>
> On Fri, May 1, 2020 at 1:46 PM Mike Doneske  wrote:
>
>> Followed new installation instructions and everything worked as 
>> expected. Only issue identified so far is default index.html doesn't 
>> display as before on Fire fox. Graphs have all moved to the bottom of 
>> the 
>> display and a lot of white space to the right of the text at the top.
>>
>> On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:
>>>
>>>
>>>
>>> On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:

 On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske 
 wrote:
>
> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske 
> wrote:
>
>> Trying to install weewx on Centos 8 following the instructions in 
>> the compatibility matrix. I'm trying to install the b18 version 
>> Python3. 
>> All works OK until I get to the *dnf install weewx* step. I get 
>> a message: *no match for argument weewx* I'm using 
>> epel-release-8-8.el8.noarch. Did I miss a step? Am I using the right 
>> r
>>
>
>
>
 If you can hold out for a day or two (hopefully max), Matthew is 
 'really' close to releasing the rpms for weewx v4 and associated 
 procedure.

 I've tested it on a centos8 vm and the procedure works great.   So 
 if you can hang tight for a 'little' bit then it'll be very very 
 straightforward... 

>>>
>>> It's a new install so I can hold off for a bit... Thanks for the 
>>> reply 
>>>
>> -- 
>> 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...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
>>  
>> 
>> .
>>
> -- 
 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...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/weewx-user/5f00b3ca-2e42-4da7-9da0-bd6f9ef1c56a%40googlegroups.com
  
 
 .

>>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/3baf50ee-9683-4103-bed7-4e055c78d85f%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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 

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Tom Keffer
That looks pretty normal but then, of course, it all depends what's in the
CSS files!

No publicly available website?

On Sun, May 3, 2020 at 8:10 AM Mike Doneske  wrote:

> Here is the index.html file from /var/www/html/weewx:
>
>
>
> On Saturday, May 2, 2020 at 1:21:14 PM UTC-5, Tom Keffer wrote:
>>
>> OK.
>>
>> HTML pages look as expected for me when using Firefox. Can you post an
>> HTML file that does this? Or, give an URL to one?
>>
>> -tk
>>
>> On Sat, May 2, 2020 at 11:17 AM Mike Doneske  wrote:
>>
>>> This was a new install on an OS that never had WeeWx installed. Only
>>> files copied from old machine was weewx.sdb and weewx.conf
>>>
>>> On Friday, May 1, 2020 at 5:03:57 PM UTC-5, Tom Keffer wrote:

 Skins are not touched by an upgrade, so what you're looking at is your
 old skin.

 On Fri, May 1, 2020 at 1:46 PM Mike Doneske  wrote:

> Followed new installation instructions and everything worked as
> expected. Only issue identified so far is default index.html doesn't
> display as before on Fire fox. Graphs have all moved to the bottom of the
> display and a lot of white space to the right of the text at the top.
>
> On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:
>>
>>
>>
>> On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>>>
>>> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske
>>> wrote:

 On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske
 wrote:

> Trying to install weewx on Centos 8 following the instructions in
> the compatibility matrix. I'm trying to install the b18 version 
> Python3.
> All works OK until I get to the *dnf install weewx* step. I get a
> message: *no match for argument weewx* I'm using
> epel-release-8-8.el8.noarch. Did I miss a step? Am I using the right r
>



>>> If you can hold out for a day or two (hopefully max), Matthew is
>>> 'really' close to releasing the rpms for weewx v4 and associated 
>>> procedure.
>>>
>>> I've tested it on a centos8 vm and the procedure works great.   So
>>> if you can hang tight for a 'little' bit then it'll be very very
>>> straightforward...
>>>
>>
>> It's a new install so I can hold off for a bit... Thanks for the
>> reply
>>
> --
> 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...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
> 
> .
>
 --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/5f00b3ca-2e42-4da7-9da0-bd6f9ef1c56a%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/3baf50ee-9683-4103-bed7-4e055c78d85f%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEB%2BtdT%2B%3DUTay9aUMegKMAkgo1MQ1q1VhPuStT5_c5j38A%40mail.gmail.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-03 Thread Mike Doneske
Here is the index.html file from /var/www/html/weewx:



On Saturday, May 2, 2020 at 1:21:14 PM UTC-5, Tom Keffer wrote:
>
> OK. 
>
> HTML pages look as expected for me when using Firefox. Can you post an 
> HTML file that does this? Or, give an URL to one?
>
> -tk
>
> On Sat, May 2, 2020 at 11:17 AM Mike Doneske  > wrote:
>
>> This was a new install on an OS that never had WeeWx installed. Only 
>> files copied from old machine was weewx.sdb and weewx.conf
>>
>> On Friday, May 1, 2020 at 5:03:57 PM UTC-5, Tom Keffer wrote:
>>>
>>> Skins are not touched by an upgrade, so what you're looking at is your 
>>> old skin.
>>>
>>> On Fri, May 1, 2020 at 1:46 PM Mike Doneske  wrote:
>>>
 Followed new installation instructions and everything worked as 
 expected. Only issue identified so far is default index.html doesn't 
 display as before on Fire fox. Graphs have all moved to the bottom of the 
 display and a lot of white space to the right of the text at the top.

 On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:
>
>
>
> On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>>
>> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:
>>>
>>> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>>>
 Trying to install weewx on Centos 8 following the instructions in 
 the compatibility matrix. I'm trying to install the b18 version 
 Python3. 
 All works OK until I get to the *dnf install weewx* step. I get a 
 message: *no match for argument weewx* I'm using 
 epel-release-8-8.el8.noarch. Did I miss a step? Am I using the right r

>>>
>>>
>>>
>> If you can hold out for a day or two (hopefully max), Matthew is 
>> 'really' close to releasing the rpms for weewx v4 and associated 
>> procedure.
>>
>> I've tested it on a centos8 vm and the procedure works great.   So if 
>> you can hang tight for a 'little' bit then it'll be very very 
>> straightforward... 
>>
>
> It's a new install so I can hold off for a bit... Thanks for the reply 
>
 -- 
 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...@googlegroups.com.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
  
 
 .

>>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/5f00b3ca-2e42-4da7-9da0-bd6f9ef1c56a%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/3baf50ee-9683-4103-bed7-4e055c78d85f%40googlegroups.com.
Title: Grand Harbor Section 4


  

  


  
Grand Harbor Section 4
05/03/2020 10:05:00 AM
  
  RSS
  
Monthly Reports:

  2014-07
  2014-08
  2014-09
  2014-10
  2014-11
  2014-12
  2015-01
  2015-02
  2015-03
  2015-04
  2015-05
  2015-06
  2015-07
  2015-08
  2015-09
  2015-10
  2015-11
  2015-12
  2016-01
  2016-02
  2016-03
  2016-04
  2016-05
  2016-06
  2016-07
  2016-08
  2016-09
  2016-10
  2016-11
  2016-12
  2017-01
  2017-02
  2017-03
  2017-04
  2017-05
  2017-06
  2017-07
  2017-08
  2017-09
  2017-10
  2017-11
  2017-12
  2018-01
  2018-02
  2018-03
  2018-04
  2018-05
  2018-06
  2018-07
  2018-08
  2018-09
  2018-10
  2018-11
  2018-12
  2019-01
  2019-02
  2019-03
  2019-04
  2019-05
  2019-06
  2019-07
  2019-08
  2019-09
  2019-10
  2019-11
  2019-12
  2020-01
  2020-02
  2020-03
  2020-04
  2020-05
  - Select Month -


Yearly Reports:

  2014
  2015
  2016
  2017
  2018
  2019
  2020
  - Select Year -


  



  


  
Current Conditions
♦
  

  
  

Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-02 Thread Tom Keffer
OK.

HTML pages look as expected for me when using Firefox. Can you post an HTML
file that does this? Or, give an URL to one?

-tk

On Sat, May 2, 2020 at 11:17 AM Mike Doneske  wrote:

> This was a new install on an OS that never had WeeWx installed. Only files
> copied from old machine was weewx.sdb and weewx.conf
>
> On Friday, May 1, 2020 at 5:03:57 PM UTC-5, Tom Keffer wrote:
>>
>> Skins are not touched by an upgrade, so what you're looking at is your
>> old skin.
>>
>> On Fri, May 1, 2020 at 1:46 PM Mike Doneske  wrote:
>>
>>> Followed new installation instructions and everything worked as
>>> expected. Only issue identified so far is default index.html doesn't
>>> display as before on Fire fox. Graphs have all moved to the bottom of the
>>> display and a lot of white space to the right of the text at the top.
>>>
>>> On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:



 On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>
> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:
>>
>> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>>
>>> Trying to install weewx on Centos 8 following the instructions in
>>> the compatibility matrix. I'm trying to install the b18 version Python3.
>>> All works OK until I get to the *dnf install weewx* step. I get a
>>> message: *no match for argument weewx* I'm using
>>> epel-release-8-8.el8.noarch. Did I miss a step? Am I using the right r
>>>
>>
>>
>>
> If you can hold out for a day or two (hopefully max), Matthew is
> 'really' close to releasing the rpms for weewx v4 and associated 
> procedure.
>
> I've tested it on a centos8 vm and the procedure works great.   So if
> you can hang tight for a 'little' bit then it'll be very very
> straightforward...
>

 It's a new install so I can hold off for a bit... Thanks for the reply

>>> --
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
>>> 
>>> .
>>>
>> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/5f00b3ca-2e42-4da7-9da0-bd6f9ef1c56a%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEDk%2B922ETNb6mrP8bqoK16d1nCmxb2M2vTuuWk659sW4w%40mail.gmail.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-02 Thread Mike Doneske
This was a new install on an OS that never had WeeWx installed. Only files 
copied from old machine was weewx.sdb and weewx.conf

On Friday, May 1, 2020 at 5:03:57 PM UTC-5, Tom Keffer wrote:
>
> Skins are not touched by an upgrade, so what you're looking at is your old 
> skin.
>
> On Fri, May 1, 2020 at 1:46 PM Mike Doneske  > wrote:
>
>> Followed new installation instructions and everything worked as expected. 
>> Only issue identified so far is default index.html doesn't display as 
>> before on Fire fox. Graphs have all moved to the bottom of the display and 
>> a lot of white space to the right of the text at the top.
>>
>> On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:
>>>
>>>
>>>
>>> On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:

 On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:
>
> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>
>> Trying to install weewx on Centos 8 following the instructions in the 
>> compatibility matrix. I'm trying to install the b18 version Python3. All 
>> works OK until I get to the *dnf install weewx* step. I get a 
>> message: *no match for argument weewx* I'm using 
>> epel-release-8-8.el8.noarch. Did I miss a step? Am I using the right r
>>
>
>
>
 If you can hold out for a day or two (hopefully max), Matthew is 
 'really' close to releasing the rpms for weewx v4 and associated procedure.

 I've tested it on a centos8 vm and the procedure works great.   So if 
 you can hang tight for a 'little' bit then it'll be very very 
 straightforward... 

>>>
>>> It's a new install so I can hold off for a bit... Thanks for the reply 
>>>
>> -- 
>> 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...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
>>  
>> 
>> .
>>
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/5f00b3ca-2e42-4da7-9da0-bd6f9ef1c56a%40googlegroups.com.


Re: [weewx-user] Re: Installing weewx on Centos 8

2020-05-01 Thread Tom Keffer
Skins are not touched by an upgrade, so what you're looking at is your old
skin.

On Fri, May 1, 2020 at 1:46 PM Mike Doneske  wrote:

> Followed new installation instructions and everything worked as expected.
> Only issue identified so far is default index.html doesn't display as
> before on Fire fox. Graphs have all moved to the bottom of the display and
> a lot of white space to the right of the text at the top.
>
> On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:
>>
>>
>>
>> On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>>>
>>> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:

 On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:

> Trying to install weewx on Centos 8 following the instructions in the
> compatibility matrix. I'm trying to install the b18 version Python3. All
> works OK until I get to the *dnf install weewx* step. I get a
> message: *no match for argument weewx* I'm using
> epel-release-8-8.el8.noarch. Did I miss a step? Am I using the right r
>



>>> If you can hold out for a day or two (hopefully max), Matthew is
>>> 'really' close to releasing the rpms for weewx v4 and associated procedure.
>>>
>>> I've tested it on a centos8 vm and the procedure works great.   So if
>>> you can hang tight for a 'little' bit then it'll be very very
>>> straightforward...
>>>
>>
>> It's a new install so I can hold off for a bit... Thanks for the reply
>>
> --
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com
> 
> .
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/CAPq0zEAOLx2OujeqdsPgbn-VuZLLNVBy5zoeq%3DWj4_cgS5_cyQ%40mail.gmail.com.


[weewx-user] Re: Installing weewx on Centos 8

2020-05-01 Thread Mike Doneske
Followed new installation instructions and everything worked as expected. 
Only issue identified so far is default index.html doesn't display as 
before on Fire fox. Graphs have all moved to the bottom of the display and 
a lot of white space to the right of the text at the top.

On Wednesday, April 29, 2020 at 3:19:55 PM UTC-5, Mike Doneske wrote:
>
>
>
> On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>>
>> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:
>>>
>>> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>>>
 Trying to install weewx on Centos 8 following the instructions in the 
 compatibility matrix. I'm trying to install the b18 version Python3. All 
 works OK until I get to the *dnf install weewx* step. I get a message: *no 
 match for argument weewx* I'm using epel-release-8-8.el8.noarch. Did I 
 miss a step? Am I using the right r

>>>
>>>
>>>
>> If you can hold out for a day or two (hopefully max), Matthew is 'really' 
>> close to releasing the rpms for weewx v4 and associated procedure.
>>
>> I've tested it on a centos8 vm and the procedure works great.   So if you 
>> can hang tight for a 'little' bit then it'll be very very 
>> straightforward... 
>>
>
> It's a new install so I can hold off for a bit... Thanks for the reply 
>

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/998cb272-46bd-4599-9b63-d3a259b50512%40googlegroups.com.


[weewx-user] Re: Installing weewx on Centos 8

2020-04-29 Thread Mike Doneske


On Wednesday, April 29, 2020 at 2:57:45 PM UTC-5, vince wrote:
>
> On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:
>>
>> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>>
>>> Trying to install weewx on Centos 8 following the instructions in the 
>>> compatibility matrix. I'm trying to install the b18 version Python3. All 
>>> works OK until I get to the *dnf install weewx* step. I get a message: *no 
>>> match for argument weewx* I'm using epel-release-8-8.el8.noarch. Did I 
>>> miss a step? Am I using the right r
>>>
>>
>>
>>
> If you can hold out for a day or two (hopefully max), Matthew is 'really' 
> close to releasing the rpms for weewx v4 and associated procedure.
>
> I've tested it on a centos8 vm and the procedure works great.   So if you 
> can hang tight for a 'little' bit then it'll be very very 
> straightforward... 
>

It's a new install so I can hold off for a bit... Thanks for the reply 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/29c6ffa1-3fae-4b7d-903a-c6d80a03fa1b%40googlegroups.com.


[weewx-user] Re: Installing weewx on Centos 8

2020-04-29 Thread vince
On Wednesday, April 29, 2020 at 12:02:51 PM UTC-7, Mike Doneske wrote:
>
> On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>
>> Trying to install weewx on Centos 8 following the instructions in the 
>> compatibility matrix. I'm trying to install the b18 version Python3. All 
>> works OK until I get to the *dnf install weewx* step. I get a message: *no 
>> match for argument weewx* I'm using epel-release-8-8.el8.noarch. Did I 
>> miss a step? Am I using the right r
>>
>
>
>
If you can hold out for a day or two (hopefully max), Matthew is 'really' 
close to releasing the rpms for weewx v4 and associated procedure.

I've tested it on a centos8 vm and the procedure works great.   So if you 
can hang tight for a 'little' bit then it'll be very very 
straightforward... 

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/15c5f76c-d9e9-438f-8517-89a910072fbc%40googlegroups.com.


[weewx-user] Re: Installing weewx on Centos 8

2020-04-29 Thread Mike Doneske


On Wednesday, April 29, 2020 at 1:54:05 PM UTC-5, Mike Doneske wrote:
>
> Trying to install weewx on Centos 8 following the instructions in the 
> compatibility matrix. I'm trying to install the b18 version Python3. All 
> works OK until I get to the *dnf install weewx* step. I get a message: *no 
> match for argument weewx* I'm using epel-release-8-8.el8.noarch. Did I 
> miss a step? Am I using the right r
>

Terminal output from install of epel-release and dnf install weewx: 

Running transaction
  Preparing:
1/1
  Running scriptlet: epel-release-8-8.el8.noarch
1/1
  Upgrading: epel-release-8-8.el8.noarch
1/2
  Cleanup  : epel-release-8-7.el8.noarch
2/2
  Running scriptlet: epel-release-8-7.el8.noarch
2/2
  Verifying: epel-release-8-8.el8.noarch
1/2
  Verifying: epel-release-8-7.el8.noarch
2/2

Upgraded:
  epel-release-8-8.el8.noarch

Complete!
[root@india ~]# dnf install weewx
Extra Packages for Enterprise Linux Modular 8 - 183 kB/s | 116 kB 00:00
No match for argument: weewx
Error: Unable to find a match: weewx

-- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/652d667c-9aaf-4ccf-b844-8c8bb2becd6b%40googlegroups.com.