[weewx-user] Re: Vantage ip-read error with VVP

2020-11-30 Thread John S
I've used your config for systemd and it solved my problem with the dreaded 
ip-read error. Thanks for the tip and tutorial!
J. Sergneri

On Thursday, March 14, 2019 at 3:24:25 PM UTC-7 Peter Fletcher wrote:

>
>
> On Thursday, March 14, 2019 at 5:06:18 PM UTC-5, jmviper wrote:
>>
>> Ok done and running without problems. 
>>
>> I always connect as root on the orangepipc (with armbian) and manage 
>> weewx with service weewx (start|stop|restart|reload)
>>
>  
> A systemd service is managed using systemctl, so you would now say:
> sudo systemctl start|stop|restart|reload weewx.service
>  
>
>>
>> One silly question  though I suppose not a weewx upgrade will 
>> overwrite these changes ?? 
>>
>>  
> No. You haven't changed the weewx code or configuration, just how and 
> under whose control the program is started, so upgrading weewx will not 
> affect the change to using systemd directly to run it. 
>
> I hope this works well
>>
>> Thanks again
>>
>
>
>
>

-- 
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/269e0981-43e1-4354-8597-8fcf394719b5n%40googlegroups.com.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-14 Thread 'Peter Fletcher' via weewx-user


On Thursday, March 14, 2019 at 5:06:18 PM UTC-5, jmviper wrote:
>
> Ok done and running without problems. 
>
> I always connect as root on the orangepipc (with armbian) and manage weewx 
> with service weewx (start|stop|restart|reload)
>
 
A systemd service is managed using systemctl, so you would now say:
sudo systemctl start|stop|restart|reload weewx.service
 

>
> One silly question  though I suppose not a weewx upgrade will 
> overwrite these changes ?? 
>
>  
No. You haven't changed the weewx code or configuration, just how and under 
whose control the program is started, so upgrading weewx will not affect 
the change to using systemd directly to run it. 

I hope this works well
>
> Thanks again
>



-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-14 Thread jmviper
Ok done and running without problems. 

I always connect as root on the orangepipc (with armbian) and manage weewx 
with service weewx (start|stop|restart|reload)

One silly question  though I suppose not a weewx upgrade will 
overwrite these changes ?? 

I hope this works well

Thanks again

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-14 Thread jmviper
Ok done and running without problems. 

I always connect as root on the orangepipc (with armbian) and manage weewx 
with service weewx (start|stop|restart|reload)

One silly question  though I suppose not a weewx upgrade will 
overwrite these changes ?? 

I hope this goes well

Thanks again


-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-14 Thread 'Peter Fletcher' via weewx-user


On Thursday, March 14, 2019 at 1:43:55 PM UTC-5, jmviper wrote:
>
>
> I have basics in linux so I have some idea about systemd (I've heard of 
> it) but I don't know much of it
>>
>>
> I have contrab restarting weewx every three hours but with no success when 
> this issue happens.
>
> If you wish you can share your code just to test and perhaps to help 
> someone else.
>
> Thanks
>

OK. If you want to get a better understanding of systemd and what you are 
doing, I suggest you read the excellent article by Justin Ellingwood at 
https://www.digitalocean.com/community/tutorials/systemd-essentials-working-with-services-units-and-the-journal,
 
together with the continuation articles which are linked to in its 'Next 
Steps' section. The weewx Wiki also includes a brief and (IMHO) somewhat 
limited discussion of using systemd to run weewx at 
https://github.com/weewx/weewx/wiki/systemd. The process which I am about 
to describe draws and expands somewhat on that.
If you are going to use systemd directly to run weewx, you firat need to 
stop weewx and to disable and remove the configuration setup that normally 
uses sysv to run it automatically, as follows:

sudo /etc/init.d/weewx stop
sudo update-rc.d weewx remove
sudo rm /etc/init.d/weewx

You then need to create a systemd 'unit' file called 
/etc/systemd/system/weewx.service. Creating this requires root/su 
privileges, so you will need to use 'sudo' with your editor of choice. An 
example file is to be found at 
https://github.com/weewx/weewx/blob/master/util/systemd/weewx.service. Note 
that a number of file paths specified in the example file may need to be 
adjusted to correspond to where things are in your setup. I used the 
following version of the file, which includes a couple of additional 
parameters which I found necessary to get weewx to restart reliably after 
crashing. They are explained in the article I referred to first and in the 
man pages for systemd.

# systemd configuration for weewx

[Unit]
Description=weewx weather system
Requires=time-sync.target
After=time-sync.target
RequiresMountsFor=/home

