On Tuesday, December 6, 2016 at 4:53:55 PM UTC-5, BORIS wrote:
>
> I have been using older versions of weewx with WMR88 and KlimaLogg pro on 
> different computers. Now I would like to merge the two systems to one 
> LinuxMint PC laptop. What is the best way to configure weewx ?  When I 
> installed  weewx 3.6.2 there was no selection possible for the KlimaLogg 
> driver, where is the latest version of the KlimaLogg driver?
>

boris,

you can easily run multiple weather stations with a single weewx 
installation.  however, you must have one weewx instance for each weather 
station.  each weewx instance will have its own configuration file and 
database.

how to do this?  the following assumes a deb or rpm installation:

1) install weewx, select the wmr100 driver.  if you have already installed, 
then reconfigure

sudo wee_config --reconfigure --driver=weewx.drivers.wmr100

2) stop weewx

sudo /etc/init.d/weewx stop

3) copy the default weewx.conf file

sudo cp /etc/weewx/weewx.conf /etc/weewx/wmr88.conf

4) install the klimalogg driver

https://github.com/matthewwall/weewx-klimalogg

5) rename the config file

sudo mv /etc/weewx/weewx.conf /etc/weewx/kl.conf

6) install the weewx-multi startup script

you can find the weewx-multi script in the repository:

https://raw.githubusercontent.com/weewx/weewx/master/util/init.d/weewx-multi

sudo cp weewx-multi /etc/init.d/weewx
sudo chmod 755 /etc/init.d/weewx
echo "wmr88 kl" | sudo tee /etc/default/weewx-multi

then you can start/stop like this:

sudo /etc/init.d/weewx start
sudo /etc/init.d/weewx status
sudo /etc/init.d/weewx stop

sudo /etc/init.d/weewx start kl # start just the klimalogg instance
sudo /etc/init.d/weewx stop wmr88 # stop just the wmr88 instance

m

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

Reply via email to