I'd suspect 2 instances of weewx to be running. http://n2uz.net/myweather/ss is running the simulator as noted in the footer.
http://n2uz.net/myweather/ is running a hybrid - ObserverIP from the about section, but some beautiful sine curves in a couple of the other graphs. sudo ps -adelf | grep weewx will show all instances of weewx running - there should only be one running eg:- 5 S root 1998 1 13 80 0 - 23370 hrtime Jan15 ? 12:18:55 python /usr/bin/weewxd --daemon --pidfile=/var/run/weewx.pid /etc/weewx/weewx.conf kill them by PID (4th field) eg: sudo kill -9 1998 will kill that one, do the same thing for any others. restart weex in your preferred manner - eg: /etc/init.d/weewx start and see if occurs again. Cheers Glenn rorpi - read only raspberry pi + weewx: now with scripts <https://github.com/glennmckechnie/rorpi-raspberrypi> On 19 January 2017 at 10:43, Jerry Deibel <[email protected]> wrote: > Hi all, > I just installed the steel gauges to my weewx system. > When I first start it and look at my web page n2uz.net/myweather/ss > It looks ok,( observerIP is the station and temps, etc are ok, but 5 > minutes later the web page updates and the station says Simulator > and the temps, etc change. > Question is why is it updating by itself and how is it getting to the > simulator? > At the same time i can look at my normal weewx output to my web page > n2uz.net/myweather/ > and that is ok. > Can weewx do both the normal display and the steel gauge display at the > same time? > Am I missing something, Do I have to somehow stop the normal weewx > output. > You can try looking at both web pages and see what is happening. > Jerry > > I used the following procedure. steelgauge version 2.5.17 > ____________________ > > Extract the zip package and: > > copy weather_server/WeeWX/skin.conf WEEWX_SKINS_DIR/ss/ > > copy weather_server/WeeWX/index.html.tmpl WEEWX_SKINS_DIR/ss/ > > copy weather_server/WeeWX/gauge-data.txt.tmpl WEEWX_SKINS_DIR/ss/ > > copy web_server/css folder to WEEWX_SKINS_DIR/ss/ > > copy web_server/scripts folder to WEEWX_SKINS_DIR/ss/ > > we need to edit: WEEWX_SKINS_DIR/ss/scripts/gauges.js > > weatherProgram : 6 > imgPathURL : '' > stationTimeout : 10 // set to twice archive interval, in minutes > showUvGauge : true or false // false if there is no UV sensor > showSolarGauge : true or false // false if there is no solar radiation sensor > > add a SteelSeries section to StdReport in weewx.conf > > [StdReport] > ... > [[SteelSeries]] > skin = ss > HTML_ROOT = public_html/ss > > The path on HTML_ROOT = public_html/ss may need to be altered to match > your setup. > > Then restart server: > > service weewx stop > service weewx start > > You should be now able to access your gauges from > http://your-server-address/ss once the gauges have been generated. > > You'll need to create a link from your main page to the ss page so people > and reach it. > ____________________________________________________________ > _______________ > > -- > 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 [email protected]. > 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