[Service]
# the first and last filepaths in the next line may need to be modified, 
depending
# on where weewx's code and configuration files are on your system
ExecStart=/usr/bin/weewxd --daemon --pidfile=/var/run/weewx.pid 
/etc/weewx/weewx.conf
ExecReload=/bin/kill -HUP $MAINPID
Type=simple
PIDFile=/var/run/weewx.pid
# the next two lines are my additions to the file from he distribution
Restart=on-failure
RestartSec=10

[Install]
WantedBy=multi-user.target

Once you have created and checked the 'unit' file, you restart weewx as 
follows:

sudo systemctl enable weewx.service
sudo systemctl start weewx.service

weewx should now be running again and will be restarted automatically 
if/when the system reboots or if it fails while running. 

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-14 Thread jmviper

I have basics in linux so I have some idea about systemd (I've heard of it) 
but I don't know much of it
>
>
I have contrab restarting weewx every three hours but with no success when 
this issue happens.

If you wish you can share your code just to test and perhaps to help 
someone else.

Thanks

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-14 Thread 'Peter Fletcher' via weewx-user


On Wednesday, March 13, 2019 at 2:19:30 AM UTC-5, jmviper wrote:
>
> Hi
>
> I've got weewx running through VVP IP/TCP connection in a local network 
> and works fine but sometimes (when there's a problem with the local router) 
> Weewx exits with Vantage: ip-read error: Timed out Unable to wake up 
> console. I see at that moment VVP and is still sending loops and the only 
> solution is restart VVP and Weewx.
> Some Weewx configuration to avoid such behaviour??
>
> Thanks
>

I am running weewx on a Raspberry Pi with a Vantage Pro 2, and I have 
recently switched from using a USB logger to using a WiFiLogger (which is a 
relatively new third party device which emulates a WeatherLinkIP, but has a 
number of additional features. I am not running VVP, but I have see the 
same intermittent (every 1-3 days) and unrecovered weewx crashes with 
Vantage IP-read errors that you describe. Restarting weewx manually was 
almost always successful (occasionally I have had to do it twice, for no 
obvious reason). I tried a number of different approaches to restarting 
weewx automatically without success, but I have now converted it to a 
systemd unit and added the appropriate commands to the unit file to restart 
it on failure, and this seems to have solved the problem (I still see 
occasional crashes, but systemd successfully restarts the daemon). I had to 
do a fair amount of spelunking to find a 'recipe' for converting weewx to a 
native systemd service, so let me know if you want to try this and I will 
write up the results of my research and post them here.

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread jmviper

Hi Jacques
>
>
They're in differents machines. VVP is running on a Windows 10 computer in 
the same local network (192.168.1.xxx) that orange pi is running weewx.

I'm gonna test with Cumulus MX on the orange pi in a different TCP/IP port 
to see if it also loses connection to VVP at the same time weewx does.


-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread Thomas Keffer
Oh.

I'm afraid that I cannot help you. The problem is almost surely related to
VVP --- something I know nothing about.

On Wed, Mar 13, 2019 at 8:27 AM jmviper  wrote:

> VirtualVP is an application that is collecting data from a Davis vantage
> console and let communications through Virtual COM Ports or TCP/IP with
> several weather programs like weewx.
>>
>>
> Webpage:
>
> http://www.softwx.com/weather/virtualvp.html
>
> I think a lot of people uses it to have more than one program connected to
> a single Davis console
>
> The program is discontinued since 2010 when I think LOOP2 went out in
> Davis communications (firmware > 1.90)
>
> Searching on google I've found some threads related to, for example:
>
> https://groups.google.com/forum/#!msg/weewx-user/SOa18dalyn8/p2owoGCP7uIJ
>
> Perhaps the problem is the way is waked up the console because weewx in
> some minutes that is recorded in the database says:
>
> mar 13 16:21:01 orangepipc weewx[908]: manager: Added record 2019-03-13
> 16:21:00 CET (1552490...sdb'
> mar 13 16:21:03 orangepipc weewx[908]: cheetahgenerator: Generated 9 files
> for report Standar...onds
> mar 13 16:21:05 orangepipc weewx[908]: imagegenerator: Generated 12 images
> for StandardReport...onds
> mar 13 16:21:05 orangepipc weewx[908]: copygenerator: copied 0 files to
> /var/www/weewx
> mar 13 16:22:02 orangepipc weewx[908]: manager: Added record 2019-03-13
> 16:22:00 CET (1552490...sdb'
> mar 13 16:22:02 orangepipc weewx[908]: manager: Added record 2019-03-13
> 16:22:00 CET (1552490...sdb'
> mar 13 16:22:04 orangepipc weewx[908]: cheetahgenerator: Generated 9 files
> for report Standar...onds
> mar 13 16:22:06 orangepipc weewx[908]: imagegenerator: Generated 12 images
> for StandardReport...onds
> mar 13 16:22:06 orangepipc weewx[908]: copygenerator: copied 0 files to
> /var/www/weewx
> mar 13 16:22:08 orangepipc weewx[908]: *vantage: ip-read error: timed out*
>
>
> --
> 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.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread jmviper
VirtualVP is an application that is collecting data from a Davis vantage 
console and let communications through Virtual COM Ports or TCP/IP with 
several weather programs like weewx.
>
>
Webpage:

http://www.softwx.com/weather/virtualvp.html

I think a lot of people uses it to have more than one program connected to 
a single Davis console

The program is discontinued since 2010 when I think LOOP2 went out in Davis 
communications (firmware > 1.90)

Searching on google I've found some threads related to, for example:

https://groups.google.com/forum/#!msg/weewx-user/SOa18dalyn8/p2owoGCP7uIJ

Perhaps the problem is the way is waked up the console because weewx in 
some minutes that is recorded in the database says:

mar 13 16:21:01 orangepipc weewx[908]: manager: Added record 2019-03-13 
16:21:00 CET (1552490...sdb'
mar 13 16:21:03 orangepipc weewx[908]: cheetahgenerator: Generated 9 files 
for report Standar...onds
mar 13 16:21:05 orangepipc weewx[908]: imagegenerator: Generated 12 images 
for StandardReport...onds
mar 13 16:21:05 orangepipc weewx[908]: copygenerator: copied 0 files to 
/var/www/weewx
mar 13 16:22:02 orangepipc weewx[908]: manager: Added record 2019-03-13 
16:22:00 CET (1552490...sdb'
mar 13 16:22:02 orangepipc weewx[908]: manager: Added record 2019-03-13 
16:22:00 CET (1552490...sdb'
mar 13 16:22:04 orangepipc weewx[908]: cheetahgenerator: Generated 9 files 
for report Standar...onds
mar 13 16:22:06 orangepipc weewx[908]: imagegenerator: Generated 12 images 
for StandardReport...onds
mar 13 16:22:06 orangepipc weewx[908]: copygenerator: copied 0 files to 
/var/www/weewx
mar 13 16:22:08 orangepipc weewx[908]: *vantage: ip-read error: timed out*


-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread jmviper
 VVP is how I call Virtual VP ... Sorry for the inconvenience :)

-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread Thomas Keffer
I do not know what "VVP" is. Some sort of VPN?

-tk

On Wed, Mar 13, 2019 at 6:40 AM jmviper  wrote:

>
> I've already tried loop_on_init (searching for answers before) and
> effectively it didn't fix the problem.
> I know that the problem is related to VVP cause though weewx is trying to
> communicate with IP machine in which runs VVP it is still sending loops
> (without asking for them weewx  who is trying to connect or is exited)
>
> VVP has the option to Restart Virtual console but after restart it listens
> just a second and again starts to send loops, being the only solution as I
> mentioned before restart VVP and weewx.
>
> Orange pi loses connection with router just a while and VVP instead of
> stopping sending loops it goes on and on.
>
> If there's no solution I think I can't do anything.
>
> Thanks again
>
>
> --
> 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.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
For more options, visit https://groups.google.com/d/optout.


[weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread jmviper
 
I've already tried loop_on_init (searching for answers before) and 
effectively it didn't fix the problem.
I know that the problem is related to VVP cause though weewx is trying to 
communicate with IP machine in which runs VVP it is still sending loops 
(without asking for them weewx  who is trying to connect or is exited)

VVP has the option to Restart Virtual console but after restart it listens 
just a second and again starts to send loops, being the only solution as I 
mentioned before restart VVP and weewx. 

Orange pi loses connection with router just a while and VVP instead of 
stopping sending loops it goes on and on.

If there's no solution I think I can't do anything.

Thanks again


-- 
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.
For more options, visit https://groups.google.com/d/optout.


Re: [weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread Thomas Keffer
Thanks.

Normally, when a persistent error occurs in the driver, WeeWX restarts from
the top. The exception is that restart itself --- if the WeeWX engine
cannot load the driver at all, it exits, the theory being that there is a
configuration problem.

If you are confident that the driver has been configured correctly (in this
case, that you have the correct IP address), then you can set a flag to
have the engine try to reload the driver indefinitely. Add the following to
the top of the configuration file weewx.conf.

Change this

# This section is for general configuration information.

# Set to 1 for extra debug info, otherwise comment it out or set to zero
debug = 0


to this

# This section is for general configuration information.

loop_on_init = True

# Set to 1 for extra debug info, otherwise comment it out or set to zero
debug = 0



This will not fix the problem --- it merely tells WeeWX to keep trying. To
fix the problem, you're going to have to figure out why your WLIP logger
keeps losing connectivity.

-tk


On Wed, Mar 13, 2019 at 5:29 AM jmviper  wrote:

>
> Mar 13 06:25:15 localhost weewx[29634]: cheetahgenerator: Generated 9
> files for report StandardReport in 2.67 seconds
> Mar 13 06:25:17 localhost weewx[29634]: imagegenerator: Generated 12
> images for StandardReport in 2.02 seconds
> Mar 13 06:25:17 localhost weewx[29634]: copygenerator: copied 0 files to
> /var/www/weewx
> Mar 13 06:25:19 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:26:01 localhost CRON[29943]: (root) CMD
> (/home/jmviper/compsht35.sh)
> Mar 13 06:26:01 localhost weewx[29634]: manager: Added record 2019-03-13
> 06:26:00 CET (1552454760) to database 'weewx.sdb'
> Mar 13 06:26:01 localhost weewx[29634]: manager: Added record 2019-03-13
> 06:26:00 CET (1552454760) to daily summary in 'weewx.sdb'
> Mar 13 06:26:04 localhost weewx[29634]: cheetahgenerator: Generated 9
> files for report StandardReport in 1.71 seconds
> Mar 13 06:26:06 localhost weewx[29634]: imagegenerator: Generated 12
> images for StandardReport in 2.08 seconds
> Mar 13 06:26:06 localhost weewx[29634]: copygenerator: copied 0 files to
> /var/www/weewx
> Mar 13 06:26:08 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:01 localhost weewx[29634]: manager: Added record 2019-03-13
> 06:27:00 CET (1552454820) to database 'weewx.sdb'
> Mar 13 06:27:01 localhost rsyslogd0: action 'action 17' resumed (module
> 'builtin:ompipe') [try http://www.rsyslog.com/e/0 ]
> Mar 13 06:27:01 localhost rsyslogd-2359: action 'action 17' resumed
> (module 'builtin:ompipe') [try http://www.rsyslog.com/e/2359 ]
> Mar 13 06:27:01 localhost weewx[29634]: manager: Added record 2019-03-13
> 06:27:00 CET (1552454820) to daily summary in 'weewx.sdb'
> Mar 13 06:27:03 localhost weewx[29634]: cheetahgenerator: Generated 9
> files for report StandardReport in 1.69 seconds
> Mar 13 06:27:05 localhost weewx[29634]: imagegenerator: Generated 12
> images for StandardReport in 2.01 seconds
> Mar 13 06:27:05 localhost weewx[29634]: copygenerator: copied 0 files to
> /var/www/weewx
> Mar 13 06:27:07 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:13 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:19 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:25 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:25 localhost weewx[29634]: vantage: Unable to wake up console
> Mar 13 06:27:25 localhost weewx[29634]: vantage: LOOP try #1; error:
> Unable to wake up Vantage console
> Mar 13 06:27:31 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:37 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:43 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:49 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:27:49 localhost weewx[29634]: vantage: Unable to wake up console
> Mar 13 06:27:49 localhost weewx[29634]: vantage: LOOP try #2; error:
> Unable to wake up Vantage console
> Mar 13 06:27:55 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:28:01 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:28:01 localhost CRON[29949]: (root) CMD
> (/home/jmviper/compsht35.sh)
> Mar 13 06:28:07 localhost weewx[29634]: vantage: ip-read error: timed out
> Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-read error: [Errno
> 104] Connection reset by peer
> Mar 13 06:28:11 localhost weewx[29634]: vantage: Unable to wake up console
> Mar 13 06:28:11 localhost weewx[29634]: vantage: LOOP try #3; error:
> Unable to wake up Vantage console
> Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno
> 32] Broken pipe
> Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno
> 32] Broken pipe
> Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno
> 32] Broken pipe
> Mar 13 06:28:11 localhost weewx[29634]: vantage: 

[weewx-user] Re: Vantage ip-read error with VVP

2019-03-13 Thread jmviper

Mar 13 06:25:15 localhost weewx[29634]: cheetahgenerator: Generated 9 files 
for report StandardReport in 2.67 seconds
Mar 13 06:25:17 localhost weewx[29634]: imagegenerator: Generated 12 images 
for StandardReport in 2.02 seconds
Mar 13 06:25:17 localhost weewx[29634]: copygenerator: copied 0 files to 
/var/www/weewx
Mar 13 06:25:19 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:26:01 localhost CRON[29943]: (root) CMD 
(/home/jmviper/compsht35.sh)
Mar 13 06:26:01 localhost weewx[29634]: manager: Added record 2019-03-13 
06:26:00 CET (1552454760) to database 'weewx.sdb'
Mar 13 06:26:01 localhost weewx[29634]: manager: Added record 2019-03-13 
06:26:00 CET (1552454760) to daily summary in 'weewx.sdb'
Mar 13 06:26:04 localhost weewx[29634]: cheetahgenerator: Generated 9 files 
for report StandardReport in 1.71 seconds
Mar 13 06:26:06 localhost weewx[29634]: imagegenerator: Generated 12 images 
for StandardReport in 2.08 seconds
Mar 13 06:26:06 localhost weewx[29634]: copygenerator: copied 0 files to 
/var/www/weewx
Mar 13 06:26:08 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:01 localhost weewx[29634]: manager: Added record 2019-03-13 
06:27:00 CET (1552454820) to database 'weewx.sdb'
Mar 13 06:27:01 localhost rsyslogd0: action 'action 17' resumed (module 
'builtin:ompipe') [try http://www.rsyslog.com/e/0 ]
Mar 13 06:27:01 localhost rsyslogd-2359: action 'action 17' resumed (module 
'builtin:ompipe') [try http://www.rsyslog.com/e/2359 ]
Mar 13 06:27:01 localhost weewx[29634]: manager: Added record 2019-03-13 
06:27:00 CET (1552454820) to daily summary in 'weewx.sdb'
Mar 13 06:27:03 localhost weewx[29634]: cheetahgenerator: Generated 9 files 
for report StandardReport in 1.69 seconds
Mar 13 06:27:05 localhost weewx[29634]: imagegenerator: Generated 12 images 
for StandardReport in 2.01 seconds
Mar 13 06:27:05 localhost weewx[29634]: copygenerator: copied 0 files to 
/var/www/weewx
Mar 13 06:27:07 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:13 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:19 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:25 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:25 localhost weewx[29634]: vantage: Unable to wake up console
Mar 13 06:27:25 localhost weewx[29634]: vantage: LOOP try #1; error: Unable 
to wake up Vantage console
Mar 13 06:27:31 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:37 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:43 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:49 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:27:49 localhost weewx[29634]: vantage: Unable to wake up console
Mar 13 06:27:49 localhost weewx[29634]: vantage: LOOP try #2; error: Unable 
to wake up Vantage console
Mar 13 06:27:55 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:28:01 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:28:01 localhost CRON[29949]: (root) CMD 
(/home/jmviper/compsht35.sh)
Mar 13 06:28:07 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-read error: [Errno 104] 
Connection reset by peer
Mar 13 06:28:11 localhost weewx[29634]: vantage: Unable to wake up console
Mar 13 06:28:11 localhost weewx[29634]: vantage: LOOP try #3; error: Unable 
to wake up Vantage console
Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno 32] 
Broken pipe
Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno 32] 
Broken pipe
Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno 32] 
Broken pipe
Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno 32] 
Broken pipe
Mar 13 06:28:11 localhost weewx[29634]: vantage: Unable to wake up console
Mar 13 06:28:11 localhost weewx[29634]: vantage: LOOP try #4; error: Unable 
to wake up Vantage console
Mar 13 06:28:11 localhost weewx[29634]: vantage: LOOP max tries (4) 
exceeded.
Mar 13 06:28:11 localhost weewx[29634]: engine: Main loop exiting. Shutting 
engine down.
Mar 13 06:28:11 localhost weewx[29634]: engine: Shutting down StdReport 
thread
Mar 13 06:28:11 localhost weewx[29634]: vantage: ip-write error: [Errno 32] 
Broken pipe
Mar 13 06:28:11 localhost weewx[29634]: engine: Caught WeeWxIOError: Max 
tries exceeded while getting LOOP data.
Mar 13 06:28:11 localhost weewx[29634]:   Waiting 60 seconds then 
retrying...
Mar 13 06:29:11 localhost weewx[29634]: engine: retrying...
Mar 13 06:29:11 localhost weewx[29634]: engine: Using configuration file 
/etc/weewx/weewx.conf
Mar 13 06:29:11 localhost weewx[29634]: engine: Loading station type 
Vantage (weewx.drivers.vantage)
Mar 13 06:29:17 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:29:23 localhost weewx[29634]: vantage: ip-read error: timed out
Mar 13 06:29:29 localhost