Hi, Trying to do a weewx/mariadb/nginx docker install with MQTTSubscribe as a driver in weewx. Everything seems to build for weewx OK. But running into a password problem in weewx or mariadb containers. I have some basic docker knowledge. Here is my docker-compose.yml and snippet of weewx log. Suggestions? I have modified the original docker-compose and weewx.conf files. I am also using a different mosquitto broker on the local lan so I am not building it as a container.
On Sunday, February 20, 2022 at 4:43:15 p.m. UTC-5 do...@dougjenkins.com wrote: > Yes. I would run docker-compose up and check to see if the docker > containers are running. If you are using portainer, check the stack there. > > You will know if weewx is working by reviewing the log from the docker > container. Again I like using portainer for this as the GUI allows an easy > interface to see the results. > > Common issues that you will run into are permissions to the host > directories that weewx/MQTT/NGINX need to access. then the next possible > issue would be access to your weather station hardware (assumed you plugged > the console to the RPI). You will need to debug this a bit to get it to > work properly. > > if you need to debug the solution, just edit the weewx.conf located in > your config folder on the host and restart the containers. Weewx.conf is > the main file that governs weewx. > > DDJ > > On Sun, Feb 20, 2022 at 4:37 PM Adam Morgan <muchgoo...@gmail.com> wrote: > >> Sorry, did a private response by mistake a minute ago. I do understand >> the basics of docker. This particular approach is a bit new to me so I >> thought I would ask what to do next. The config files are in place - is it >> a matter of just issuing a docker run with the image? >> >> On Sunday, February 20, 2022 at 2:53:33 PM UTC-5 vince wrote: >> >>> On Sunday, February 20, 2022 at 11:15:42 AM UTC-8 muchgoo...@gmail.com >>> wrote: >>> >>>> I then ran all of your commands by hand. The first was running "docker >>>> build ." to initiate the build. I then did each command one by one. That >>>> seemed to go well - I see the image and the folders populated as expected. >>>> >>>> Now what? Should I see a container? >>>> >>> >>> You guys might want to consider taking this one offline to email at this >>> point, but....... >>> >>> Tom - I'd suggest you do might some more reading up on Docker.... >>> (do https://www.docker.com/101-tutorial - it's pretty good) >>> >>> - An "image" is a built configured reusable thing. >>> - A "container" is a running instance of that image. >>> - Building an image ala 'docker build' or 'docker-compose build' >>> does not create a running instance (container) of that image. >>> - You have to do "docker run' or 'docker-compose up' to start a >>> container running. >>> - Changes made while building an image persist. >>> - Changes made within a running container go 'poof' when the >>> container stops >>> >>> What his scripts are doing is populating an external mounted directory >>> under /srv on persistent storage. >>> >>> But blindly running somebody else's script without spinning yourself up >>> a bit more on how Docker works is just going to be confusing and >>> frustrating. >>> >>> -- >> 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/63f503fd-c774-45c9-9690-31c9fc7f3b7bn%40googlegroups.com >> >> <https://groups.google.com/d/msgid/weewx-user/63f503fd-c774-45c9-9690-31c9fc7f3b7bn%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > > -- 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/bc61d7f6-ca0e-4ddc-bd5f-0ea8619c2d4dn%40googlegroups.com.
docker-compose.yml
Description: Binary data
Oct 9 18:17:01 87539a9d575c CRON[43]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly) Oct 9 18:17:18 87539a9d575c weewx[31] INFO __main__: retrying... Oct 9 18:17:18 87539a9d575c weewx[31] INFO __main__: Using configuration file /home/weewx/conf/weewx.conf Oct 9 18:17:18 87539a9d575c weewx[31] INFO __main__: Debug is 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO weewx.engine: Loading station type MQTTSubscribeDriver (user.MQTTSubscribe) Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Version is 2.2.2 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Log level: 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Log debug setting: 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Log console: False Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Log file: None Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Max loop interval is: 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) 'use_topic_as_fieldname' option is no longer needed and can be removed. Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) message_callback_provider_name is user.MQTTSubscribe.MessageCallbackProvider Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) clientid is MQTTSubscribe-3682 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) client_session is True Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) host is 192.168.1.32 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) port is 1883 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) keepalive is 180 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) username is test Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) min_delay is 1 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) max_delay is 120 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) password is set Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Archive topic is None Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Wait before retry is 2 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Connected with result code 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Waiting for MQTT connection. Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Connected flags {'session present': 0} Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/humidity2 has a mid 1 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/temp2 has a mid 2 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/temp has a mid 3 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/pressure has a mid 4 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/windspeed has a mid 5 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/wind_peak has a mid 6 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/wind_dir has a mid 7 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/rain has a mid 8 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/UV has a mid 9 and rc 0 Oct 9 18:17:18 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribing to Pico/solar1145 has a mid 10 and rc 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 1 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 2 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 3 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 4 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 5 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 6 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 7 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 8 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 9 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Subscribed to mid: 10 is size 1 has a QOS of 0 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) MQTT initialization complete. Oct 9 18:17:19 87539a9d575c weewx[31] INFO weewx.engine: StdConvert target unit is 0x1 Oct 9 18:17:19 87539a9d575c weewx[31] INFO user.MQTTSubscribe: (Driver) Disconnected with result code 0 Oct 9 18:17:19 87539a9d575c weewx[31] CRITICAL __main__: Database OperationalError exception: (1045, "Access denied for user 'weewx'@'weewx_data_engine.weewx-docker-stack-main_wxnet' (using password: YES)") Oct 9 18:17:19 87539a9d575c weewx[31] CRITICAL __main__: **** Waiting 2 minutes then retrying... root@87539a9d575c:/var/log#