[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread Kevin Key
All good now. I had to have my web hosting company take care of some issues.

On Sunday, June 16, 2024 at 5:02:57 PM UTC-7 Kevin Key wrote:

>
> weewx@linux:~$ ssh we...@192.254.224.66 -p
> we...@192.254.224.66's password:
> Received disconnect from 192.254.224.66 port :2: Too many 
> authentication failures
> Disconnected from 192.254.224.66 port 
> weewx@linux:~$
> On Sunday, June 16, 2024 at 4:51:53 PM UTC-7 Kevin Key wrote:
>
>> And now I keep getting this ""Received disconnect from 192.254.224.66 
>> port :2: Too many authentication failures". Do I need to delete 
>> everything and start over?
>>
>> On Sunday, June 16, 2024 at 4:07:36 PM UTC-7 vince wrote:
>>
>>> Host key verification failed..
>>>
>>> Remember weewx runs as user 'weewx' and not your typical user (in your 
>>> case 'kevinphy')
>>>
>>> You need to ssh into the remote host as the user weewx runs as 'once', 
>>> accept the remote host's system key when prompted, and weewx will be able 
>>> to rsync over ssh as 'its' user.  It can be a little convoluted to do this 
>>> typically, so I usually cheat a little
>>>
>>> # temporarily let weewx run a shell
>>> sudo chsh -s /bin/bash weewx
>>>
>>> # su to the weewx account
>>> su - weewx
>>> (you will be in a shell as weewx)
>>>
>>> # seed its known_hosts file and set permissions correctly
>>> ssh your_remote_host_or_ip
>>> (answer yes for the host key prompt, then ^C to exit)
>>> (and exit your weewx shell)
>>>
>>> # (re)set weewx's shell to nologin
>>> sudo chsh -s /usr/sbin/nologin weewx
>>>
>>> There is undoubtedly many ways to do it, but this worked for me.
>>>
>>> On Sunday, June 16, 2024 at 3:29:56 PM UTC-7 Kevin Key wrote:
>>>
 Thanks Vince. I'm getting closer. For some reason, the connection via 
 weewx gets rejected but not when I do so via the command line:


 Jun 16 15:27:54 linux weewxd[2084707]: DEBUG weeutil.rsyncupload: 
 rsyncupload: cmd: [['rsync', '--archive', '--stats', '-e', 'ssh', 
 '/var/www/html/weewx/belchertown/', 
 'kevi...@192.254.224.66:/home2/kevinphy/
 kevinkeyphotography.com']]
 Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload: rsync 
 reported errors. Original command: ['rsync', '--archive', '--stats', '-e', 
 'ssh', '/var/www/html/weewx/belchertown/', 
 'kevi...@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com']
 Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
 Host key verification failed.
 Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
 rsync: connection unexpectedly closed (0 bytes received so far) [sender]
 Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
 rsync error: unexplained error (code 255) at io.c(231) [sender=3.2.7]
 ^X^C
 kevin@linux:/usr/share/weewx/weeutil$

 This works fine via command line:

 rsync -arP /var/www/html/weewx/  kevi...@192.254.224.66:/home2/kevinphy/
 kevinkeyphotography.com/weewx

 On Sunday, June 16, 2024 at 2:14:51 PM UTC-7 vince wrote:

> [[RSYNC]] # rsync'ing to a webserver is treated as just another report 
> skin = Belchertown HTML_ROOT = /var/www/html/weewx/rsync
>
> Should be skin = Rsync 
>
> (you posted your forecast credentials in your belchertown section of 
> debug.txt so you might want to generate a new key for that..)
>
> On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:
>
>> Here ya go. The only lines that, IMHO, stand out:
>>
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
>> Running report 'FTP'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
>> Found configuration file /etc/weewx/skins/Belchertown/skin.conf for 
>> report 
>> 'FTP'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
>> Invalid report_timing setting for report 'FTP', running report anyway
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
>>  Invalid field 'minutes' in 'minutes hours day_of_month months 
>> day_of_week'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
>> Running generators for report 'FTP' in directory 
>> '/etc/weewx/skins/Belchertown'
>>
>> On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:
>>
>>> The clue will be in the log, sometimes it is what is not in the log 
>>> rather than an error message that provides the clue. I suggest you 
>>> leave debug 
>>> = 1, restart WeeWX and post a log extract showing the full WeeWX 
>>> startup and at least a couple of report cycles.
>>>
>>> Gary
>>> On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:
>>>
 I have FTP and Rsync enabled and the servers and credentials 
 specified, but no uploads and no errors in the log. Any suggestions? 
 

[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread Kevin Key

weewx@linux:~$ ssh weewx@192.254.224.66 -p
weewx@192.254.224.66's password:
Received disconnect from 192.254.224.66 port :2: Too many 
authentication failures
Disconnected from 192.254.224.66 port 
weewx@linux:~$
On Sunday, June 16, 2024 at 4:51:53 PM UTC-7 Kevin Key wrote:

> And now I keep getting this ""Received disconnect from 192.254.224.66 port 
> :2: Too many authentication failures". Do I need to delete everything 
> and start over?
>
> On Sunday, June 16, 2024 at 4:07:36 PM UTC-7 vince wrote:
>
>> Host key verification failed..
>>
>> Remember weewx runs as user 'weewx' and not your typical user (in your 
>> case 'kevinphy')
>>
>> You need to ssh into the remote host as the user weewx runs as 'once', 
>> accept the remote host's system key when prompted, and weewx will be able 
>> to rsync over ssh as 'its' user.  It can be a little convoluted to do this 
>> typically, so I usually cheat a little
>>
>> # temporarily let weewx run a shell
>> sudo chsh -s /bin/bash weewx
>>
>> # su to the weewx account
>> su - weewx
>> (you will be in a shell as weewx)
>>
>> # seed its known_hosts file and set permissions correctly
>> ssh your_remote_host_or_ip
>> (answer yes for the host key prompt, then ^C to exit)
>> (and exit your weewx shell)
>>
>> # (re)set weewx's shell to nologin
>> sudo chsh -s /usr/sbin/nologin weewx
>>
>> There is undoubtedly many ways to do it, but this worked for me.
>>
>> On Sunday, June 16, 2024 at 3:29:56 PM UTC-7 Kevin Key wrote:
>>
>>> Thanks Vince. I'm getting closer. For some reason, the connection via 
>>> weewx gets rejected but not when I do so via the command line:
>>>
>>>
>>> Jun 16 15:27:54 linux weewxd[2084707]: DEBUG weeutil.rsyncupload: 
>>> rsyncupload: cmd: [['rsync', '--archive', '--stats', '-e', 'ssh', 
>>> '/var/www/html/weewx/belchertown/', 'kevi...@192.254.224.66:/home2/kevinphy/
>>> kevinkeyphotography.com']]
>>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload: rsync 
>>> reported errors. Original command: ['rsync', '--archive', '--stats', '-e', 
>>> 'ssh', '/var/www/html/weewx/belchertown/', 
>>> 'kevi...@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com']
>>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
>>> Host key verification failed.
>>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
>>> rsync: connection unexpectedly closed (0 bytes received so far) [sender]
>>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
>>> rsync error: unexplained error (code 255) at io.c(231) [sender=3.2.7]
>>> ^X^C
>>> kevin@linux:/usr/share/weewx/weeutil$
>>>
>>> This works fine via command line:
>>>
>>> rsync -arP /var/www/html/weewx/  kevi...@192.254.224.66:/home2/kevinphy/
>>> kevinkeyphotography.com/weewx
>>>
>>> On Sunday, June 16, 2024 at 2:14:51 PM UTC-7 vince wrote:
>>>
 [[RSYNC]] # rsync'ing to a webserver is treated as just another report 
 skin = Belchertown HTML_ROOT = /var/www/html/weewx/rsync

 Should be skin = Rsync 

 (you posted your forecast credentials in your belchertown section of 
 debug.txt so you might want to generate a new key for that..)

 On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:

> Here ya go. The only lines that, IMHO, stand out:
>
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
> Running report 'FTP'
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Found 
> configuration file /etc/weewx/skins/Belchertown/skin.conf for report 'FTP'
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
> Invalid report_timing setting for report 'FTP', running report anyway
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine:   
>    Invalid field 'minutes' in 'minutes hours day_of_month months 
> day_of_week'
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
> Running generators for report 'FTP' in directory 
> '/etc/weewx/skins/Belchertown'
>
> On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:
>
>> The clue will be in the log, sometimes it is what is not in the log 
>> rather than an error message that provides the clue. I suggest you leave 
>> debug 
>> = 1, restart WeeWX and post a log extract showing the full WeeWX 
>> startup and at least a couple of report cycles.
>>
>> Gary
>> On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:
>>
>>> I have FTP and Rsync enabled and the servers and credentials 
>>> specified, but no uploads and no errors in the log. Any suggestions? 
>>> The 
>>> local files are created, but there is nothing on the log to indicate 
>>> any 
>>> upload attempts. I have debug = 1.
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group 

[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread Kevin Key
And now I keep getting this ""Received disconnect from 192.254.224.66 port 
:2: Too many authentication failures". Do I need to delete everything 
and start over?

On Sunday, June 16, 2024 at 4:07:36 PM UTC-7 vince wrote:

> Host key verification failed..
>
> Remember weewx runs as user 'weewx' and not your typical user (in your 
> case 'kevinphy')
>
> You need to ssh into the remote host as the user weewx runs as 'once', 
> accept the remote host's system key when prompted, and weewx will be able 
> to rsync over ssh as 'its' user.  It can be a little convoluted to do this 
> typically, so I usually cheat a little
>
> # temporarily let weewx run a shell
> sudo chsh -s /bin/bash weewx
>
> # su to the weewx account
> su - weewx
> (you will be in a shell as weewx)
>
> # seed its known_hosts file and set permissions correctly
> ssh your_remote_host_or_ip
> (answer yes for the host key prompt, then ^C to exit)
> (and exit your weewx shell)
>
> # (re)set weewx's shell to nologin
> sudo chsh -s /usr/sbin/nologin weewx
>
> There is undoubtedly many ways to do it, but this worked for me.
>
> On Sunday, June 16, 2024 at 3:29:56 PM UTC-7 Kevin Key wrote:
>
>> Thanks Vince. I'm getting closer. For some reason, the connection via 
>> weewx gets rejected but not when I do so via the command line:
>>
>>
>> Jun 16 15:27:54 linux weewxd[2084707]: DEBUG weeutil.rsyncupload: 
>> rsyncupload: cmd: [['rsync', '--archive', '--stats', '-e', 'ssh', 
>> '/var/www/html/weewx/belchertown/', 'kevi...@192.254.224.66:/home2/kevinphy/
>> kevinkeyphotography.com']]
>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload: rsync 
>> reported errors. Original command: ['rsync', '--archive', '--stats', '-e', 
>> 'ssh', '/var/www/html/weewx/belchertown/', 
>> 'kevi...@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com']
>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
>> Host key verification failed.
>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
>> rsync: connection unexpectedly closed (0 bytes received so far) [sender]
>> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
>> rsync error: unexplained error (code 255) at io.c(231) [sender=3.2.7]
>> ^X^C
>> kevin@linux:/usr/share/weewx/weeutil$
>>
>> This works fine via command line:
>>
>> rsync -arP /var/www/html/weewx/  kevi...@192.254.224.66:/home2/kevinphy/
>> kevinkeyphotography.com/weewx
>>
>> On Sunday, June 16, 2024 at 2:14:51 PM UTC-7 vince wrote:
>>
>>> [[RSYNC]] # rsync'ing to a webserver is treated as just another report 
>>> skin = Belchertown HTML_ROOT = /var/www/html/weewx/rsync
>>>
>>> Should be skin = Rsync 
>>>
>>> (you posted your forecast credentials in your belchertown section of 
>>> debug.txt so you might want to generate a new key for that..)
>>>
>>> On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:
>>>
 Here ya go. The only lines that, IMHO, stand out:

 Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
 Running report 'FTP'
 Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Found 
 configuration file /etc/weewx/skins/Belchertown/skin.conf for report 'FTP'
 Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
 Invalid report_timing setting for report 'FTP', running report anyway
 Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine:   
    Invalid field 'minutes' in 'minutes hours day_of_month months 
 day_of_week'
 Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: 
 Running generators for report 'FTP' in directory 
 '/etc/weewx/skins/Belchertown'

 On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:

> The clue will be in the log, sometimes it is what is not in the log 
> rather than an error message that provides the clue. I suggest you leave 
> debug 
> = 1, restart WeeWX and post a log extract showing the full WeeWX 
> startup and at least a couple of report cycles.
>
> Gary
> On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:
>
>> I have FTP and Rsync enabled and the servers and credentials 
>> specified, but no uploads and no errors in the log. Any suggestions? The 
>> local files are created, but there is nothing on the log to indicate any 
>> upload attempts. I have 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/a4886ff1-e2fe-4909-8859-59b393faeb1fn%40googlegroups.com.


[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread vince
Host key verification failed..

Remember weewx runs as user 'weewx' and not your typical user (in your case 
'kevinphy')

You need to ssh into the remote host as the user weewx runs as 'once', 
accept the remote host's system key when prompted, and weewx will be able 
to rsync over ssh as 'its' user.  It can be a little convoluted to do this 
typically, so I usually cheat a little

# temporarily let weewx run a shell
sudo chsh -s /bin/bash weewx

# su to the weewx account
su - weewx
(you will be in a shell as weewx)

# seed its known_hosts file and set permissions correctly
ssh your_remote_host_or_ip
(answer yes for the host key prompt, then ^C to exit)
(and exit your weewx shell)

# (re)set weewx's shell to nologin
sudo chsh -s /usr/sbin/nologin weewx

There is undoubtedly many ways to do it, but this worked for me.

On Sunday, June 16, 2024 at 3:29:56 PM UTC-7 Kevin Key wrote:

> Thanks Vince. I'm getting closer. For some reason, the connection via 
> weewx gets rejected but not when I do so via the command line:
>
>
> Jun 16 15:27:54 linux weewxd[2084707]: DEBUG weeutil.rsyncupload: 
> rsyncupload: cmd: [['rsync', '--archive', '--stats', '-e', 'ssh', 
> '/var/www/html/weewx/belchertown/', 'kevi...@192.254.224.66:/home2/kevinphy/
> kevinkeyphotography.com']]
> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload: rsync 
> reported errors. Original command: ['rsync', '--archive', '--stats', '-e', 
> 'ssh', '/var/www/html/weewx/belchertown/', 
> 'kevi...@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com']
> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
> Host key verification failed.
> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
> rsync: connection unexpectedly closed (0 bytes received so far) [sender]
> Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
> rsync error: unexplained error (code 255) at io.c(231) [sender=3.2.7]
> ^X^C
> kevin@linux:/usr/share/weewx/weeutil$
>
> This works fine via command line:
>
> rsync -arP /var/www/html/weewx/  kevi...@192.254.224.66:/home2/kevinphy/
> kevinkeyphotography.com/weewx
>
> On Sunday, June 16, 2024 at 2:14:51 PM UTC-7 vince wrote:
>
>> [[RSYNC]] # rsync'ing to a webserver is treated as just another report 
>> skin = Belchertown HTML_ROOT = /var/www/html/weewx/rsync
>>
>> Should be skin = Rsync 
>>
>> (you posted your forecast credentials in your belchertown section of 
>> debug.txt so you might want to generate a new key for that..)
>>
>> On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:
>>
>>> Here ya go. The only lines that, IMHO, stand out:
>>>
>>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
>>> report 'FTP'
>>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Found 
>>> configuration file /etc/weewx/skins/Belchertown/skin.conf for report 'FTP'
>>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Invalid 
>>> report_timing setting for report 'FTP', running report anyway
>>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine:   
>>>    Invalid field 'minutes' in 'minutes hours day_of_month months 
>>> day_of_week'
>>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
>>> generators for report 'FTP' in directory '/etc/weewx/skins/Belchertown'
>>>
>>> On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:
>>>
 The clue will be in the log, sometimes it is what is not in the log 
 rather than an error message that provides the clue. I suggest you leave 
 debug 
 = 1, restart WeeWX and post a log extract showing the full WeeWX 
 startup and at least a couple of report cycles.

 Gary
 On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:

> I have FTP and Rsync enabled and the servers and credentials 
> specified, but no uploads and no errors in the log. Any suggestions? The 
> local files are created, but there is nothing on the log to indicate any 
> upload attempts. I have 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/f958ae72-92a6-4d6c-beea-da7938aeb8e4n%40googlegroups.com.


[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread Kevin Key
Thanks Vince. I'm getting closer. For some reason, the connection via weewx 
gets rejected but not when I do so via the command line:


Jun 16 15:27:54 linux weewxd[2084707]: DEBUG weeutil.rsyncupload: 
rsyncupload: cmd: [['rsync', '--archive', '--stats', '-e', 'ssh', 
'/var/www/html/weewx/belchertown/', 
'kevinphy@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com']]
Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload: rsync 
reported errors. Original command: ['rsync', '--archive', '--stats', '-e', 
'ssh', '/var/www/html/weewx/belchertown/', 
'kevinphy@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com']
Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  Host 
key verification failed.
Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
Jun 16 15:27:54 linux weewxd[2084707]: ERROR weeutil.rsyncupload:  
rsync error: unexplained error (code 255) at io.c(231) [sender=3.2.7]
^X^C
kevin@linux:/usr/share/weewx/weeutil$

This works fine via command line:

rsync -arP /var/www/html/weewx/ 
 kevinphy@192.254.224.66:/home2/kevinphy/kevinkeyphotography.com/weewx

On Sunday, June 16, 2024 at 2:14:51 PM UTC-7 vince wrote:

> [[RSYNC]] # rsync'ing to a webserver is treated as just another report 
> skin = Belchertown HTML_ROOT = /var/www/html/weewx/rsync
>
> Should be skin = Rsync 
>
> (you posted your forecast credentials in your belchertown section of 
> debug.txt so you might want to generate a new key for that..)
>
> On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:
>
>> Here ya go. The only lines that, IMHO, stand out:
>>
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
>> report 'FTP'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Found 
>> configuration file /etc/weewx/skins/Belchertown/skin.conf for report 'FTP'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Invalid 
>> report_timing setting for report 'FTP', running report anyway
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine:   
>>    Invalid field 'minutes' in 'minutes hours day_of_month months 
>> day_of_week'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
>> generators for report 'FTP' in directory '/etc/weewx/skins/Belchertown'
>>
>> On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:
>>
>>> The clue will be in the log, sometimes it is what is not in the log 
>>> rather than an error message that provides the clue. I suggest you leave 
>>> debug 
>>> = 1, restart WeeWX and post a log extract showing the full WeeWX 
>>> startup and at least a couple of report cycles.
>>>
>>> Gary
>>> On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:
>>>
 I have FTP and Rsync enabled and the servers and credentials specified, 
 but no uploads and no errors in the log. Any suggestions? The local files 
 are created, but there is nothing on the log to indicate any upload 
 attempts. I have 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/b2021434-dfaa-409f-a391-fc8ddacd915an%40googlegroups.com.


[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread Kevin Key
Thanks.

On Sunday, June 16, 2024 at 2:14:51 PM UTC-7 vince wrote:

> [[RSYNC]] # rsync'ing to a webserver is treated as just another report 
> skin = Belchertown HTML_ROOT = /var/www/html/weewx/rsync
>
> Should be skin = Rsync 
>
> (you posted your forecast credentials in your belchertown section of 
> debug.txt so you might want to generate a new key for that..)
>
> On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:
>
>> Here ya go. The only lines that, IMHO, stand out:
>>
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
>> report 'FTP'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Found 
>> configuration file /etc/weewx/skins/Belchertown/skin.conf for report 'FTP'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Invalid 
>> report_timing setting for report 'FTP', running report anyway
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine:   
>>    Invalid field 'minutes' in 'minutes hours day_of_month months 
>> day_of_week'
>> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
>> generators for report 'FTP' in directory '/etc/weewx/skins/Belchertown'
>>
>> On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:
>>
>>> The clue will be in the log, sometimes it is what is not in the log 
>>> rather than an error message that provides the clue. I suggest you leave 
>>> debug 
>>> = 1, restart WeeWX and post a log extract showing the full WeeWX 
>>> startup and at least a couple of report cycles.
>>>
>>> Gary
>>> On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:
>>>
 I have FTP and Rsync enabled and the servers and credentials specified, 
 but no uploads and no errors in the log. Any suggestions? The local files 
 are created, but there is nothing on the log to indicate any upload 
 attempts. I have 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/20647c2b-d270-4e69-87ab-9e8d7486157fn%40googlegroups.com.


[weewx-user] Re: Weewx 5.0 FTP and Rsync not even attempting to upload what's going on?

2024-06-16 Thread vince
[[RSYNC]] # rsync'ing to a webserver is treated as just another report skin 
= Belchertown HTML_ROOT = /var/www/html/weewx/rsync

Should be skin = Rsync 

(you posted your forecast credentials in your belchertown section of 
debug.txt so you might want to generate a new key for that..)

On Sunday, June 16, 2024 at 1:36:12 PM UTC-7 Kevin Key wrote:

> Here ya go. The only lines that, IMHO, stand out:
>
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
> report 'FTP'
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Found 
> configuration file /etc/weewx/skins/Belchertown/skin.conf for report 'FTP'
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Invalid 
> report_timing setting for report 'FTP', running report anyway
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine:   
>    Invalid field 'minutes' in 'minutes hours day_of_month months 
> day_of_week'
> Jun 16 13:24:25 linux weewxd[1930780]: DEBUG weewx.reportengine: Running 
> generators for report 'FTP' in directory '/etc/weewx/skins/Belchertown'
>
> On Saturday, June 15, 2024 at 9:40:21 PM UTC-7 gjr80 wrote:
>
>> The clue will be in the log, sometimes it is what is not in the log 
>> rather than an error message that provides the clue. I suggest you leave 
>> debug 
>> = 1, restart WeeWX and post a log extract showing the full WeeWX startup 
>> and at least a couple of report cycles.
>>
>> Gary
>> On Sunday 16 June 2024 at 13:07:29 UTC+10 kevi...@gmail.com wrote:
>>
>>> I have FTP and Rsync enabled and the servers and credentials specified, 
>>> but no uploads and no errors in the log. Any suggestions? The local files 
>>> are created, but there is nothing on the log to indicate any upload 
>>> attempts. I have 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/292aa114-4807-4282-b561-3e03909b529an%40googlegroups.com.


Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread 'John Kline' via weewx-user
Philip,Rather than try to walk you through building a package, attached is a zip of the tide executable that you need.unzip it anywhere you like and point to it by following the instructions on the README page in github or in my email.



-- 
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/63D152E9-E2DA-4EDC-BC0D-57891AB513D3%40johnkline.com.
<>
Note: this executable was built for Raspberry Pi OS bookworm 64-bit.  Don’t try to use it elsewhere.On Jun 16, 2024, at 12:58 PM, John Kline  wrote:configure generates a Makefile (with no extensions).Take a look at what you sent me, configure ended in an error.  Look right before you typed make!Did you install the prerequisite packages listed?I have this running on 64-bit Raspberry OS Bookworm.On Jun 16, 2024, at 12:40 PM, philip@gmail.com  wrote:Theres a Makefile.am and Makefile.in in the xtide-2.15.5 directoryHere are the lines from the terminalOn Sunday, June 16, 2024 at 8:20:51 PM UTC+1 John Kline wrote:Also, are we sure the configure finished without error (there are dependencies you need to install as stated in my instructions)?Do you see a file named Makefile in the xtide-2.15.5 directory?On Jun 16, 2024, at 12:18 PM, John Kline  wrote:> Im trying yours again John and its OK when I do ./configure but when I try   make     it > replies>make: ***No targets specified and no makefile found. Stop>I take it thats not what I should get backThat’s hard to imagine if you are in the correct directory.  Exactly what directory were you in when you typed make?On Jun 16, 2024, at 11:41 AM, philip@gmail.com  wrote:Im trying yours again John and its OK when I do ./configure but when I try   make     it repliesmake: ***No targets specified and no makefile found. StopI take it thats not what I should get backPhilOn Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 on a new installation.My first extension to load was the forecast extension and when i type sudo apt-get install xtideit tells me the package is not available is only available from another source so logs are not availableI downloaded from https://github.com/chaunceygardiner/weewx-forecast John and I did try and follow your update but I couldnt get it to workIt told me NO TIDE data was available.On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:In the absence of any logs... or console transcripts... or snippets from your weewx.conf file... sorry, nobody can help muchOn Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:Im loading weewx V5 from new and while installing the forecast program I notice that XTides is no longer available.Can somebody point me in the right direction please as to how I can get XTides to workThanks



-- 
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/edc25c54-ae94-4304-b6a2-8d34317b034dn%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/c5a84c9f-a94d-49e1-bf92-ef18002ffd24n%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/63D152E9-E2DA-4EDC-BC0D-57891AB513D3%40johnkline.com.


Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread 'John Kline' via weewx-user
Yes, xtide-data installs, and is needed (per the README), but it is xtide itself that is not available.On Jun 16, 2024, at 1:23 PM, vince  wrote:On a pi5 with 64bit bookworm this worked.sudo apt-get install -y libpng-dev libtcd-dev xtide-data xtide-coastline xtide-data-nonfreewget http://deb.debian.org/debian/pool/main/x/xtide/xtide_2.15.2.orig.tar.bz2tar jxvf xtide_2.15.2.orig.tar.bz2cd xtide-2.15.2./configure --without-xmakesudo make installsudo ldconfig         # optional but doesn't hurttide -l SEATTLE(returns the tide estimates for seattle)On Sunday, June 16, 2024 at 12:58:30 PM UTC-7 John Kline wrote:configure generates a Makefile (with no extensions).Take a look at what you sent me, configure ended in an error.  Look right before you typed make!Did you install the prerequisite packages listed?I have this running on 64-bit Raspberry OS Bookworm.On Jun 16, 2024, at 12:40 PM, philip@gmail.com  wrote:Theres a Makefile.am and Makefile.in in the xtide-2.15.5 directoryHere are the lines from the terminalOn Sunday, June 16, 2024 at 8:20:51 PM UTC+1 John Kline wrote:Also, are we sure the configure finished without error (there are dependencies you need to install as stated in my instructions)?Do you see a file named Makefile in the xtide-2.15.5 directory?On Jun 16, 2024, at 12:18 PM, John Kline  wrote:> Im trying yours again John and its OK when I do ./configure but when I try   make     it > replies>make: ***No targets specified and no makefile found. Stop>I take it thats not what I should get backThat’s hard to imagine if you are in the correct directory.  Exactly what directory were you in when you typed make?On Jun 16, 2024, at 11:41 AM, philip@gmail.com  wrote:Im trying yours again John and its OK when I do ./configure but when I try   make     it repliesmake: ***No targets specified and no makefile found. StopI take it thats not what I should get backPhilOn Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 on a new installation.My first extension to load was the forecast extension and when i type sudo apt-get install xtideit tells me the package is not available is only available from another source so logs are not availableI downloaded from https://github.com/chaunceygardiner/weewx-forecast John and I did try and follow your update but I couldnt get it to workIt told me NO TIDE data was available.On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:In the absence of any logs... or console transcripts... or snippets from your weewx.conf file... sorry, nobody can help muchOn Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:Im loading weewx V5 from new and while installing the forecast program I notice that XTides is no longer available.Can somebody point me in the right direction please as to how I can get XTides to workThanks



-- 
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/edc25c54-ae94-4304-b6a2-8d34317b034dn%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+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/c5a84c9f-a94d-49e1-bf92-ef18002ffd24n%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/4fd86ba7-9694-4637-a209-9c64ec23f5e9n%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/18E5BB9D-7C7B-41C4-9224-AFFC3EA2B4A0%40johnkline.com.


Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread vince
On a pi5 with 64bit bookworm this worked.

sudo apt-get install -y libpng-dev libtcd-dev xtide-data xtide-coastline 
xtide-data-nonfree

wget 
http://deb.debian.org/debian/pool/main/x/xtide/xtide_2.15.2.orig.tar.bz2
tar jxvf xtide_2.15.2.orig.tar.bz2
cd xtide-2.15.2

./configure --without-x
make
sudo make install
sudo ldconfig # optional but doesn't hurt

tide -l SEATTLE
(returns the tide estimates for seattle)


On Sunday, June 16, 2024 at 12:58:30 PM UTC-7 John Kline wrote:

> configure generates a Makefile (with no extensions).
>
> Take a look at what you sent me, configure ended in an error.  Look right 
> before you typed make!
>
> Did you install the prerequisite packages listed?
> I have this running on 64-bit Raspberry OS Bookworm.
>
>
> On Jun 16, 2024, at 12:40 PM, philip@gmail.com  
> wrote:
>
> Theres a Makefile.am and Makefile.in in the xtide-2.15.5 directory
>
>
> Here are the lines from the terminal
>
>
>
> On Sunday, June 16, 2024 at 8:20:51 PM UTC+1 John Kline wrote:
>
>> Also, are we sure the configure finished without error (there are 
>> dependencies you need to install as stated in my instructions)?
>>
>> Do you see a file named Makefile in the xtide-2.15.5 directory?
>>
>> On Jun 16, 2024, at 12:18 PM, John Kline  wrote:
>>
>> 
>> > Im trying yours again John and its OK when I do ./configure but when I 
>> try   make it > replies
>> >make: ***No targets specified and no makefile found. Stop
>> >I take it thats not what I should get back
>>
>> That’s hard to imagine if you are in the correct directory.  Exactly what 
>> directory were you in when you typed make?
>>
>>
>> On Jun 16, 2024, at 11:41 AM, philip@gmail.com  
>> wrote:
>>
>> Im trying yours again John and its OK when I do ./configure but when I 
>> try   make it replies
>> make: ***No targets specified and no makefile found. Stop
>> I take it thats not what I should get back
>> Phil
>>
>> On Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:
>>
>>> Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx 
>>> V5 on a new installation.
>>> My first extension to load was the forecast extension and when i type 
>>> sudo apt-get install xtide
>>> it tells me the package is not available is only available from another 
>>> source so logs are not available
>>> I downloaded from https://github.com/chaunceygardiner/weewx-forecast 
>>> John and I did try and follow your update but I couldnt get it to work
>>> It told me NO TIDE data was available.
>>>
>>> On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:
>>>
 In the absence of any logs... or console transcripts... or snippets 
 from your weewx.conf file... sorry, nobody can help much

 On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com 
 wrote:

> Im loading weewx V5 from new and while installing the forecast program 
> I notice that XTides is no longer available.
> Can somebody point me in the right direction please as to how I can 
> get XTides to work
>
> 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+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/edc25c54-ae94-4304-b6a2-8d34317b034dn%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+...@googlegroups.com.
>
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/c5a84c9f-a94d-49e1-bf92-ef18002ffd24n%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/4fd86ba7-9694-4637-a209-9c64ec23f5e9n%40googlegroups.com.


Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread 'John Kline' via weewx-user
configure generates a Makefile (with no extensions).Take a look at what you sent me, configure ended in an error.  Look right before you typed make!Did you install the prerequisite packages listed?I have this running on 64-bit Raspberry OS Bookworm.On Jun 16, 2024, at 12:40 PM, philip@gmail.com  wrote:Theres a Makefile.am and Makefile.in in the xtide-2.15.5 directoryHere are the lines from the terminalOn Sunday, June 16, 2024 at 8:20:51 PM UTC+1 John Kline wrote:Also, are we sure the configure finished without error (there are dependencies you need to install as stated in my instructions)?Do you see a file named Makefile in the xtide-2.15.5 directory?On Jun 16, 2024, at 12:18 PM, John Kline  wrote:> Im trying yours again John and its OK when I do ./configure but when I try   make     it > replies>make: ***No targets specified and no makefile found. Stop>I take it thats not what I should get backThat’s hard to imagine if you are in the correct directory.  Exactly what directory were you in when you typed make?On Jun 16, 2024, at 11:41 AM, philip@gmail.com  wrote:Im trying yours again John and its OK when I do ./configure but when I try   make     it repliesmake: ***No targets specified and no makefile found. StopI take it thats not what I should get backPhilOn Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 on a new installation.My first extension to load was the forecast extension and when i type sudo apt-get install xtideit tells me the package is not available is only available from another source so logs are not availableI downloaded from https://github.com/chaunceygardiner/weewx-forecast John and I did try and follow your update but I couldnt get it to workIt told me NO TIDE data was available.On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:In the absence of any logs... or console transcripts... or snippets from your weewx.conf file... sorry, nobody can help muchOn Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:Im loading weewx V5 from new and while installing the forecast program I notice that XTides is no longer available.Can somebody point me in the right direction please as to how I can get XTides to workThanks



-- 
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/weewx-user/edc25c54-ae94-4304-b6a2-8d34317b034dn%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/c5a84c9f-a94d-49e1-bf92-ef18002ffd24n%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/64B67B7D-9F36-4B9E-84E7-5A07717CED20%40johnkline.com.


Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread philip....@gmail.com
Theres a Makefile.am and Makefile.in in the xtide-2.15.5 directory

Here are the lines from the terminal



On Sunday, June 16, 2024 at 8:20:51 PM UTC+1 John Kline wrote:

> Also, are we sure the configure finished without error (there are 
> dependencies you need to install as stated in my instructions)?
>
> Do you see a file named Makefile in the xtide-2.15.5 directory?
>
> On Jun 16, 2024, at 12:18 PM, John Kline  wrote:
>
> 
> > Im trying yours again John and its OK when I do ./configure but when I 
> try   make it > replies
> >make: ***No targets specified and no makefile found. Stop
> >I take it thats not what I should get back
>
> That’s hard to imagine if you are in the correct directory.  Exactly what 
> directory were you in when you typed make?
>
>
> On Jun 16, 2024, at 11:41 AM, philip@gmail.com  
> wrote:
>
> Im trying yours again John and its OK when I do ./configure but when I 
> try   make it replies
> make: ***No targets specified and no makefile found. Stop
> I take it thats not what I should get back
> Phil
>
> On Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:
>
>> Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx 
>> V5 on a new installation.
>> My first extension to load was the forecast extension and when i type 
>> sudo apt-get install xtide
>> it tells me the package is not available is only available from another 
>> source so logs are not available
>> I downloaded from https://github.com/chaunceygardiner/weewx-forecast 
>> John and I did try and follow your update but I couldnt get it to work
>> It told me NO TIDE data was available.
>>
>> On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:
>>
>>> In the absence of any logs... or console transcripts... or snippets from 
>>> your weewx.conf file... sorry, nobody can help much
>>>
>>> On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com 
>>> wrote:
>>>
 Im loading weewx V5 from new and while installing the forecast program 
 I notice that XTides is no longer available.
 Can somebody point me in the right direction please as to how I can get 
 XTides to work

 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+...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/edc25c54-ae94-4304-b6a2-8d34317b034dn%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/c5a84c9f-a94d-49e1-bf92-ef18002ffd24n%40googlegroups.com.
phil@raspberrypi:~ $ wget https://flaterco.com/files/xtide/xtide-2.15.5.tar.xz
--2024-06-16 19:35:02--  https://flaterco.com/files/xtide/xtide-2.15.5.tar.xz
Resolving flaterco.com (flaterco.com)... 216.92.78.25
Connecting to flaterco.com (flaterco.com)|216.92.78.25|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 574972 (561K) [application/x-tar]
Saving to: ‘xtide-2.15.5.tar.xz’

xtide-2.15.5.tar.xz 100%[===>] 561.50K   552KB/sin 1.0s

2024-06-16 19:35:04 (552 KB/s) - ‘xtide-2.15.5.tar.xz’ saved [574972/574972]

phil@raspberrypi:~ $ tar xf xtide-2.15.5.tar.xz
phil@raspberrypi:~ $ cd //home/phil/xtide-2.15.5
phil@raspberrypi://home/phil/xtide-2.15.5 $ sudo apt-get install libpng-dev
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following additional packages will be installed:
  libpng-tools
The following NEW packages will be installed:
  libpng-dev libpng-tools
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 480 kB of archives.
After this operation, 1,130 kB of additional disk space will be used.
Do you want to continue? [Y/n] y
Get:1 http://deb.debian.org/debian bookworm/main arm64 libpng-dev arm64 
1.6.39-2 [354 kB]
Get:2 http://deb.debian.org/debian bookworm/main arm64 libpng-tools arm64 
1.6.39-2 [126 kB]
Fetched 480 kB in 0s (1,559 kB/s) 
Selecting previously unselected package libpng-dev:arm64.
(Reading database ... 148496 files and directories currently installed.)
Preparing to unpack .../libpng-dev_1.6.39-2_arm64.deb ...
Unpacking libpng-dev:arm64 (1.6.39-2) ...
Selecting previously unselected package libpng-tools.
Preparing to unpack .../libpng-tools_1.6.39-2_arm64.deb ...
Unpacking libpng-tools (1.6.39-2) ...
Setting up libpng-tools (1.6.39-2) ...
Setting up libpng-dev:arm64 (1.6.39-2) ...
Processing triggers for man-db (2.11.2-2) ...

Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread 'John Kline' via weewx-user
Also, are we sure the configure finished without error (there are dependencies you need to install as stated in my instructions)?Do you see a file named Makefile in the xtide-2.15.5 directory?On Jun 16, 2024, at 12:18 PM, John Kline  wrote:> Im trying yours again John and its OK when I do ./configure but when I try   make     it > replies>make: ***No targets specified and no makefile found. Stop>I take it thats not what I should get backThat’s hard to imagine if you are in the correct directory.  Exactly what directory were you in when you typed make?On Jun 16, 2024, at 11:41 AM, philip@gmail.com  wrote:Im trying yours again John and its OK when I do ./configure but when I try   make     it repliesmake: ***No targets specified and no makefile found. StopI take it thats not what I should get backPhilOn Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 on a new installation.My first extension to load was the forecast extension and when i type sudo apt-get install xtideit tells me the package is not available is only available from another source so logs are not availableI downloaded from https://github.com/chaunceygardiner/weewx-forecast John and I did try and follow your update but I couldnt get it to workIt told me NO TIDE data was available.On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:In the absence of any logs... or console transcripts... or snippets from your weewx.conf file... sorry, nobody can help muchOn Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:Im loading weewx V5 from new and while installing the forecast program I notice that XTides is no longer available.Can somebody point me in the right direction please as to how I can get XTides to workThanks



-- 
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/edc25c54-ae94-4304-b6a2-8d34317b034dn%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/7AF69A6F-56DA-4645-8ADD-405B85BE12AB%40johnkline.com.


Re: [weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread 'John Kline' via weewx-user
> Im trying yours again John and its OK when I do ./configure but when I try   make     it > replies>make: ***No targets specified and no makefile found. Stop>I take it thats not what I should get backThat’s hard to imagine if you are in the correct directory.  Exactly what directory were you in when you typed make?On Jun 16, 2024, at 11:41 AM, philip@gmail.com  wrote:Im trying yours again John and its OK when I do ./configure but when I try   make     it repliesmake: ***No targets specified and no makefile found. StopI take it thats not what I should get backPhilOn Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 on a new installation.My first extension to load was the forecast extension and when i type sudo apt-get install xtideit tells me the package is not available is only available from another source so logs are not availableI downloaded from https://github.com/chaunceygardiner/weewx-forecast John and I did try and follow your update but I couldnt get it to workIt told me NO TIDE data was available.On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:In the absence of any logs... or console transcripts... or snippets from your weewx.conf file... sorry, nobody can help muchOn Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:Im loading weewx V5 from new and while installing the forecast program I notice that XTides is no longer available.Can somebody point me in the right direction please as to how I can get XTides to workThanks



-- 
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/edc25c54-ae94-4304-b6a2-8d34317b034dn%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/DD3CCA71-A033-4328-9C5C-CF760BF62DAC%40johnkline.com.


Re: [weewx-user] Loading Xtides with Forecast

2024-06-16 Thread 'Ian Millard' via weewx-user
root@dvm:/var/www/html/divumwx/heatmaps# sudo apt-get -y install xtide-data
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libwpe-1.0-1 libwpebackend-fdo-1.0-1 linux-headers-6.1.0-18-amd64 
linux-headers-6.1.0-18-common linux-image-6.1.0-18-amd64
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
  xtide-data
0 upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 588 kB of archives.
After this operation, 2115 kB of additional disk space will be used.
Get:1 http://deb.debian.org/debian bookworm/main amd64 xtide-data all 
20191229-1.1 [588 kB]
Fetched 588 kB in 0s (3211 kB/s)
Selecting previously unselected package xtide-data.
(Reading database ... 406470 files and directories currently installed.)
Preparing to unpack .../xtide-data_20191229-1.1_all.deb ...
Unpacking xtide-data (20191229-1.1) ...
Setting up xtide-data (20191229-1.1) ...
> On 16 Jun 2024, at 19:41, vince  wrote:
> 
> Easiest option is to just run 32-bit raspios and it'll all be there, but 
> other options include grabbing. a 32bit .deb and compiling your own from 
> sources.   I 'think' that you can download a .deb from 
> https://packages.debian.org/bullseye/armhf/xtide/download which also has 
> instructions for how to add that repo.
> 
> On Sunday, June 16, 2024 at 10:44:59 AM UTC-7 philip@gmail.com 
>  wrote:
>> Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 
>> on a new installation.
>> My first extension to load was the forecast extension and when i type 
>> sudo apt-get install xtide
>> it tells me the package is not available is only available from another 
>> source so logs are not available
>> I downloaded from https://github.com/chaunceygardiner/weewx-forecast John 
>> and I did try and follow your update but I couldnt get it to work
>> It told me NO TIDE data was available.
>> 
>> On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:
>>> In the absence of any logs... or console transcripts... or snippets from 
>>> your weewx.conf file... sorry, nobody can help much
>>> 
>>> On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com <> wrote:
 Im loading weewx V5 from new and while installing the forecast program I 
 notice that XTides is no longer available.
 Can somebody point me in the right direction please as to how I can get 
 XTides to work
 
 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 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/749fd2ad-ca34-4f3f-9a34-995ad5a68f28n%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/73E8D404-10E4-4CB1-A92D-F6EC07C7FFFE%40btinternet.com.


Re: [weewx-user] Loading Xtides with Forecast

2024-06-16 Thread 'Ian Millard' via weewx-user
Vince,

Following your often used advice, Google has the answer: -

sudo apt-get -y install xtide-data
Install and works perfectly with Bookworm.

> On 16 Jun 2024, at 19:41, vince  wrote:
> 
> Easiest option is to just run 32-bit raspios and it'll all be there, but 
> other options include grabbing. a 32bit .deb and compiling your own from 
> sources.   I 'think' that you can download a .deb from 
> https://packages.debian.org/bullseye/armhf/xtide/download which also has 
> instructions for how to add that repo.
> 
> On Sunday, June 16, 2024 at 10:44:59 AM UTC-7 philip@gmail.com 
>  wrote:
>> Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 
>> on a new installation.
>> My first extension to load was the forecast extension and when i type 
>> sudo apt-get install xtide
>> it tells me the package is not available is only available from another 
>> source so logs are not available
>> I downloaded from https://github.com/chaunceygardiner/weewx-forecast John 
>> and I did try and follow your update but I couldnt get it to work
>> It told me NO TIDE data was available.
>> 
>> On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:
>>> In the absence of any logs... or console transcripts... or snippets from 
>>> your weewx.conf file... sorry, nobody can help much
>>> 
>>> On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com <> wrote:
 Im loading weewx V5 from new and while installing the forecast program I 
 notice that XTides is no longer available.
 Can somebody point me in the right direction please as to how I can get 
 XTides to work
 
 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 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/weewx-user/749fd2ad-ca34-4f3f-9a34-995ad5a68f28n%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/1E9676BF-004B-4A77-BD80-7598DFE5D3CF%40btinternet.com.


[weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread vince
Easiest option is to just run 32-bit raspios and it'll all be there, but 
other options include grabbing. a 32bit .deb and compiling your own from 
sources.   I 'think' that you can download a .deb 
from https://packages.debian.org/bullseye/armhf/xtide/download which also 
has instructions for how to add that repo.

On Sunday, June 16, 2024 at 10:44:59 AM UTC-7 philip@gmail.com wrote:

> Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx 
> V5 on a new installation.
> My first extension to load was the forecast extension and when i type 
> sudo apt-get install xtide
> it tells me the package is not available is only available from another 
> source so logs are not available
> I downloaded from https://github.com/chaunceygardiner/weewx-forecast John 
> and I did try and follow your update but I couldnt get it to work
> It told me NO TIDE data was available.
>
> On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:
>
>> In the absence of any logs... or console transcripts... or snippets from 
>> your weewx.conf file... sorry, nobody can help much
>>
>> On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:
>>
>>> Im loading weewx V5 from new and while installing the forecast program I 
>>> notice that XTides is no longer available.
>>> Can somebody point me in the right direction please as to how I can get 
>>> XTides to work
>>>
>>> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/749fd2ad-ca34-4f3f-9a34-995ad5a68f28n%40googlegroups.com.


[weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread philip....@gmail.com
Im trying yours again John and its OK when I do ./configure but when I try  
 make it replies
make: ***No targets specified and no makefile found. Stop
I take it thats not what I should get back
Phil

On Sunday, June 16, 2024 at 6:44:59 PM UTC+1 philip@gmail.com wrote:

> Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx 
> V5 on a new installation.
> My first extension to load was the forecast extension and when i type 
> sudo apt-get install xtide
> it tells me the package is not available is only available from another 
> source so logs are not available
> I downloaded from https://github.com/chaunceygardiner/weewx-forecast John 
> and I did try and follow your update but I couldnt get it to work
> It told me NO TIDE data was available.
>
> On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:
>
>> In the absence of any logs... or console transcripts... or snippets from 
>> your weewx.conf file... sorry, nobody can help much
>>
>> On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:
>>
>>> Im loading weewx V5 from new and while installing the forecast program I 
>>> notice that XTides is no longer available.
>>> Can somebody point me in the right direction please as to how I can get 
>>> XTides to work
>>>
>>> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/edc25c54-ae94-4304-b6a2-8d34317b034dn%40googlegroups.com.


Re: [weewx-user] Loading Xtides with Forecast

2024-06-16 Thread Chuck Rhode
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, 16 Jun 2024 10:17:11 -0700
"'John Kline' via weewx-user"  wrote:

> Note: current versions of debian (bookworm) do not include xtide.

Apparently, it is available in the "Unstable (Sid)" repository.

+ deb http://ftp.us.debian.org/debian/ unstable main contrib

I'm not sure how it's being built.  There seems to be an outstanding
year-old compile bug:

+ https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1026439

- -- 
.. Be Seeing You,
.. Chuck Rhode, Sheboygan, WI, USA
.. Weather:  http://LacusVeris.com/WX
.. 69° — Wind SSE 21 mph

-BEGIN PGP SIGNATURE-

iF0EARECAB0WIQT+MY/5I/LMPSswTbVg2/xipKOWUgUCZm8v6AAKCRBg2/xipKOW
UhjrAJ9aoTA2VgyXyRsIjaoGj1yOn0EibQCfcIW6iZXHNwDfP3RkKQy5gauOlQM=
=QpY5
-END PGP SIGNATURE-

-- 
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/20240616133312.4a7bb828%40BigTimber.LacusVeris.com.


[weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread philip....@gmail.com
Im using the latest 64bit Debian 12 Bookworm on a Pi5 and building weewx V5 
on a new installation.
My first extension to load was the forecast extension and when i type 
sudo apt-get install xtide
it tells me the package is not available is only available from another 
source so logs are not available
I downloaded from https://github.com/chaunceygardiner/weewx-forecast John 
and I did try and follow your update but I couldnt get it to work
It told me NO TIDE data was available.

On Sunday, June 16, 2024 at 6:18:24 PM UTC+1 vince wrote:

> In the absence of any logs... or console transcripts... or snippets from 
> your weewx.conf file... sorry, nobody can help much
>
> On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:
>
>> Im loading weewx V5 from new and while installing the forecast program I 
>> notice that XTides is no longer available.
>> Can somebody point me in the right direction please as to how I can get 
>> XTides to work
>>
>> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/70a235d1-549f-48db-b324-96420b849a8dn%40googlegroups.com.


[weewx-user] Re: Loading Xtides with Forecast

2024-06-16 Thread vince
In the absence of any logs... or console transcripts... or snippets from 
your weewx.conf file... sorry, nobody can help much

On Sunday, June 16, 2024 at 10:09:59 AM UTC-7 philip@gmail.com wrote:

> Im loading weewx V5 from new and while installing the forecast program I 
> notice that XTides is no longer available.
> Can somebody point me in the right direction please as to how I can get 
> XTides to work
>
> 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/6ae6e437-a82d-4b2c-b418-796f3659643an%40googlegroups.com.


Re: [weewx-user] Loading Xtides with Forecast

2024-06-16 Thread 'John Kline' via weewx-user
Which version of weewx-forecast are you using?  I mention this issue and how to work around it in the README of my fork of weewx-forecast (https://github.com/chaunceygardiner/weewx-forecast):If you want tide forecasts, install xtides:
  sudo apt-get install xtide
Then determine your location:
  http://tides.mobilegeographics.com/

Note: current versions of debian (bookworm) do not include xtide.
This is perhaps true of other distributions.
You'll need to build it yourself and set the 'prog' variable in the xtide
section.
Example (building xtide)
  wget https://flaterco.com/files/xtide/xtide-2.15.5.tar.xz
  (decompress and cd to directory)
  sudo apt-get install libpng-dev
  sudo apt-get install libtcd-dev
  ./configure
  make
Example (setting prog variable t point to where you have built xtide):
[Forecast]
...
[[XTide]]
location = Palo Alto Yacht Harbor, San Francisco Bay, California
prog = /home/jkline/software/xtide-2.15.5/tide
You'll still need to install xtide-data.  Example:
apt install xtide-data
and you'll need to create an /etc/xtide.conf file to tell xtide where to find the harmonic
data you installed with xtide-data.  Example:
/etc/xtide.conf:
/usr/share/xtide
(xtide-data installs harmonic data in the /usr/share/xtide directory)
On Jun 16, 2024, at 10:10 AM, philip@gmail.com  wrote:Im loading weewx V5 from new and while installing the forecast program I notice that XTides is no longer available.Can somebody point me in the right direction please as to how I can get XTides to workThanks



-- 
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/72de0fa6-e933-4fb3-a6ef-958af37a00b7n%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/D82CF08F-CF5F-4206-A131-2CA847681879%40johnkline.com.


[weewx-user] Loading Xtides with Forecast

2024-06-16 Thread philip....@gmail.com
Im loading weewx V5 from new and while installing the forecast program I 
notice that XTides is no longer available.
Can somebody point me in the right direction please as to how I can get 
XTides to work

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/72de0fa6-e933-4fb3-a6ef-958af37a00b7n%40googlegroups.com.