From 3510657670bbcd3d222aeb420ffc18fe7ee5b6cf Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 27 Jan 2021 12:06:39 +0100 Subject: [PATCH 01/19] SSL usage just on loadbalancer level --- ...pose.selfsigned.yml => docker-compose.yml} | 5 +- selfsigned/generate-certs.sh | 0 selfsigned/selfsigned.env | 16 +- selfsigned/telegraf/telegraf.toml | 12 +- .../traefik/configurations/services-http.toml | 6 +- selfsigned/traefik/log/access.log | 432 ++++++++++++++++++ 6 files changed, 450 insertions(+), 21 deletions(-) rename selfsigned/{docker-compose.selfsigned.yml => docker-compose.yml} (95%) mode change 100644 => 100755 selfsigned/generate-certs.sh diff --git a/selfsigned/docker-compose.selfsigned.yml b/selfsigned/docker-compose.yml similarity index 95% rename from selfsigned/docker-compose.selfsigned.yml rename to selfsigned/docker-compose.yml index a789342..d46b44e 100644 --- a/selfsigned/docker-compose.selfsigned.yml +++ b/selfsigned/docker-compose.yml @@ -39,7 +39,6 @@ services: container_name: influxdb env_file: selfsigned.env volumes: - - ./certs/influxdb:/etc/ssl/influxdb - influxdb_data:/var/lib/influxdb networks: - "iotstack" @@ -53,7 +52,6 @@ services: image: eclipse-mosquitto container_name: mosquitto volumes: - - ./certs/mqtt:/mosquitto/config/certs - ./mosquitto/config:/mosquitto/config - ./mosquitto/log:/mosquitto/log - ./mosquitto/data:/mosquitto/data @@ -81,8 +79,7 @@ services: links: - influxdb env_file: selfsigned.env - volumes: - - ./certs/mqtt:/etc/telegraf + volumes: - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro networks: - "iotstack" diff --git a/selfsigned/generate-certs.sh b/selfsigned/generate-certs.sh old mode 100644 new mode 100755 diff --git a/selfsigned/selfsigned.env b/selfsigned/selfsigned.env index 0664afb..2458daf 100644 --- a/selfsigned/selfsigned.env +++ b/selfsigned/selfsigned.env @@ -2,9 +2,9 @@ INFLUXDB_DB=edge INFLUXDB_HTTP_AUTH_ENABLED=true -INFLUXDB_HTTP_HTTPS_ENABLED=true -INFLUXDB_HTTP_HTTPS_CERTIFICATE=/etc/ssl/influxdb/influx-server.crt -INFLUXDB_HTTP_HTTPS_PRIVATE_KEY=/etc/ssl/influxdb/influx-server.key +#INFLUXDB_HTTP_HTTPS_ENABLED=true +#INFLUXDB_HTTP_HTTPS_CERTIFICATE=/etc/ssl/influxdb/influx-server.crt +#INFLUXDB_HTTP_HTTPS_PRIVATE_KEY=/etc/ssl/influxdb/influx-server.key INFLUXDB_ADMIN_USER=admin INFLUXDB_ADMIN_PASSWORD=tiguitto @@ -20,12 +20,12 @@ INFLUXDB_UDP_DATABASE=traefik # Grafana Environment Variables GF_SECURITY_ADMIN_USER=admin GF_SECURITY_ADMIN_PASSWORD=tiguitto -GF_SERVER_PROTOCOL=https -GF_SERVER_ROOT_URL=https://127.0.0.1:3000/grafana +GF_SERVER_PROTOCOL=http +GF_SERVER_ROOT_URL=http://127.0.0.1:3000/grafana GF_SERVER_SERVE_FROM_SUB_PATH=true -GF_SERVER_CERT_FILE=/etc/ssl/certs/grafana-server.crt -GF_SERVER_CERT_KEY=/etc/ssl/certs/grafana-server.key +#GF_SERVER_CERT_FILE=/etc/ssl/certs/grafana-server.crt +#GF_SERVER_CERT_KEY=/etc/ssl/certs/grafana-server.key # Telegraf Environment Variables TG_MOSQUITTO_USERNAME=subclient -TG_MOSQUITTO_PASSWORD=tiguitto \ No newline at end of file +TG_MOSQUITTO_PASSWORD=tiguitto diff --git a/selfsigned/telegraf/telegraf.toml b/selfsigned/telegraf/telegraf.toml index 930c1d0..24e0e63 100644 --- a/selfsigned/telegraf/telegraf.toml +++ b/selfsigned/telegraf/telegraf.toml @@ -16,7 +16,7 @@ # OUTPUT PLUGINS # ############################################################# [[outputs.influxdb]] - urls = [ "https://influxdb:8086" ] + urls = [ "http://influxdb:8086" ] database = "edge" @@ -69,7 +69,7 @@ [[inputs.mqtt_consumer]] - servers = [ "ssl://mosquitto:8883" ] + servers = [ "tcp://mosquitto:8883" ] # Topics to subscribe to: topics = [ @@ -91,11 +91,11 @@ ## Use TLS but skip chain & host verification # Use Certificates if `require_certificate true` in `mosquitto.conf` file - tls_ca = "/etc/telegraf/ca.crt" - tls_cert = "/etc/telegraf/mqtt-client.crt" - tls_key = "/etc/telegraf/mqtt-client.key" + #tls_ca = "/etc/telegraf/ca.crt" + #tls_cert = "/etc/telegraf/mqtt-client.crt" + #tls_key = "/etc/telegraf/mqtt-client.key" ## Use TLS but skip chain & host verification - insecure_skip_verify = true + #insecure_skip_verify = true # Incoming MQTT Payload from Sensor nodes is in InfluxDB Line Protocol strings data_format = "influx" diff --git a/selfsigned/traefik/configurations/services-http.toml b/selfsigned/traefik/configurations/services-http.toml index 6f13bee..32efa12 100644 --- a/selfsigned/traefik/configurations/services-http.toml +++ b/selfsigned/traefik/configurations/services-http.toml @@ -3,7 +3,7 @@ [http.services.grafana] [http.services.grafana.loadBalancer] [[http.services.grafana.loadBalancer.servers]] - url = "https://grafana:3000" + url = "http://grafana:3000" [http.services.grafana.loadBalancer.healthCheck] path = "grafana/api/health" interval = "30s" @@ -11,7 +11,7 @@ [http.services.influxdb] [http.services.influxdb.loadBalancer] [[http.services.influxdb.loadBalancer.servers]] - url = "https://influxdb:8086" + url = "http://influxdb:8086" [http.services.influxdb.loadBalancer.healthCheck] path = "/ping" - interval = "30s" \ No newline at end of file + interval = "30s" diff --git a/selfsigned/traefik/log/access.log b/selfsigned/traefik/log/access.log index e69de29..0742e65 100644 --- a/selfsigned/traefik/log/access.log +++ b/selfsigned/traefik/log/access.log @@ -0,0 +1,432 @@ +37.138.224.211 - - [27/Jan/2021:10:10:35 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1 "web-to-web-secure@internal" "-" 3ms +37.138.224.211 - - [27/Jan/2021:10:10:44 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms +37.138.224.211 - - [27/Jan/2021:10:11:00 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 3 "-" "-" 1ms +37.138.224.211 - - [27/Jan/2021:10:11:05 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 4 "-" "-" 0ms +37.138.224.211 - - [27/Jan/2021:10:11:23 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 5 "-" "-" 1ms +37.138.224.211 - - [27/Jan/2021:10:11:25 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 6 "-" "-" 0ms +37.138.224.211 - - [27/Jan/2021:10:11:30 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 7 "web-to-web-secure@internal" "-" 2ms +37.138.224.211 - - [27/Jan/2021:10:11:30 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 8 "-" "-" 1ms +37.138.224.211 - - [27/Jan/2021:10:11:39 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 10 "-" "-" 0ms +37.138.224.211 - - [27/Jan/2021:10:15:24 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 0ms +37.138.224.211 - - [27/Jan/2021:10:15:39 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 1ms +37.138.224.211 - - [27/Jan/2021:10:20:35 +0000] "GET /grafana HTTP/2.0" 401 42 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana HTTP/2.0" 302 37 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 12ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 25ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 34ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 349ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 353ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 703ms +37.138.224.211 - - [27/Jan/2021:10:20:42 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 146ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 7544ms +37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 12387ms +37.138.224.211 - - [27/Jan/2021:10:20:54 +0000] "GET /grafana/ HTTP/2.0" 302 37 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:20:54 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 13ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 325ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 325ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 1071ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 226ms +37.138.224.211 - - [27/Jan/2021:10:20:57 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 18ms +37.138.224.211 - - [27/Jan/2021:10:20:57 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:20:58 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 8038ms +37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 13152ms +37.138.224.211 - - [27/Jan/2021:10:21:09 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 25 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:21:09 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 26 "grafana-router@file" "http://grafana:3000" 3ms +37.138.224.211 - - [27/Jan/2021:10:21:15 +0000] "POST /grafana/login HTTP/2.0" 401 42 "-" "-" 27 "grafana-router@file" "http://grafana:3000" 47ms +37.138.224.211 - - [27/Jan/2021:10:21:22 +0000] "POST /grafana/login HTTP/2.0" 200 49 "-" "-" 28 "grafana-router@file" "http://grafana:3000" 37ms +37.138.224.211 - - [27/Jan/2021:10:21:22 +0000] "GET /grafana/ HTTP/2.0" 200 30100 "-" "-" 29 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 30 "grafana-router@file" "http://grafana:3000" 20ms +37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 31 "grafana-router@file" "http://grafana:3000" 19ms +37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 32 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 33 "grafana-router@file" "http://grafana:3000" 25ms +37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 34 "grafana-router@file" "http://grafana:3000" 13ms +37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 35 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 36 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 37 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 38 "grafana-router@file" "http://grafana:3000" 13ms +37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 39 "grafana-router@file" "http://grafana:3000" 13ms +37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 40 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:21:28 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 41 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:21:28 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 2 "-" "-" 42 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:21:28 +0000] "GET /grafana/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 HTTP/2.0" 200 16204 "-" "-" 43 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/build/NewDataSourcePage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19014 "-" "-" 44 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/api/plugins?enabled=1&type=datasource HTTP/2.0" 200 9971 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/prometheus/img/prometheus_logo.svg HTTP/2.0" 200 1075 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 45ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 49 "grafana-router@file" "http://grafana:3000" 30ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/loki/img/loki_icon.svg HTTP/2.0" 200 6953 "-" "-" 50 "grafana-router@file" "http://grafana:3000" 32ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/graphite/img/graphite_logo.png HTTP/2.0" 200 4452 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 43ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/opentsdb/img/opentsdb_logo.png HTTP/2.0" 200 9600 "-" "-" 48 "grafana-router@file" "http://grafana:3000" 40ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/zipkin/img/zipkin-logo.svg HTTP/2.0" 200 20677 "-" "-" 53 "grafana-router@file" "http://grafana:3000" 22ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/postgres/img/postgresql_logo.svg HTTP/2.0" 200 4464 "-" "-" 55 "grafana-router@file" "http://grafana:3000" 28ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/jaeger/img/jaeger_logo.svg HTTP/2.0" 200 35107 "-" "-" 52 "grafana-router@file" "http://grafana:3000" 33ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/mysql/img/mysql_logo.svg HTTP/2.0" 200 10863 "-" "-" 54 "grafana-router@file" "http://grafana:3000" 30ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/elasticsearch/img/elasticsearch.svg HTTP/2.0" 200 2394 "-" "-" 51 "grafana-router@file" "http://grafana:3000" 46ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/mssql/img/sql_server_logo.svg HTTP/2.0" 200 22436 "-" "-" 56 "grafana-router@file" "http://grafana:3000" 33ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/splunk_logo_128.png HTTP/2.0" 200 4019 "-" "-" 60 "grafana-router@file" "http://grafana:3000" 30ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/cloud-monitoring/img/cloud_monitoring_logo.svg HTTP/2.0" 200 2978 "-" "-" 57 "grafana-router@file" "http://grafana:3000" 33ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/cloudwatch/img/amazon-web-services.png HTTP/2.0" 200 7838 "-" "-" 58 "grafana-router@file" "http://grafana:3000" 33ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg HTTP/2.0" 200 9593 "-" "-" 59 "grafana-router@file" "http://grafana:3000" 32ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/testdata/img/testdata.svg HTTP/2.0" 200 1476 "-" "-" 67 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/appdynamics.svg HTTP/2.0" 200 1032 "-" "-" 66 "grafana-router@file" "http://grafana:3000" 18ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/dynatrace.png HTTP/2.0" 200 2328 "-" "-" 64 "grafana-router@file" "http://grafana:3000" 30ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/servicenow.svg HTTP/2.0" 200 1674 "-" "-" 61 "grafana-router@file" "http://grafana:3000" 33ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/datadog.png HTTP/2.0" 200 8009 "-" "-" 65 "grafana-router@file" "http://grafana:3000" 21ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/newrelic.svg HTTP/2.0" 200 4215 "-" "-" 63 "grafana-router@file" "http://grafana:3000" 32ms +37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/oracle.png HTTP/2.0" 200 74402 "-" "-" 62 "grafana-router@file" "http://grafana:3000" 34ms +37.138.224.211 - - [27/Jan/2021:10:21:31 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 2 "-" "-" 68 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:21:31 +0000] "POST /grafana/api/datasources HTTP/2.0" 200 370 "-" "-" 69 "grafana-router@file" "http://grafana:3000" 14ms +37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 70 "grafana-router@file" "http://grafana:3000" 3ms +37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 301 "-" "-" 71 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 72 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 73 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 452 "-" "-" 74 "grafana-router@file" "http://grafana:3000" 40ms +37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13185 "-" "-" 75 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 381 "-" "-" 76 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "GET /grafana/api/datasources/proxy/1/query?q=SHOW%20RETENTION%20POLICIES%20on%20%22%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 77 "grafana-router@file" "http://grafana:3000" 30055ms +37.138.224.211 - - [27/Jan/2021:10:27:39 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 2 "influxdb-router@file" "http://influxdb:8086" 10ms +37.138.224.211 - - [27/Jan/2021:10:28:22 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 3 "influxdb-router@file" "http://influxdb:8086" 11ms +37.138.224.211 - - [27/Jan/2021:10:28:26 +0000] "GET /influxdb/query HTTP/2.0" 401 55 "-" "-" 4 "influxdb-router@file" "http://influxdb:8086" 3ms +37.138.224.211 - - [27/Jan/2021:10:28:35 +0000] "GET /influxdb/query HTTP/2.0" 400 45 "-" "-" 5 "influxdb-router@file" "http://influxdb:8086" 101ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana HTTP/2.0" 302 37 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 24ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 26ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 24ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 372ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 363ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 808ms +37.138.224.211 - - [27/Jan/2021:10:28:48 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 349ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 6687ms +37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 11457ms +37.138.224.211 - - [27/Jan/2021:10:29:05 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:29:05 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - - [27/Jan/2021:10:29:11 +0000] "POST /grafana/login HTTP/2.0" 200 49 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 57ms +37.138.224.211 - - [27/Jan/2021:10:29:11 +0000] "GET /grafana/ HTTP/2.0" 200 31055 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 25ms +37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 27ms +37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 20ms +37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 20ms +37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 32ms +37.138.224.211 - - [27/Jan/2021:10:29:13 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 2ms +37.138.224.211 - - [27/Jan/2021:10:29:13 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 25 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:29:13 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 26 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 27 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 28 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 29 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 30 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 31 "grafana-router@file" "http://grafana:3000" 3ms +37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/public/build/DashboardListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2811 "-" "-" 32 "grafana-router@file" "http://grafana:3000" 14ms +37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/api/search?query=&starred=false&skipRecent=true&skipStarred=true&folderIds=0&layout=folders HTTP/2.0" 200 2 "-" "-" 33 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/api/search/sorting HTTP/2.0" 200 267 "-" "-" 35 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/api/dashboards/tags HTTP/2.0" 200 2 "-" "-" 34 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 HTTP/2.0" 200 16204 "-" "-" 36 "grafana-router@file" "http://grafana:3000" 3ms +37.138.224.211 - - [27/Jan/2021:10:29:26 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 37 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:10:29:26 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 314 "-" "-" 38 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:29:26 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 39 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 40 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 381 "-" "-" 41 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 42 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 43 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:29:40 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 454 "-" "-" 44 "grafana-router@file" "http://grafana:3000" 18ms +37.138.224.211 - - [27/Jan/2021:10:29:40 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13185 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:29:40 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 383 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:29:41 +0000] "GET /grafana/api/datasources/proxy/1/query?q=SHOW%20RETENTION%20POLICIES%20on%20%22%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 30039ms +37.138.224.211 - - [27/Jan/2021:10:30:56 +0000] "GET /influxdb/query?SHOW%20DATABASE HTTP/2.0" 400 45 "-" "-" 48 "influxdb-router@file" "http://influxdb:8086" 5ms +37.138.224.211 - - [27/Jan/2021:10:36:26 +0000] "POST /query?u=admin&p=tiguitto HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 1ms +37.138.224.211 - - [27/Jan/2021:10:37:38 +0000] "GET /influxdb HTTP/2.0" 404 19 "-" "-" 2 "influxdb-router@file" "http://influxdb:8086" 2ms +37.138.224.211 - - [27/Jan/2021:10:37:45 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 3 "influxdb-router@file" "http://influxdb:8086" 12ms +37.138.224.211 - - [27/Jan/2021:10:37:48 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 4 "influxdb-router@file" "http://influxdb:8086" 5ms +37.138.224.211 - - [27/Jan/2021:10:37:48 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 5 "influxdb-router@file" "http://influxdb:8086" 2ms +37.138.224.211 - - [27/Jan/2021:10:37:55 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 6 "influxdb-router@file" "http://influxdb:8086" 3ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana HTTP/2.0" 200 31055 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 37ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 28ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 27ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 240ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 421ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 820ms +37.138.224.211 - - [27/Jan/2021:10:38:18 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 181ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 7988ms +37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 12923ms +37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 18ms +37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 26ms +37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 36ms +37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 25 "grafana-router@file" "http://grafana:3000" 14ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 22ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 26 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 27 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 28 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:38:37 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 29 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - - [27/Jan/2021:10:38:37 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 316 "-" "-" 30 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:38:37 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 31 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - - [27/Jan/2021:10:38:40 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 32 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:38:40 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 383 "-" "-" 33 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:38:40 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 34 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:38:41 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 35 "grafana-router@file" "http://grafana:3000" 3ms +37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 462 "-" "-" 36 "grafana-router@file" "http://grafana:3000" 20ms +37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13193 "-" "-" 37 "grafana-router@file" "http://grafana:3000" 13ms +37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 391 "-" "-" 38 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "GET /grafana/api/datasources/proxy/1/query?db=tiguitto&q=SHOW%20RETENTION%20POLICIES%20on%20%22tiguitto%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 39 "grafana-router@file" "http://grafana:3000" 30055ms +37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 482 "-" "-" 40 "grafana-router@file" "http://grafana:3000" 55ms +37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13189 "-" "-" 41 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 411 "-" "-" 42 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 482 "-" "-" 44 "grafana-router@file" "http://grafana:3000" 24ms +37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13189 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 411 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 482 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 18ms +37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13189 "-" "-" 48 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 411 "-" "-" 49 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 43 "grafana-router@file" "http://grafana:3000" 30052ms +37.138.224.211 - - [27/Jan/2021:10:40:28 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 50 "grafana-router@file" "http://grafana:3000" 30069ms +37.138.224.211 - - [27/Jan/2021:10:41:17 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 52 "grafana-router@file" "http://grafana:3000" 73ms +37.138.224.211 - - [27/Jan/2021:10:40:48 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 51 "grafana-router@file" "http://grafana:3000" 30016ms +37.138.224.211 - - [27/Jan/2021:10:41:18 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 53 "grafana-router@file" "http://grafana:3000" 12ms +37.138.224.211 - - [27/Jan/2021:10:41:18 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 54 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:41:18 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 499 21 "-" "-" 55 "grafana-router@file" "http://grafana:3000" 10696ms +37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 158ms +37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 30067ms +37.138.224.211 - - [27/Jan/2021:10:49:50 +0000] "GET /dashboard HTTP/2.0" 401 17 "-" "-" 5 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:49:59 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 6 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:02 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 7 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:07 +0000] "GET /api/version HTTP/2.0" 200 83 "-" "-" 8 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 9 "api-router@file" "-" 7ms +37.138.224.211 - admin [27/Jan/2021:10:50:07 +0000] "GET /api/entrypoints HTTP/2.0" 200 799 "-" "-" 10 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:08 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 11 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 12 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 13 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:50:21 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 14 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:21 +0000] "GET /api/udp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 3 "-" "-" 15 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:21 +0000] "GET /api/udp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 16 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:22 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 419 "-" "-" 17 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:50:22 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 18 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:50:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 19 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:50:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 20 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:50:25 +0000] "GET /api/entrypoints HTTP/2.0" 200 799 "-" "-" 21 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:50:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 22 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:50:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 23 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 24 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 25 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 26 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:50:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 27 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:47 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 769 "-" "-" 28 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:50:47 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 29 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:50:51 +0000] "GET /api/http/middlewares/redirect-web-to-web-secure@internal HTTP/2.0" 200 218 "-" "-" 30 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:50:51 +0000] "GET /api/http/routers/web-to-web-secure@internal HTTP/2.0" 200 252 "-" "-" 31 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:50:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 32 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:50:55 +0000] "GET /api/entrypoints HTTP/2.0" 200 799 "-" "-" 33 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:50:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 34 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 35 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/http/routers?search=&status=&per_page=8&page=1 HTTP/2.0" 200 2007 "-" "-" 36 "api-router@file" "-" 8ms +37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 37 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 38 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 39 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 40 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 41 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:51:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 42 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 44 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:10:51:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 45 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:10:51:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 46 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:22 +0000] "GET /api/http/routers/influxdb-router@file HTTP/2.0" 200 246 "-" "-" 47 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:22 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 48 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:22 +0000] "GET /api/http/middlewares/influxdb-mw@file HTTP/2.0" 200 186 "-" "-" 49 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:51:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 50 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 51 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 52 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:51:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 53 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:51:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 54 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 55 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:51:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 56 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:10:52:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 57 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:52:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 58 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:52:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:52:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 60 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:52:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 8ms +37.138.224.211 - admin [27/Jan/2021:10:52:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 9ms +37.138.224.211 - admin [27/Jan/2021:10:52:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 63 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:52:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:52:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:10:52:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 66 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:52:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 67 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:52:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:53:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 69 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:53:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 70 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:53:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 71 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:53:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 72 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:53:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:53:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:53:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:10:53:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:53:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:53:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 78 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:53:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 12ms +37.138.224.211 - admin [27/Jan/2021:10:54:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:54:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:10:54:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:54:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 7ms +37.138.224.211 - - [27/Jan/2021:10:54:17 +0000] "POST /influxdb/ HTTP/1.1" 404 19 "-" "-" 84 "influxdb-router@file" "http://influxdb:8086" 12ms +37.138.224.211 - admin [27/Jan/2021:10:54:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:54:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:54:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:54:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:54:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:54:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 90 "api-router@file" "-" 7ms +37.138.224.211 - - [27/Jan/2021:10:54:47 +0000] "POST /influxdb/query HTTP/1.1" 401 55 "-" "-" 91 "influxdb-router@file" "http://influxdb:8086" 6ms +37.138.224.211 - admin [27/Jan/2021:10:54:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:54:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:55:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:55:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 7ms +37.138.224.211 - - [27/Jan/2021:10:55:06 +0000] "POST /influxdb/query HTTP/1.1" 200 107 "-" "-" 96 "influxdb-router@file" "http://influxdb:8086" 9ms +37.138.224.211 - admin [27/Jan/2021:10:55:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:55:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:55:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:55:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:55:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:55:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 102 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:10:55:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:55:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:10:55:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:55:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:56:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:56:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 108 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:56:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:56:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:56:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:56:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:56:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:10:56:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:56:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:56:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:56:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:56:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:57:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:57:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 120 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:57:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 121 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:57:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 122 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:57:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 123 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:57:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:57:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:10:57:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 126 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:57:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 127 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:57:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 128 "api-router@file" "-" 10ms +37.138.224.211 - - [27/Jan/2021:10:57:45 +0000] "GET /grafana/ HTTP/2.0" 200 31085 "-" "-" 129 "grafana-router@file" "http://grafana:3000" 25ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 130 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 132 "grafana-router@file" "http://grafana:3000" 30ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 131 "grafana-router@file" "http://grafana:3000" 1019ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 133 "grafana-router@file" "http://grafana:3000" 1631ms +37.138.224.211 - - [27/Jan/2021:10:57:47 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 137 "grafana-router@file" "http://grafana:3000" 414ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 135 "grafana-router@file" "http://grafana:3000" 3300ms +37.138.224.211 - admin [27/Jan/2021:10:57:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 138 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:57:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 139 "api-router@file" "-" 8ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 134 "grafana-router@file" "http://grafana:3000" 9503ms +37.138.224.211 - admin [27/Jan/2021:10:58:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 140 "api-router@file" "-" 3ms +37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 136 "grafana-router@file" "http://grafana:3000" 14524ms +37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 141 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 142 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 144 "grafana-router@file" "http://grafana:3000" 29ms +37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 145 "grafana-router@file" "http://grafana:3000" 88ms +37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 143 "grafana-router@file" "http://grafana:3000" 259ms +37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 146 "grafana-router@file" "http://grafana:3000" 116ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 147 "grafana-router@file" "http://grafana:3000" 12ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 149 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 150 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 152 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 153 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 151 "grafana-router@file" "http://grafana:3000" 243ms +37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 148 "grafana-router@file" "http://grafana:3000" 659ms +37.138.224.211 - admin [27/Jan/2021:10:58:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 154 "api-router@file" "-" 5ms +37.138.224.211 - - [27/Jan/2021:10:58:05 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 155 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:58:05 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 355 "-" "-" 156 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:58:05 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 157 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 158 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 159 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 160 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 161 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - admin [27/Jan/2021:10:58:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 162 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:58:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 163 "api-router@file" "-" 3ms +37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 164 "grafana-router@file" "http://grafana:3000" 11ms +37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 165 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 166 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - admin [27/Jan/2021:10:58:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 168 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:58:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 169 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:58:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 170 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:58:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 171 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:58:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 172 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:58:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 173 "api-router@file" "-" 6ms +37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 167 "grafana-router@file" "http://grafana:3000" 30077ms +37.138.224.211 - admin [27/Jan/2021:10:58:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 174 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:58:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 175 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:59:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 176 "api-router@file" "-" 7ms +37.138.224.211 - admin [27/Jan/2021:10:59:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 177 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:59:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 178 "api-router@file" "-" 7ms +37.138.224.211 - admin [27/Jan/2021:10:59:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 179 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:59:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 180 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:59:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 181 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:10:59:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 182 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:10:59:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 183 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:10:59:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 184 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:10:59:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 185 "api-router@file" "-" 0ms +37.138.224.211 - - [27/Jan/2021:10:59:47 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 186 "grafana-router@file" "http://grafana:3000" 20ms +37.138.224.211 - - [27/Jan/2021:10:59:48 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 187 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:10:59:48 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 188 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - admin [27/Jan/2021:10:59:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 190 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:10:59:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 191 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:11:00:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 192 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:11:00:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 193 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:11:00:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 194 "api-router@file" "-" 3ms +37.138.224.211 - - [27/Jan/2021:11:00:15 +0000] "GET /grafana/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2 HTTP/2.0" 200 16112 "-" "-" 195 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - admin [27/Jan/2021:11:00:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 196 "api-router@file" "-" 4ms +37.138.224.211 - - [27/Jan/2021:10:59:48 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 189 "grafana-router@file" "http://grafana:3000" 30072ms +37.138.224.211 - admin [27/Jan/2021:11:00:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 197 "api-router@file" "-" 0ms +37.138.224.211 - admin [27/Jan/2021:11:00:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 198 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:11:00:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 199 "api-router@file" "-" 14ms +37.138.224.211 - admin [27/Jan/2021:11:00:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 200 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:11:00:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 201 "api-router@file" "-" 5ms +37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 511 "-" "-" 202 "grafana-router@file" "http://grafana:3000" 73ms +37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 203 "grafana-router@file" "http://grafana:3000" 10ms +37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 440 "-" "-" 204 "grafana-router@file" "http://grafana:3000" 4ms +37.138.224.211 - admin [27/Jan/2021:11:00:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 206 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:11:00:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 207 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:11:00:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 208 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:11:01:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 209 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:11:01:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 210 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:11:01:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 211 "api-router@file" "-" 3ms +37.138.224.211 - - [27/Jan/2021:11:01:11 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 484 "-" "-" 212 "grafana-router@file" "http://grafana:3000" 19ms +37.138.224.211 - - [27/Jan/2021:11:01:11 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 213 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - - [27/Jan/2021:11:01:11 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 413 "-" "-" 214 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 205 "grafana-router@file" "http://grafana:3000" 30069ms +37.138.224.211 - - [27/Jan/2021:11:01:13 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 200 149 "-" "-" 215 "grafana-router@file" "http://grafana:3000" 160ms +37.138.224.211 - admin [27/Jan/2021:11:01:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 216 "api-router@file" "-" 2ms +37.138.224.211 - admin [27/Jan/2021:11:01:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 217 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:11:01:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 218 "api-router@file" "-" 3ms +37.138.224.211 - - [27/Jan/2021:11:01:27 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 219 "grafana-router@file" "http://grafana:3000" 15ms +37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 220 "grafana-router@file" "http://grafana:3000" 14ms +37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 221 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 222 "grafana-router@file" "http://grafana:3000" 14ms +37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 223 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - admin [27/Jan/2021:11:01:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 224 "api-router@file" "-" 4ms +37.138.224.211 - - [27/Jan/2021:11:01:30 +0000] "GET /grafana/public/build/DashboardListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2811 "-" "-" 225 "grafana-router@file" "http://grafana:3000" 8ms +37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/api/search?query=&starred=false&skipRecent=true&skipStarred=true&folderIds=0&layout=folders HTTP/2.0" 200 2 "-" "-" 226 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/api/dashboards/tags HTTP/2.0" 200 2 "-" "-" 227 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/api/search/sorting HTTP/2.0" 200 267 "-" "-" 228 "grafana-router@file" "http://grafana:3000" 6ms +37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 HTTP/2.0" 200 16204 "-" "-" 229 "grafana-router@file" "http://grafana:3000" 5ms +37.138.224.211 - - [27/Jan/2021:11:01:35 +0000] "GET /grafana/public/build/grafanaPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 4935 "-" "-" 230 "grafana-router@file" "http://grafana:3000" 14ms +37.138.224.211 - - [27/Jan/2021:11:01:35 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SELECT%20mean(%22value%22)%20FROM%20%22measurement%22%20WHERE%20time%20%3E%3D%20now()%20-%206h%20GROUP%20BY%20time(20s)%20fill(null)&epoch=ms HTTP/2.0" 200 57 "-" "-" 231 "grafana-router@file" "http://grafana:3000" 21ms +37.138.224.211 - admin [27/Jan/2021:11:01:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 232 "api-router@file" "-" 2ms +37.138.224.211 - - [27/Jan/2021:11:01:37 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20MEASUREMENTS%20LIMIT%20100&epoch=ms HTTP/2.0" 200 57 "-" "-" 233 "grafana-router@file" "http://grafana:3000" 7ms +37.138.224.211 - - [27/Jan/2021:11:01:38 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 200 149 "-" "-" 234 "grafana-router@file" "http://grafana:3000" 16ms +37.138.224.211 - - [27/Jan/2021:11:01:39 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20MEASUREMENTS%20LIMIT%20100&epoch=ms HTTP/2.0" 200 57 "-" "-" 235 "grafana-router@file" "http://grafana:3000" 9ms +37.138.224.211 - admin [27/Jan/2021:11:01:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 236 "api-router@file" "-" 4ms +37.138.224.211 - admin [27/Jan/2021:11:01:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 237 "api-router@file" "-" 7ms +37.138.224.211 - admin [27/Jan/2021:11:01:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 238 "api-router@file" "-" 6ms +37.138.224.211 - admin [27/Jan/2021:11:01:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 239 "api-router@file" "-" 5ms +37.138.224.211 - admin [27/Jan/2021:11:02:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 240 "api-router@file" "-" 3ms +37.138.224.211 - admin [27/Jan/2021:11:02:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 241 "api-router@file" "-" 1ms +37.138.224.211 - admin [27/Jan/2021:11:02:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 242 "api-router@file" "-" 1ms From 1f7c8ca303ccbe06ec8c76316b03aa2be2fefd87 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 14:05:28 +0100 Subject: [PATCH 02/19] Changes to compose file --- selfsigned/docker-compose.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfsigned/docker-compose.yml b/selfsigned/docker-compose.yml index d46b44e..42702c1 100644 --- a/selfsigned/docker-compose.yml +++ b/selfsigned/docker-compose.yml @@ -57,8 +57,8 @@ services: - ./mosquitto/data:/mosquitto/data user: "${USER_ID}:${GRP_ID}" expose: - - 8883 - - 8884 + - 1883 + - 1884 links: - telegraf restart: always From 97fa1d7f4cf2e0debd3bf2123b4e726f854b472d Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:00:01 +0100 Subject: [PATCH 03/19] certbot test --- selfsigned/generate-certs.sh | 155 --------------------- selfsigned/traefik/configurations/tls.toml | 35 ----- selfsigned/traefik/traefik.toml | 13 +- 3 files changed, 8 insertions(+), 195 deletions(-) delete mode 100755 selfsigned/generate-certs.sh delete mode 100644 selfsigned/traefik/configurations/tls.toml diff --git a/selfsigned/generate-certs.sh b/selfsigned/generate-certs.sh deleted file mode 100755 index fbb2bef..0000000 --- a/selfsigned/generate-certs.sh +++ /dev/null @@ -1,155 +0,0 @@ -#!/bin/bash -#============================================================================ -# FILE: generate-certs.sh -# USAGE: ./generate-certs.sh -# DESCRIPTION: Script to generate self-signed certificates for: -# 1. Certificate Authority (CA) -# 1.1 Domain (localhost) -# 2. InfluxDB -# 3. Mosquitto MQTT Broker -# -#============================================================================ - -CERTSDIR="certs" - -# NOTE: Feel free to change the Geographical/Organizational Information Here -# NOTE: DO NOT change the `OU` or `CN` values - -# Use IP Address for CN -CN=$(hostname -I | awk '{print $1}') - -SUBJECT_CA="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=Certificate Authority" -SUBJECT_DOMAIN="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=DOMAIN/CN=${CN}" -SUBJECT_MQTT_SERVER="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=MQTTSERVER/CN=${CN}" -SUBJECT_INFLUXDB="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=INFLUXDB/CN=${CN}" -SUBJECT_MQTT_CLIENT="/C=DE/ST=Bremen/L=Bremen/O=BIBA/OU=MQTTCLIENT/CN=${CN}" -SUBJECT_GRAFANA="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=GRAFANA/CN=${CN}" - - -cd $(pwd)/$CERTSDIR -mkdir mqtt/ -mkdir influxdb/ -mkdir grafana/ # Do not generate Grafana Certificate for time-being - -function generate_ca() { - #=========================================================================== - # Generating Certificate Authority Key Pair - #=========================================================================== - - echo "STEP1: Generating Certificate Authority" - echo $SUBJECT_CA - - openssl req -new -x509 -days 3650 -subj "$SUBJECT_CA" -keyout ca.key -out ca.crt -} - - -function generate_domain_cert() { - #=========================================================================== - # Generating Certificate for Local Domain - #=========================================================================== - echo "Step1.1: Generating Private Key for Local Domain" - - openssl genrsa -out domain.key 2048 - - echo "Step 1.2: Generating A Signing Request for Local Domain Cert" - - openssl req -out domain.csr -key domain.key -subj "$SUBJECT_DOMAIN" -new - - echo "Step 1.3: Sending CSR to the CA" - - openssl x509 -req -in domain.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out domain.crt -days 3650 -} - - -function generate_mqtt_server_cert() { - #=========================================================================== - # Generating Certificate for MQTT Broker - #=========================================================================== - - echo "STEP2: Generating Private Key for MQTT Broker" - - openssl genrsa -out mqtt-server.key 2048 - - echo "STEP2a: Generating a Signing Request for MQTT Broker Cert" - - openssl req -out mqtt-server.csr -key mqtt-server.key -subj "$SUBJECT_MQTT_SERVER" -new - - - echo "STEP2b: Sending CSR to the CA" - - openssl x509 -req -in mqtt-server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out mqtt-server.crt -days 3650 -} - - -function generate_influxdb_cert() { - #=========================================================================== - # Generating Certificate for InfluxDB - #=========================================================================== - - echo "STEP3: Generating Private Key for INFLUXDB" - - openssl genrsa -out influx-server.key 2048 - - echo "STEP3a: Generating a Signing Request for INFLUXDB" - - openssl req -out influx-server.csr -key influx-server.key -subj "$SUBJECT_INFLUXDB" -new - - - echo "STEP3b: Sending CSR to the CA" - - openssl x509 -req -in influx-server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out influx-server.crt -days 3650 -} - - -function generate_mqtt_client_cert () { - #=========================================================================== - # Generating Certificate for MQTT Clients - #=========================================================================== - echo "$SUBJECT_MQTT_CLIENT" - - echo "STEP 4: Generating Private Key for MQTT Client Certificate" - - openssl req -new -nodes -sha256 -subj "$SUBJECT_MQTT_CLIENT" -out mqtt-client.csr -keyout mqtt-client.key - - openssl x509 -req -sha256 -in mqtt-client.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out mqtt-client.crt -days 3650 -} - - -function generate_grafana_cert() { - #=========================================================================== - # Generating Certificate for Grafana - #=========================================================================== - - echo "STEP5: Generating Private Key for GRAFANA" - - openssl genrsa -out grafana-server.key 2048 - - echo "STEP5a: Generating a Signing Request for GRAFANA" - - openssl req -out grafana-server.csr -key grafana-server.key -subj "$SUBJECT_GRAFANA" -new - - openssl x509 -req -in grafana-server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out grafana-server.crt -days 3650 -} - - -generate_ca -generate_domain_cert -generate_mqtt_server_cert -generate_mqtt_client_cert -generate_influxdb_cert -generate_grafana_cert # Do Not Generate Grafana certificate for time-being - -echo "Moving Certificates in to dedicated directories" - -mv mqtt-server.* mqtt/ -mv mqtt-client.* mqtt/ -mv influx-server.* influxdb/ -mv grafana-server.* grafana/ - -echo "Copying the CA Certificate for Mosquitto, InfluxDB, Grafana" - -cp ca.crt mqtt/ -cp ca.crt influxdb/ -cp ca.crt grafana/ - -exit 0 diff --git a/selfsigned/traefik/configurations/tls.toml b/selfsigned/traefik/configurations/tls.toml deleted file mode 100644 index 4cb6812..0000000 --- a/selfsigned/traefik/configurations/tls.toml +++ /dev/null @@ -1,35 +0,0 @@ -[tls] - [[tls.certificates]] - certFile = "/etc/ssl/certs/domain.crt" - keyFile = "/etc/ssl/certs/domain.key" - stores = ["default"] - - [tls.stores] - [tls.stores.default] - [tls.stores.default.defaultCertificate] - certFile = "/etc/ssl/certs/domain.crt" - keyFile = "/etc/ssl/certs/domain.key" - - [tls.options] - [tls.options.mintls12] - minVersion = "VersionTLS12" - - [tls.options.mqtts] - [tls.options.mqtts.clientAuth] - caFiles = ["/etc/ssl/certs/ca.crt"] - clientAuthType = "RequireAndVerifyClientCert" - - [tls.options.mqtt-wss] - [tls.options.mqtt-wss.clientAuth] - caFiles = ["/etc/ssl/certs/ca.crt"] - clientAuthType = "RequireAndVerifyClientCert" - - [tls.options.grafana-secure] - [tls.options.grafana-secure.clientAuth] - caFiles = ["/etc/ssl/certs/ca.crt"] - clientAuthType = "VerifyClientCertIfGiven" - - [tls.options.influxdb-secure] - [tls.options.influxdb-secure.clientAuth] - caFiles = ["/etc/ssl/certs/ca.crt"] - clientAuthType = "VerifyClientCertIfGiven" diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index 83af404..2653ad5 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -5,10 +5,6 @@ checkNewVersion = false sendAnonymousUsage = true -[serversTransport] - insecureSkipVerify = true - rootCAs = ["/etc/ssl/certs/ca.crt"] - [api] # insecure = true dashboard = true @@ -61,4 +57,11 @@ network = "iotstack" [providers.file] directory = "/etc/traefik/configurations/" - watch = true \ No newline at end of file + watch = true + +[certificatesResolvers.myresolver.acme] + email = "lewandowski@swms.de" + storage = "acme.json" + [certificatesResolvers.myresolver.acme.httpChallenge] + # used during the challenge + entryPoint = "web" \ No newline at end of file From efdd29875f185ab45380c4415a6b5318349627d7 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:02:07 +0100 Subject: [PATCH 04/19] acme added --- selfsigned/docker-compose.yml | 214 +++++++++++++++++----------------- 1 file changed, 107 insertions(+), 107 deletions(-) diff --git a/selfsigned/docker-compose.yml b/selfsigned/docker-compose.yml index d46b44e..b588d7c 100644 --- a/selfsigned/docker-compose.yml +++ b/selfsigned/docker-compose.yml @@ -1,113 +1,113 @@ version: "3" services: - traefik: - image: traefik:v2.3 - container_name: traefik - restart: always - networks: - - "iotstack" - ports: - - "80:80" - # HTTPS - - "443:443" - # MQTT - - "8883:8883" - - "8884:8884" - depends_on: - # Let every other service start before traefik - - mosquitto - - grafana - - influxdb - - telegraf - volumes: - # Traefik Static Configuration - - ./traefik/traefik.toml:/etc/traefik/traefik.toml - - ./traefik/log/access.log:/log/access.log - # Traefik Dynamic Configuration - - ./traefik/configurations:/etc/traefik/configurations - # SSL Certificates - - ./certs:/etc/ssl/certs - # Docker Provider via Socket - - /var/run/docker.sock:/var/run/docker.sock:ro - labels: - - "traefik.enable=true" - - "traefik.http.routers.api-router=api-router@file" - - "traefik.http.routers.traefik-http-router.service=api@internal" - influxdb: - image: influxdb - container_name: influxdb - env_file: selfsigned.env - volumes: - - influxdb_data:/var/lib/influxdb - networks: - - "iotstack" - labels: - - "traefik.enable=true" - - "traefik.http.routers.influxdb-router=influxdb-router@file" - - "traefik.http.routers.influxdb-router.middlewares=influxdb-mw@file" - - "traefik.http.routers.influxdb-router.service=influxdb@file" + traefik: + image: traefik:v2.3 + container_name: traefik + restart: always + networks: + - "iotstack" + ports: + - "80:80" + # HTTPS + - "443:443" + # MQTT + - "8883:8883" + - "8884:8884" + depends_on: + # Let every other service start before traefik + - mosquitto + - grafana + - influxdb + - telegraf + volumes: + # Traefik Static Configuration + - ./traefik/traefik.toml:/etc/traefik/traefik.toml + - ./traefik/log/access.log:/log/access.log + # Traefik Dynamic Configuration + - ./traefik/configurations:/etc/traefik/configurations + # SSL Certificates + - /opt/traefik/acme.json:/acme.json + # Docker Provider via Socket + - /var/run/docker.sock:/var/run/docker.sock:ro + labels: + - "traefik.enable=true" + - "traefik.http.routers.api-router=api-router@file" + - "traefik.http.routers.traefik-http-router.service=api@internal" + influxdb: + image: influxdb + container_name: influxdb + env_file: selfsigned.env + volumes: + - influxdb_data:/var/lib/influxdb + networks: + - "iotstack" + labels: + - "traefik.enable=true" + - "traefik.http.routers.influxdb-router=influxdb-router@file" + - "traefik.http.routers.influxdb-router.middlewares=influxdb-mw@file" + - "traefik.http.routers.influxdb-router.service=influxdb@file" - mosquitto: - image: eclipse-mosquitto - container_name: mosquitto - volumes: - - ./mosquitto/config:/mosquitto/config - - ./mosquitto/log:/mosquitto/log - - ./mosquitto/data:/mosquitto/data - user: "${USER_ID}:${GRP_ID}" - expose: - - 8883 - - 8884 - links: - - telegraf - restart: always - networks: - - "iotstack" - labels: - - "traefik.enable=true" - # TCP Routers for MQTT and Websockets - - "traefik.tcp.routers.mqtt-router=mqtt-router@file" - - "traefik.tcp.routers.mqtt-websockets-router=mqtt-websockets-router@file" - # TCP Services for MQTT and Websockets - - "traefik.tcp.services.mosquitto=mosquitto@file" - - "traefik.tcp.services.mosquitto-ws=mosquitto-ws@file" - - telegraf: - image: telegraf - container_name: telegraf - links: - - influxdb - env_file: selfsigned.env - volumes: - - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro - networks: - - "iotstack" - labels: - - "traefik.enable=false" - - grafana: - image: grafana/grafana - container_name: grafana - env_file: selfsigned.env - user: "472" - links: - - influxdb - volumes: - - grafana_data:/var/lib/grafana - - ./certs/grafana:/etc/ssl/certs - networks: - - "iotstack" - labels: - - "traefik.enable=true" - - "traefik.http.routers.grafana-router=grafana-router@file" - - "traefik.http.routers.grafana-router.middlewares=grafana-mw@file" - - "traefik.http.routers.grafana-router.service=grafana@file" + mosquitto: + image: eclipse-mosquitto + container_name: mosquitto + volumes: + - ./mosquitto/config:/mosquitto/config + - ./mosquitto/log:/mosquitto/log + - ./mosquitto/data:/mosquitto/data + user: "${USER_ID}:${GRP_ID}" + expose: + - 8883 + - 8884 + links: + - telegraf + restart: always + networks: + - "iotstack" + labels: + - "traefik.enable=true" + # TCP Routers for MQTT and Websockets + - "traefik.tcp.routers.mqtt-router=mqtt-router@file" + - "traefik.tcp.routers.mqtt-websockets-router=mqtt-websockets-router@file" + # TCP Services for MQTT and Websockets + - "traefik.tcp.services.mosquitto=mosquitto@file" + - "traefik.tcp.services.mosquitto-ws=mosquitto-ws@file" -volumes: - influxdb_data: - grafana_data: + telegraf: + image: telegraf + container_name: telegraf + links: + - influxdb + env_file: selfsigned.env + volumes: + - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro + networks: + - "iotstack" + labels: + - "traefik.enable=false" -networks: - iotstack: - external: true + grafana: + image: grafana/grafana + container_name: grafana + env_file: selfsigned.env + user: "472" + links: + - influxdb + volumes: + - grafana_data:/var/lib/grafana + - ./certs/grafana:/etc/ssl/certs + networks: + - "iotstack" + labels: + - "traefik.enable=true" + - "traefik.http.routers.grafana-router=grafana-router@file" + - "traefik.http.routers.grafana-router.middlewares=grafana-mw@file" + - "traefik.http.routers.grafana-router.service=grafana@file" + +volumes: + influxdb_data: + grafana_data: + +networks: + iotstack: + external: true From 1c23d5e882c804de386e83fa74904a884cf9d6d0 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:15:31 +0100 Subject: [PATCH 05/19] Changes to toml --- selfsigned/traefik/traefik.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index 2653ad5..a0bb58a 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -36,11 +36,6 @@ [entryPoints] [entryPoints.web] address = ":80" - [entryPoints.web.http] - [entryPoints.web.http.redirections] - [entryPoints.web.http.redirections.entryPoint] - to = "web-secure" - scheme = "https" [entryPoints.web-secure] address = ":443" From 44f77e2d64a90f2a09ff15cf4953941973dcfcc0 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:15:56 +0100 Subject: [PATCH 06/19] domain --- selfsigned/traefik/traefik.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index 2653ad5..83ca81a 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -54,6 +54,8 @@ [providers.docker] endpoint = "unix:///var/run/docker.sock" exposedByDefault = false + domain = "demo1.iotstack.co" + watch = true network = "iotstack" [providers.file] directory = "/etc/traefik/configurations/" From 1205553bd8309eab2db77da0d337d0e935815011 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:18:33 +0100 Subject: [PATCH 07/19] changes toml --- selfsigned/traefik/traefik.toml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index 83ca81a..598452c 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -50,12 +50,18 @@ [entryPoints.websockets] address = ":8884" +[retry] + +[docker] + endpoint = "unix:///var/run/docker.sock" + domain = "my-awesome-app.org" + watch = true + exposedByDefault = false + [providers] [providers.docker] endpoint = "unix:///var/run/docker.sock" exposedByDefault = false - domain = "demo1.iotstack.co" - watch = true network = "iotstack" [providers.file] directory = "/etc/traefik/configurations/" From c4fef3ba514d202598aab59ecf2a32bf5b0f9a64 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:19:08 +0100 Subject: [PATCH 08/19] domain changed --- selfsigned/traefik/traefik.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index 598452c..7235f68 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -54,7 +54,7 @@ [docker] endpoint = "unix:///var/run/docker.sock" - domain = "my-awesome-app.org" + domain = "demo1.iotstack.co" watch = true exposedByDefault = false From 0a1d397e74317389e08839993171fecb703a06a7 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:24:35 +0100 Subject: [PATCH 09/19] routes --- selfsigned/traefik/configurations/routers-http.toml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/selfsigned/traefik/configurations/routers-http.toml b/selfsigned/traefik/configurations/routers-http.toml index e84b775..85c6147 100644 --- a/selfsigned/traefik/configurations/routers-http.toml +++ b/selfsigned/traefik/configurations/routers-http.toml @@ -2,21 +2,22 @@ [http.routers] [http.routers.api-router] - rule = "PathPrefix(`/api`) || PathPrefix(`/dashboard`)" + rule = "Host(`example.com`) && Path(`/dashboard`)" entryPoints = ["web-secure"] middlewares = ["user-auth"] service = "api@internal" [http.routers.api-router.tls] + certResolver = "myresolver" [http.routers.grafana-router] - rule = "PathPrefix(`/grafana`)" + rule = "Host(`demo.iotstack.co`) && Path(`/grafana`)" entryPoints = ["web-secure"] middlewares = ["grafana-mw"] service = "grafana" [http.routers.grafana-router.tls] - options = ["grafana-secure"] + certResolver = "myresolver" [http.routers.influxdb-router] rule = "PathPrefix(`/influxdb`)" @@ -25,4 +26,4 @@ service = "influxdb" [http.routers.influxdb-router.tls] - options = ["influxdb-secure"] \ No newline at end of file + certResolver = "myresolver" \ No newline at end of file From 623848db95fdcb05b8a6a4c51e4bea4b82f447ba Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 18:28:25 +0100 Subject: [PATCH 10/19] fix --- selfsigned/traefik/configurations/routers-http.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/selfsigned/traefik/configurations/routers-http.toml b/selfsigned/traefik/configurations/routers-http.toml index 85c6147..46288b6 100644 --- a/selfsigned/traefik/configurations/routers-http.toml +++ b/selfsigned/traefik/configurations/routers-http.toml @@ -2,7 +2,7 @@ [http.routers] [http.routers.api-router] - rule = "Host(`example.com`) && Path(`/dashboard`)" + rule = "Host(`demo.iotstack.co`) && PathPrefix(`/dashboard`)" entryPoints = ["web-secure"] middlewares = ["user-auth"] service = "api@internal" @@ -11,7 +11,7 @@ certResolver = "myresolver" [http.routers.grafana-router] - rule = "Host(`demo.iotstack.co`) && Path(`/grafana`)" + rule = "Host(`demo.iotstack.co`) && PathPrefix(`/grafana`)" entryPoints = ["web-secure"] middlewares = ["grafana-mw"] service = "grafana" From 9d3c8f559b32bcd8dadd9e84303fab0dc4795692 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 23:38:26 +0100 Subject: [PATCH 11/19] letsencrypt working for web --- .gitignore | 2 + selfsigned/certs/.gitkeep | 0 selfsigned/docker-compose.yml | 6 +- .../configurations/middlewares-http.toml | 9 - .../traefik/configurations/routers-http.toml | 8 +- .../traefik/configurations/routers-tcp.toml | 10 +- selfsigned/traefik/log/access.log | 526 ++++++++++++++++++ selfsigned/traefik/traefik.toml | 12 +- 8 files changed, 543 insertions(+), 30 deletions(-) create mode 100644 .gitignore delete mode 100644 selfsigned/certs/.gitkeep diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cbd3a0e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +selfsigned/letsencrypt/acme.json +selfsigned/traefik/log/access.log diff --git a/selfsigned/certs/.gitkeep b/selfsigned/certs/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/selfsigned/docker-compose.yml b/selfsigned/docker-compose.yml index b588d7c..6bcb85f 100644 --- a/selfsigned/docker-compose.yml +++ b/selfsigned/docker-compose.yml @@ -2,8 +2,9 @@ version: "3" services: traefik: - image: traefik:v2.3 + image: traefik:v2.2 container_name: traefik + restart: always networks: - "iotstack" @@ -27,7 +28,7 @@ services: # Traefik Dynamic Configuration - ./traefik/configurations:/etc/traefik/configurations # SSL Certificates - - /opt/traefik/acme.json:/acme.json + - "./letsencrypt:/letsencrypt" # Docker Provider via Socket - /var/run/docker.sock:/var/run/docker.sock:ro labels: @@ -95,7 +96,6 @@ services: - influxdb volumes: - grafana_data:/var/lib/grafana - - ./certs/grafana:/etc/ssl/certs networks: - "iotstack" labels: diff --git a/selfsigned/traefik/configurations/middlewares-http.toml b/selfsigned/traefik/configurations/middlewares-http.toml index 8ab8eec..d1ab5a6 100644 --- a/selfsigned/traefik/configurations/middlewares-http.toml +++ b/selfsigned/traefik/configurations/middlewares-http.toml @@ -5,12 +5,3 @@ # Username:Password -> admin:tiguitto users = ["admin:$apr1$r3puowjd$lXRESWyaLtTa8Qdt6yD.0."] - [http.middlewares.grafana-mw] - [http.middlewares.grafana-mw.stripPrefix] - prefixes = ["/grafana"] - forceSlash = false - - [http.middlewares.influxdb-mw] - [http.middlewares.influxdb-mw.stripPrefix] - prefixes = ["/influxdb"] - forceSlash = false \ No newline at end of file diff --git a/selfsigned/traefik/configurations/routers-http.toml b/selfsigned/traefik/configurations/routers-http.toml index 46288b6..3748095 100644 --- a/selfsigned/traefik/configurations/routers-http.toml +++ b/selfsigned/traefik/configurations/routers-http.toml @@ -2,7 +2,7 @@ [http.routers] [http.routers.api-router] - rule = "Host(`demo.iotstack.co`) && PathPrefix(`/dashboard`)" + rule = "Host(`dashboard.demo1.iotstack.co`)" entryPoints = ["web-secure"] middlewares = ["user-auth"] service = "api@internal" @@ -11,18 +11,16 @@ certResolver = "myresolver" [http.routers.grafana-router] - rule = "Host(`demo.iotstack.co`) && PathPrefix(`/grafana`)" + rule = "Host(`grafana.demo1.iotstack.co`)" entryPoints = ["web-secure"] - middlewares = ["grafana-mw"] service = "grafana" [http.routers.grafana-router.tls] certResolver = "myresolver" [http.routers.influxdb-router] - rule = "PathPrefix(`/influxdb`)" + rule = "Host(`influxdb.demo1.iotstack.co`)" entryPoints = ["web-secure"] - middlewares = ["influxdb-mw"] service = "influxdb" [http.routers.influxdb-router.tls] diff --git a/selfsigned/traefik/configurations/routers-tcp.toml b/selfsigned/traefik/configurations/routers-tcp.toml index 572750a..c86e064 100644 --- a/selfsigned/traefik/configurations/routers-tcp.toml +++ b/selfsigned/traefik/configurations/routers-tcp.toml @@ -3,17 +3,17 @@ [tcp.routers.mqtt-router] entryPoints = ["mqtt"] service = "mosquitto" - rule = "HostSNI(`*`)" + rule = "HostSNI(`mqtt.demo1.iotstack.co`)" [tcp.routers.mqtt-router.tls] - options = "mqtts" - passthrough = true + certResolver = "myresolver" + passthrough = true [tcp.routers.mqtt-websockets-router] entryPoints = ["websockets"] service = "mosquitto-ws" - rule = "HostSNI(`*`)" + rule = "HostSNI(`mqtt.demo1.iotstack.co`)" [tcp.routers.mqtt-websockets-router.tls] - options = ["mqtt-wss"] + certResolver = "myresolver" passthrough = true \ No newline at end of file diff --git a/selfsigned/traefik/log/access.log b/selfsigned/traefik/log/access.log index 0742e65..40e40b6 100644 --- a/selfsigned/traefik/log/access.log +++ b/selfsigned/traefik/log/access.log @@ -430,3 +430,529 @@ 37.138.224.211 - admin [27/Jan/2021:11:02:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 240 "api-router@file" "-" 3ms 37.138.224.211 - admin [27/Jan/2021:11:02:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 241 "api-router@file" "-" 1ms 37.138.224.211 - admin [27/Jan/2021:11:02:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 242 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana HTTP/2.0" 302 37 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 17ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 21ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 3ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 39ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 354ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 663ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 36ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 1170ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 6361ms +85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5636096 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 9948ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 24ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 3ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 174ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 1ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 617ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 219ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 1274ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 6039ms +85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 9833ms +85.16.177.133 - - [03/Feb/2021:17:07:30 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 159ms +85.16.177.133 - - [03/Feb/2021:17:07:30 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 397ms +85.16.177.133 - - [03/Feb/2021:17:07:30 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 2ms +85.16.177.133 - - [03/Feb/2021:17:26:22 +0000] "GET /grafana HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 3ms +85.16.177.133 - - [03/Feb/2021:17:26:27 +0000] "GET /grafana/ HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:17:26:30 +0000] "GET /grafana/ HTTP/2.0" 404 19 "-" "-" 3 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:17:30:36 +0000] "GET /grafana/ HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 2ms +85.16.177.133 - - [03/Feb/2021:17:30:39 +0000] "GET /grafana HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:17:30:45 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 3 "-" "-" 2ms +45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "POST /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 4 "-" "-" 1ms +45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "POST /api/jsonws/invoke HTTP/1.1" 404 19 "-" "-" 5 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 6 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "GET /solr/admin/info/system?wt=json HTTP/1.1" 404 19 "-" "-" 7 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /index.php?s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1" 404 19 "-" "-" 8 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /?a=fetch&content=die(@md5(HelloThinkCMF)) HTTP/1.1" 404 19 "-" "-" 9 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /console/ HTTP/1.1" 404 19 "-" "-" 10 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /wp-content/plugins/wp-file-manager/readme.txt HTTP/1.1" 404 19 "-" "-" 11 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 404 19 "-" "-" 12 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "POST /Autodiscover/Autodiscover.xml HTTP/1.1" 404 19 "-" "-" 13 "-" "-" 0ms +45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /_ignition/execute-solution HTTP/1.1" 404 19 "-" "-" 14 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:31 +0000] "HEAD / HTTP/1.0" 404 19 "-" "-" 15 "-" "-" 1ms +144.126.209.243 - - [03/Feb/2021:18:49:35 +0000] "HEAD / HTTP/1.0" 404 19 "-" "-" 16 "-" "-" 1ms +144.126.209.243 - - [03/Feb/2021:18:49:37 +0000] "GET /system_api.php HTTP/1.1" 404 19 "-" "-" 17 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:38 +0000] "GET /system_api.php HTTP/1.1" 404 19 "-" "-" 18 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:39 +0000] "GET /c/version.js HTTP/1.1" 404 19 "-" "-" 19 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:39 +0000] "GET /c/version.js HTTP/1.1" 404 19 "-" "-" 20 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:40 +0000] "GET /streaming/clients_live.php HTTP/1.1" 404 19 "-" "-" 21 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:40 +0000] "GET /streaming/clients_live.php HTTP/1.1" 404 19 "-" "-" 22 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:41 +0000] "GET /stalker_portal/c/version.js HTTP/1.1" 404 19 "-" "-" 23 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:41 +0000] "GET /stalker_portal/c/version.js HTTP/1.1" 404 19 "-" "-" 24 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:42 +0000] "GET /client_area/ HTTP/1.1" 404 19 "-" "-" 25 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:43 +0000] "GET /client_area/ HTTP/1.1" 404 19 "-" "-" 26 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:44 +0000] "GET /stalker_portal/c/ HTTP/1.1" 404 19 "-" "-" 27 "-" "-" 0ms +144.126.209.243 - - [03/Feb/2021:18:49:44 +0000] "GET /stalker_portal/c/ HTTP/1.1" 404 19 "-" "-" 28 "-" "-" 0ms +83.97.20.29 - - [03/Feb/2021:19:38:22 +0000] "GET / HTTP/1.0" 404 19 "-" "-" 29 "-" "-" 0ms +186.179.112.254 - - [03/Feb/2021:19:46:48 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 30 "-" "-" 0ms +186.179.112.254 - - [03/Feb/2021:19:46:49 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 31 "-" "-" 0ms +13.212.104.81 - - [03/Feb/2021:19:51:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 32 "-" "-" 0ms +13.212.104.81 - - [03/Feb/2021:19:52:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 33 "-" "-" 0ms +45.83.67.19 - - [03/Feb/2021:20:39:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 34 "-" "-" 0ms +185.224.129.247 - - [03/Feb/2021:20:58:02 +0000] "GET /config/getuser?index=0 HTTP/1.1" 404 19 "-" "-" 35 "-" "-" 2ms +85.16.177.133 - - [03/Feb/2021:21:01:04 +0000] "GET /grafana HTTP/2.0" - - "-" "-" 1 "-" "-" 1ms +85.16.177.133 - - [03/Feb/2021:21:01:05 +0000] "GET /favicon.ico HTTP/2.0" - - "-" "-" 2 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:21:01:08 +0000] "GET /grafana/ HTTP/2.0" - - "-" "-" 3 "-" "-" 0ms +162.142.125.38 - - [03/Feb/2021:21:07:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 1ms +162.142.125.38 - - [03/Feb/2021:21:07:19 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:21:43:25 +0000] "GET /grafana HTTP/2.0" 401 17 "-" "-" 1 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:34 +0000] "GET /grafana HTTP/2.0" 404 19 "-" "-" 2 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:34 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 3 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:37 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 4 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:37 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 5 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 8 "api-router@file" "-" 20ms +85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 7 "api-router@file" "-" 46ms +85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 6 "api-router@file" "-" 49ms +85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 10 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 9 "api-router@file" "-" 853ms +85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 11 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 12 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 14 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 13 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 16 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 17 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 18 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 19 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 20 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 21 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 22 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 23 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 24 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 25 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 26 "api-router@file" "-" 33ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 27 "api-router@file" "-" 32ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 29 "api-router@file" "-" 26ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 30 "api-router@file" "-" 26ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 33 "api-router@file" "-" 23ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 42 "api-router@file" "-" 15ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 28 "api-router@file" "-" 214ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 32 "api-router@file" "-" 207ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 34 "api-router@file" "-" 205ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 35 "api-router@file" "-" 397ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 31 "api-router@file" "-" 401ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 36 "api-router@file" "-" 397ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 37 "api-router@file" "-" 397ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 38 "api-router@file" "-" 396ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 39 "api-router@file" "-" 396ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 40 "api-router@file" "-" 395ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 41 "api-router@file" "-" 392ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 43 "api-router@file" "-" 389ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 44 "api-router@file" "-" 382ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 46 "api-router@file" "-" 559ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 15 "api-router@file" "-" 1765ms +85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 45 "api-router@file" "-" 1655ms +85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 47 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 49 "api-router@file" "-" 9ms +85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 48 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 50 "api-router@file" "-" 291ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 51 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 52 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 53 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 54 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 55 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 57 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 58 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 56 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 59 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:43:43 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 60 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:43 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 61 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 63 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 64 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 65 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 66 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 68 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 69 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 70 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 71 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 72 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 73 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 74 "api-router@file" "-" 11ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 75 "api-router@file" "-" 11ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 76 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 77 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 78 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 79 "api-router@file" "-" 9ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 81 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 82 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 85 "api-router@file" "-" 30ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 94 "api-router@file" "-" 9ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 80 "api-router@file" "-" 81ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 84 "api-router@file" "-" 65ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 86 "api-router@file" "-" 164ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 83 "api-router@file" "-" 181ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 87 "api-router@file" "-" 163ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 88 "api-router@file" "-" 163ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 89 "api-router@file" "-" 156ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 90 "api-router@file" "-" 156ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 91 "api-router@file" "-" 155ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 92 "api-router@file" "-" 155ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 93 "api-router@file" "-" 150ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 95 "api-router@file" "-" 149ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 96 "api-router@file" "-" 142ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 98 "api-router@file" "-" 340ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 67 "api-router@file" "-" 1116ms +85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 97 "api-router@file" "-" 941ms +85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 100 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 101 "api-router@file" "-" 17ms +85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 102 "api-router@file" "-" 13ms +85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 103 "api-router@file" "-" 634ms +85.16.177.133 - admin [03/Feb/2021:21:43:53 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 104 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:53 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 105 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 107 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 108 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 110 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 111 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 109 "api-router@file" "-" 9ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 112 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 113 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:43:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:21:44:02 +0000] "GET /dashboard/ HTTP/2.0" 401 17 "-" "-" 116 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:04 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 8ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 120 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 123 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 125 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 126 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 127 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 128 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 129 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 130 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 131 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 132 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 133 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 134 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 135 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 136 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 138 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 139 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 142 "api-router@file" "-" 8ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 151 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 122 "api-router@file" "-" 68ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 137 "api-router@file" "-" 22ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 141 "api-router@file" "-" 174ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 121 "api-router@file" "-" 229ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 140 "api-router@file" "-" 175ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 143 "api-router@file" "-" 174ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 144 "api-router@file" "-" 173ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 145 "api-router@file" "-" 169ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 146 "api-router@file" "-" 168ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 147 "api-router@file" "-" 168ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 148 "api-router@file" "-" 167ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 149 "api-router@file" "-" 167ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 150 "api-router@file" "-" 166ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 152 "api-router@file" "-" 341ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 153 "api-router@file" "-" 339ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 155 "api-router@file" "-" 325ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 156 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 124 "api-router@file" "-" 2060ms +85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 154 "api-router@file" "-" 1984ms +85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 157 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 158 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 159 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 160 "api-router@file" "-" 346ms +85.16.177.133 - - [03/Feb/2021:21:44:12 +0000] "GET /api/version HTTP/2.0" 401 17 "-" "-" 161 "api-router@file" "-" 0ms +85.16.177.133 - - [03/Feb/2021:21:44:12 +0000] "GET /api/entrypoints HTTP/2.0" 401 17 "-" "-" 162 "api-router@file" "-" 0ms +85.16.177.133 - - [03/Feb/2021:21:44:12 +0000] "GET /api/overview HTTP/2.0" 401 17 "-" "-" 163 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 164 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 165 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 166 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 167 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 168 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 169 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 170 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 171 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 172 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:13 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 173 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:21:44:13 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 174 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:14 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 175 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 176 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 177 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:19 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 178 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 179 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 180 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:21:44:24 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 181 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:21:44:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 182 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:22:01:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:01:13 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET / HTTP/2.0" 302 37 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 11ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 16ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 4ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 58ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 437ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 944ms +85.16.177.133 - - [03/Feb/2021:22:01:25 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 137ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 1516ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 8007ms +85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 12137ms +85.16.177.133 - - [03/Feb/2021:22:01:37 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 154ms +85.16.177.133 - - [03/Feb/2021:22:01:37 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 494ms +85.16.177.133 - - [03/Feb/2021:22:01:37 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 1ms +74.120.14.53 - - [03/Feb/2021:22:04:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 16 "-" "-" 0ms +74.120.14.53 - - [03/Feb/2021:22:04:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 17 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:17:55 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 44ms +85.16.177.133 - - [03/Feb/2021:22:17:55 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 212ms +85.16.177.133 - - [03/Feb/2021:22:18:00 +0000] "POST /grafana/login HTTP/2.0" 200 49 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 89ms +85.16.177.133 - - [03/Feb/2021:22:18:01 +0000] "GET /grafana/ HTTP/2.0" 200 31089 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 18ms +85.16.177.133 - - [03/Feb/2021:22:18:01 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 249ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 8ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 16ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 720 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 36ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 320ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 653ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 6ms +85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 1ms +85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 13ms +85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 16ms +85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 4ms +85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 2ms +85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 2ms +205.169.39.52 - - [03/Feb/2021:22:18:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 18 "-" "-" 1ms +85.16.177.133 - - [03/Feb/2021:22:18:52 +0000] "GET /dashboard HTTP/2.0" 401 17 "-" "-" 19 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:18:57 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 20 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:18:57 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 21 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 22 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 23 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 26 "api-router@file" "-" 29ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 28 "api-router@file" "-" 20ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 29 "api-router@file" "-" 19ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 30 "api-router@file" "-" 14ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 31 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 32 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 33 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 34 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 35 "api-router@file" "-" 29ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 36 "api-router@file" "-" 29ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 37 "api-router@file" "-" 25ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 38 "api-router@file" "-" 24ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 39 "api-router@file" "-" 24ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 41 "api-router@file" "-" 20ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 42 "api-router@file" "-" 19ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 45 "api-router@file" "-" 16ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 54 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 25 "api-router@file" "-" 64ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 24 "api-router@file" "-" 187ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 40 "api-router@file" "-" 128ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 44 "api-router@file" "-" 122ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 46 "api-router@file" "-" 120ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 47 "api-router@file" "-" 275ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 43 "api-router@file" "-" 280ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 48 "api-router@file" "-" 274ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 49 "api-router@file" "-" 273ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 50 "api-router@file" "-" 272ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 51 "api-router@file" "-" 271ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 52 "api-router@file" "-" 270ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 53 "api-router@file" "-" 269ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 55 "api-router@file" "-" 266ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 56 "api-router@file" "-" 264ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 58 "api-router@file" "-" 654ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 27 "api-router@file" "-" 1878ms +85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 57 "api-router@file" "-" 1824ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 59 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 60 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 61 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 62 "api-router@file" "-" 332ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 63 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 64 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 66 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 67 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 68 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 69 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 70 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:04 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 71 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:04 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 72 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:04 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 73 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 77 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 79 "api-router@file" "-" 8ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 81 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 78 "api-router@file" "-" 9ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 80 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 82 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 84 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 85 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 86 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:24 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 88 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:29 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 90 "api-router@file" "-" 13ms +85.16.177.133 - admin [03/Feb/2021:22:19:34 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 92 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:39 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 94 "api-router@file" "-" 15ms +85.16.177.133 - admin [03/Feb/2021:22:19:44 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 7ms +85.16.177.133 - admin [03/Feb/2021:22:19:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 96 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 97 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 99 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 100 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 98 "api-router@file" "-" 8ms +85.16.177.133 - admin [03/Feb/2021:22:19:47 +0000] "GET /api/http/routers/grafana-router@file HTTP/2.0" 200 219 "-" "-" 101 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:47 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 102 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:47 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 103 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:49 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:54 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:19:58 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 106 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:19:58 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 108 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:19:59 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 109 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:20:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 113 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 114 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 116 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 117 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 119 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:21 +0000] "GET /api/http/routers/influxdb-router@file HTTP/2.0" 200 222 "-" "-" 120 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:21 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 121 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:21 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 122 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 123 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 126 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 127 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 128 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 129 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/statics/providers/internal.svg HTTP/2.0" 200 3681 "-" "-" 130 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 131 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 132 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 133 "api-router@file" "-" 12ms +85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 134 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 183 "-" "-" 135 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 136 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 137 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/http/services?search=&status=&per_page=8&page=1 HTTP/2.0" 200 1573 "-" "-" 138 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 139 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 140 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 141 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 142 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:43 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 143 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:20:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 144 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 145 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 146 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /api/http/services/influxdb@file HTTP/2.0" 200 341 "-" "-" 147 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 148 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /api/http/routers/influxdb-router@docker HTTP/2.0" 200 335 "-" "-" 149 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /api/http/routers/influxdb-router@file HTTP/2.0" 200 222 "-" "-" 150 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 151 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/http/middlewares?search=&status=&per_page=1&page=1 HTTP/2.0" 200 183 "-" "-" 152 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 153 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 183 "-" "-" 154 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 155 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET / HTTP/2.0" 302 37 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 25ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/login HTTP/2.0" 302 32 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 30ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/ HTTP/2.0" 200 31089 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 22ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 7ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 20ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 492ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 795ms +85.16.177.133 - - [03/Feb/2021:22:24:24 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 176ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 1728ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 7281ms +85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 11870ms +85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 20ms +85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 17ms +85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 36ms +85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 720 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 32ms +85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 452ms +85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 9ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 9ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 2ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 86ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 97ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 1ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 1ms +85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 617ms +85.16.177.133 - - [03/Feb/2021:22:26:30 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:26:30 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:26:36 +0000] "GET / HTTP/2.0" 401 17 "-" "-" 3 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 4 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 5 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 7 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 8 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 6 "api-router@file" "-" 106ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 10 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 11 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 12 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 13 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 14 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 15 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 16 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 17 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 18 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 19 "api-router@file" "-" 17ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 20 "api-router@file" "-" 16ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 21 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 24 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 25 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 27 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 36 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 23 "api-router@file" "-" 152ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 26 "api-router@file" "-" 149ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 28 "api-router@file" "-" 289ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 22 "api-router@file" "-" 295ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 29 "api-router@file" "-" 282ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 30 "api-router@file" "-" 281ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 31 "api-router@file" "-" 281ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 32 "api-router@file" "-" 280ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 33 "api-router@file" "-" 276ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 34 "api-router@file" "-" 275ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 35 "api-router@file" "-" 275ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 37 "api-router@file" "-" 268ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 38 "api-router@file" "-" 267ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 9 "api-router@file" "-" 731ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 40 "api-router@file" "-" 408ms +85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 39 "api-router@file" "-" 861ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 41 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 42 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 44 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 45 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 47 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 48 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 46 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 49 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 50 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:44 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 51 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 52 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:47 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 53 "api-router@file" "-" 8ms +85.16.177.133 - admin [03/Feb/2021:22:26:48 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 54 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/http/routers/grafana-router@docker HTTP/2.0" 200 330 "-" "-" 55 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/mqtt HTTP/2.0" 200 171 "-" "-" 56 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/web HTTP/2.0" 200 168 "-" "-" 57 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 58 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/websockets HTTP/2.0" 200 177 "-" "-" 59 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/http/middlewares/grafana-mw@file HTTP/2.0" 404 52 "-" "-" 60 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:57 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 63 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 64 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:26:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 65 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:27:00 +0000] "GET /api/http/routers/grafana-router@docker HTTP/2.0" 200 330 "-" "-" 66 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/mqtt HTTP/2.0" 200 171 "-" "-" 67 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/web HTTP/2.0" 200 168 "-" "-" 68 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 69 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/websockets HTTP/2.0" 200 177 "-" "-" 70 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/http/middlewares/grafana-mw@file HTTP/2.0" 404 52 "-" "-" 71 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:27:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 72 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:27:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 78 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:27:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:27:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:27:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:27:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index c8675c1..f0d6548 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -3,7 +3,7 @@ [global] checkNewVersion = false - sendAnonymousUsage = true + sendAnonymousUsage = false [api] # insecure = true @@ -47,12 +47,6 @@ [retry] -[docker] - endpoint = "unix:///var/run/docker.sock" - domain = "demo1.iotstack.co" - watch = true - exposedByDefault = false - [providers] [providers.docker] endpoint = "unix:///var/run/docker.sock" @@ -64,7 +58,9 @@ [certificatesResolvers.myresolver.acme] email = "lewandowski@swms.de" - storage = "acme.json" + storage = "/letsencrypt/acme.json" + # caserver = "https://acme-staging-v02.api.letsencrypt.org/directory" + [certificatesResolvers.myresolver.acme.httpChallenge] # used during the challenge entryPoint = "web" \ No newline at end of file From 1b86b6de37d670d69ae77f27db9bdb2fa3f4e1e3 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 23:45:38 +0100 Subject: [PATCH 12/19] middleware deleted --- selfsigned/docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/selfsigned/docker-compose.yml b/selfsigned/docker-compose.yml index 6bcb85f..ad9d47b 100644 --- a/selfsigned/docker-compose.yml +++ b/selfsigned/docker-compose.yml @@ -46,7 +46,6 @@ services: labels: - "traefik.enable=true" - "traefik.http.routers.influxdb-router=influxdb-router@file" - - "traefik.http.routers.influxdb-router.middlewares=influxdb-mw@file" - "traefik.http.routers.influxdb-router.service=influxdb@file" mosquitto: @@ -101,7 +100,6 @@ services: labels: - "traefik.enable=true" - "traefik.http.routers.grafana-router=grafana-router@file" - - "traefik.http.routers.grafana-router.middlewares=grafana-mw@file" - "traefik.http.routers.grafana-router.service=grafana@file" volumes: From 76731ab6350d934331c3c1b33558ad78ca187a2f Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 23:50:40 +0100 Subject: [PATCH 13/19] mqtt ports --- selfsigned/docker-compose.yml | 8 ++++---- selfsigned/mosquitto/config/mosquitto.conf | 12 +----------- selfsigned/telegraf/telegraf.toml | 2 +- selfsigned/traefik/configurations/services-tcp.toml | 4 ++-- 4 files changed, 8 insertions(+), 18 deletions(-) diff --git a/selfsigned/docker-compose.yml b/selfsigned/docker-compose.yml index ad9d47b..0e903f0 100644 --- a/selfsigned/docker-compose.yml +++ b/selfsigned/docker-compose.yml @@ -13,8 +13,8 @@ services: # HTTPS - "443:443" # MQTT - - "8883:8883" - - "8884:8884" + - "8883:1883" + - "8884:1884" depends_on: # Let every other service start before traefik - mosquitto @@ -57,8 +57,8 @@ services: - ./mosquitto/data:/mosquitto/data user: "${USER_ID}:${GRP_ID}" expose: - - 8883 - - 8884 + - 1883 + - 1884 links: - telegraf restart: always diff --git a/selfsigned/mosquitto/config/mosquitto.conf b/selfsigned/mosquitto/config/mosquitto.conf index 9b4183d..e78c379 100644 --- a/selfsigned/mosquitto/config/mosquitto.conf +++ b/selfsigned/mosquitto/config/mosquitto.conf @@ -14,20 +14,10 @@ log_timestamp true log_type all # TLS -listener 8883 -cafile /mosquitto/config/certs/ca.crt -certfile /mosquitto/config/certs/mqtt-server.crt -keyfile /mosquitto/config/certs/mqtt-server.key -tls_version tlsv1.2 -require_certificate true # Optional: Comment out if not required +listener 1883 use_identity_as_username true # Websockets listener 8884 protocol websockets -cafile /mosquitto/config/certs/ca.crt -certfile /mosquitto/config/certs/mqtt-server.crt -keyfile /mosquitto/config/certs/mqtt-server.key -tls_version tlsv1.2 -require_certificate true # Optional: Comment out if not required use_identity_as_username true \ No newline at end of file diff --git a/selfsigned/telegraf/telegraf.toml b/selfsigned/telegraf/telegraf.toml index 24e0e63..9031d89 100644 --- a/selfsigned/telegraf/telegraf.toml +++ b/selfsigned/telegraf/telegraf.toml @@ -69,7 +69,7 @@ [[inputs.mqtt_consumer]] - servers = [ "tcp://mosquitto:8883" ] + servers = [ "tcp://mosquitto:1883" ] # Topics to subscribe to: topics = [ diff --git a/selfsigned/traefik/configurations/services-tcp.toml b/selfsigned/traefik/configurations/services-tcp.toml index aedf41d..9347af7 100644 --- a/selfsigned/traefik/configurations/services-tcp.toml +++ b/selfsigned/traefik/configurations/services-tcp.toml @@ -3,9 +3,9 @@ [tcp.services.mosquitto] [tcp.services.mosquitto.loadBalancer] [[tcp.services.mosquitto.loadBalancer.servers]] - address = "mosquitto:8883" + address = "mosquitto:1883" [tcp.services.mosquitto-ws] [tcp.services.mosquitto-ws.loadBalancer] [[tcp.services.mosquitto-ws.loadBalancer.servers]] - address = "mosquitto:8884" + address = "mosquitto:1884" From 854eb52973ac3abafd11fcbec959020d2277013b Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Wed, 3 Feb 2021 23:57:36 +0100 Subject: [PATCH 14/19] copy to certbot --- .gitignore | 2 + certbot/00-install-certbot.sh | 205 ------------------ certbot/01-generate-certs.sh | 132 ----------- certbot/certbot.env | 33 ++- certbot/docker-compose.certbot.yml | 66 ------ certbot/docker-compose.yml | 111 ++++++++++ certbot/mosquitto/config/mosquitto.conf | 18 +- certbot/telegraf/telegraf.toml | 24 +- .../configurations/middlewares-http.toml | 7 + .../traefik/configurations/routers-http.toml | 27 +++ .../traefik/configurations/routers-tcp.toml | 19 ++ .../traefik/configurations/services-http.toml | 17 ++ .../traefik/configurations/services-tcp.toml | 11 + certbot/traefik/traefik.toml | 66 ++++++ 14 files changed, 312 insertions(+), 426 deletions(-) delete mode 100644 certbot/00-install-certbot.sh delete mode 100644 certbot/01-generate-certs.sh delete mode 100644 certbot/docker-compose.certbot.yml create mode 100644 certbot/docker-compose.yml create mode 100644 certbot/traefik/configurations/middlewares-http.toml create mode 100644 certbot/traefik/configurations/routers-http.toml create mode 100644 certbot/traefik/configurations/routers-tcp.toml create mode 100644 certbot/traefik/configurations/services-http.toml create mode 100644 certbot/traefik/configurations/services-tcp.toml create mode 100644 certbot/traefik/traefik.toml diff --git a/.gitignore b/.gitignore index cbd3a0e..88c498a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ selfsigned/letsencrypt/acme.json selfsigned/traefik/log/access.log +certbot/letsencrypt/acme.json +certbot/traefik/log/access.log diff --git a/certbot/00-install-certbot.sh b/certbot/00-install-certbot.sh deleted file mode 100644 index d64b5a4..0000000 --- a/certbot/00-install-certbot.sh +++ /dev/null @@ -1,205 +0,0 @@ -#!/bin/bash -#============================================================================ -# FILE: 00-install-certbot.sh -# USAGE: sudo ./00-install-certbot.sh -# DESCRIPTION: POSIX (hopefully) compatible script to install certbot and -# enabling the HTTP Port for certbot via firewall -#============================================================================ -ROOT_UID=0 -E_NOTROOT=87 - -ENVFILE="certbot.env" - - -#=== FUNCTION ================================================================ -# NAME: determine_distro -# DESCRIPTION: determine which type of Linux Distribution the machine is -# PARAMETERS: none -# RETURNS: distribution name -#=============================================================================== -function determine_distro () -{ - if grep -Eqii "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then - DISTRO="CentOS" - - elif grep -Eqi "Red Hat Enterprise Linux Server" /etc/issue || grep -Eq "Red Hat Enterprise Linux Server" /etc/*-release ; then - DISTRO="RHEL" - - elif grep -Eqi "Fedora" /etc/issue || grep -Eq "Fedora" /etc/*-release ; then - DISTRO="Fedora" - - elif grep -Eqi "Debian" /etc/issue || grep -Eq "Debian" /etc/*-release ; then - DISTRO="Debian" - - elif grep -Eqi "Ubuntu" /etc/issue || grep -Eq "Ubuntu" /etc/*-release ; then - DISTRO="Ubuntu" - - else - DISTRO=$(uname -s) - - fi -} # ---------- end of function determine_distro ---------- - - -#=== FUNCTION ================================================================ -# NAME: install_certbot -# DESCRIPTION: install certbot binary on machine based on machine's distribution -# PARAMETERS: none -# RETURNS: none -#=============================================================================== - -function install_certbot () -{ - - echo "#-------------------------------------------------------------------------------" - echo "# Installing certbot on the machine " - echo "#-------------------------------------------------------------------------------" - - - determine_distro - - case $DISTRO in - - "CentOS"|"RHEL") - echo -e "Using yum to install certbot on ${DISTRO} \n" - echo -e "Enabling Extra Packages for Enterprise Linux (EPEL)\n" - - yum --enablerepo=extras install epel-release - yum install certbot - - retval=$? - - if [ $retval -ne 0 ]; then - echo -e "Error while installing certbot on machine \n" - exit $retval - fi - ;; - - "Fedora") - echo -e "Using dnf to install certbot on ${DISTRO}\n" - dnf install certbot - ;; - - "Debian") - echo -e "Using apt-get to install certbot on ${DISTRO} \n" - - apt-get install certbot - - retval=$? - - if [ $retval -ne 0 ]; then - echo -e "Error while installing certbot on machine \n" - exit $retval - fi - ;; - - "Ubuntu") - - source /etc/*-release - - echo -e "Distribution Version: $DISTRIB_RELEASE\n" - - case $DISTRIB_RELEASE in - "19.04"|"20.04") - apt-get update - apt-get install -y software-properties-common - add-apt-repository universe - apt-get update - ;; - - "18.04"|"16.04") - apt-get update - apt-get install -y software-properties-common - add-apt-repository universe - add-apt-repository ppa:certbot/certbot - apt-get update - ;; - - *) - echo -e "Check Certbot official docs for manual installation on this version.\n" - ;; - esac - - echo -e "Installing Certbot\n" - apt-get install certbot - - retval=$? - - if [ $retval -ne 0 ]; then - echo -e "Error while installing certbot on machine\n" - exit $retval - fi - ;; - - *) - echo -e "Unknown Distribution. Please install certbot manually\n" - exit 1 - ;; - - esac # --- end of case --- - -} # ---------- end of function install_certbot ---------- - -#------------------------------------------------------------------------------- -# Check if Script is running with Root Privileges -#------------------------------------------------------------------------------- - - -if [ "$UID" -ne "$ROOT_UID" ]; then - echo -e "Must be Root to run this script\n" - exit $E_NOTROOT -fi - -echo "#-------------------------------------------------------------------------------" -echo "# Checking if certbot exists on machine" -echo "#-------------------------------------------------------------------------------" - -if ! command -v certbot &> /dev/null; then - echo -e "certbot not installed on machine\n" - install_certbot -else - echo -e "certbot already exists on machine\n" -fi - -echo "#-------------------------------------------------------------------------------" -echo "# Enabling HTTP Port (80) via Firewall " -echo "#-------------------------------------------------------------------------------" - -determine_distro -echo "DISTRO=$DISTRO" >> $ENVFILE -echo "Enabling HTTP port for certbot on ${DISTRO}" - - -case $DISTRO in - "Raspbian"|"Debian"|"Ubuntu") - if ! command -v ufw &> /dev/null; then - echo -e "no ufw installed on machine\n" - echo -e "installing ufw\n" - apt install ufw - fi - - echo -e "enabling HTTP port on Machine\n" - ufw allow 80 - ;; - - - "CentOS"|"RHEL"|"Fedora") - if ! command -v firewall-cmd &> /dev/null; then - echo -e "no firewall-cmd installed on machine\n" - echo -e "installing firewall-cmd\n" - yum install firewall-cmd - fi - - echo -e "enabling HTTP port on machine\n" - firewall-cmd --add-service=http - firewall-cmd --runtime-to-permanent - ;; - - *) - echo -e "Unknown Distribution. Please enable HTTP Port manually\n" - exit 2 - ;; - -esac # --- end of case --- - -exit 0 diff --git a/certbot/01-generate-certs.sh b/certbot/01-generate-certs.sh deleted file mode 100644 index 453be88..0000000 --- a/certbot/01-generate-certs.sh +++ /dev/null @@ -1,132 +0,0 @@ -#!/bin/bash -#============================================================================ -# FILE: 01-generate-certs.sh -# USAGE: sudo ./01-generate-certs.sh -# DESCRIPTION: generating SSL certificates for given Domain + Email via certbot -#============================================================================ - -ROOT_UID=0 -E_NOTROOT=87 - -MOSQUITTO_CONF=$(pwd)/mosquitto/config/mosquitto.conf -ENVFILE="certbot.env" - -if [ "$UID" -ne "$ROOT_UID" ]; then - echo -e "Must be Root to run this script\n" - exit $E_NOTROOT -fi - -if [ $# -lt 2 ]; then - echo -e "\n USAGE: `basename $0` " - exit 1 -else - DOMAIN=$1 - EMAIL=$2 - echo -e "## CERTBOT Environment Variables\n" - echo -e "CB_DOMAIN=$DOMAIN" >> $ENVFILE - echo -e "CB_EMAIL=$EMAIL" >> $ENVFILE -fi - -echo "#-------------------------------------------------------------------------------" -echo "# Checking if certbot exists on machine" -echo "#-------------------------------------------------------------------------------" - -if ! command -v certbot &> /dev/null; then - echo -e "certbot not installed on machine\n" - echo -e "Please execute 00-install-certbot.sh script first" - exit 1 -else - echo -e "certbot already exists on machine\n" -fi - -echo "#-------------------------------------------------------------------------------" -echo "# Generating SSL Certificates for the Domain using certbot" -echo "#-------------------------------------------------------------------------------" - -certbot certonly \ - --standalone \ - --preferred-challenges http \ - --agree-tos \ - -m $EMAIL \ - -d $DOMAIN - -cert_return=$? - -if [ $cert_return -ne 0 ]; then - echo -e "certbot threw errors while generating certificates\n" - exit $cert_return -fi - - -#------------------------------------------------------------------------------- -# Check if Directory for generated certificates exists and files exist within it -#------------------------------------------------------------------------------- - -CERTDIR=/etc/letsencrypt/live/$DOMAIN - -echo -e "Certificate Directory: $CERTDIR\n" - -if [ -d $CERTDIR ]; then - echo -e "Domain directory in letsencrypt directory exists\n" - echo -e "Checking for certificates in the directory\n" - - if [[ -f $CERTDIR/fullchain.pem ]] && [[ -f $CERTDIR/privkey.pem ]]; then - echo -e "Necessary certificates for SSL/HTTPS exist\n" - else - echo -e "No Certificates exist. Please check certbot logs\n" - exit 3 - fi -else - echo -e "No domain directory exists. Please check certbot logs\n" - exit 3 -fi - - -# Setup Variables for Certificates for Insertion into configuration file + Env file -CAFILE=$CERTDIR/chain.pem -CERTFILE=$CERTDIR/fullchain.pem -KEYFILE=$CERTDIR/privkey.pem - -#------------------------------------------------------------------------------- -# Adding Relevant files and Paths to Environment Variable Files -#------------------------------------------------------------------------------- - -#------------------------------------------------------------------------------- -# INFLUXDB ENVIRONMENT VARIABLES FOR HTTPS -#------------------------------------------------------------------------------- -echo -e "# InfluxDB Environment Variables" >> $ENVFILE -echo -e "INFLUXDB_HTTP_HTTPS_ENABLED=true" >> $ENVFILE -echo -e "INFLUXDB_HTTP_HTTPS_CERTIFICATE=$CERTFILE" >> $ENVFILE -echo -e "INFLUXDB_HTTP_HTTPS_PRIVATE_KEY=$KEYFILE" >> $ENVFILE - - -#------------------------------------------------------------------------------- -# GRAFANA ENVIRONMENT VARIABLES FOR HTTPS -#------------------------------------------------------------------------------- -echo -e "# Grafana Server Environment Variables" >> $ENVFILE -echo -e "GF_SECURITY_ADMIN_USER=admin" >> $ENVFILE -echo -e "GF_SECURITY_ADMIN_PASSWORD=tiguitto" >> $ENVFILE -echo -e "GF_SERVER_PROTOCOL=https" >> $ENVFILE -echo -e "GF_SERVER_DOMAIN=$DOMAIN" >> $ENVFILE -echo -e "GF_SERVER_ROOT_URL=https://$DOMAIN" >> $ENVFILE -echo -e "GF_SERVER_CERT_FILE=$CERTFILE" >> $ENVFILE -echo -e "GF_SERVER_CERT_KEY=$KEYFILE" >> $ENVFILE - -#------------------------------------------------------------------------------- -# TELEGRAF ENVIRONMENT VARIABLES -#------------------------------------------------------------------------------- -echo -e "# Telegraf Environment Variables" >> $ENVFILE -echo -e "TG_MOSQUITTO_USERNAME=subclient" >> $ENVFILE -echo -e "TG_MOSQUITTO_PASSWORD=tiguitto" >> $ENVFILE - -#------------------------------------------------------------------------------- -# Add TLS Certificate Paths to Mosquitto Configuration File -#------------------------------------------------------------------------------- - -echo -e "Adapting the Mosquitto Configuration file\n" - -sed -i "s|##CAFILE|$CAFILE|g" $MOSQUITTO_CONF -sed -i "s|##CERTFILE|$CERTFILE|g" $MOSQUITTO_CONF -sed -i "s|##KEYFILE|$KEYFILE|g" $MOSQUITTO_CONF - -exit 0 \ No newline at end of file diff --git a/certbot/certbot.env b/certbot/certbot.env index b53f1dd..2458daf 100644 --- a/certbot/certbot.env +++ b/certbot/certbot.env @@ -1,2 +1,31 @@ -# VARIABLES WILL BE GENERATED AFTER EXECUTING: -# 01-generate-certs.sh SCRIPT \ No newline at end of file +#InfluxDB Environment Variables +INFLUXDB_DB=edge +INFLUXDB_HTTP_AUTH_ENABLED=true + +#INFLUXDB_HTTP_HTTPS_ENABLED=true +#INFLUXDB_HTTP_HTTPS_CERTIFICATE=/etc/ssl/influxdb/influx-server.crt +#INFLUXDB_HTTP_HTTPS_PRIVATE_KEY=/etc/ssl/influxdb/influx-server.key + +INFLUXDB_ADMIN_USER=admin +INFLUXDB_ADMIN_PASSWORD=tiguitto + +INFLUXDB_USER=tiguitto +INFLUXDB_USER_PASSWORD=tiguitto + +# Gather Traefik Metrics via UDP since HTTPS/HTTP conflict +# Default UDP Port on 8089 +INFLUXDB_UDP_ENABLED=true +INFLUXDB_UDP_DATABASE=traefik + +# Grafana Environment Variables +GF_SECURITY_ADMIN_USER=admin +GF_SECURITY_ADMIN_PASSWORD=tiguitto +GF_SERVER_PROTOCOL=http +GF_SERVER_ROOT_URL=http://127.0.0.1:3000/grafana +GF_SERVER_SERVE_FROM_SUB_PATH=true +#GF_SERVER_CERT_FILE=/etc/ssl/certs/grafana-server.crt +#GF_SERVER_CERT_KEY=/etc/ssl/certs/grafana-server.key + +# Telegraf Environment Variables +TG_MOSQUITTO_USERNAME=subclient +TG_MOSQUITTO_PASSWORD=tiguitto diff --git a/certbot/docker-compose.certbot.yml b/certbot/docker-compose.certbot.yml deleted file mode 100644 index 9c0b966..0000000 --- a/certbot/docker-compose.certbot.yml +++ /dev/null @@ -1,66 +0,0 @@ -version: "3" - -services: - influxdb: - image: influxdb - container_name: influxdb - env_file: certbot.env - ports: - - "8086:8086" - volumes: - - /etc/letsencrypt:/etc/letsencrypt - - influxdb_data:/var/lib/influxdb - networks: - - "iotstack" - - mosquitto: - image: eclipse-mosquitto - container_name: mosquitto - volumes: - - /etc/letsencrypt/:/etc/letsencrypt - - ./mosquitto/config:/mosquitto/config - - ./mosquitto/log:/mosquitto/log - - ./mosquitto/data:/mosquitto/data - user: "${USER_ID}:${GRP_ID}" - ports: - - "8883:8883" - - "8884:8884" - links: - - telegraf - restart: always - networks: - - "iotstack" - - telegraf: - image: telegraf - container_name: telegraf - links: - - influxdb - env_file: certbot.env - volumes: - - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro - networks: - - "iotstack" - - grafana: - image: grafana/grafana - container_name: grafana - ports: - - "3000:3000" - env_file: certbot.env - user: "0" - links: - - influxdb - volumes: - - grafana_data:/var/lib/grafana - - /etc/letsencrypt:/etc/letsencrypt - networks: - - "iotstack" - -volumes: - influxdb_data: - grafana_data: - -networks: - iotstack: - external: true diff --git a/certbot/docker-compose.yml b/certbot/docker-compose.yml new file mode 100644 index 0000000..a090471 --- /dev/null +++ b/certbot/docker-compose.yml @@ -0,0 +1,111 @@ +version: "3" + +services: + traefik: + image: traefik:v2.2 + container_name: traefik + + restart: always + networks: + - "iotstack" + ports: + - "80:80" + # HTTPS + - "443:443" + # MQTT + - "8883:1883" + - "8884:1884" + depends_on: + # Let every other service start before traefik + - mosquitto + - grafana + - influxdb + - telegraf + volumes: + # Traefik Static Configuration + - ./traefik/traefik.toml:/etc/traefik/traefik.toml + - ./traefik/log/access.log:/log/access.log + # Traefik Dynamic Configuration + - ./traefik/configurations:/etc/traefik/configurations + # SSL Certificates + - "./letsencrypt:/letsencrypt" + # Docker Provider via Socket + - /var/run/docker.sock:/var/run/docker.sock:ro + labels: + - "traefik.enable=true" + - "traefik.http.routers.api-router=api-router@file" + - "traefik.http.routers.traefik-http-router.service=api@internal" + influxdb: + image: influxdb + container_name: influxdb + env_file: certbot.env + volumes: + - influxdb_data:/var/lib/influxdb + networks: + - "iotstack" + labels: + - "traefik.enable=true" + - "traefik.http.routers.influxdb-router=influxdb-router@file" + - "traefik.http.routers.influxdb-router.service=influxdb@file" + + mosquitto: + image: eclipse-mosquitto + container_name: mosquitto + volumes: + - ./mosquitto/config:/mosquitto/config + - ./mosquitto/log:/mosquitto/log + - ./mosquitto/data:/mosquitto/data + user: "${USER_ID}:${GRP_ID}" + expose: + - 1883 + - 1884 + links: + - telegraf + restart: always + networks: + - "iotstack" + labels: + - "traefik.enable=true" + # TCP Routers for MQTT and Websockets + - "traefik.tcp.routers.mqtt-router=mqtt-router@file" + - "traefik.tcp.routers.mqtt-websockets-router=mqtt-websockets-router@file" + # TCP Services for MQTT and Websockets + - "traefik.tcp.services.mosquitto=mosquitto@file" + - "traefik.tcp.services.mosquitto-ws=mosquitto-ws@file" + + telegraf: + image: telegraf + container_name: telegraf + links: + - influxdb + env_file: certbot.env + volumes: + - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro + networks: + - "iotstack" + labels: + - "traefik.enable=false" + + grafana: + image: grafana/grafana + container_name: grafana + env_file: certbot.env + user: "472" + links: + - influxdb + volumes: + - grafana_data:/var/lib/grafana + networks: + - "iotstack" + labels: + - "traefik.enable=true" + - "traefik.http.routers.grafana-router=grafana-router@file" + - "traefik.http.routers.grafana-router.service=grafana@file" + +volumes: + influxdb_data: + grafana_data: + +networks: + iotstack: + external: true diff --git a/certbot/mosquitto/config/mosquitto.conf b/certbot/mosquitto/config/mosquitto.conf index 6734767..e224a3e 100644 --- a/certbot/mosquitto/config/mosquitto.conf +++ b/certbot/mosquitto/config/mosquitto.conf @@ -3,7 +3,6 @@ allow_anonymous false password_file /mosquitto/config/passwd # Persistence - persistence true persistence_location /mosquitto/data/ @@ -14,20 +13,11 @@ log_dest stdout log_timestamp true log_type all -# TLS: MQTT -listener 8883 -protocol mqtt -cafile ##CAFILE -certfile ##CERTFILE -keyfile ##KEYFILE -tls_version tlsv1.2 -# require_certificate true # Optional +# TLS +listener 1883 +use_identity_as_username true # Websockets listener 8884 protocol websockets -cafile ##CAFILE -certfile ##CERTFILE -keyfile ##KEYFILE -tls_version tlsv1.2 -# require_certificate true # Optional \ No newline at end of file +use_identity_as_username true \ No newline at end of file diff --git a/certbot/telegraf/telegraf.toml b/certbot/telegraf/telegraf.toml index a559999..974b0cd 100644 --- a/certbot/telegraf/telegraf.toml +++ b/certbot/telegraf/telegraf.toml @@ -16,15 +16,17 @@ # OUTPUT PLUGINS # ############################################################# [[outputs.influxdb]] - urls = [ "https://${CB_DOMAIN}:8086" ] + urls = [ "http://influxdb:8086" ] database = "edge" skip_database_creation = false timeout = "5s" - username = "${INFLUX_USERNAME}" - password = "${INFLUX_PASSWORD}" + username = "${INFLUXDB_USER}" + password = "${INFLUXDB_USER_PASSWORD}" + ## Use TLS but skip chain & host verification + insecure_skip_verify = true ############################################################### # PROCESSOR PLUGINS # @@ -58,8 +60,8 @@ dest = "location" [processors.enum.mapping.value_mappings] - sensor1 = "kitchen" - sensor2 = "livingroom" + "sensor1" = "kitchen" + "sensor2" = "livingroom" ################################################################## # INPUT PLUGINS # @@ -67,7 +69,7 @@ [[inputs.mqtt_consumer]] - servers = [ "ssl://${CB_DOMAIN}:8883" ] + servers = [ "tcp://mosquitto:1883" ] # Topics to subscribe to: topics = [ @@ -87,5 +89,13 @@ username = "${TG_MOSQUITTO_USERNAME}" password = "${TG_MOSQUITTO_PASSWORD}" + ## Use TLS but skip chain & host verification + # Use Certificates if `require_certificate true` in `mosquitto.conf` file + #tls_ca = "/etc/telegraf/ca.crt" + #tls_cert = "/etc/telegraf/mqtt-client.crt" + #tls_key = "/etc/telegraf/mqtt-client.key" + ## Use TLS but skip chain & host verification + #insecure_skip_verify = true + # Incoming MQTT Payload from Sensor nodes is in InfluxDB Line Protocol strings - data_format = "influx" \ No newline at end of file + data_format = "influx" diff --git a/certbot/traefik/configurations/middlewares-http.toml b/certbot/traefik/configurations/middlewares-http.toml new file mode 100644 index 0000000..d1ab5a6 --- /dev/null +++ b/certbot/traefik/configurations/middlewares-http.toml @@ -0,0 +1,7 @@ +[http] + [http.middlewares] + [http.middlewares.user-auth] + [http.middlewares.user-auth.basicAuth] + # Username:Password -> admin:tiguitto + users = ["admin:$apr1$r3puowjd$lXRESWyaLtTa8Qdt6yD.0."] + diff --git a/certbot/traefik/configurations/routers-http.toml b/certbot/traefik/configurations/routers-http.toml new file mode 100644 index 0000000..3748095 --- /dev/null +++ b/certbot/traefik/configurations/routers-http.toml @@ -0,0 +1,27 @@ +[http] + [http.routers] + + [http.routers.api-router] + rule = "Host(`dashboard.demo1.iotstack.co`)" + entryPoints = ["web-secure"] + middlewares = ["user-auth"] + service = "api@internal" + + [http.routers.api-router.tls] + certResolver = "myresolver" + + [http.routers.grafana-router] + rule = "Host(`grafana.demo1.iotstack.co`)" + entryPoints = ["web-secure"] + service = "grafana" + + [http.routers.grafana-router.tls] + certResolver = "myresolver" + + [http.routers.influxdb-router] + rule = "Host(`influxdb.demo1.iotstack.co`)" + entryPoints = ["web-secure"] + service = "influxdb" + + [http.routers.influxdb-router.tls] + certResolver = "myresolver" \ No newline at end of file diff --git a/certbot/traefik/configurations/routers-tcp.toml b/certbot/traefik/configurations/routers-tcp.toml new file mode 100644 index 0000000..c86e064 --- /dev/null +++ b/certbot/traefik/configurations/routers-tcp.toml @@ -0,0 +1,19 @@ +[tcp] + [tcp.routers] + [tcp.routers.mqtt-router] + entryPoints = ["mqtt"] + service = "mosquitto" + rule = "HostSNI(`mqtt.demo1.iotstack.co`)" + + [tcp.routers.mqtt-router.tls] + certResolver = "myresolver" + passthrough = true + + [tcp.routers.mqtt-websockets-router] + entryPoints = ["websockets"] + service = "mosquitto-ws" + rule = "HostSNI(`mqtt.demo1.iotstack.co`)" + + [tcp.routers.mqtt-websockets-router.tls] + certResolver = "myresolver" + passthrough = true \ No newline at end of file diff --git a/certbot/traefik/configurations/services-http.toml b/certbot/traefik/configurations/services-http.toml new file mode 100644 index 0000000..32efa12 --- /dev/null +++ b/certbot/traefik/configurations/services-http.toml @@ -0,0 +1,17 @@ +[http] + [http.services] + [http.services.grafana] + [http.services.grafana.loadBalancer] + [[http.services.grafana.loadBalancer.servers]] + url = "http://grafana:3000" + [http.services.grafana.loadBalancer.healthCheck] + path = "grafana/api/health" + interval = "30s" + + [http.services.influxdb] + [http.services.influxdb.loadBalancer] + [[http.services.influxdb.loadBalancer.servers]] + url = "http://influxdb:8086" + [http.services.influxdb.loadBalancer.healthCheck] + path = "/ping" + interval = "30s" diff --git a/certbot/traefik/configurations/services-tcp.toml b/certbot/traefik/configurations/services-tcp.toml new file mode 100644 index 0000000..9347af7 --- /dev/null +++ b/certbot/traefik/configurations/services-tcp.toml @@ -0,0 +1,11 @@ +[tcp] + [tcp.services] + [tcp.services.mosquitto] + [tcp.services.mosquitto.loadBalancer] + [[tcp.services.mosquitto.loadBalancer.servers]] + address = "mosquitto:1883" + + [tcp.services.mosquitto-ws] + [tcp.services.mosquitto-ws.loadBalancer] + [[tcp.services.mosquitto-ws.loadBalancer.servers]] + address = "mosquitto:1884" diff --git a/certbot/traefik/traefik.toml b/certbot/traefik/traefik.toml new file mode 100644 index 0000000..f0d6548 --- /dev/null +++ b/certbot/traefik/traefik.toml @@ -0,0 +1,66 @@ +# Traefik Static Configuration Reference +# Link: https://doc.traefik.io/traefik/reference/static-configuration/file/ + +[global] + checkNewVersion = false + sendAnonymousUsage = false + +[api] + # insecure = true + dashboard = true + debug = true + +[metrics] + [metrics.influxDB] + address = "influxdb:8089" + protocol = "udp" + pushInterval = "42s" + # Same as that of the environment file + database = "traefik" + username = "admin" + password = "tiguitto" + addEntryPointsLabels = true + addServicesLabels = true + +[log] + level = "DEBUG" + +[accessLog] + filePath = "/log/access.log" + bufferingSize = 100 + [accessLog.filters] + statusCodes = ["200", "300-302", "400-499"] + retryAttempts = true + minDuration = 10 + +[entryPoints] + [entryPoints.web] + address = ":80" + + [entryPoints.web-secure] + address = ":443" + + [entryPoints.mqtt] + address = ":8883" + [entryPoints.websockets] + address = ":8884" + +[retry] + +[providers] + [providers.docker] + endpoint = "unix:///var/run/docker.sock" + exposedByDefault = false + network = "iotstack" + [providers.file] + directory = "/etc/traefik/configurations/" + watch = true + +[certificatesResolvers.myresolver.acme] + email = "lewandowski@swms.de" + storage = "/letsencrypt/acme.json" + # caserver = "https://acme-staging-v02.api.letsencrypt.org/directory" + + [certificatesResolvers.myresolver.acme.httpChallenge] + # used during the challenge + entryPoint = "web" \ No newline at end of file From 3cc2012d421a566dd14907560aedbdccb30f46bd Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Thu, 4 Feb 2021 00:12:08 +0100 Subject: [PATCH 15/19] mqqt config --- certbot/traefik/configurations/routers-tcp.toml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/certbot/traefik/configurations/routers-tcp.toml b/certbot/traefik/configurations/routers-tcp.toml index c86e064..7427db9 100644 --- a/certbot/traefik/configurations/routers-tcp.toml +++ b/certbot/traefik/configurations/routers-tcp.toml @@ -3,11 +3,10 @@ [tcp.routers.mqtt-router] entryPoints = ["mqtt"] service = "mosquitto" - rule = "HostSNI(`mqtt.demo1.iotstack.co`)" + rule = "HostSNI(`*`)" [tcp.routers.mqtt-router.tls] certResolver = "myresolver" - passthrough = true [tcp.routers.mqtt-websockets-router] entryPoints = ["websockets"] @@ -15,5 +14,4 @@ rule = "HostSNI(`mqtt.demo1.iotstack.co`)" [tcp.routers.mqtt-websockets-router.tls] - certResolver = "myresolver" - passthrough = true \ No newline at end of file + certResolver = "myresolver" From 5a9216402312e6ed79ef1019e4d64931ce132636 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Fri, 5 Feb 2021 16:02:39 +0100 Subject: [PATCH 16/19] Working Mosquitto setup with Let's encrypt --- certbot/docker-compose.yml | 13 +- certbot/mosquitto/config/mosquitto.conf | 46 +- certbot/mosquitto/log/mosquitto.log | 21458 ++++++++++++++++ certbot/telegraf/telegraf.toml | 202 +- .../traefik/configurations/routers-http.toml | 10 +- .../traefik/configurations/routers-tcp.toml | 7 - .../traefik/configurations/services-http.toml | 5 + .../traefik/configurations/services-tcp.toml | 6 +- certbot/traefik/traefik.toml | 2 - selfsigned/traefik/log/access.log | 455 + 10 files changed, 22059 insertions(+), 145 deletions(-) diff --git a/certbot/docker-compose.yml b/certbot/docker-compose.yml index a090471..e8ec802 100644 --- a/certbot/docker-compose.yml +++ b/certbot/docker-compose.yml @@ -13,8 +13,8 @@ services: # HTTPS - "443:443" # MQTT - - "8883:1883" - - "8884:1884" + - "8883:8883" + - "8884:8884" depends_on: # Let every other service start before traefik - mosquitto @@ -57,8 +57,8 @@ services: - ./mosquitto/data:/mosquitto/data user: "${USER_ID}:${GRP_ID}" expose: - - 1883 - - 1884 + - 8883 + - 8884 links: - telegraf restart: always @@ -66,12 +66,13 @@ services: - "iotstack" labels: - "traefik.enable=true" + - "traefik.http.routers.mqtt-router=mqtt-router@file" + # TCP Routers for MQTT and Websockets - "traefik.tcp.routers.mqtt-router=mqtt-router@file" - - "traefik.tcp.routers.mqtt-websockets-router=mqtt-websockets-router@file" # TCP Services for MQTT and Websockets - "traefik.tcp.services.mosquitto=mosquitto@file" - - "traefik.tcp.services.mosquitto-ws=mosquitto-ws@file" + - "traefik.http.services.mosquitto-ws=mosquitto-ws@file" telegraf: image: telegraf diff --git a/certbot/mosquitto/config/mosquitto.conf b/certbot/mosquitto/config/mosquitto.conf index e224a3e..2db57b7 100644 --- a/certbot/mosquitto/config/mosquitto.conf +++ b/certbot/mosquitto/config/mosquitto.conf @@ -1,23 +1,23 @@ -# Authentication -allow_anonymous false -password_file /mosquitto/config/passwd - -# Persistence -persistence true -persistence_location /mosquitto/data/ - - -# Logging -log_dest file /mosquitto/log/mosquitto.log -log_dest stdout -log_timestamp true -log_type all - -# TLS -listener 1883 -use_identity_as_username true - -# Websockets -listener 8884 -protocol websockets -use_identity_as_username true \ No newline at end of file +# Authentication +# allow_anonymous false +# password_file /mosquitto/config/passwd + +# Persistence +persistence true +persistence_location /mosquitto/data/ + + +# Logging +log_dest file /mosquitto/log/mosquitto.log +log_dest stdout +log_timestamp true +log_type all + +# TLS +port 8883 +# use_identity_as_username true + +# Websockets +listener 9001 +protocol websockets +#use_identity_as_username true \ No newline at end of file diff --git a/certbot/mosquitto/log/mosquitto.log b/certbot/mosquitto/log/mosquitto.log index e69de29..0a3eeb9 100644 --- a/certbot/mosquitto/log/mosquitto.log +++ b/certbot/mosquitto/log/mosquitto.log @@ -0,0 +1,21458 @@ +1612394052: mosquitto version 1.6.10 starting +1612394052: Config loaded from /mosquitto/config/mosquitto.conf. +1612394052: Error: Invalid password hash for user pubclient, removing entry. +1612394052: Error: Invalid password hash for user subclient, removing entry. +1612394052: Opening ipv4 listen socket on port 1883. +1612394052: Opening ipv6 listen socket on port 1883. +1612394052: Opening websockets listen socket on port 8884. +1612394060: New connection from 172.18.0.4 on port 1883. +1612394060: Sending CONNACK to 172.18.0.4 (0, 5) +1612394060: Socket error on client , disconnecting. +1612394060: New connection from 172.18.0.4 on port 1883. +1612394060: Sending CONNACK to 172.18.0.4 (0, 5) +1612394060: Socket error on client , disconnecting. +1612394080: New connection from 172.18.0.4 on port 1883. +1612394080: Sending CONNACK to 172.18.0.4 (0, 5) +1612394080: Socket error on client , disconnecting. +1612394100: New connection from 172.18.0.4 on port 1883. +1612394100: Sending CONNACK to 172.18.0.4 (0, 5) +1612394100: Socket error on client , disconnecting. +1612394120: New connection from 172.18.0.4 on port 1883. +1612394120: Sending CONNACK to 172.18.0.4 (0, 5) +1612394120: Socket error on client , disconnecting. +1612394140: New connection from 172.18.0.4 on port 1883. +1612394140: Sending CONNACK to 172.18.0.4 (0, 5) +1612394140: Socket error on client , disconnecting. +1612394160: New connection from 172.18.0.4 on port 1883. +1612394160: Sending CONNACK to 172.18.0.4 (0, 5) +1612394160: Socket error on client , disconnecting. +1612394180: New connection from 172.18.0.4 on port 1883. +1612394180: Sending CONNACK to 172.18.0.4 (0, 5) +1612394180: Socket error on client , disconnecting. +1612394181: mosquitto version 1.6.10 terminating +1612394181: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612394181: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612394181: Error: Permission denied. +1612394188: mosquitto version 1.6.10 starting +1612394188: Config loaded from /mosquitto/config/mosquitto.conf. +1612394188: Error: Invalid password hash for user pubclient, removing entry. +1612394188: Error: Invalid password hash for user subclient, removing entry. +1612394188: Opening ipv4 listen socket on port 1883. +1612394188: Opening ipv6 listen socket on port 1883. +1612394188: Opening websockets listen socket on port 8884. +1612394189: New connection from 172.18.0.3 on port 1883. +1612394189: Sending CONNACK to 172.18.0.3 (0, 5) +1612394189: Socket error on client , disconnecting. +1612394189: New connection from 172.18.0.3 on port 1883. +1612394189: Sending CONNACK to 172.18.0.3 (0, 5) +1612394189: Socket error on client , disconnecting. +1612394201: New connection from 172.18.0.3 on port 1883. +1612394201: Sending CONNACK to 172.18.0.3 (0, 5) +1612394201: Socket error on client , disconnecting. +1612394220: New connection from 172.18.0.3 on port 1883. +1612394220: Sending CONNACK to 172.18.0.3 (0, 5) +1612394220: Socket error on client , disconnecting. +1612394240: New connection from 172.18.0.3 on port 1883. +1612394240: Sending CONNACK to 172.18.0.3 (0, 5) +1612394240: Socket error on client , disconnecting. +1612394260: New connection from 172.18.0.3 on port 1883. +1612394260: Sending CONNACK to 172.18.0.3 (0, 5) +1612394260: Socket error on client , disconnecting. +1612394280: New connection from 172.18.0.3 on port 1883. +1612394280: Sending CONNACK to 172.18.0.3 (0, 5) +1612394280: Socket error on client , disconnecting. +1612394300: New connection from 172.18.0.3 on port 1883. +1612394300: Sending CONNACK to 172.18.0.3 (0, 5) +1612394300: Socket error on client , disconnecting. +1612394320: New connection from 172.18.0.3 on port 1883. +1612394320: Sending CONNACK to 172.18.0.3 (0, 5) +1612394320: Socket error on client , disconnecting. +1612394340: New connection from 172.18.0.3 on port 1883. +1612394340: Sending CONNACK to 172.18.0.3 (0, 5) +1612394340: Socket error on client , disconnecting. +1612394360: New connection from 172.18.0.3 on port 1883. +1612394360: Sending CONNACK to 172.18.0.3 (0, 5) +1612394360: Socket error on client , disconnecting. +1612394380: New connection from 172.18.0.3 on port 1883. +1612394380: Sending CONNACK to 172.18.0.3 (0, 5) +1612394380: Socket error on client , disconnecting. +1612394400: New connection from 172.18.0.3 on port 1883. +1612394400: Sending CONNACK to 172.18.0.3 (0, 5) +1612394400: Socket error on client , disconnecting. +1612394420: New connection from 172.18.0.3 on port 1883. +1612394420: Sending CONNACK to 172.18.0.3 (0, 5) +1612394420: Socket error on client , disconnecting. +1612394440: New connection from 172.18.0.3 on port 1883. +1612394440: Sending CONNACK to 172.18.0.3 (0, 5) +1612394440: Socket error on client , disconnecting. +1612394460: New connection from 172.18.0.3 on port 1883. +1612394460: Sending CONNACK to 172.18.0.3 (0, 5) +1612394460: Socket error on client , disconnecting. +1612394480: New connection from 172.18.0.3 on port 1883. +1612394480: Sending CONNACK to 172.18.0.3 (0, 5) +1612394480: Socket error on client , disconnecting. +1612394500: New connection from 172.18.0.3 on port 1883. +1612394500: Sending CONNACK to 172.18.0.3 (0, 5) +1612394500: Socket error on client , disconnecting. +1612394520: New connection from 172.18.0.3 on port 1883. +1612394520: Sending CONNACK to 172.18.0.3 (0, 5) +1612394520: Socket error on client , disconnecting. +1612394540: New connection from 172.18.0.3 on port 1883. +1612394540: Sending CONNACK to 172.18.0.3 (0, 5) +1612394540: Socket error on client , disconnecting. +1612394560: New connection from 172.18.0.3 on port 1883. +1612394560: Sending CONNACK to 172.18.0.3 (0, 5) +1612394560: Socket error on client , disconnecting. +1612394580: New connection from 172.18.0.3 on port 1883. +1612394580: Sending CONNACK to 172.18.0.3 (0, 5) +1612394580: Socket error on client , disconnecting. +1612394600: New connection from 172.18.0.3 on port 1883. +1612394600: Sending CONNACK to 172.18.0.3 (0, 5) +1612394600: Socket error on client , disconnecting. +1612394620: New connection from 172.18.0.3 on port 1883. +1612394620: Sending CONNACK to 172.18.0.3 (0, 5) +1612394620: Socket error on client , disconnecting. +1612394640: New connection from 172.18.0.3 on port 1883. +1612394640: Sending CONNACK to 172.18.0.3 (0, 5) +1612394640: Socket error on client , disconnecting. +1612394660: New connection from 172.18.0.3 on port 1883. +1612394660: Sending CONNACK to 172.18.0.3 (0, 5) +1612394660: Socket error on client , disconnecting. +1612394680: New connection from 172.18.0.3 on port 1883. +1612394680: Sending CONNACK to 172.18.0.3 (0, 5) +1612394680: Socket error on client , disconnecting. +1612394700: New connection from 172.18.0.3 on port 1883. +1612394700: Sending CONNACK to 172.18.0.3 (0, 5) +1612394700: Socket error on client , disconnecting. +1612394720: New connection from 172.18.0.3 on port 1883. +1612394720: Sending CONNACK to 172.18.0.3 (0, 5) +1612394720: Socket error on client , disconnecting. +1612394740: New connection from 172.18.0.3 on port 1883. +1612394740: Sending CONNACK to 172.18.0.3 (0, 5) +1612394740: Socket error on client , disconnecting. +1612394760: New connection from 172.18.0.3 on port 1883. +1612394760: Sending CONNACK to 172.18.0.3 (0, 5) +1612394760: Socket error on client , disconnecting. +1612394780: New connection from 172.18.0.3 on port 1883. +1612394780: Sending CONNACK to 172.18.0.3 (0, 5) +1612394780: Socket error on client , disconnecting. +1612394800: New connection from 172.18.0.3 on port 1883. +1612394800: Sending CONNACK to 172.18.0.3 (0, 5) +1612394800: Socket error on client , disconnecting. +1612394820: New connection from 172.18.0.3 on port 1883. +1612394820: Sending CONNACK to 172.18.0.3 (0, 5) +1612394820: Socket error on client , disconnecting. +1612394840: New connection from 172.18.0.3 on port 1883. +1612394840: Sending CONNACK to 172.18.0.3 (0, 5) +1612394840: Socket error on client , disconnecting. +1612394860: New connection from 172.18.0.3 on port 1883. +1612394860: Sending CONNACK to 172.18.0.3 (0, 5) +1612394860: Socket error on client , disconnecting. +1612394880: New connection from 172.18.0.3 on port 1883. +1612394880: Sending CONNACK to 172.18.0.3 (0, 5) +1612394880: Socket error on client , disconnecting. +1612394900: New connection from 172.18.0.3 on port 1883. +1612394900: Sending CONNACK to 172.18.0.3 (0, 5) +1612394900: Socket error on client , disconnecting. +1612394920: New connection from 172.18.0.3 on port 1883. +1612394920: Sending CONNACK to 172.18.0.3 (0, 5) +1612394920: Socket error on client , disconnecting. +1612394940: New connection from 172.18.0.3 on port 1883. +1612394940: Sending CONNACK to 172.18.0.3 (0, 5) +1612394940: Socket error on client , disconnecting. +1612394960: New connection from 172.18.0.3 on port 1883. +1612394960: Sending CONNACK to 172.18.0.3 (0, 5) +1612394960: Socket error on client , disconnecting. +1612394980: New connection from 172.18.0.3 on port 1883. +1612394980: Sending CONNACK to 172.18.0.3 (0, 5) +1612394980: Socket error on client , disconnecting. +1612395000: New connection from 172.18.0.3 on port 1883. +1612395000: Sending CONNACK to 172.18.0.3 (0, 5) +1612395000: Socket error on client , disconnecting. +1612395020: New connection from 172.18.0.3 on port 1883. +1612395020: Sending CONNACK to 172.18.0.3 (0, 5) +1612395020: Socket error on client , disconnecting. +1612395040: New connection from 172.18.0.3 on port 1883. +1612395040: Sending CONNACK to 172.18.0.3 (0, 5) +1612395040: Socket error on client , disconnecting. +1612395060: New connection from 172.18.0.3 on port 1883. +1612395060: Sending CONNACK to 172.18.0.3 (0, 5) +1612395060: Socket error on client , disconnecting. +1612395080: New connection from 172.18.0.3 on port 1883. +1612395080: Sending CONNACK to 172.18.0.3 (0, 5) +1612395080: Socket error on client , disconnecting. +1612395100: New connection from 172.18.0.3 on port 1883. +1612395100: Sending CONNACK to 172.18.0.3 (0, 5) +1612395100: Socket error on client , disconnecting. +1612395120: New connection from 172.18.0.3 on port 1883. +1612395120: Sending CONNACK to 172.18.0.3 (0, 5) +1612395120: Socket error on client , disconnecting. +1612395140: New connection from 172.18.0.3 on port 1883. +1612395140: Sending CONNACK to 172.18.0.3 (0, 5) +1612395140: Socket error on client , disconnecting. +1612395160: New connection from 172.18.0.3 on port 1883. +1612395160: Sending CONNACK to 172.18.0.3 (0, 5) +1612395160: Socket error on client , disconnecting. +1612395180: New connection from 172.18.0.3 on port 1883. +1612395180: Sending CONNACK to 172.18.0.3 (0, 5) +1612395180: Socket error on client , disconnecting. +1612395200: New connection from 172.18.0.3 on port 1883. +1612395200: Sending CONNACK to 172.18.0.3 (0, 5) +1612395200: Socket error on client , disconnecting. +1612395220: New connection from 172.18.0.3 on port 1883. +1612395220: Sending CONNACK to 172.18.0.3 (0, 5) +1612395220: Socket error on client , disconnecting. +1612395240: New connection from 172.18.0.3 on port 1883. +1612395240: Sending CONNACK to 172.18.0.3 (0, 5) +1612395240: Socket error on client , disconnecting. +1612395260: New connection from 172.18.0.3 on port 1883. +1612395260: Sending CONNACK to 172.18.0.3 (0, 5) +1612395260: Socket error on client , disconnecting. +1612395280: New connection from 172.18.0.3 on port 1883. +1612395280: Sending CONNACK to 172.18.0.3 (0, 5) +1612395280: Socket error on client , disconnecting. +1612395300: New connection from 172.18.0.3 on port 1883. +1612395300: Sending CONNACK to 172.18.0.3 (0, 5) +1612395300: Socket error on client , disconnecting. +1612395320: New connection from 172.18.0.3 on port 1883. +1612395320: Sending CONNACK to 172.18.0.3 (0, 5) +1612395320: Socket error on client , disconnecting. +1612395340: New connection from 172.18.0.3 on port 1883. +1612395340: Sending CONNACK to 172.18.0.3 (0, 5) +1612395340: Socket error on client , disconnecting. +1612395360: New connection from 172.18.0.3 on port 1883. +1612395360: Sending CONNACK to 172.18.0.3 (0, 5) +1612395360: Socket error on client , disconnecting. +1612395380: New connection from 172.18.0.3 on port 1883. +1612395380: Sending CONNACK to 172.18.0.3 (0, 5) +1612395380: Socket error on client , disconnecting. +1612395400: New connection from 172.18.0.3 on port 1883. +1612395400: Sending CONNACK to 172.18.0.3 (0, 5) +1612395400: Socket error on client , disconnecting. +1612395420: New connection from 172.18.0.3 on port 1883. +1612395420: Sending CONNACK to 172.18.0.3 (0, 5) +1612395420: Socket error on client , disconnecting. +1612395440: New connection from 172.18.0.3 on port 1883. +1612395440: Sending CONNACK to 172.18.0.3 (0, 5) +1612395440: Socket error on client , disconnecting. +1612395460: New connection from 172.18.0.3 on port 1883. +1612395460: Sending CONNACK to 172.18.0.3 (0, 5) +1612395460: Socket error on client , disconnecting. +1612395480: New connection from 172.18.0.3 on port 1883. +1612395480: Sending CONNACK to 172.18.0.3 (0, 5) +1612395480: Socket error on client , disconnecting. +1612395500: New connection from 172.18.0.3 on port 1883. +1612395500: Sending CONNACK to 172.18.0.3 (0, 5) +1612395500: Socket error on client , disconnecting. +1612395520: New connection from 172.18.0.3 on port 1883. +1612395520: Sending CONNACK to 172.18.0.3 (0, 5) +1612395520: Socket error on client , disconnecting. +1612395540: New connection from 172.18.0.3 on port 1883. +1612395540: Sending CONNACK to 172.18.0.3 (0, 5) +1612395540: Socket error on client , disconnecting. +1612395560: New connection from 172.18.0.3 on port 1883. +1612395560: Sending CONNACK to 172.18.0.3 (0, 5) +1612395560: Socket error on client , disconnecting. +1612395580: New connection from 172.18.0.3 on port 1883. +1612395580: Sending CONNACK to 172.18.0.3 (0, 5) +1612395580: Socket error on client , disconnecting. +1612395600: New connection from 172.18.0.3 on port 1883. +1612395600: Sending CONNACK to 172.18.0.3 (0, 5) +1612395600: Socket error on client , disconnecting. +1612395620: New connection from 172.18.0.3 on port 1883. +1612395620: Sending CONNACK to 172.18.0.3 (0, 5) +1612395620: Socket error on client , disconnecting. +1612395640: New connection from 172.18.0.3 on port 1883. +1612395640: Sending CONNACK to 172.18.0.3 (0, 5) +1612395640: Socket error on client , disconnecting. +1612395660: New connection from 172.18.0.3 on port 1883. +1612395660: Sending CONNACK to 172.18.0.3 (0, 5) +1612395660: Socket error on client , disconnecting. +1612395680: New connection from 172.18.0.3 on port 1883. +1612395680: Sending CONNACK to 172.18.0.3 (0, 5) +1612395680: Socket error on client , disconnecting. +1612395700: New connection from 172.18.0.3 on port 1883. +1612395700: Sending CONNACK to 172.18.0.3 (0, 5) +1612395700: Socket error on client , disconnecting. +1612395720: New connection from 172.18.0.3 on port 1883. +1612395720: Sending CONNACK to 172.18.0.3 (0, 5) +1612395720: Socket error on client , disconnecting. +1612395740: New connection from 172.18.0.3 on port 1883. +1612395740: Sending CONNACK to 172.18.0.3 (0, 5) +1612395740: Socket error on client , disconnecting. +1612395760: New connection from 172.18.0.3 on port 1883. +1612395760: Sending CONNACK to 172.18.0.3 (0, 5) +1612395760: Socket error on client , disconnecting. +1612395780: New connection from 172.18.0.3 on port 1883. +1612395780: Sending CONNACK to 172.18.0.3 (0, 5) +1612395780: Socket error on client , disconnecting. +1612395800: New connection from 172.18.0.3 on port 1883. +1612395800: Sending CONNACK to 172.18.0.3 (0, 5) +1612395800: Socket error on client , disconnecting. +1612395820: New connection from 172.18.0.3 on port 1883. +1612395820: Sending CONNACK to 172.18.0.3 (0, 5) +1612395820: Socket error on client , disconnecting. +1612395840: New connection from 172.18.0.3 on port 1883. +1612395840: Sending CONNACK to 172.18.0.3 (0, 5) +1612395840: Socket error on client , disconnecting. +1612395860: New connection from 172.18.0.3 on port 1883. +1612395860: Sending CONNACK to 172.18.0.3 (0, 5) +1612395860: Socket error on client , disconnecting. +1612395880: New connection from 172.18.0.3 on port 1883. +1612395880: Sending CONNACK to 172.18.0.3 (0, 5) +1612395880: Socket error on client , disconnecting. +1612395900: New connection from 172.18.0.3 on port 1883. +1612395900: Sending CONNACK to 172.18.0.3 (0, 5) +1612395900: Socket error on client , disconnecting. +1612395920: New connection from 172.18.0.3 on port 1883. +1612395920: Sending CONNACK to 172.18.0.3 (0, 5) +1612395920: Socket error on client , disconnecting. +1612395940: New connection from 172.18.0.3 on port 1883. +1612395940: Sending CONNACK to 172.18.0.3 (0, 5) +1612395940: Socket error on client , disconnecting. +1612395960: New connection from 172.18.0.3 on port 1883. +1612395960: Sending CONNACK to 172.18.0.3 (0, 5) +1612395960: Socket error on client , disconnecting. +1612395980: New connection from 172.18.0.3 on port 1883. +1612395980: Sending CONNACK to 172.18.0.3 (0, 5) +1612395980: Socket error on client , disconnecting. +1612395989: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612395989: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612395989: Error: Permission denied. +1612396000: New connection from 172.18.0.3 on port 1883. +1612396000: Sending CONNACK to 172.18.0.3 (0, 5) +1612396000: Socket error on client , disconnecting. +1612396020: New connection from 172.18.0.3 on port 1883. +1612396020: Sending CONNACK to 172.18.0.3 (0, 5) +1612396020: Socket error on client , disconnecting. +1612396040: New connection from 172.18.0.3 on port 1883. +1612396040: Sending CONNACK to 172.18.0.3 (0, 5) +1612396040: Socket error on client , disconnecting. +1612396060: New connection from 172.18.0.3 on port 1883. +1612396060: Sending CONNACK to 172.18.0.3 (0, 5) +1612396060: Socket error on client , disconnecting. +1612396080: New connection from 172.18.0.3 on port 1883. +1612396080: Sending CONNACK to 172.18.0.3 (0, 5) +1612396080: Socket error on client , disconnecting. +1612396100: New connection from 172.18.0.3 on port 1883. +1612396100: Sending CONNACK to 172.18.0.3 (0, 5) +1612396100: Socket error on client , disconnecting. +1612396120: New connection from 172.18.0.3 on port 1883. +1612396120: Sending CONNACK to 172.18.0.3 (0, 5) +1612396120: Socket error on client , disconnecting. +1612396140: New connection from 172.18.0.3 on port 1883. +1612396140: Sending CONNACK to 172.18.0.3 (0, 5) +1612396140: Socket error on client , disconnecting. +1612396160: New connection from 172.18.0.3 on port 1883. +1612396160: Sending CONNACK to 172.18.0.3 (0, 5) +1612396160: Socket error on client , disconnecting. +1612396180: New connection from 172.18.0.3 on port 1883. +1612396180: Sending CONNACK to 172.18.0.3 (0, 5) +1612396180: Socket error on client , disconnecting. +1612396200: New connection from 172.18.0.3 on port 1883. +1612396200: Sending CONNACK to 172.18.0.3 (0, 5) +1612396200: Socket error on client , disconnecting. +1612396220: New connection from 172.18.0.3 on port 1883. +1612396220: Sending CONNACK to 172.18.0.3 (0, 5) +1612396220: Socket error on client , disconnecting. +1612396240: New connection from 172.18.0.3 on port 1883. +1612396240: Sending CONNACK to 172.18.0.3 (0, 5) +1612396240: Socket error on client , disconnecting. +1612396260: New connection from 172.18.0.3 on port 1883. +1612396260: Sending CONNACK to 172.18.0.3 (0, 5) +1612396260: Socket error on client , disconnecting. +1612396280: New connection from 172.18.0.3 on port 1883. +1612396280: Sending CONNACK to 172.18.0.3 (0, 5) +1612396280: Socket error on client , disconnecting. +1612396300: New connection from 172.18.0.3 on port 1883. +1612396300: Sending CONNACK to 172.18.0.3 (0, 5) +1612396300: Socket error on client , disconnecting. +1612396320: New connection from 172.18.0.3 on port 1883. +1612396320: Sending CONNACK to 172.18.0.3 (0, 5) +1612396320: Socket error on client , disconnecting. +1612396340: New connection from 172.18.0.3 on port 1883. +1612396340: Sending CONNACK to 172.18.0.3 (0, 5) +1612396340: Socket error on client , disconnecting. +1612396360: New connection from 172.18.0.3 on port 1883. +1612396360: Sending CONNACK to 172.18.0.3 (0, 5) +1612396360: Socket error on client , disconnecting. +1612396380: New connection from 172.18.0.3 on port 1883. +1612396380: Sending CONNACK to 172.18.0.3 (0, 5) +1612396380: Socket error on client , disconnecting. +1612396400: New connection from 172.18.0.3 on port 1883. +1612396400: Sending CONNACK to 172.18.0.3 (0, 5) +1612396400: Socket error on client , disconnecting. +1612396420: New connection from 172.18.0.3 on port 1883. +1612396420: Sending CONNACK to 172.18.0.3 (0, 5) +1612396420: Socket error on client , disconnecting. +1612396440: New connection from 172.18.0.3 on port 1883. +1612396440: Sending CONNACK to 172.18.0.3 (0, 5) +1612396440: Socket error on client , disconnecting. +1612396460: New connection from 172.18.0.3 on port 1883. +1612396460: Sending CONNACK to 172.18.0.3 (0, 5) +1612396460: Socket error on client , disconnecting. +1612396480: New connection from 172.18.0.3 on port 1883. +1612396480: Sending CONNACK to 172.18.0.3 (0, 5) +1612396480: Socket error on client , disconnecting. +1612396500: New connection from 172.18.0.3 on port 1883. +1612396500: Sending CONNACK to 172.18.0.3 (0, 5) +1612396500: Socket error on client , disconnecting. +1612396520: New connection from 172.18.0.3 on port 1883. +1612396520: Sending CONNACK to 172.18.0.3 (0, 5) +1612396520: Socket error on client , disconnecting. +1612396540: New connection from 172.18.0.3 on port 1883. +1612396540: Sending CONNACK to 172.18.0.3 (0, 5) +1612396540: Socket error on client , disconnecting. +1612396560: New connection from 172.18.0.3 on port 1883. +1612396560: Sending CONNACK to 172.18.0.3 (0, 5) +1612396560: Socket error on client , disconnecting. +1612396580: New connection from 172.18.0.3 on port 1883. +1612396580: Sending CONNACK to 172.18.0.3 (0, 5) +1612396580: Socket error on client , disconnecting. +1612396600: New connection from 172.18.0.3 on port 1883. +1612396600: Sending CONNACK to 172.18.0.3 (0, 5) +1612396600: Socket error on client , disconnecting. +1612396620: New connection from 172.18.0.3 on port 1883. +1612396620: Sending CONNACK to 172.18.0.3 (0, 5) +1612396620: Socket error on client , disconnecting. +1612396640: New connection from 172.18.0.3 on port 1883. +1612396640: Sending CONNACK to 172.18.0.3 (0, 5) +1612396640: Socket error on client , disconnecting. +1612396660: New connection from 172.18.0.3 on port 1883. +1612396660: Sending CONNACK to 172.18.0.3 (0, 5) +1612396660: Socket error on client , disconnecting. +1612396680: New connection from 172.18.0.3 on port 1883. +1612396680: Sending CONNACK to 172.18.0.3 (0, 5) +1612396680: Socket error on client , disconnecting. +1612396700: New connection from 172.18.0.3 on port 1883. +1612396700: Sending CONNACK to 172.18.0.3 (0, 5) +1612396700: Socket error on client , disconnecting. +1612396720: New connection from 172.18.0.3 on port 1883. +1612396720: Sending CONNACK to 172.18.0.3 (0, 5) +1612396720: Socket error on client , disconnecting. +1612396740: New connection from 172.18.0.3 on port 1883. +1612396740: Sending CONNACK to 172.18.0.3 (0, 5) +1612396740: Socket error on client , disconnecting. +1612396760: New connection from 172.18.0.3 on port 1883. +1612396760: Sending CONNACK to 172.18.0.3 (0, 5) +1612396760: Socket error on client , disconnecting. +1612396780: New connection from 172.18.0.3 on port 1883. +1612396780: Sending CONNACK to 172.18.0.3 (0, 5) +1612396780: Socket error on client , disconnecting. +1612396800: New connection from 172.18.0.3 on port 1883. +1612396800: Sending CONNACK to 172.18.0.3 (0, 5) +1612396800: Socket error on client , disconnecting. +1612396820: New connection from 172.18.0.3 on port 1883. +1612396820: Sending CONNACK to 172.18.0.3 (0, 5) +1612396820: Socket error on client , disconnecting. +1612396840: New connection from 172.18.0.3 on port 1883. +1612396840: Sending CONNACK to 172.18.0.3 (0, 5) +1612396840: Socket error on client , disconnecting. +1612396860: New connection from 172.18.0.3 on port 1883. +1612396860: Sending CONNACK to 172.18.0.3 (0, 5) +1612396860: Socket error on client , disconnecting. +1612396880: New connection from 172.18.0.3 on port 1883. +1612396880: Sending CONNACK to 172.18.0.3 (0, 5) +1612396880: Socket error on client , disconnecting. +1612396900: New connection from 172.18.0.3 on port 1883. +1612396900: Sending CONNACK to 172.18.0.3 (0, 5) +1612396900: Socket error on client , disconnecting. +1612396920: New connection from 172.18.0.3 on port 1883. +1612396920: Sending CONNACK to 172.18.0.3 (0, 5) +1612396920: Socket error on client , disconnecting. +1612396940: New connection from 172.18.0.3 on port 1883. +1612396940: Sending CONNACK to 172.18.0.3 (0, 5) +1612396940: Socket error on client , disconnecting. +1612396960: New connection from 172.18.0.3 on port 1883. +1612396960: Sending CONNACK to 172.18.0.3 (0, 5) +1612396960: Socket error on client , disconnecting. +1612396980: New connection from 172.18.0.3 on port 1883. +1612396980: Sending CONNACK to 172.18.0.3 (0, 5) +1612396980: Socket error on client , disconnecting. +1612397000: New connection from 172.18.0.3 on port 1883. +1612397000: Sending CONNACK to 172.18.0.3 (0, 5) +1612397000: Socket error on client , disconnecting. +1612397020: New connection from 172.18.0.3 on port 1883. +1612397020: Sending CONNACK to 172.18.0.3 (0, 5) +1612397020: Socket error on client , disconnecting. +1612397040: New connection from 172.18.0.3 on port 1883. +1612397040: Sending CONNACK to 172.18.0.3 (0, 5) +1612397040: Socket error on client , disconnecting. +1612397060: New connection from 172.18.0.3 on port 1883. +1612397060: Sending CONNACK to 172.18.0.3 (0, 5) +1612397060: Socket error on client , disconnecting. +1612397080: New connection from 172.18.0.3 on port 1883. +1612397080: Sending CONNACK to 172.18.0.3 (0, 5) +1612397080: Socket error on client , disconnecting. +1612397100: New connection from 172.18.0.3 on port 1883. +1612397100: Sending CONNACK to 172.18.0.3 (0, 5) +1612397100: Socket error on client , disconnecting. +1612397120: New connection from 172.18.0.3 on port 1883. +1612397120: Sending CONNACK to 172.18.0.3 (0, 5) +1612397120: Socket error on client , disconnecting. +1612397140: New connection from 172.18.0.3 on port 1883. +1612397140: Sending CONNACK to 172.18.0.3 (0, 5) +1612397140: Socket error on client , disconnecting. +1612397160: New connection from 172.18.0.3 on port 1883. +1612397160: Sending CONNACK to 172.18.0.3 (0, 5) +1612397160: Socket error on client , disconnecting. +1612397180: New connection from 172.18.0.3 on port 1883. +1612397180: Sending CONNACK to 172.18.0.3 (0, 5) +1612397180: Socket error on client , disconnecting. +1612397200: New connection from 172.18.0.3 on port 1883. +1612397200: Sending CONNACK to 172.18.0.3 (0, 5) +1612397200: Socket error on client , disconnecting. +1612397220: New connection from 172.18.0.3 on port 1883. +1612397220: Sending CONNACK to 172.18.0.3 (0, 5) +1612397220: Socket error on client , disconnecting. +1612397240: New connection from 172.18.0.3 on port 1883. +1612397240: Sending CONNACK to 172.18.0.3 (0, 5) +1612397240: Socket error on client , disconnecting. +1612397260: New connection from 172.18.0.3 on port 1883. +1612397260: Sending CONNACK to 172.18.0.3 (0, 5) +1612397260: Socket error on client , disconnecting. +1612397280: New connection from 172.18.0.3 on port 1883. +1612397280: Sending CONNACK to 172.18.0.3 (0, 5) +1612397280: Socket error on client , disconnecting. +1612397300: New connection from 172.18.0.3 on port 1883. +1612397300: Sending CONNACK to 172.18.0.3 (0, 5) +1612397300: Socket error on client , disconnecting. +1612397320: New connection from 172.18.0.3 on port 1883. +1612397320: Sending CONNACK to 172.18.0.3 (0, 5) +1612397320: Socket error on client , disconnecting. +1612397340: New connection from 172.18.0.3 on port 1883. +1612397340: Sending CONNACK to 172.18.0.3 (0, 5) +1612397340: Socket error on client , disconnecting. +1612397360: New connection from 172.18.0.3 on port 1883. +1612397360: Sending CONNACK to 172.18.0.3 (0, 5) +1612397360: Socket error on client , disconnecting. +1612397380: New connection from 172.18.0.3 on port 1883. +1612397380: Sending CONNACK to 172.18.0.3 (0, 5) +1612397380: Socket error on client , disconnecting. +1612397400: New connection from 172.18.0.3 on port 1883. +1612397400: Sending CONNACK to 172.18.0.3 (0, 5) +1612397400: Socket error on client , disconnecting. +1612397420: New connection from 172.18.0.3 on port 1883. +1612397420: Sending CONNACK to 172.18.0.3 (0, 5) +1612397420: Socket error on client , disconnecting. +1612397440: New connection from 172.18.0.3 on port 1883. +1612397440: Sending CONNACK to 172.18.0.3 (0, 5) +1612397440: Socket error on client , disconnecting. +1612397460: New connection from 172.18.0.3 on port 1883. +1612397460: Sending CONNACK to 172.18.0.3 (0, 5) +1612397460: Socket error on client , disconnecting. +1612397480: New connection from 172.18.0.3 on port 1883. +1612397480: Sending CONNACK to 172.18.0.3 (0, 5) +1612397480: Socket error on client , disconnecting. +1612397500: New connection from 172.18.0.3 on port 1883. +1612397500: Sending CONNACK to 172.18.0.3 (0, 5) +1612397500: Socket error on client , disconnecting. +1612397520: New connection from 172.18.0.3 on port 1883. +1612397520: Sending CONNACK to 172.18.0.3 (0, 5) +1612397520: Socket error on client , disconnecting. +1612397540: New connection from 172.18.0.3 on port 1883. +1612397540: Sending CONNACK to 172.18.0.3 (0, 5) +1612397540: Socket error on client , disconnecting. +1612397560: New connection from 172.18.0.3 on port 1883. +1612397560: Sending CONNACK to 172.18.0.3 (0, 5) +1612397560: Socket error on client , disconnecting. +1612397580: New connection from 172.18.0.3 on port 1883. +1612397580: Sending CONNACK to 172.18.0.3 (0, 5) +1612397580: Socket error on client , disconnecting. +1612397600: New connection from 172.18.0.3 on port 1883. +1612397600: Sending CONNACK to 172.18.0.3 (0, 5) +1612397600: Socket error on client , disconnecting. +1612397620: New connection from 172.18.0.3 on port 1883. +1612397620: Sending CONNACK to 172.18.0.3 (0, 5) +1612397620: Socket error on client , disconnecting. +1612397640: New connection from 172.18.0.3 on port 1883. +1612397640: Sending CONNACK to 172.18.0.3 (0, 5) +1612397640: Socket error on client , disconnecting. +1612397660: New connection from 172.18.0.3 on port 1883. +1612397660: Sending CONNACK to 172.18.0.3 (0, 5) +1612397660: Socket error on client , disconnecting. +1612397680: New connection from 172.18.0.3 on port 1883. +1612397680: Sending CONNACK to 172.18.0.3 (0, 5) +1612397680: Socket error on client , disconnecting. +1612397700: New connection from 172.18.0.3 on port 1883. +1612397700: Sending CONNACK to 172.18.0.3 (0, 5) +1612397700: Socket error on client , disconnecting. +1612397720: New connection from 172.18.0.3 on port 1883. +1612397720: Sending CONNACK to 172.18.0.3 (0, 5) +1612397720: Socket error on client , disconnecting. +1612397740: New connection from 172.18.0.3 on port 1883. +1612397740: Sending CONNACK to 172.18.0.3 (0, 5) +1612397740: Socket error on client , disconnecting. +1612397760: New connection from 172.18.0.3 on port 1883. +1612397760: Sending CONNACK to 172.18.0.3 (0, 5) +1612397760: Socket error on client , disconnecting. +1612397780: New connection from 172.18.0.3 on port 1883. +1612397780: Sending CONNACK to 172.18.0.3 (0, 5) +1612397780: Socket error on client , disconnecting. +1612397790: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612397790: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612397790: Error: Permission denied. +1612397800: New connection from 172.18.0.3 on port 1883. +1612397800: Sending CONNACK to 172.18.0.3 (0, 5) +1612397800: Socket error on client , disconnecting. +1612397820: New connection from 172.18.0.3 on port 1883. +1612397820: Sending CONNACK to 172.18.0.3 (0, 5) +1612397820: Socket error on client , disconnecting. +1612397840: New connection from 172.18.0.3 on port 1883. +1612397840: Sending CONNACK to 172.18.0.3 (0, 5) +1612397840: Socket error on client , disconnecting. +1612397860: New connection from 172.18.0.3 on port 1883. +1612397860: Sending CONNACK to 172.18.0.3 (0, 5) +1612397860: Socket error on client , disconnecting. +1612397880: New connection from 172.18.0.3 on port 1883. +1612397880: Sending CONNACK to 172.18.0.3 (0, 5) +1612397880: Socket error on client , disconnecting. +1612397900: New connection from 172.18.0.3 on port 1883. +1612397900: Sending CONNACK to 172.18.0.3 (0, 5) +1612397900: Socket error on client , disconnecting. +1612397920: New connection from 172.18.0.3 on port 1883. +1612397920: Sending CONNACK to 172.18.0.3 (0, 5) +1612397920: Socket error on client , disconnecting. +1612397940: New connection from 172.18.0.3 on port 1883. +1612397940: Sending CONNACK to 172.18.0.3 (0, 5) +1612397940: Socket error on client , disconnecting. +1612397960: New connection from 172.18.0.3 on port 1883. +1612397960: Sending CONNACK to 172.18.0.3 (0, 5) +1612397960: Socket error on client , disconnecting. +1612397980: New connection from 172.18.0.3 on port 1883. +1612397980: Sending CONNACK to 172.18.0.3 (0, 5) +1612397980: Socket error on client , disconnecting. +1612398000: New connection from 172.18.0.3 on port 1883. +1612398000: Sending CONNACK to 172.18.0.3 (0, 5) +1612398000: Socket error on client , disconnecting. +1612398020: New connection from 172.18.0.3 on port 1883. +1612398020: Sending CONNACK to 172.18.0.3 (0, 5) +1612398020: Socket error on client , disconnecting. +1612398040: New connection from 172.18.0.3 on port 1883. +1612398040: Sending CONNACK to 172.18.0.3 (0, 5) +1612398040: Socket error on client , disconnecting. +1612398060: New connection from 172.18.0.3 on port 1883. +1612398060: Sending CONNACK to 172.18.0.3 (0, 5) +1612398060: Socket error on client , disconnecting. +1612398080: New connection from 172.18.0.3 on port 1883. +1612398080: Sending CONNACK to 172.18.0.3 (0, 5) +1612398080: Socket error on client , disconnecting. +1612398100: New connection from 172.18.0.3 on port 1883. +1612398100: Sending CONNACK to 172.18.0.3 (0, 5) +1612398100: Socket error on client , disconnecting. +1612398120: New connection from 172.18.0.3 on port 1883. +1612398120: Sending CONNACK to 172.18.0.3 (0, 5) +1612398120: Socket error on client , disconnecting. +1612398140: New connection from 172.18.0.3 on port 1883. +1612398140: Sending CONNACK to 172.18.0.3 (0, 5) +1612398140: Socket error on client , disconnecting. +1612398160: New connection from 172.18.0.3 on port 1883. +1612398160: Sending CONNACK to 172.18.0.3 (0, 5) +1612398160: Socket error on client , disconnecting. +1612398180: New connection from 172.18.0.3 on port 1883. +1612398180: Sending CONNACK to 172.18.0.3 (0, 5) +1612398180: Socket error on client , disconnecting. +1612398200: New connection from 172.18.0.3 on port 1883. +1612398200: Sending CONNACK to 172.18.0.3 (0, 5) +1612398200: Socket error on client , disconnecting. +1612398220: New connection from 172.18.0.3 on port 1883. +1612398220: Sending CONNACK to 172.18.0.3 (0, 5) +1612398220: Socket error on client , disconnecting. +1612398240: New connection from 172.18.0.3 on port 1883. +1612398240: Sending CONNACK to 172.18.0.3 (0, 5) +1612398240: Socket error on client , disconnecting. +1612398260: New connection from 172.18.0.3 on port 1883. +1612398260: Sending CONNACK to 172.18.0.3 (0, 5) +1612398260: Socket error on client , disconnecting. +1612398280: New connection from 172.18.0.3 on port 1883. +1612398280: Sending CONNACK to 172.18.0.3 (0, 5) +1612398280: Socket error on client , disconnecting. +1612398300: New connection from 172.18.0.3 on port 1883. +1612398300: Sending CONNACK to 172.18.0.3 (0, 5) +1612398300: Socket error on client , disconnecting. +1612398320: New connection from 172.18.0.3 on port 1883. +1612398320: Sending CONNACK to 172.18.0.3 (0, 5) +1612398320: Socket error on client , disconnecting. +1612398340: New connection from 172.18.0.3 on port 1883. +1612398340: Sending CONNACK to 172.18.0.3 (0, 5) +1612398340: Socket error on client , disconnecting. +1612398360: New connection from 172.18.0.3 on port 1883. +1612398360: Sending CONNACK to 172.18.0.3 (0, 5) +1612398360: Socket error on client , disconnecting. +1612398380: New connection from 172.18.0.3 on port 1883. +1612398380: Sending CONNACK to 172.18.0.3 (0, 5) +1612398380: Socket error on client , disconnecting. +1612398400: New connection from 172.18.0.3 on port 1883. +1612398400: Sending CONNACK to 172.18.0.3 (0, 5) +1612398400: Socket error on client , disconnecting. +1612398420: New connection from 172.18.0.3 on port 1883. +1612398420: Sending CONNACK to 172.18.0.3 (0, 5) +1612398420: Socket error on client , disconnecting. +1612398440: New connection from 172.18.0.3 on port 1883. +1612398440: Sending CONNACK to 172.18.0.3 (0, 5) +1612398440: Socket error on client , disconnecting. +1612398460: New connection from 172.18.0.3 on port 1883. +1612398460: Sending CONNACK to 172.18.0.3 (0, 5) +1612398460: Socket error on client , disconnecting. +1612398480: New connection from 172.18.0.3 on port 1883. +1612398480: Sending CONNACK to 172.18.0.3 (0, 5) +1612398480: Socket error on client , disconnecting. +1612398500: New connection from 172.18.0.3 on port 1883. +1612398500: Sending CONNACK to 172.18.0.3 (0, 5) +1612398500: Socket error on client , disconnecting. +1612398520: New connection from 172.18.0.3 on port 1883. +1612398520: Sending CONNACK to 172.18.0.3 (0, 5) +1612398520: Socket error on client , disconnecting. +1612398540: New connection from 172.18.0.3 on port 1883. +1612398540: Sending CONNACK to 172.18.0.3 (0, 5) +1612398540: Socket error on client , disconnecting. +1612398560: New connection from 172.18.0.3 on port 1883. +1612398560: Sending CONNACK to 172.18.0.3 (0, 5) +1612398560: Socket error on client , disconnecting. +1612398580: New connection from 172.18.0.3 on port 1883. +1612398580: Sending CONNACK to 172.18.0.3 (0, 5) +1612398580: Socket error on client , disconnecting. +1612398600: New connection from 172.18.0.3 on port 1883. +1612398600: Sending CONNACK to 172.18.0.3 (0, 5) +1612398600: Socket error on client , disconnecting. +1612398620: New connection from 172.18.0.3 on port 1883. +1612398620: Sending CONNACK to 172.18.0.3 (0, 5) +1612398620: Socket error on client , disconnecting. +1612398640: New connection from 172.18.0.3 on port 1883. +1612398640: Sending CONNACK to 172.18.0.3 (0, 5) +1612398640: Socket error on client , disconnecting. +1612398660: New connection from 172.18.0.3 on port 1883. +1612398660: Sending CONNACK to 172.18.0.3 (0, 5) +1612398660: Socket error on client , disconnecting. +1612398680: New connection from 172.18.0.3 on port 1883. +1612398680: Sending CONNACK to 172.18.0.3 (0, 5) +1612398680: Socket error on client , disconnecting. +1612398700: New connection from 172.18.0.3 on port 1883. +1612398700: Sending CONNACK to 172.18.0.3 (0, 5) +1612398700: Socket error on client , disconnecting. +1612398720: New connection from 172.18.0.3 on port 1883. +1612398720: Sending CONNACK to 172.18.0.3 (0, 5) +1612398720: Socket error on client , disconnecting. +1612398740: New connection from 172.18.0.3 on port 1883. +1612398740: Sending CONNACK to 172.18.0.3 (0, 5) +1612398740: Socket error on client , disconnecting. +1612398760: New connection from 172.18.0.3 on port 1883. +1612398760: Sending CONNACK to 172.18.0.3 (0, 5) +1612398760: Socket error on client , disconnecting. +1612398780: New connection from 172.18.0.3 on port 1883. +1612398780: Sending CONNACK to 172.18.0.3 (0, 5) +1612398780: Socket error on client , disconnecting. +1612398800: New connection from 172.18.0.3 on port 1883. +1612398800: Sending CONNACK to 172.18.0.3 (0, 5) +1612398800: Socket error on client , disconnecting. +1612398820: New connection from 172.18.0.3 on port 1883. +1612398820: Sending CONNACK to 172.18.0.3 (0, 5) +1612398820: Socket error on client , disconnecting. +1612398840: New connection from 172.18.0.3 on port 1883. +1612398840: Sending CONNACK to 172.18.0.3 (0, 5) +1612398840: Socket error on client , disconnecting. +1612398860: New connection from 172.18.0.3 on port 1883. +1612398860: Sending CONNACK to 172.18.0.3 (0, 5) +1612398860: Socket error on client , disconnecting. +1612398880: New connection from 172.18.0.3 on port 1883. +1612398880: Sending CONNACK to 172.18.0.3 (0, 5) +1612398880: Socket error on client , disconnecting. +1612398900: New connection from 172.18.0.3 on port 1883. +1612398900: Sending CONNACK to 172.18.0.3 (0, 5) +1612398900: Socket error on client , disconnecting. +1612398920: New connection from 172.18.0.3 on port 1883. +1612398920: Sending CONNACK to 172.18.0.3 (0, 5) +1612398920: Socket error on client , disconnecting. +1612398940: New connection from 172.18.0.3 on port 1883. +1612398940: Sending CONNACK to 172.18.0.3 (0, 5) +1612398940: Socket error on client , disconnecting. +1612398960: New connection from 172.18.0.3 on port 1883. +1612398960: Sending CONNACK to 172.18.0.3 (0, 5) +1612398960: Socket error on client , disconnecting. +1612398980: New connection from 172.18.0.3 on port 1883. +1612398980: Sending CONNACK to 172.18.0.3 (0, 5) +1612398980: Socket error on client , disconnecting. +1612399000: New connection from 172.18.0.3 on port 1883. +1612399000: Sending CONNACK to 172.18.0.3 (0, 5) +1612399000: Socket error on client , disconnecting. +1612399020: New connection from 172.18.0.3 on port 1883. +1612399020: Sending CONNACK to 172.18.0.3 (0, 5) +1612399020: Socket error on client , disconnecting. +1612399040: New connection from 172.18.0.3 on port 1883. +1612399040: Sending CONNACK to 172.18.0.3 (0, 5) +1612399040: Socket error on client , disconnecting. +1612399060: New connection from 172.18.0.3 on port 1883. +1612399060: Sending CONNACK to 172.18.0.3 (0, 5) +1612399060: Socket error on client , disconnecting. +1612399080: New connection from 172.18.0.3 on port 1883. +1612399080: Sending CONNACK to 172.18.0.3 (0, 5) +1612399080: Socket error on client , disconnecting. +1612399100: New connection from 172.18.0.3 on port 1883. +1612399100: Sending CONNACK to 172.18.0.3 (0, 5) +1612399100: Socket error on client , disconnecting. +1612399120: New connection from 172.18.0.3 on port 1883. +1612399120: Sending CONNACK to 172.18.0.3 (0, 5) +1612399120: Socket error on client , disconnecting. +1612399140: New connection from 172.18.0.3 on port 1883. +1612399140: Sending CONNACK to 172.18.0.3 (0, 5) +1612399140: Socket error on client , disconnecting. +1612399160: New connection from 172.18.0.3 on port 1883. +1612399160: Sending CONNACK to 172.18.0.3 (0, 5) +1612399160: Socket error on client , disconnecting. +1612399180: New connection from 172.18.0.3 on port 1883. +1612399180: Sending CONNACK to 172.18.0.3 (0, 5) +1612399180: Socket error on client , disconnecting. +1612399200: New connection from 172.18.0.3 on port 1883. +1612399200: Sending CONNACK to 172.18.0.3 (0, 5) +1612399200: Socket error on client , disconnecting. +1612399220: New connection from 172.18.0.3 on port 1883. +1612399220: Sending CONNACK to 172.18.0.3 (0, 5) +1612399220: Socket error on client , disconnecting. +1612399240: New connection from 172.18.0.3 on port 1883. +1612399240: Sending CONNACK to 172.18.0.3 (0, 5) +1612399240: Socket error on client , disconnecting. +1612399260: New connection from 172.18.0.3 on port 1883. +1612399260: Sending CONNACK to 172.18.0.3 (0, 5) +1612399260: Socket error on client , disconnecting. +1612399280: New connection from 172.18.0.3 on port 1883. +1612399280: Sending CONNACK to 172.18.0.3 (0, 5) +1612399280: Socket error on client , disconnecting. +1612399300: New connection from 172.18.0.3 on port 1883. +1612399300: Sending CONNACK to 172.18.0.3 (0, 5) +1612399300: Socket error on client , disconnecting. +1612399320: New connection from 172.18.0.3 on port 1883. +1612399320: Sending CONNACK to 172.18.0.3 (0, 5) +1612399320: Socket error on client , disconnecting. +1612399340: New connection from 172.18.0.3 on port 1883. +1612399340: Sending CONNACK to 172.18.0.3 (0, 5) +1612399340: Socket error on client , disconnecting. +1612399360: New connection from 172.18.0.3 on port 1883. +1612399360: Sending CONNACK to 172.18.0.3 (0, 5) +1612399360: Socket error on client , disconnecting. +1612399380: New connection from 172.18.0.3 on port 1883. +1612399380: Sending CONNACK to 172.18.0.3 (0, 5) +1612399380: Socket error on client , disconnecting. +1612399400: New connection from 172.18.0.3 on port 1883. +1612399400: Sending CONNACK to 172.18.0.3 (0, 5) +1612399400: Socket error on client , disconnecting. +1612399420: New connection from 172.18.0.3 on port 1883. +1612399420: Sending CONNACK to 172.18.0.3 (0, 5) +1612399420: Socket error on client , disconnecting. +1612399440: New connection from 172.18.0.3 on port 1883. +1612399440: Sending CONNACK to 172.18.0.3 (0, 5) +1612399440: Socket error on client , disconnecting. +1612399460: New connection from 172.18.0.3 on port 1883. +1612399460: Sending CONNACK to 172.18.0.3 (0, 5) +1612399460: Socket error on client , disconnecting. +1612399480: New connection from 172.18.0.3 on port 1883. +1612399480: Sending CONNACK to 172.18.0.3 (0, 5) +1612399480: Socket error on client , disconnecting. +1612399500: New connection from 172.18.0.3 on port 1883. +1612399500: Sending CONNACK to 172.18.0.3 (0, 5) +1612399500: Socket error on client , disconnecting. +1612399520: New connection from 172.18.0.3 on port 1883. +1612399520: Sending CONNACK to 172.18.0.3 (0, 5) +1612399520: Socket error on client , disconnecting. +1612399540: New connection from 172.18.0.3 on port 1883. +1612399540: Sending CONNACK to 172.18.0.3 (0, 5) +1612399540: Socket error on client , disconnecting. +1612399560: New connection from 172.18.0.3 on port 1883. +1612399560: Sending CONNACK to 172.18.0.3 (0, 5) +1612399560: Socket error on client , disconnecting. +1612399580: New connection from 172.18.0.3 on port 1883. +1612399580: Sending CONNACK to 172.18.0.3 (0, 5) +1612399580: Socket error on client , disconnecting. +1612399591: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612399591: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612399591: Error: Permission denied. +1612399600: New connection from 172.18.0.3 on port 1883. +1612399600: Sending CONNACK to 172.18.0.3 (0, 5) +1612399600: Socket error on client , disconnecting. +1612399620: New connection from 172.18.0.3 on port 1883. +1612399620: Sending CONNACK to 172.18.0.3 (0, 5) +1612399620: Socket error on client , disconnecting. +1612399640: New connection from 172.18.0.3 on port 1883. +1612399640: Sending CONNACK to 172.18.0.3 (0, 5) +1612399640: Socket error on client , disconnecting. +1612399660: New connection from 172.18.0.3 on port 1883. +1612399660: Sending CONNACK to 172.18.0.3 (0, 5) +1612399660: Socket error on client , disconnecting. +1612399680: New connection from 172.18.0.3 on port 1883. +1612399680: Sending CONNACK to 172.18.0.3 (0, 5) +1612399680: Socket error on client , disconnecting. +1612399700: New connection from 172.18.0.3 on port 1883. +1612399700: Sending CONNACK to 172.18.0.3 (0, 5) +1612399700: Socket error on client , disconnecting. +1612399720: New connection from 172.18.0.3 on port 1883. +1612399720: Sending CONNACK to 172.18.0.3 (0, 5) +1612399720: Socket error on client , disconnecting. +1612399740: New connection from 172.18.0.3 on port 1883. +1612399740: Sending CONNACK to 172.18.0.3 (0, 5) +1612399740: Socket error on client , disconnecting. +1612399760: New connection from 172.18.0.3 on port 1883. +1612399760: Sending CONNACK to 172.18.0.3 (0, 5) +1612399760: Socket error on client , disconnecting. +1612399780: New connection from 172.18.0.3 on port 1883. +1612399780: Sending CONNACK to 172.18.0.3 (0, 5) +1612399780: Socket error on client , disconnecting. +1612399800: New connection from 172.18.0.3 on port 1883. +1612399800: Sending CONNACK to 172.18.0.3 (0, 5) +1612399800: Socket error on client , disconnecting. +1612399820: New connection from 172.18.0.3 on port 1883. +1612399820: Sending CONNACK to 172.18.0.3 (0, 5) +1612399820: Socket error on client , disconnecting. +1612399840: New connection from 172.18.0.3 on port 1883. +1612399840: Sending CONNACK to 172.18.0.3 (0, 5) +1612399840: Socket error on client , disconnecting. +1612399860: New connection from 172.18.0.3 on port 1883. +1612399860: Sending CONNACK to 172.18.0.3 (0, 5) +1612399860: Socket error on client , disconnecting. +1612399880: New connection from 172.18.0.3 on port 1883. +1612399880: Sending CONNACK to 172.18.0.3 (0, 5) +1612399880: Socket error on client , disconnecting. +1612399900: New connection from 172.18.0.3 on port 1883. +1612399900: Sending CONNACK to 172.18.0.3 (0, 5) +1612399900: Socket error on client , disconnecting. +1612399920: New connection from 172.18.0.3 on port 1883. +1612399920: Sending CONNACK to 172.18.0.3 (0, 5) +1612399920: Socket error on client , disconnecting. +1612399940: New connection from 172.18.0.3 on port 1883. +1612399940: Sending CONNACK to 172.18.0.3 (0, 5) +1612399940: Socket error on client , disconnecting. +1612399960: New connection from 172.18.0.3 on port 1883. +1612399960: Sending CONNACK to 172.18.0.3 (0, 5) +1612399960: Socket error on client , disconnecting. +1612399980: New connection from 172.18.0.3 on port 1883. +1612399980: Sending CONNACK to 172.18.0.3 (0, 5) +1612399980: Socket error on client , disconnecting. +1612400000: New connection from 172.18.0.3 on port 1883. +1612400000: Sending CONNACK to 172.18.0.3 (0, 5) +1612400000: Socket error on client , disconnecting. +1612400020: New connection from 172.18.0.3 on port 1883. +1612400020: Sending CONNACK to 172.18.0.3 (0, 5) +1612400020: Socket error on client , disconnecting. +1612400040: New connection from 172.18.0.3 on port 1883. +1612400040: Sending CONNACK to 172.18.0.3 (0, 5) +1612400040: Socket error on client , disconnecting. +1612400060: New connection from 172.18.0.3 on port 1883. +1612400060: Sending CONNACK to 172.18.0.3 (0, 5) +1612400060: Socket error on client , disconnecting. +1612400080: New connection from 172.18.0.3 on port 1883. +1612400080: Sending CONNACK to 172.18.0.3 (0, 5) +1612400080: Socket error on client , disconnecting. +1612400100: New connection from 172.18.0.3 on port 1883. +1612400100: Sending CONNACK to 172.18.0.3 (0, 5) +1612400100: Socket error on client , disconnecting. +1612400120: New connection from 172.18.0.3 on port 1883. +1612400120: Sending CONNACK to 172.18.0.3 (0, 5) +1612400120: Socket error on client , disconnecting. +1612400140: New connection from 172.18.0.3 on port 1883. +1612400140: Sending CONNACK to 172.18.0.3 (0, 5) +1612400140: Socket error on client , disconnecting. +1612400160: New connection from 172.18.0.3 on port 1883. +1612400160: Sending CONNACK to 172.18.0.3 (0, 5) +1612400160: Socket error on client , disconnecting. +1612400180: New connection from 172.18.0.3 on port 1883. +1612400180: Sending CONNACK to 172.18.0.3 (0, 5) +1612400180: Socket error on client , disconnecting. +1612400200: New connection from 172.18.0.3 on port 1883. +1612400200: Sending CONNACK to 172.18.0.3 (0, 5) +1612400200: Socket error on client , disconnecting. +1612400220: New connection from 172.18.0.3 on port 1883. +1612400220: Sending CONNACK to 172.18.0.3 (0, 5) +1612400220: Socket error on client , disconnecting. +1612400240: New connection from 172.18.0.3 on port 1883. +1612400240: Sending CONNACK to 172.18.0.3 (0, 5) +1612400240: Socket error on client , disconnecting. +1612400260: New connection from 172.18.0.3 on port 1883. +1612400260: Sending CONNACK to 172.18.0.3 (0, 5) +1612400260: Socket error on client , disconnecting. +1612400280: New connection from 172.18.0.3 on port 1883. +1612400280: Sending CONNACK to 172.18.0.3 (0, 5) +1612400280: Socket error on client , disconnecting. +1612400300: New connection from 172.18.0.3 on port 1883. +1612400300: Sending CONNACK to 172.18.0.3 (0, 5) +1612400300: Socket error on client , disconnecting. +1612400320: New connection from 172.18.0.3 on port 1883. +1612400320: Sending CONNACK to 172.18.0.3 (0, 5) +1612400320: Socket error on client , disconnecting. +1612400340: New connection from 172.18.0.3 on port 1883. +1612400340: Sending CONNACK to 172.18.0.3 (0, 5) +1612400340: Socket error on client , disconnecting. +1612400360: New connection from 172.18.0.3 on port 1883. +1612400360: Sending CONNACK to 172.18.0.3 (0, 5) +1612400360: Socket error on client , disconnecting. +1612400380: New connection from 172.18.0.3 on port 1883. +1612400380: Sending CONNACK to 172.18.0.3 (0, 5) +1612400380: Socket error on client , disconnecting. +1612400400: New connection from 172.18.0.3 on port 1883. +1612400400: Sending CONNACK to 172.18.0.3 (0, 5) +1612400400: Socket error on client , disconnecting. +1612400420: New connection from 172.18.0.3 on port 1883. +1612400420: Sending CONNACK to 172.18.0.3 (0, 5) +1612400420: Socket error on client , disconnecting. +1612400440: New connection from 172.18.0.3 on port 1883. +1612400440: Sending CONNACK to 172.18.0.3 (0, 5) +1612400440: Socket error on client , disconnecting. +1612400460: New connection from 172.18.0.3 on port 1883. +1612400460: Sending CONNACK to 172.18.0.3 (0, 5) +1612400460: Socket error on client , disconnecting. +1612400480: New connection from 172.18.0.3 on port 1883. +1612400480: Sending CONNACK to 172.18.0.3 (0, 5) +1612400480: Socket error on client , disconnecting. +1612400500: New connection from 172.18.0.3 on port 1883. +1612400500: Sending CONNACK to 172.18.0.3 (0, 5) +1612400500: Socket error on client , disconnecting. +1612400520: New connection from 172.18.0.3 on port 1883. +1612400520: Sending CONNACK to 172.18.0.3 (0, 5) +1612400520: Socket error on client , disconnecting. +1612400540: New connection from 172.18.0.3 on port 1883. +1612400540: Sending CONNACK to 172.18.0.3 (0, 5) +1612400540: Socket error on client , disconnecting. +1612400560: New connection from 172.18.0.3 on port 1883. +1612400560: Sending CONNACK to 172.18.0.3 (0, 5) +1612400560: Socket error on client , disconnecting. +1612400580: New connection from 172.18.0.3 on port 1883. +1612400580: Sending CONNACK to 172.18.0.3 (0, 5) +1612400580: Socket error on client , disconnecting. +1612400600: New connection from 172.18.0.3 on port 1883. +1612400600: Sending CONNACK to 172.18.0.3 (0, 5) +1612400600: Socket error on client , disconnecting. +1612400620: New connection from 172.18.0.3 on port 1883. +1612400620: Sending CONNACK to 172.18.0.3 (0, 5) +1612400620: Socket error on client , disconnecting. +1612400640: New connection from 172.18.0.3 on port 1883. +1612400640: Sending CONNACK to 172.18.0.3 (0, 5) +1612400640: Socket error on client , disconnecting. +1612400660: New connection from 172.18.0.3 on port 1883. +1612400660: Sending CONNACK to 172.18.0.3 (0, 5) +1612400660: Socket error on client , disconnecting. +1612400680: New connection from 172.18.0.3 on port 1883. +1612400680: Sending CONNACK to 172.18.0.3 (0, 5) +1612400680: Socket error on client , disconnecting. +1612400700: New connection from 172.18.0.3 on port 1883. +1612400700: Sending CONNACK to 172.18.0.3 (0, 5) +1612400700: Socket error on client , disconnecting. +1612400720: New connection from 172.18.0.3 on port 1883. +1612400720: Sending CONNACK to 172.18.0.3 (0, 5) +1612400720: Socket error on client , disconnecting. +1612400740: New connection from 172.18.0.3 on port 1883. +1612400740: Sending CONNACK to 172.18.0.3 (0, 5) +1612400740: Socket error on client , disconnecting. +1612400760: New connection from 172.18.0.3 on port 1883. +1612400760: Sending CONNACK to 172.18.0.3 (0, 5) +1612400760: Socket error on client , disconnecting. +1612400780: New connection from 172.18.0.3 on port 1883. +1612400780: Sending CONNACK to 172.18.0.3 (0, 5) +1612400780: Socket error on client , disconnecting. +1612400800: New connection from 172.18.0.3 on port 1883. +1612400800: Sending CONNACK to 172.18.0.3 (0, 5) +1612400800: Socket error on client , disconnecting. +1612400820: New connection from 172.18.0.3 on port 1883. +1612400820: Sending CONNACK to 172.18.0.3 (0, 5) +1612400820: Socket error on client , disconnecting. +1612400840: New connection from 172.18.0.3 on port 1883. +1612400840: Sending CONNACK to 172.18.0.3 (0, 5) +1612400840: Socket error on client , disconnecting. +1612400860: New connection from 172.18.0.3 on port 1883. +1612400860: Sending CONNACK to 172.18.0.3 (0, 5) +1612400860: Socket error on client , disconnecting. +1612400880: New connection from 172.18.0.3 on port 1883. +1612400880: Sending CONNACK to 172.18.0.3 (0, 5) +1612400880: Socket error on client , disconnecting. +1612400900: New connection from 172.18.0.3 on port 1883. +1612400900: Sending CONNACK to 172.18.0.3 (0, 5) +1612400900: Socket error on client , disconnecting. +1612400920: New connection from 172.18.0.3 on port 1883. +1612400920: Sending CONNACK to 172.18.0.3 (0, 5) +1612400920: Socket error on client , disconnecting. +1612400940: New connection from 172.18.0.3 on port 1883. +1612400940: Sending CONNACK to 172.18.0.3 (0, 5) +1612400940: Socket error on client , disconnecting. +1612400960: New connection from 172.18.0.3 on port 1883. +1612400960: Sending CONNACK to 172.18.0.3 (0, 5) +1612400960: Socket error on client , disconnecting. +1612400980: New connection from 172.18.0.3 on port 1883. +1612400980: Sending CONNACK to 172.18.0.3 (0, 5) +1612400980: Socket error on client , disconnecting. +1612401000: New connection from 172.18.0.3 on port 1883. +1612401000: Sending CONNACK to 172.18.0.3 (0, 5) +1612401000: Socket error on client , disconnecting. +1612401020: New connection from 172.18.0.3 on port 1883. +1612401020: Sending CONNACK to 172.18.0.3 (0, 5) +1612401020: Socket error on client , disconnecting. +1612401040: New connection from 172.18.0.3 on port 1883. +1612401040: Sending CONNACK to 172.18.0.3 (0, 5) +1612401040: Socket error on client , disconnecting. +1612401060: New connection from 172.18.0.3 on port 1883. +1612401060: Sending CONNACK to 172.18.0.3 (0, 5) +1612401060: Socket error on client , disconnecting. +1612401080: New connection from 172.18.0.3 on port 1883. +1612401080: Sending CONNACK to 172.18.0.3 (0, 5) +1612401080: Socket error on client , disconnecting. +1612401100: New connection from 172.18.0.3 on port 1883. +1612401100: Sending CONNACK to 172.18.0.3 (0, 5) +1612401100: Socket error on client , disconnecting. +1612401120: New connection from 172.18.0.3 on port 1883. +1612401120: Sending CONNACK to 172.18.0.3 (0, 5) +1612401120: Socket error on client , disconnecting. +1612401140: New connection from 172.18.0.3 on port 1883. +1612401140: Sending CONNACK to 172.18.0.3 (0, 5) +1612401140: Socket error on client , disconnecting. +1612401160: New connection from 172.18.0.3 on port 1883. +1612401160: Sending CONNACK to 172.18.0.3 (0, 5) +1612401160: Socket error on client , disconnecting. +1612401180: New connection from 172.18.0.3 on port 1883. +1612401180: Sending CONNACK to 172.18.0.3 (0, 5) +1612401180: Socket error on client , disconnecting. +1612401200: New connection from 172.18.0.3 on port 1883. +1612401200: Sending CONNACK to 172.18.0.3 (0, 5) +1612401200: Socket error on client , disconnecting. +1612401220: New connection from 172.18.0.3 on port 1883. +1612401220: Sending CONNACK to 172.18.0.3 (0, 5) +1612401220: Socket error on client , disconnecting. +1612401240: New connection from 172.18.0.3 on port 1883. +1612401240: Sending CONNACK to 172.18.0.3 (0, 5) +1612401240: Socket error on client , disconnecting. +1612401260: New connection from 172.18.0.3 on port 1883. +1612401260: Sending CONNACK to 172.18.0.3 (0, 5) +1612401260: Socket error on client , disconnecting. +1612401280: New connection from 172.18.0.3 on port 1883. +1612401280: Sending CONNACK to 172.18.0.3 (0, 5) +1612401280: Socket error on client , disconnecting. +1612401300: New connection from 172.18.0.3 on port 1883. +1612401300: Sending CONNACK to 172.18.0.3 (0, 5) +1612401300: Socket error on client , disconnecting. +1612401320: New connection from 172.18.0.3 on port 1883. +1612401320: Sending CONNACK to 172.18.0.3 (0, 5) +1612401320: Socket error on client , disconnecting. +1612401340: New connection from 172.18.0.3 on port 1883. +1612401340: Sending CONNACK to 172.18.0.3 (0, 5) +1612401340: Socket error on client , disconnecting. +1612401360: New connection from 172.18.0.3 on port 1883. +1612401360: Sending CONNACK to 172.18.0.3 (0, 5) +1612401360: Socket error on client , disconnecting. +1612401380: New connection from 172.18.0.3 on port 1883. +1612401380: Sending CONNACK to 172.18.0.3 (0, 5) +1612401380: Socket error on client , disconnecting. +1612401392: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612401392: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612401392: Error: Permission denied. +1612401400: New connection from 172.18.0.3 on port 1883. +1612401400: Sending CONNACK to 172.18.0.3 (0, 5) +1612401400: Socket error on client , disconnecting. +1612401420: New connection from 172.18.0.3 on port 1883. +1612401420: Sending CONNACK to 172.18.0.3 (0, 5) +1612401420: Socket error on client , disconnecting. +1612401440: New connection from 172.18.0.3 on port 1883. +1612401440: Sending CONNACK to 172.18.0.3 (0, 5) +1612401440: Socket error on client , disconnecting. +1612401460: New connection from 172.18.0.3 on port 1883. +1612401460: Sending CONNACK to 172.18.0.3 (0, 5) +1612401460: Socket error on client , disconnecting. +1612401480: New connection from 172.18.0.3 on port 1883. +1612401480: Sending CONNACK to 172.18.0.3 (0, 5) +1612401480: Socket error on client , disconnecting. +1612401500: New connection from 172.18.0.3 on port 1883. +1612401500: Sending CONNACK to 172.18.0.3 (0, 5) +1612401500: Socket error on client , disconnecting. +1612401520: New connection from 172.18.0.3 on port 1883. +1612401520: Sending CONNACK to 172.18.0.3 (0, 5) +1612401520: Socket error on client , disconnecting. +1612401540: New connection from 172.18.0.3 on port 1883. +1612401540: Sending CONNACK to 172.18.0.3 (0, 5) +1612401540: Socket error on client , disconnecting. +1612401560: New connection from 172.18.0.3 on port 1883. +1612401560: Sending CONNACK to 172.18.0.3 (0, 5) +1612401560: Socket error on client , disconnecting. +1612401580: New connection from 172.18.0.3 on port 1883. +1612401580: Sending CONNACK to 172.18.0.3 (0, 5) +1612401580: Socket error on client , disconnecting. +1612401600: New connection from 172.18.0.3 on port 1883. +1612401600: Sending CONNACK to 172.18.0.3 (0, 5) +1612401600: Socket error on client , disconnecting. +1612401620: New connection from 172.18.0.3 on port 1883. +1612401620: Sending CONNACK to 172.18.0.3 (0, 5) +1612401620: Socket error on client , disconnecting. +1612401640: New connection from 172.18.0.3 on port 1883. +1612401640: Sending CONNACK to 172.18.0.3 (0, 5) +1612401640: Socket error on client , disconnecting. +1612401660: New connection from 172.18.0.3 on port 1883. +1612401660: Sending CONNACK to 172.18.0.3 (0, 5) +1612401660: Socket error on client , disconnecting. +1612401680: New connection from 172.18.0.3 on port 1883. +1612401680: Sending CONNACK to 172.18.0.3 (0, 5) +1612401680: Socket error on client , disconnecting. +1612401700: New connection from 172.18.0.3 on port 1883. +1612401700: Sending CONNACK to 172.18.0.3 (0, 5) +1612401700: Socket error on client , disconnecting. +1612401720: New connection from 172.18.0.3 on port 1883. +1612401720: Sending CONNACK to 172.18.0.3 (0, 5) +1612401720: Socket error on client , disconnecting. +1612401740: New connection from 172.18.0.3 on port 1883. +1612401740: Sending CONNACK to 172.18.0.3 (0, 5) +1612401740: Socket error on client , disconnecting. +1612401760: New connection from 172.18.0.3 on port 1883. +1612401760: Sending CONNACK to 172.18.0.3 (0, 5) +1612401760: Socket error on client , disconnecting. +1612401780: New connection from 172.18.0.3 on port 1883. +1612401780: Sending CONNACK to 172.18.0.3 (0, 5) +1612401780: Socket error on client , disconnecting. +1612401800: New connection from 172.18.0.3 on port 1883. +1612401800: Sending CONNACK to 172.18.0.3 (0, 5) +1612401800: Socket error on client , disconnecting. +1612401820: New connection from 172.18.0.3 on port 1883. +1612401820: Sending CONNACK to 172.18.0.3 (0, 5) +1612401820: Socket error on client , disconnecting. +1612401840: New connection from 172.18.0.3 on port 1883. +1612401840: Sending CONNACK to 172.18.0.3 (0, 5) +1612401840: Socket error on client , disconnecting. +1612401860: New connection from 172.18.0.3 on port 1883. +1612401860: Sending CONNACK to 172.18.0.3 (0, 5) +1612401860: Socket error on client , disconnecting. +1612401880: New connection from 172.18.0.3 on port 1883. +1612401880: Sending CONNACK to 172.18.0.3 (0, 5) +1612401880: Socket error on client , disconnecting. +1612401900: New connection from 172.18.0.3 on port 1883. +1612401900: Sending CONNACK to 172.18.0.3 (0, 5) +1612401900: Socket error on client , disconnecting. +1612401920: New connection from 172.18.0.3 on port 1883. +1612401920: Sending CONNACK to 172.18.0.3 (0, 5) +1612401920: Socket error on client , disconnecting. +1612401940: New connection from 172.18.0.3 on port 1883. +1612401940: Sending CONNACK to 172.18.0.3 (0, 5) +1612401940: Socket error on client , disconnecting. +1612401960: New connection from 172.18.0.3 on port 1883. +1612401960: Sending CONNACK to 172.18.0.3 (0, 5) +1612401960: Socket error on client , disconnecting. +1612401980: New connection from 172.18.0.3 on port 1883. +1612401980: Sending CONNACK to 172.18.0.3 (0, 5) +1612401980: Socket error on client , disconnecting. +1612402000: New connection from 172.18.0.3 on port 1883. +1612402000: Sending CONNACK to 172.18.0.3 (0, 5) +1612402000: Socket error on client , disconnecting. +1612402020: New connection from 172.18.0.3 on port 1883. +1612402020: Sending CONNACK to 172.18.0.3 (0, 5) +1612402020: Socket error on client , disconnecting. +1612402040: New connection from 172.18.0.3 on port 1883. +1612402040: Sending CONNACK to 172.18.0.3 (0, 5) +1612402040: Socket error on client , disconnecting. +1612402060: New connection from 172.18.0.3 on port 1883. +1612402060: Sending CONNACK to 172.18.0.3 (0, 5) +1612402060: Socket error on client , disconnecting. +1612402080: New connection from 172.18.0.3 on port 1883. +1612402080: Sending CONNACK to 172.18.0.3 (0, 5) +1612402080: Socket error on client , disconnecting. +1612402100: New connection from 172.18.0.3 on port 1883. +1612402100: Sending CONNACK to 172.18.0.3 (0, 5) +1612402100: Socket error on client , disconnecting. +1612402120: New connection from 172.18.0.3 on port 1883. +1612402120: Sending CONNACK to 172.18.0.3 (0, 5) +1612402120: Socket error on client , disconnecting. +1612402140: New connection from 172.18.0.3 on port 1883. +1612402140: Sending CONNACK to 172.18.0.3 (0, 5) +1612402140: Socket error on client , disconnecting. +1612402160: New connection from 172.18.0.3 on port 1883. +1612402160: Sending CONNACK to 172.18.0.3 (0, 5) +1612402160: Socket error on client , disconnecting. +1612402180: New connection from 172.18.0.3 on port 1883. +1612402180: Sending CONNACK to 172.18.0.3 (0, 5) +1612402180: Socket error on client , disconnecting. +1612402200: New connection from 172.18.0.3 on port 1883. +1612402200: Sending CONNACK to 172.18.0.3 (0, 5) +1612402200: Socket error on client , disconnecting. +1612402220: New connection from 172.18.0.3 on port 1883. +1612402220: Sending CONNACK to 172.18.0.3 (0, 5) +1612402220: Socket error on client , disconnecting. +1612402240: New connection from 172.18.0.3 on port 1883. +1612402240: Sending CONNACK to 172.18.0.3 (0, 5) +1612402240: Socket error on client , disconnecting. +1612402260: New connection from 172.18.0.3 on port 1883. +1612402260: Sending CONNACK to 172.18.0.3 (0, 5) +1612402260: Socket error on client , disconnecting. +1612402280: New connection from 172.18.0.3 on port 1883. +1612402280: Sending CONNACK to 172.18.0.3 (0, 5) +1612402280: Socket error on client , disconnecting. +1612402300: New connection from 172.18.0.3 on port 1883. +1612402300: Sending CONNACK to 172.18.0.3 (0, 5) +1612402300: Socket error on client , disconnecting. +1612402320: New connection from 172.18.0.3 on port 1883. +1612402320: Sending CONNACK to 172.18.0.3 (0, 5) +1612402320: Socket error on client , disconnecting. +1612402340: New connection from 172.18.0.3 on port 1883. +1612402340: Sending CONNACK to 172.18.0.3 (0, 5) +1612402340: Socket error on client , disconnecting. +1612402360: New connection from 172.18.0.3 on port 1883. +1612402360: Sending CONNACK to 172.18.0.3 (0, 5) +1612402360: Socket error on client , disconnecting. +1612402380: New connection from 172.18.0.3 on port 1883. +1612402380: Sending CONNACK to 172.18.0.3 (0, 5) +1612402380: Socket error on client , disconnecting. +1612402400: New connection from 172.18.0.3 on port 1883. +1612402400: Sending CONNACK to 172.18.0.3 (0, 5) +1612402400: Socket error on client , disconnecting. +1612402420: New connection from 172.18.0.3 on port 1883. +1612402420: Sending CONNACK to 172.18.0.3 (0, 5) +1612402420: Socket error on client , disconnecting. +1612402440: New connection from 172.18.0.3 on port 1883. +1612402440: Sending CONNACK to 172.18.0.3 (0, 5) +1612402440: Socket error on client , disconnecting. +1612402460: New connection from 172.18.0.3 on port 1883. +1612402460: Sending CONNACK to 172.18.0.3 (0, 5) +1612402460: Socket error on client , disconnecting. +1612402480: New connection from 172.18.0.3 on port 1883. +1612402480: Sending CONNACK to 172.18.0.3 (0, 5) +1612402480: Socket error on client , disconnecting. +1612402500: New connection from 172.18.0.3 on port 1883. +1612402500: Sending CONNACK to 172.18.0.3 (0, 5) +1612402500: Socket error on client , disconnecting. +1612402520: New connection from 172.18.0.3 on port 1883. +1612402520: Sending CONNACK to 172.18.0.3 (0, 5) +1612402520: Socket error on client , disconnecting. +1612402540: New connection from 172.18.0.3 on port 1883. +1612402540: Sending CONNACK to 172.18.0.3 (0, 5) +1612402540: Socket error on client , disconnecting. +1612402560: New connection from 172.18.0.3 on port 1883. +1612402560: Sending CONNACK to 172.18.0.3 (0, 5) +1612402560: Socket error on client , disconnecting. +1612402580: New connection from 172.18.0.3 on port 1883. +1612402580: Sending CONNACK to 172.18.0.3 (0, 5) +1612402580: Socket error on client , disconnecting. +1612402600: New connection from 172.18.0.3 on port 1883. +1612402600: Sending CONNACK to 172.18.0.3 (0, 5) +1612402600: Socket error on client , disconnecting. +1612402620: New connection from 172.18.0.3 on port 1883. +1612402620: Sending CONNACK to 172.18.0.3 (0, 5) +1612402620: Socket error on client , disconnecting. +1612402640: New connection from 172.18.0.3 on port 1883. +1612402640: Sending CONNACK to 172.18.0.3 (0, 5) +1612402640: Socket error on client , disconnecting. +1612402660: New connection from 172.18.0.3 on port 1883. +1612402660: Sending CONNACK to 172.18.0.3 (0, 5) +1612402660: Socket error on client , disconnecting. +1612402680: New connection from 172.18.0.3 on port 1883. +1612402680: Sending CONNACK to 172.18.0.3 (0, 5) +1612402680: Socket error on client , disconnecting. +1612402700: New connection from 172.18.0.3 on port 1883. +1612402700: Sending CONNACK to 172.18.0.3 (0, 5) +1612402700: Socket error on client , disconnecting. +1612402720: New connection from 172.18.0.3 on port 1883. +1612402720: Sending CONNACK to 172.18.0.3 (0, 5) +1612402720: Socket error on client , disconnecting. +1612402740: New connection from 172.18.0.3 on port 1883. +1612402740: Sending CONNACK to 172.18.0.3 (0, 5) +1612402740: Socket error on client , disconnecting. +1612402760: New connection from 172.18.0.3 on port 1883. +1612402760: Sending CONNACK to 172.18.0.3 (0, 5) +1612402760: Socket error on client , disconnecting. +1612402780: New connection from 172.18.0.3 on port 1883. +1612402780: Sending CONNACK to 172.18.0.3 (0, 5) +1612402780: Socket error on client , disconnecting. +1612402800: New connection from 172.18.0.3 on port 1883. +1612402800: Sending CONNACK to 172.18.0.3 (0, 5) +1612402800: Socket error on client , disconnecting. +1612402820: New connection from 172.18.0.3 on port 1883. +1612402820: Sending CONNACK to 172.18.0.3 (0, 5) +1612402820: Socket error on client , disconnecting. +1612402840: New connection from 172.18.0.3 on port 1883. +1612402840: Sending CONNACK to 172.18.0.3 (0, 5) +1612402840: Socket error on client , disconnecting. +1612402860: New connection from 172.18.0.3 on port 1883. +1612402860: Sending CONNACK to 172.18.0.3 (0, 5) +1612402860: Socket error on client , disconnecting. +1612402880: New connection from 172.18.0.3 on port 1883. +1612402880: Sending CONNACK to 172.18.0.3 (0, 5) +1612402880: Socket error on client , disconnecting. +1612402900: New connection from 172.18.0.3 on port 1883. +1612402900: Sending CONNACK to 172.18.0.3 (0, 5) +1612402900: Socket error on client , disconnecting. +1612402920: New connection from 172.18.0.3 on port 1883. +1612402920: Sending CONNACK to 172.18.0.3 (0, 5) +1612402920: Socket error on client , disconnecting. +1612402940: New connection from 172.18.0.3 on port 1883. +1612402940: Sending CONNACK to 172.18.0.3 (0, 5) +1612402940: Socket error on client , disconnecting. +1612402960: New connection from 172.18.0.3 on port 1883. +1612402960: Sending CONNACK to 172.18.0.3 (0, 5) +1612402960: Socket error on client , disconnecting. +1612402980: New connection from 172.18.0.3 on port 1883. +1612402980: Sending CONNACK to 172.18.0.3 (0, 5) +1612402980: Socket error on client , disconnecting. +1612403000: New connection from 172.18.0.3 on port 1883. +1612403000: Sending CONNACK to 172.18.0.3 (0, 5) +1612403000: Socket error on client , disconnecting. +1612403020: New connection from 172.18.0.3 on port 1883. +1612403020: Sending CONNACK to 172.18.0.3 (0, 5) +1612403020: Socket error on client , disconnecting. +1612403040: New connection from 172.18.0.3 on port 1883. +1612403040: Sending CONNACK to 172.18.0.3 (0, 5) +1612403040: Socket error on client , disconnecting. +1612403060: New connection from 172.18.0.3 on port 1883. +1612403060: Sending CONNACK to 172.18.0.3 (0, 5) +1612403060: Socket error on client , disconnecting. +1612403080: New connection from 172.18.0.3 on port 1883. +1612403080: Sending CONNACK to 172.18.0.3 (0, 5) +1612403080: Socket error on client , disconnecting. +1612403100: New connection from 172.18.0.3 on port 1883. +1612403100: Sending CONNACK to 172.18.0.3 (0, 5) +1612403100: Socket error on client , disconnecting. +1612403120: New connection from 172.18.0.3 on port 1883. +1612403120: Sending CONNACK to 172.18.0.3 (0, 5) +1612403120: Socket error on client , disconnecting. +1612403140: New connection from 172.18.0.3 on port 1883. +1612403140: Sending CONNACK to 172.18.0.3 (0, 5) +1612403140: Socket error on client , disconnecting. +1612403160: New connection from 172.18.0.3 on port 1883. +1612403160: Sending CONNACK to 172.18.0.3 (0, 5) +1612403160: Socket error on client , disconnecting. +1612403180: New connection from 172.18.0.3 on port 1883. +1612403180: Sending CONNACK to 172.18.0.3 (0, 5) +1612403180: Socket error on client , disconnecting. +1612403193: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612403193: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612403193: Error: Permission denied. +1612403200: New connection from 172.18.0.3 on port 1883. +1612403200: Sending CONNACK to 172.18.0.3 (0, 5) +1612403200: Socket error on client , disconnecting. +1612403220: New connection from 172.18.0.3 on port 1883. +1612403220: Sending CONNACK to 172.18.0.3 (0, 5) +1612403220: Socket error on client , disconnecting. +1612403240: New connection from 172.18.0.3 on port 1883. +1612403240: Sending CONNACK to 172.18.0.3 (0, 5) +1612403240: Socket error on client , disconnecting. +1612403260: New connection from 172.18.0.3 on port 1883. +1612403260: Sending CONNACK to 172.18.0.3 (0, 5) +1612403260: Socket error on client , disconnecting. +1612403280: New connection from 172.18.0.3 on port 1883. +1612403280: Sending CONNACK to 172.18.0.3 (0, 5) +1612403280: Socket error on client , disconnecting. +1612403300: New connection from 172.18.0.3 on port 1883. +1612403300: Sending CONNACK to 172.18.0.3 (0, 5) +1612403300: Socket error on client , disconnecting. +1612403320: New connection from 172.18.0.3 on port 1883. +1612403320: Sending CONNACK to 172.18.0.3 (0, 5) +1612403320: Socket error on client , disconnecting. +1612403340: New connection from 172.18.0.3 on port 1883. +1612403340: Sending CONNACK to 172.18.0.3 (0, 5) +1612403340: Socket error on client , disconnecting. +1612403360: New connection from 172.18.0.3 on port 1883. +1612403360: Sending CONNACK to 172.18.0.3 (0, 5) +1612403360: Socket error on client , disconnecting. +1612403380: New connection from 172.18.0.3 on port 1883. +1612403380: Sending CONNACK to 172.18.0.3 (0, 5) +1612403380: Socket error on client , disconnecting. +1612403400: New connection from 172.18.0.3 on port 1883. +1612403400: Sending CONNACK to 172.18.0.3 (0, 5) +1612403400: Socket error on client , disconnecting. +1612403420: New connection from 172.18.0.3 on port 1883. +1612403420: Sending CONNACK to 172.18.0.3 (0, 5) +1612403420: Socket error on client , disconnecting. +1612403440: New connection from 172.18.0.3 on port 1883. +1612403440: Sending CONNACK to 172.18.0.3 (0, 5) +1612403440: Socket error on client , disconnecting. +1612403460: New connection from 172.18.0.3 on port 1883. +1612403460: Sending CONNACK to 172.18.0.3 (0, 5) +1612403460: Socket error on client , disconnecting. +1612403480: New connection from 172.18.0.3 on port 1883. +1612403480: Sending CONNACK to 172.18.0.3 (0, 5) +1612403480: Socket error on client , disconnecting. +1612403500: New connection from 172.18.0.3 on port 1883. +1612403500: Sending CONNACK to 172.18.0.3 (0, 5) +1612403500: Socket error on client , disconnecting. +1612403520: New connection from 172.18.0.3 on port 1883. +1612403520: Sending CONNACK to 172.18.0.3 (0, 5) +1612403520: Socket error on client , disconnecting. +1612403540: New connection from 172.18.0.3 on port 1883. +1612403540: Sending CONNACK to 172.18.0.3 (0, 5) +1612403540: Socket error on client , disconnecting. +1612403560: New connection from 172.18.0.3 on port 1883. +1612403560: Sending CONNACK to 172.18.0.3 (0, 5) +1612403560: Socket error on client , disconnecting. +1612403580: New connection from 172.18.0.3 on port 1883. +1612403580: Sending CONNACK to 172.18.0.3 (0, 5) +1612403580: Socket error on client , disconnecting. +1612403600: New connection from 172.18.0.3 on port 1883. +1612403600: Sending CONNACK to 172.18.0.3 (0, 5) +1612403600: Socket error on client , disconnecting. +1612403620: New connection from 172.18.0.3 on port 1883. +1612403620: Sending CONNACK to 172.18.0.3 (0, 5) +1612403620: Socket error on client , disconnecting. +1612403640: New connection from 172.18.0.3 on port 1883. +1612403640: Sending CONNACK to 172.18.0.3 (0, 5) +1612403640: Socket error on client , disconnecting. +1612403660: New connection from 172.18.0.3 on port 1883. +1612403660: Sending CONNACK to 172.18.0.3 (0, 5) +1612403660: Socket error on client , disconnecting. +1612403680: New connection from 172.18.0.3 on port 1883. +1612403680: Sending CONNACK to 172.18.0.3 (0, 5) +1612403680: Socket error on client , disconnecting. +1612403700: New connection from 172.18.0.3 on port 1883. +1612403700: Sending CONNACK to 172.18.0.3 (0, 5) +1612403700: Socket error on client , disconnecting. +1612403720: New connection from 172.18.0.3 on port 1883. +1612403720: Sending CONNACK to 172.18.0.3 (0, 5) +1612403720: Socket error on client , disconnecting. +1612403740: New connection from 172.18.0.3 on port 1883. +1612403740: Sending CONNACK to 172.18.0.3 (0, 5) +1612403740: Socket error on client , disconnecting. +1612403760: New connection from 172.18.0.3 on port 1883. +1612403760: Sending CONNACK to 172.18.0.3 (0, 5) +1612403760: Socket error on client , disconnecting. +1612403780: New connection from 172.18.0.3 on port 1883. +1612403780: Sending CONNACK to 172.18.0.3 (0, 5) +1612403780: Socket error on client , disconnecting. +1612403800: New connection from 172.18.0.3 on port 1883. +1612403800: Sending CONNACK to 172.18.0.3 (0, 5) +1612403800: Socket error on client , disconnecting. +1612403820: New connection from 172.18.0.3 on port 1883. +1612403820: Sending CONNACK to 172.18.0.3 (0, 5) +1612403820: Socket error on client , disconnecting. +1612403840: New connection from 172.18.0.3 on port 1883. +1612403840: Sending CONNACK to 172.18.0.3 (0, 5) +1612403840: Socket error on client , disconnecting. +1612403860: New connection from 172.18.0.3 on port 1883. +1612403860: Sending CONNACK to 172.18.0.3 (0, 5) +1612403860: Socket error on client , disconnecting. +1612403880: New connection from 172.18.0.3 on port 1883. +1612403880: Sending CONNACK to 172.18.0.3 (0, 5) +1612403880: Socket error on client , disconnecting. +1612403900: New connection from 172.18.0.3 on port 1883. +1612403900: Sending CONNACK to 172.18.0.3 (0, 5) +1612403900: Socket error on client , disconnecting. +1612403920: New connection from 172.18.0.3 on port 1883. +1612403920: Sending CONNACK to 172.18.0.3 (0, 5) +1612403920: Socket error on client , disconnecting. +1612403940: New connection from 172.18.0.3 on port 1883. +1612403940: Sending CONNACK to 172.18.0.3 (0, 5) +1612403940: Socket error on client , disconnecting. +1612403960: New connection from 172.18.0.3 on port 1883. +1612403960: Sending CONNACK to 172.18.0.3 (0, 5) +1612403960: Socket error on client , disconnecting. +1612403980: New connection from 172.18.0.3 on port 1883. +1612403980: Sending CONNACK to 172.18.0.3 (0, 5) +1612403980: Socket error on client , disconnecting. +1612404000: New connection from 172.18.0.3 on port 1883. +1612404000: Sending CONNACK to 172.18.0.3 (0, 5) +1612404000: Socket error on client , disconnecting. +1612404020: New connection from 172.18.0.3 on port 1883. +1612404020: Sending CONNACK to 172.18.0.3 (0, 5) +1612404020: Socket error on client , disconnecting. +1612404040: New connection from 172.18.0.3 on port 1883. +1612404040: Sending CONNACK to 172.18.0.3 (0, 5) +1612404040: Socket error on client , disconnecting. +1612404060: New connection from 172.18.0.3 on port 1883. +1612404060: Sending CONNACK to 172.18.0.3 (0, 5) +1612404060: Socket error on client , disconnecting. +1612404080: New connection from 172.18.0.3 on port 1883. +1612404080: Sending CONNACK to 172.18.0.3 (0, 5) +1612404080: Socket error on client , disconnecting. +1612404100: New connection from 172.18.0.3 on port 1883. +1612404100: Sending CONNACK to 172.18.0.3 (0, 5) +1612404100: Socket error on client , disconnecting. +1612404120: New connection from 172.18.0.3 on port 1883. +1612404120: Sending CONNACK to 172.18.0.3 (0, 5) +1612404120: Socket error on client , disconnecting. +1612404140: New connection from 172.18.0.3 on port 1883. +1612404140: Sending CONNACK to 172.18.0.3 (0, 5) +1612404140: Socket error on client , disconnecting. +1612404160: New connection from 172.18.0.3 on port 1883. +1612404160: Sending CONNACK to 172.18.0.3 (0, 5) +1612404160: Socket error on client , disconnecting. +1612404180: New connection from 172.18.0.3 on port 1883. +1612404180: Sending CONNACK to 172.18.0.3 (0, 5) +1612404180: Socket error on client , disconnecting. +1612404200: New connection from 172.18.0.3 on port 1883. +1612404200: Sending CONNACK to 172.18.0.3 (0, 5) +1612404200: Socket error on client , disconnecting. +1612404220: New connection from 172.18.0.3 on port 1883. +1612404220: Sending CONNACK to 172.18.0.3 (0, 5) +1612404220: Socket error on client , disconnecting. +1612404240: New connection from 172.18.0.3 on port 1883. +1612404240: Sending CONNACK to 172.18.0.3 (0, 5) +1612404240: Socket error on client , disconnecting. +1612404260: New connection from 172.18.0.3 on port 1883. +1612404260: Sending CONNACK to 172.18.0.3 (0, 5) +1612404260: Socket error on client , disconnecting. +1612404280: New connection from 172.18.0.3 on port 1883. +1612404280: Sending CONNACK to 172.18.0.3 (0, 5) +1612404280: Socket error on client , disconnecting. +1612404300: New connection from 172.18.0.3 on port 1883. +1612404300: Sending CONNACK to 172.18.0.3 (0, 5) +1612404300: Socket error on client , disconnecting. +1612404320: New connection from 172.18.0.3 on port 1883. +1612404320: Sending CONNACK to 172.18.0.3 (0, 5) +1612404320: Socket error on client , disconnecting. +1612404340: New connection from 172.18.0.3 on port 1883. +1612404340: Sending CONNACK to 172.18.0.3 (0, 5) +1612404340: Socket error on client , disconnecting. +1612404360: New connection from 172.18.0.3 on port 1883. +1612404360: Sending CONNACK to 172.18.0.3 (0, 5) +1612404360: Socket error on client , disconnecting. +1612404380: New connection from 172.18.0.3 on port 1883. +1612404380: Sending CONNACK to 172.18.0.3 (0, 5) +1612404380: Socket error on client , disconnecting. +1612404400: New connection from 172.18.0.3 on port 1883. +1612404400: Sending CONNACK to 172.18.0.3 (0, 5) +1612404400: Socket error on client , disconnecting. +1612404420: New connection from 172.18.0.3 on port 1883. +1612404420: Sending CONNACK to 172.18.0.3 (0, 5) +1612404420: Socket error on client , disconnecting. +1612404440: New connection from 172.18.0.3 on port 1883. +1612404440: Sending CONNACK to 172.18.0.3 (0, 5) +1612404440: Socket error on client , disconnecting. +1612404460: New connection from 172.18.0.3 on port 1883. +1612404460: Sending CONNACK to 172.18.0.3 (0, 5) +1612404460: Socket error on client , disconnecting. +1612404480: New connection from 172.18.0.3 on port 1883. +1612404480: Sending CONNACK to 172.18.0.3 (0, 5) +1612404480: Socket error on client , disconnecting. +1612404500: New connection from 172.18.0.3 on port 1883. +1612404500: Sending CONNACK to 172.18.0.3 (0, 5) +1612404500: Socket error on client , disconnecting. +1612404520: New connection from 172.18.0.3 on port 1883. +1612404520: Sending CONNACK to 172.18.0.3 (0, 5) +1612404520: Socket error on client , disconnecting. +1612404540: New connection from 172.18.0.3 on port 1883. +1612404540: Sending CONNACK to 172.18.0.3 (0, 5) +1612404540: Socket error on client , disconnecting. +1612404560: New connection from 172.18.0.3 on port 1883. +1612404560: Sending CONNACK to 172.18.0.3 (0, 5) +1612404560: Socket error on client , disconnecting. +1612404580: New connection from 172.18.0.3 on port 1883. +1612404580: Sending CONNACK to 172.18.0.3 (0, 5) +1612404580: Socket error on client , disconnecting. +1612404600: New connection from 172.18.0.3 on port 1883. +1612404600: Sending CONNACK to 172.18.0.3 (0, 5) +1612404600: Socket error on client , disconnecting. +1612404620: New connection from 172.18.0.3 on port 1883. +1612404620: Sending CONNACK to 172.18.0.3 (0, 5) +1612404620: Socket error on client , disconnecting. +1612404640: New connection from 172.18.0.3 on port 1883. +1612404640: Sending CONNACK to 172.18.0.3 (0, 5) +1612404640: Socket error on client , disconnecting. +1612404660: New connection from 172.18.0.3 on port 1883. +1612404660: Sending CONNACK to 172.18.0.3 (0, 5) +1612404660: Socket error on client , disconnecting. +1612404680: New connection from 172.18.0.3 on port 1883. +1612404680: Sending CONNACK to 172.18.0.3 (0, 5) +1612404680: Socket error on client , disconnecting. +1612404700: New connection from 172.18.0.3 on port 1883. +1612404700: Sending CONNACK to 172.18.0.3 (0, 5) +1612404700: Socket error on client , disconnecting. +1612404720: New connection from 172.18.0.3 on port 1883. +1612404720: Sending CONNACK to 172.18.0.3 (0, 5) +1612404720: Socket error on client , disconnecting. +1612404740: New connection from 172.18.0.3 on port 1883. +1612404740: Sending CONNACK to 172.18.0.3 (0, 5) +1612404740: Socket error on client , disconnecting. +1612404760: New connection from 172.18.0.3 on port 1883. +1612404760: Sending CONNACK to 172.18.0.3 (0, 5) +1612404760: Socket error on client , disconnecting. +1612404780: New connection from 172.18.0.3 on port 1883. +1612404780: Sending CONNACK to 172.18.0.3 (0, 5) +1612404780: Socket error on client , disconnecting. +1612404800: New connection from 172.18.0.3 on port 1883. +1612404800: Sending CONNACK to 172.18.0.3 (0, 5) +1612404800: Socket error on client , disconnecting. +1612404820: New connection from 172.18.0.3 on port 1883. +1612404820: Sending CONNACK to 172.18.0.3 (0, 5) +1612404820: Socket error on client , disconnecting. +1612404840: New connection from 172.18.0.3 on port 1883. +1612404840: Sending CONNACK to 172.18.0.3 (0, 5) +1612404840: Socket error on client , disconnecting. +1612404860: New connection from 172.18.0.3 on port 1883. +1612404860: Sending CONNACK to 172.18.0.3 (0, 5) +1612404860: Socket error on client , disconnecting. +1612404880: New connection from 172.18.0.3 on port 1883. +1612404880: Sending CONNACK to 172.18.0.3 (0, 5) +1612404880: Socket error on client , disconnecting. +1612404900: New connection from 172.18.0.3 on port 1883. +1612404900: Sending CONNACK to 172.18.0.3 (0, 5) +1612404900: Socket error on client , disconnecting. +1612404920: New connection from 172.18.0.3 on port 1883. +1612404920: Sending CONNACK to 172.18.0.3 (0, 5) +1612404920: Socket error on client , disconnecting. +1612404940: New connection from 172.18.0.3 on port 1883. +1612404940: Sending CONNACK to 172.18.0.3 (0, 5) +1612404940: Socket error on client , disconnecting. +1612404960: New connection from 172.18.0.3 on port 1883. +1612404960: Sending CONNACK to 172.18.0.3 (0, 5) +1612404960: Socket error on client , disconnecting. +1612404980: New connection from 172.18.0.3 on port 1883. +1612404980: Sending CONNACK to 172.18.0.3 (0, 5) +1612404980: Socket error on client , disconnecting. +1612404994: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612404994: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612404994: Error: Permission denied. +1612405000: New connection from 172.18.0.3 on port 1883. +1612405000: Sending CONNACK to 172.18.0.3 (0, 5) +1612405000: Socket error on client , disconnecting. +1612405020: New connection from 172.18.0.3 on port 1883. +1612405020: Sending CONNACK to 172.18.0.3 (0, 5) +1612405020: Socket error on client , disconnecting. +1612405040: New connection from 172.18.0.3 on port 1883. +1612405040: Sending CONNACK to 172.18.0.3 (0, 5) +1612405040: Socket error on client , disconnecting. +1612405060: New connection from 172.18.0.3 on port 1883. +1612405060: Sending CONNACK to 172.18.0.3 (0, 5) +1612405060: Socket error on client , disconnecting. +1612405080: New connection from 172.18.0.3 on port 1883. +1612405080: Sending CONNACK to 172.18.0.3 (0, 5) +1612405080: Socket error on client , disconnecting. +1612405100: New connection from 172.18.0.3 on port 1883. +1612405100: Sending CONNACK to 172.18.0.3 (0, 5) +1612405100: Socket error on client , disconnecting. +1612405120: New connection from 172.18.0.3 on port 1883. +1612405120: Sending CONNACK to 172.18.0.3 (0, 5) +1612405120: Socket error on client , disconnecting. +1612405140: New connection from 172.18.0.3 on port 1883. +1612405140: Sending CONNACK to 172.18.0.3 (0, 5) +1612405140: Socket error on client , disconnecting. +1612405160: New connection from 172.18.0.3 on port 1883. +1612405160: Sending CONNACK to 172.18.0.3 (0, 5) +1612405160: Socket error on client , disconnecting. +1612405180: New connection from 172.18.0.3 on port 1883. +1612405180: Sending CONNACK to 172.18.0.3 (0, 5) +1612405180: Socket error on client , disconnecting. +1612405200: New connection from 172.18.0.3 on port 1883. +1612405200: Sending CONNACK to 172.18.0.3 (0, 5) +1612405200: Socket error on client , disconnecting. +1612405220: New connection from 172.18.0.3 on port 1883. +1612405220: Sending CONNACK to 172.18.0.3 (0, 5) +1612405220: Socket error on client , disconnecting. +1612405240: New connection from 172.18.0.3 on port 1883. +1612405240: Sending CONNACK to 172.18.0.3 (0, 5) +1612405240: Socket error on client , disconnecting. +1612405260: New connection from 172.18.0.3 on port 1883. +1612405260: Sending CONNACK to 172.18.0.3 (0, 5) +1612405260: Socket error on client , disconnecting. +1612405280: New connection from 172.18.0.3 on port 1883. +1612405280: Sending CONNACK to 172.18.0.3 (0, 5) +1612405280: Socket error on client , disconnecting. +1612405300: New connection from 172.18.0.3 on port 1883. +1612405300: Sending CONNACK to 172.18.0.3 (0, 5) +1612405300: Socket error on client , disconnecting. +1612405320: New connection from 172.18.0.3 on port 1883. +1612405320: Sending CONNACK to 172.18.0.3 (0, 5) +1612405320: Socket error on client , disconnecting. +1612405340: New connection from 172.18.0.3 on port 1883. +1612405340: Sending CONNACK to 172.18.0.3 (0, 5) +1612405340: Socket error on client , disconnecting. +1612405360: New connection from 172.18.0.3 on port 1883. +1612405360: Sending CONNACK to 172.18.0.3 (0, 5) +1612405360: Socket error on client , disconnecting. +1612405380: New connection from 172.18.0.3 on port 1883. +1612405380: Sending CONNACK to 172.18.0.3 (0, 5) +1612405380: Socket error on client , disconnecting. +1612405400: New connection from 172.18.0.3 on port 1883. +1612405400: Sending CONNACK to 172.18.0.3 (0, 5) +1612405400: Socket error on client , disconnecting. +1612405420: New connection from 172.18.0.3 on port 1883. +1612405420: Sending CONNACK to 172.18.0.3 (0, 5) +1612405420: Socket error on client , disconnecting. +1612405440: New connection from 172.18.0.3 on port 1883. +1612405440: Sending CONNACK to 172.18.0.3 (0, 5) +1612405440: Socket error on client , disconnecting. +1612405460: New connection from 172.18.0.3 on port 1883. +1612405460: Sending CONNACK to 172.18.0.3 (0, 5) +1612405460: Socket error on client , disconnecting. +1612405480: New connection from 172.18.0.3 on port 1883. +1612405480: Sending CONNACK to 172.18.0.3 (0, 5) +1612405480: Socket error on client , disconnecting. +1612405500: New connection from 172.18.0.3 on port 1883. +1612405500: Sending CONNACK to 172.18.0.3 (0, 5) +1612405500: Socket error on client , disconnecting. +1612405520: New connection from 172.18.0.3 on port 1883. +1612405520: Sending CONNACK to 172.18.0.3 (0, 5) +1612405520: Socket error on client , disconnecting. +1612405540: New connection from 172.18.0.3 on port 1883. +1612405540: Sending CONNACK to 172.18.0.3 (0, 5) +1612405540: Socket error on client , disconnecting. +1612405560: New connection from 172.18.0.3 on port 1883. +1612405560: Sending CONNACK to 172.18.0.3 (0, 5) +1612405560: Socket error on client , disconnecting. +1612405580: New connection from 172.18.0.3 on port 1883. +1612405580: Sending CONNACK to 172.18.0.3 (0, 5) +1612405580: Socket error on client , disconnecting. +1612405600: New connection from 172.18.0.3 on port 1883. +1612405600: Sending CONNACK to 172.18.0.3 (0, 5) +1612405600: Socket error on client , disconnecting. +1612405620: New connection from 172.18.0.3 on port 1883. +1612405620: Sending CONNACK to 172.18.0.3 (0, 5) +1612405620: Socket error on client , disconnecting. +1612405640: New connection from 172.18.0.3 on port 1883. +1612405640: Sending CONNACK to 172.18.0.3 (0, 5) +1612405640: Socket error on client , disconnecting. +1612405660: New connection from 172.18.0.3 on port 1883. +1612405660: Sending CONNACK to 172.18.0.3 (0, 5) +1612405660: Socket error on client , disconnecting. +1612405680: New connection from 172.18.0.3 on port 1883. +1612405680: Sending CONNACK to 172.18.0.3 (0, 5) +1612405680: Socket error on client , disconnecting. +1612405700: New connection from 172.18.0.3 on port 1883. +1612405700: Sending CONNACK to 172.18.0.3 (0, 5) +1612405700: Socket error on client , disconnecting. +1612405720: New connection from 172.18.0.3 on port 1883. +1612405720: Sending CONNACK to 172.18.0.3 (0, 5) +1612405720: Socket error on client , disconnecting. +1612405740: New connection from 172.18.0.3 on port 1883. +1612405740: Sending CONNACK to 172.18.0.3 (0, 5) +1612405740: Socket error on client , disconnecting. +1612405760: New connection from 172.18.0.3 on port 1883. +1612405760: Sending CONNACK to 172.18.0.3 (0, 5) +1612405760: Socket error on client , disconnecting. +1612405780: New connection from 172.18.0.3 on port 1883. +1612405780: Sending CONNACK to 172.18.0.3 (0, 5) +1612405780: Socket error on client , disconnecting. +1612405800: New connection from 172.18.0.3 on port 1883. +1612405800: Sending CONNACK to 172.18.0.3 (0, 5) +1612405800: Socket error on client , disconnecting. +1612405820: New connection from 172.18.0.3 on port 1883. +1612405820: Sending CONNACK to 172.18.0.3 (0, 5) +1612405820: Socket error on client , disconnecting. +1612405840: New connection from 172.18.0.3 on port 1883. +1612405840: Sending CONNACK to 172.18.0.3 (0, 5) +1612405840: Socket error on client , disconnecting. +1612405860: New connection from 172.18.0.3 on port 1883. +1612405860: Sending CONNACK to 172.18.0.3 (0, 5) +1612405860: Socket error on client , disconnecting. +1612405880: New connection from 172.18.0.3 on port 1883. +1612405880: Sending CONNACK to 172.18.0.3 (0, 5) +1612405880: Socket error on client , disconnecting. +1612405900: New connection from 172.18.0.3 on port 1883. +1612405900: Sending CONNACK to 172.18.0.3 (0, 5) +1612405900: Socket error on client , disconnecting. +1612405920: New connection from 172.18.0.3 on port 1883. +1612405920: Sending CONNACK to 172.18.0.3 (0, 5) +1612405920: Socket error on client , disconnecting. +1612405940: New connection from 172.18.0.3 on port 1883. +1612405940: Sending CONNACK to 172.18.0.3 (0, 5) +1612405940: Socket error on client , disconnecting. +1612405960: New connection from 172.18.0.3 on port 1883. +1612405960: Sending CONNACK to 172.18.0.3 (0, 5) +1612405960: Socket error on client , disconnecting. +1612405980: New connection from 172.18.0.3 on port 1883. +1612405980: Sending CONNACK to 172.18.0.3 (0, 5) +1612405980: Socket error on client , disconnecting. +1612406000: New connection from 172.18.0.3 on port 1883. +1612406000: Sending CONNACK to 172.18.0.3 (0, 5) +1612406000: Socket error on client , disconnecting. +1612406020: New connection from 172.18.0.3 on port 1883. +1612406020: Sending CONNACK to 172.18.0.3 (0, 5) +1612406020: Socket error on client , disconnecting. +1612406040: New connection from 172.18.0.3 on port 1883. +1612406040: Sending CONNACK to 172.18.0.3 (0, 5) +1612406040: Socket error on client , disconnecting. +1612406060: New connection from 172.18.0.3 on port 1883. +1612406060: Sending CONNACK to 172.18.0.3 (0, 5) +1612406060: Socket error on client , disconnecting. +1612406080: New connection from 172.18.0.3 on port 1883. +1612406080: Sending CONNACK to 172.18.0.3 (0, 5) +1612406080: Socket error on client , disconnecting. +1612406100: New connection from 172.18.0.3 on port 1883. +1612406100: Sending CONNACK to 172.18.0.3 (0, 5) +1612406100: Socket error on client , disconnecting. +1612406120: New connection from 172.18.0.3 on port 1883. +1612406120: Sending CONNACK to 172.18.0.3 (0, 5) +1612406120: Socket error on client , disconnecting. +1612406140: New connection from 172.18.0.3 on port 1883. +1612406140: Sending CONNACK to 172.18.0.3 (0, 5) +1612406140: Socket error on client , disconnecting. +1612406160: New connection from 172.18.0.3 on port 1883. +1612406160: Sending CONNACK to 172.18.0.3 (0, 5) +1612406160: Socket error on client , disconnecting. +1612406180: New connection from 172.18.0.3 on port 1883. +1612406180: Sending CONNACK to 172.18.0.3 (0, 5) +1612406180: Socket error on client , disconnecting. +1612406200: New connection from 172.18.0.3 on port 1883. +1612406200: Sending CONNACK to 172.18.0.3 (0, 5) +1612406200: Socket error on client , disconnecting. +1612406220: New connection from 172.18.0.3 on port 1883. +1612406220: Sending CONNACK to 172.18.0.3 (0, 5) +1612406220: Socket error on client , disconnecting. +1612406240: New connection from 172.18.0.3 on port 1883. +1612406240: Sending CONNACK to 172.18.0.3 (0, 5) +1612406240: Socket error on client , disconnecting. +1612406260: New connection from 172.18.0.3 on port 1883. +1612406260: Sending CONNACK to 172.18.0.3 (0, 5) +1612406260: Socket error on client , disconnecting. +1612406280: New connection from 172.18.0.3 on port 1883. +1612406280: Sending CONNACK to 172.18.0.3 (0, 5) +1612406280: Socket error on client , disconnecting. +1612406300: New connection from 172.18.0.3 on port 1883. +1612406300: Sending CONNACK to 172.18.0.3 (0, 5) +1612406300: Socket error on client , disconnecting. +1612406320: New connection from 172.18.0.3 on port 1883. +1612406320: Sending CONNACK to 172.18.0.3 (0, 5) +1612406320: Socket error on client , disconnecting. +1612406340: New connection from 172.18.0.3 on port 1883. +1612406340: Sending CONNACK to 172.18.0.3 (0, 5) +1612406340: Socket error on client , disconnecting. +1612406360: New connection from 172.18.0.3 on port 1883. +1612406360: Sending CONNACK to 172.18.0.3 (0, 5) +1612406360: Socket error on client , disconnecting. +1612406380: New connection from 172.18.0.3 on port 1883. +1612406380: Sending CONNACK to 172.18.0.3 (0, 5) +1612406380: Socket error on client , disconnecting. +1612406400: New connection from 172.18.0.3 on port 1883. +1612406400: Sending CONNACK to 172.18.0.3 (0, 5) +1612406400: Socket error on client , disconnecting. +1612406420: New connection from 172.18.0.3 on port 1883. +1612406420: Sending CONNACK to 172.18.0.3 (0, 5) +1612406420: Socket error on client , disconnecting. +1612406440: New connection from 172.18.0.3 on port 1883. +1612406440: Sending CONNACK to 172.18.0.3 (0, 5) +1612406440: Socket error on client , disconnecting. +1612406460: New connection from 172.18.0.3 on port 1883. +1612406460: Sending CONNACK to 172.18.0.3 (0, 5) +1612406460: Socket error on client , disconnecting. +1612406480: New connection from 172.18.0.3 on port 1883. +1612406480: Sending CONNACK to 172.18.0.3 (0, 5) +1612406480: Socket error on client , disconnecting. +1612406500: New connection from 172.18.0.3 on port 1883. +1612406500: Sending CONNACK to 172.18.0.3 (0, 5) +1612406500: Socket error on client , disconnecting. +1612406520: New connection from 172.18.0.3 on port 1883. +1612406520: Sending CONNACK to 172.18.0.3 (0, 5) +1612406520: Socket error on client , disconnecting. +1612406540: New connection from 172.18.0.3 on port 1883. +1612406540: Sending CONNACK to 172.18.0.3 (0, 5) +1612406540: Socket error on client , disconnecting. +1612406560: New connection from 172.18.0.3 on port 1883. +1612406560: Sending CONNACK to 172.18.0.3 (0, 5) +1612406560: Socket error on client , disconnecting. +1612406580: New connection from 172.18.0.3 on port 1883. +1612406580: Sending CONNACK to 172.18.0.3 (0, 5) +1612406580: Socket error on client , disconnecting. +1612406600: New connection from 172.18.0.3 on port 1883. +1612406600: Sending CONNACK to 172.18.0.3 (0, 5) +1612406600: Socket error on client , disconnecting. +1612406620: New connection from 172.18.0.3 on port 1883. +1612406620: Sending CONNACK to 172.18.0.3 (0, 5) +1612406620: Socket error on client , disconnecting. +1612406640: New connection from 172.18.0.3 on port 1883. +1612406640: Sending CONNACK to 172.18.0.3 (0, 5) +1612406640: Socket error on client , disconnecting. +1612406660: New connection from 172.18.0.3 on port 1883. +1612406660: Sending CONNACK to 172.18.0.3 (0, 5) +1612406660: Socket error on client , disconnecting. +1612406680: New connection from 172.18.0.3 on port 1883. +1612406680: Sending CONNACK to 172.18.0.3 (0, 5) +1612406680: Socket error on client , disconnecting. +1612406700: New connection from 172.18.0.3 on port 1883. +1612406700: Sending CONNACK to 172.18.0.3 (0, 5) +1612406700: Socket error on client , disconnecting. +1612406720: New connection from 172.18.0.3 on port 1883. +1612406720: Sending CONNACK to 172.18.0.3 (0, 5) +1612406720: Socket error on client , disconnecting. +1612406740: New connection from 172.18.0.3 on port 1883. +1612406740: Sending CONNACK to 172.18.0.3 (0, 5) +1612406740: Socket error on client , disconnecting. +1612406760: New connection from 172.18.0.3 on port 1883. +1612406760: Sending CONNACK to 172.18.0.3 (0, 5) +1612406760: Socket error on client , disconnecting. +1612406780: New connection from 172.18.0.3 on port 1883. +1612406780: Sending CONNACK to 172.18.0.3 (0, 5) +1612406780: Socket error on client , disconnecting. +1612406795: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612406795: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612406795: Error: Permission denied. +1612406800: New connection from 172.18.0.3 on port 1883. +1612406800: Sending CONNACK to 172.18.0.3 (0, 5) +1612406800: Socket error on client , disconnecting. +1612406820: New connection from 172.18.0.3 on port 1883. +1612406820: Sending CONNACK to 172.18.0.3 (0, 5) +1612406820: Socket error on client , disconnecting. +1612406840: New connection from 172.18.0.3 on port 1883. +1612406840: Sending CONNACK to 172.18.0.3 (0, 5) +1612406840: Socket error on client , disconnecting. +1612406860: New connection from 172.18.0.3 on port 1883. +1612406860: Sending CONNACK to 172.18.0.3 (0, 5) +1612406860: Socket error on client , disconnecting. +1612406880: New connection from 172.18.0.3 on port 1883. +1612406880: Sending CONNACK to 172.18.0.3 (0, 5) +1612406880: Socket error on client , disconnecting. +1612406900: New connection from 172.18.0.3 on port 1883. +1612406900: Sending CONNACK to 172.18.0.3 (0, 5) +1612406900: Socket error on client , disconnecting. +1612406920: New connection from 172.18.0.3 on port 1883. +1612406920: Sending CONNACK to 172.18.0.3 (0, 5) +1612406920: Socket error on client , disconnecting. +1612406940: New connection from 172.18.0.3 on port 1883. +1612406940: Sending CONNACK to 172.18.0.3 (0, 5) +1612406940: Socket error on client , disconnecting. +1612406960: New connection from 172.18.0.3 on port 1883. +1612406960: Sending CONNACK to 172.18.0.3 (0, 5) +1612406960: Socket error on client , disconnecting. +1612406980: New connection from 172.18.0.3 on port 1883. +1612406980: Sending CONNACK to 172.18.0.3 (0, 5) +1612406980: Socket error on client , disconnecting. +1612407000: New connection from 172.18.0.3 on port 1883. +1612407000: Sending CONNACK to 172.18.0.3 (0, 5) +1612407000: Socket error on client , disconnecting. +1612407020: New connection from 172.18.0.3 on port 1883. +1612407020: Sending CONNACK to 172.18.0.3 (0, 5) +1612407020: Socket error on client , disconnecting. +1612407040: New connection from 172.18.0.3 on port 1883. +1612407040: Sending CONNACK to 172.18.0.3 (0, 5) +1612407040: Socket error on client , disconnecting. +1612407060: New connection from 172.18.0.3 on port 1883. +1612407060: Sending CONNACK to 172.18.0.3 (0, 5) +1612407060: Socket error on client , disconnecting. +1612407080: New connection from 172.18.0.3 on port 1883. +1612407080: Sending CONNACK to 172.18.0.3 (0, 5) +1612407080: Socket error on client , disconnecting. +1612407100: New connection from 172.18.0.3 on port 1883. +1612407100: Sending CONNACK to 172.18.0.3 (0, 5) +1612407100: Socket error on client , disconnecting. +1612407120: New connection from 172.18.0.3 on port 1883. +1612407120: Sending CONNACK to 172.18.0.3 (0, 5) +1612407120: Socket error on client , disconnecting. +1612407140: New connection from 172.18.0.3 on port 1883. +1612407140: Sending CONNACK to 172.18.0.3 (0, 5) +1612407140: Socket error on client , disconnecting. +1612407160: New connection from 172.18.0.3 on port 1883. +1612407160: Sending CONNACK to 172.18.0.3 (0, 5) +1612407160: Socket error on client , disconnecting. +1612407180: New connection from 172.18.0.3 on port 1883. +1612407180: Sending CONNACK to 172.18.0.3 (0, 5) +1612407180: Socket error on client , disconnecting. +1612407200: New connection from 172.18.0.3 on port 1883. +1612407200: Sending CONNACK to 172.18.0.3 (0, 5) +1612407200: Socket error on client , disconnecting. +1612407220: New connection from 172.18.0.3 on port 1883. +1612407220: Sending CONNACK to 172.18.0.3 (0, 5) +1612407220: Socket error on client , disconnecting. +1612407240: New connection from 172.18.0.3 on port 1883. +1612407240: Sending CONNACK to 172.18.0.3 (0, 5) +1612407240: Socket error on client , disconnecting. +1612407260: New connection from 172.18.0.3 on port 1883. +1612407260: Sending CONNACK to 172.18.0.3 (0, 5) +1612407260: Socket error on client , disconnecting. +1612407280: New connection from 172.18.0.3 on port 1883. +1612407280: Sending CONNACK to 172.18.0.3 (0, 5) +1612407280: Socket error on client , disconnecting. +1612407300: New connection from 172.18.0.3 on port 1883. +1612407300: Sending CONNACK to 172.18.0.3 (0, 5) +1612407300: Socket error on client , disconnecting. +1612407320: New connection from 172.18.0.3 on port 1883. +1612407320: Sending CONNACK to 172.18.0.3 (0, 5) +1612407320: Socket error on client , disconnecting. +1612407340: New connection from 172.18.0.3 on port 1883. +1612407340: Sending CONNACK to 172.18.0.3 (0, 5) +1612407340: Socket error on client , disconnecting. +1612407360: New connection from 172.18.0.3 on port 1883. +1612407360: Sending CONNACK to 172.18.0.3 (0, 5) +1612407360: Socket error on client , disconnecting. +1612407380: New connection from 172.18.0.3 on port 1883. +1612407380: Sending CONNACK to 172.18.0.3 (0, 5) +1612407380: Socket error on client , disconnecting. +1612407400: New connection from 172.18.0.3 on port 1883. +1612407400: Sending CONNACK to 172.18.0.3 (0, 5) +1612407400: Socket error on client , disconnecting. +1612407420: New connection from 172.18.0.3 on port 1883. +1612407420: Sending CONNACK to 172.18.0.3 (0, 5) +1612407420: Socket error on client , disconnecting. +1612407440: New connection from 172.18.0.3 on port 1883. +1612407440: Sending CONNACK to 172.18.0.3 (0, 5) +1612407440: Socket error on client , disconnecting. +1612407460: New connection from 172.18.0.3 on port 1883. +1612407460: Sending CONNACK to 172.18.0.3 (0, 5) +1612407460: Socket error on client , disconnecting. +1612407480: New connection from 172.18.0.3 on port 1883. +1612407480: Sending CONNACK to 172.18.0.3 (0, 5) +1612407480: Socket error on client , disconnecting. +1612407500: New connection from 172.18.0.3 on port 1883. +1612407500: Sending CONNACK to 172.18.0.3 (0, 5) +1612407500: Socket error on client , disconnecting. +1612407520: New connection from 172.18.0.3 on port 1883. +1612407520: Sending CONNACK to 172.18.0.3 (0, 5) +1612407520: Socket error on client , disconnecting. +1612407540: New connection from 172.18.0.3 on port 1883. +1612407540: Sending CONNACK to 172.18.0.3 (0, 5) +1612407540: Socket error on client , disconnecting. +1612407560: New connection from 172.18.0.3 on port 1883. +1612407560: Sending CONNACK to 172.18.0.3 (0, 5) +1612407560: Socket error on client , disconnecting. +1612407580: New connection from 172.18.0.3 on port 1883. +1612407580: Sending CONNACK to 172.18.0.3 (0, 5) +1612407580: Socket error on client , disconnecting. +1612407600: New connection from 172.18.0.3 on port 1883. +1612407600: Sending CONNACK to 172.18.0.3 (0, 5) +1612407600: Socket error on client , disconnecting. +1612407620: New connection from 172.18.0.3 on port 1883. +1612407620: Sending CONNACK to 172.18.0.3 (0, 5) +1612407620: Socket error on client , disconnecting. +1612407640: New connection from 172.18.0.3 on port 1883. +1612407640: Sending CONNACK to 172.18.0.3 (0, 5) +1612407640: Socket error on client , disconnecting. +1612407660: New connection from 172.18.0.3 on port 1883. +1612407660: Sending CONNACK to 172.18.0.3 (0, 5) +1612407660: Socket error on client , disconnecting. +1612407680: New connection from 172.18.0.3 on port 1883. +1612407680: Sending CONNACK to 172.18.0.3 (0, 5) +1612407680: Socket error on client , disconnecting. +1612407700: New connection from 172.18.0.3 on port 1883. +1612407700: Sending CONNACK to 172.18.0.3 (0, 5) +1612407700: Socket error on client , disconnecting. +1612407720: New connection from 172.18.0.3 on port 1883. +1612407720: Sending CONNACK to 172.18.0.3 (0, 5) +1612407720: Socket error on client , disconnecting. +1612407740: New connection from 172.18.0.3 on port 1883. +1612407740: Sending CONNACK to 172.18.0.3 (0, 5) +1612407740: Socket error on client , disconnecting. +1612407760: New connection from 172.18.0.3 on port 1883. +1612407760: Sending CONNACK to 172.18.0.3 (0, 5) +1612407760: Socket error on client , disconnecting. +1612407780: New connection from 172.18.0.3 on port 1883. +1612407780: Sending CONNACK to 172.18.0.3 (0, 5) +1612407780: Socket error on client , disconnecting. +1612407800: New connection from 172.18.0.3 on port 1883. +1612407800: Sending CONNACK to 172.18.0.3 (0, 5) +1612407800: Socket error on client , disconnecting. +1612407820: New connection from 172.18.0.3 on port 1883. +1612407820: Sending CONNACK to 172.18.0.3 (0, 5) +1612407820: Socket error on client , disconnecting. +1612407840: New connection from 172.18.0.3 on port 1883. +1612407840: Sending CONNACK to 172.18.0.3 (0, 5) +1612407840: Socket error on client , disconnecting. +1612407860: New connection from 172.18.0.3 on port 1883. +1612407860: Sending CONNACK to 172.18.0.3 (0, 5) +1612407860: Socket error on client , disconnecting. +1612407880: New connection from 172.18.0.3 on port 1883. +1612407880: Sending CONNACK to 172.18.0.3 (0, 5) +1612407880: Socket error on client , disconnecting. +1612407900: New connection from 172.18.0.3 on port 1883. +1612407900: Sending CONNACK to 172.18.0.3 (0, 5) +1612407900: Socket error on client , disconnecting. +1612407920: New connection from 172.18.0.3 on port 1883. +1612407920: Sending CONNACK to 172.18.0.3 (0, 5) +1612407920: Socket error on client , disconnecting. +1612407940: New connection from 172.18.0.3 on port 1883. +1612407940: Sending CONNACK to 172.18.0.3 (0, 5) +1612407940: Socket error on client , disconnecting. +1612407960: New connection from 172.18.0.3 on port 1883. +1612407960: Sending CONNACK to 172.18.0.3 (0, 5) +1612407960: Socket error on client , disconnecting. +1612407980: New connection from 172.18.0.3 on port 1883. +1612407980: Sending CONNACK to 172.18.0.3 (0, 5) +1612407980: Socket error on client , disconnecting. +1612408000: New connection from 172.18.0.3 on port 1883. +1612408000: Sending CONNACK to 172.18.0.3 (0, 5) +1612408000: Socket error on client , disconnecting. +1612408020: New connection from 172.18.0.3 on port 1883. +1612408020: Sending CONNACK to 172.18.0.3 (0, 5) +1612408020: Socket error on client , disconnecting. +1612408040: New connection from 172.18.0.3 on port 1883. +1612408040: Sending CONNACK to 172.18.0.3 (0, 5) +1612408040: Socket error on client , disconnecting. +1612408060: New connection from 172.18.0.3 on port 1883. +1612408060: Sending CONNACK to 172.18.0.3 (0, 5) +1612408060: Socket error on client , disconnecting. +1612408080: New connection from 172.18.0.3 on port 1883. +1612408080: Sending CONNACK to 172.18.0.3 (0, 5) +1612408080: Socket error on client , disconnecting. +1612408100: New connection from 172.18.0.3 on port 1883. +1612408100: Sending CONNACK to 172.18.0.3 (0, 5) +1612408100: Socket error on client , disconnecting. +1612408120: New connection from 172.18.0.3 on port 1883. +1612408120: Sending CONNACK to 172.18.0.3 (0, 5) +1612408120: Socket error on client , disconnecting. +1612408140: New connection from 172.18.0.3 on port 1883. +1612408140: Sending CONNACK to 172.18.0.3 (0, 5) +1612408140: Socket error on client , disconnecting. +1612408160: New connection from 172.18.0.3 on port 1883. +1612408160: Sending CONNACK to 172.18.0.3 (0, 5) +1612408160: Socket error on client , disconnecting. +1612408180: New connection from 172.18.0.3 on port 1883. +1612408180: Sending CONNACK to 172.18.0.3 (0, 5) +1612408180: Socket error on client , disconnecting. +1612408200: New connection from 172.18.0.3 on port 1883. +1612408200: Sending CONNACK to 172.18.0.3 (0, 5) +1612408200: Socket error on client , disconnecting. +1612408220: New connection from 172.18.0.3 on port 1883. +1612408220: Sending CONNACK to 172.18.0.3 (0, 5) +1612408220: Socket error on client , disconnecting. +1612408240: New connection from 172.18.0.3 on port 1883. +1612408240: Sending CONNACK to 172.18.0.3 (0, 5) +1612408240: Socket error on client , disconnecting. +1612408260: New connection from 172.18.0.3 on port 1883. +1612408260: Sending CONNACK to 172.18.0.3 (0, 5) +1612408260: Socket error on client , disconnecting. +1612408280: New connection from 172.18.0.3 on port 1883. +1612408280: Sending CONNACK to 172.18.0.3 (0, 5) +1612408280: Socket error on client , disconnecting. +1612408300: New connection from 172.18.0.3 on port 1883. +1612408300: Sending CONNACK to 172.18.0.3 (0, 5) +1612408300: Socket error on client , disconnecting. +1612408320: New connection from 172.18.0.3 on port 1883. +1612408320: Sending CONNACK to 172.18.0.3 (0, 5) +1612408320: Socket error on client , disconnecting. +1612408340: New connection from 172.18.0.3 on port 1883. +1612408340: Sending CONNACK to 172.18.0.3 (0, 5) +1612408340: Socket error on client , disconnecting. +1612408360: New connection from 172.18.0.3 on port 1883. +1612408360: Sending CONNACK to 172.18.0.3 (0, 5) +1612408360: Socket error on client , disconnecting. +1612408380: New connection from 172.18.0.3 on port 1883. +1612408380: Sending CONNACK to 172.18.0.3 (0, 5) +1612408380: Socket error on client , disconnecting. +1612408400: New connection from 172.18.0.3 on port 1883. +1612408400: Sending CONNACK to 172.18.0.3 (0, 5) +1612408400: Socket error on client , disconnecting. +1612408420: New connection from 172.18.0.3 on port 1883. +1612408420: Sending CONNACK to 172.18.0.3 (0, 5) +1612408420: Socket error on client , disconnecting. +1612408440: New connection from 172.18.0.3 on port 1883. +1612408440: Sending CONNACK to 172.18.0.3 (0, 5) +1612408440: Socket error on client , disconnecting. +1612408460: New connection from 172.18.0.3 on port 1883. +1612408460: Sending CONNACK to 172.18.0.3 (0, 5) +1612408460: Socket error on client , disconnecting. +1612408480: New connection from 172.18.0.3 on port 1883. +1612408480: Sending CONNACK to 172.18.0.3 (0, 5) +1612408480: Socket error on client , disconnecting. +1612408500: New connection from 172.18.0.3 on port 1883. +1612408500: Sending CONNACK to 172.18.0.3 (0, 5) +1612408500: Socket error on client , disconnecting. +1612408520: New connection from 172.18.0.3 on port 1883. +1612408520: Sending CONNACK to 172.18.0.3 (0, 5) +1612408520: Socket error on client , disconnecting. +1612408540: New connection from 172.18.0.3 on port 1883. +1612408540: Sending CONNACK to 172.18.0.3 (0, 5) +1612408540: Socket error on client , disconnecting. +1612408560: New connection from 172.18.0.3 on port 1883. +1612408560: Sending CONNACK to 172.18.0.3 (0, 5) +1612408560: Socket error on client , disconnecting. +1612408580: New connection from 172.18.0.3 on port 1883. +1612408580: Sending CONNACK to 172.18.0.3 (0, 5) +1612408580: Socket error on client , disconnecting. +1612408596: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612408596: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612408596: Error: Permission denied. +1612408600: New connection from 172.18.0.3 on port 1883. +1612408600: Sending CONNACK to 172.18.0.3 (0, 5) +1612408600: Socket error on client , disconnecting. +1612408620: New connection from 172.18.0.3 on port 1883. +1612408620: Sending CONNACK to 172.18.0.3 (0, 5) +1612408620: Socket error on client , disconnecting. +1612408640: New connection from 172.18.0.3 on port 1883. +1612408640: Sending CONNACK to 172.18.0.3 (0, 5) +1612408640: Socket error on client , disconnecting. +1612408660: New connection from 172.18.0.3 on port 1883. +1612408660: Sending CONNACK to 172.18.0.3 (0, 5) +1612408660: Socket error on client , disconnecting. +1612408680: New connection from 172.18.0.3 on port 1883. +1612408680: Sending CONNACK to 172.18.0.3 (0, 5) +1612408680: Socket error on client , disconnecting. +1612408700: New connection from 172.18.0.3 on port 1883. +1612408700: Sending CONNACK to 172.18.0.3 (0, 5) +1612408700: Socket error on client , disconnecting. +1612408720: New connection from 172.18.0.3 on port 1883. +1612408720: Sending CONNACK to 172.18.0.3 (0, 5) +1612408720: Socket error on client , disconnecting. +1612408740: New connection from 172.18.0.3 on port 1883. +1612408740: Sending CONNACK to 172.18.0.3 (0, 5) +1612408740: Socket error on client , disconnecting. +1612408760: New connection from 172.18.0.3 on port 1883. +1612408760: Sending CONNACK to 172.18.0.3 (0, 5) +1612408760: Socket error on client , disconnecting. +1612408780: New connection from 172.18.0.3 on port 1883. +1612408780: Sending CONNACK to 172.18.0.3 (0, 5) +1612408780: Socket error on client , disconnecting. +1612408800: New connection from 172.18.0.3 on port 1883. +1612408800: Sending CONNACK to 172.18.0.3 (0, 5) +1612408800: Socket error on client , disconnecting. +1612408820: New connection from 172.18.0.3 on port 1883. +1612408820: Sending CONNACK to 172.18.0.3 (0, 5) +1612408820: Socket error on client , disconnecting. +1612408840: New connection from 172.18.0.3 on port 1883. +1612408840: Sending CONNACK to 172.18.0.3 (0, 5) +1612408840: Socket error on client , disconnecting. +1612408860: New connection from 172.18.0.3 on port 1883. +1612408860: Sending CONNACK to 172.18.0.3 (0, 5) +1612408860: Socket error on client , disconnecting. +1612408880: New connection from 172.18.0.3 on port 1883. +1612408880: Sending CONNACK to 172.18.0.3 (0, 5) +1612408880: Socket error on client , disconnecting. +1612408900: New connection from 172.18.0.3 on port 1883. +1612408900: Sending CONNACK to 172.18.0.3 (0, 5) +1612408900: Socket error on client , disconnecting. +1612408920: New connection from 172.18.0.3 on port 1883. +1612408920: Sending CONNACK to 172.18.0.3 (0, 5) +1612408920: Socket error on client , disconnecting. +1612408940: New connection from 172.18.0.3 on port 1883. +1612408940: Sending CONNACK to 172.18.0.3 (0, 5) +1612408940: Socket error on client , disconnecting. +1612408960: New connection from 172.18.0.3 on port 1883. +1612408960: Sending CONNACK to 172.18.0.3 (0, 5) +1612408960: Socket error on client , disconnecting. +1612408980: New connection from 172.18.0.3 on port 1883. +1612408980: Sending CONNACK to 172.18.0.3 (0, 5) +1612408980: Socket error on client , disconnecting. +1612409000: New connection from 172.18.0.3 on port 1883. +1612409000: Sending CONNACK to 172.18.0.3 (0, 5) +1612409000: Socket error on client , disconnecting. +1612409020: New connection from 172.18.0.3 on port 1883. +1612409020: Sending CONNACK to 172.18.0.3 (0, 5) +1612409020: Socket error on client , disconnecting. +1612409040: New connection from 172.18.0.3 on port 1883. +1612409040: Sending CONNACK to 172.18.0.3 (0, 5) +1612409040: Socket error on client , disconnecting. +1612409060: New connection from 172.18.0.3 on port 1883. +1612409060: Sending CONNACK to 172.18.0.3 (0, 5) +1612409060: Socket error on client , disconnecting. +1612409080: New connection from 172.18.0.3 on port 1883. +1612409080: Sending CONNACK to 172.18.0.3 (0, 5) +1612409080: Socket error on client , disconnecting. +1612409100: New connection from 172.18.0.3 on port 1883. +1612409100: Sending CONNACK to 172.18.0.3 (0, 5) +1612409100: Socket error on client , disconnecting. +1612409120: New connection from 172.18.0.3 on port 1883. +1612409120: Sending CONNACK to 172.18.0.3 (0, 5) +1612409120: Socket error on client , disconnecting. +1612409140: New connection from 172.18.0.3 on port 1883. +1612409140: Sending CONNACK to 172.18.0.3 (0, 5) +1612409140: Socket error on client , disconnecting. +1612409160: New connection from 172.18.0.3 on port 1883. +1612409160: Sending CONNACK to 172.18.0.3 (0, 5) +1612409160: Socket error on client , disconnecting. +1612409180: New connection from 172.18.0.3 on port 1883. +1612409180: Sending CONNACK to 172.18.0.3 (0, 5) +1612409180: Socket error on client , disconnecting. +1612409200: New connection from 172.18.0.3 on port 1883. +1612409200: Sending CONNACK to 172.18.0.3 (0, 5) +1612409200: Socket error on client , disconnecting. +1612409220: New connection from 172.18.0.3 on port 1883. +1612409220: Sending CONNACK to 172.18.0.3 (0, 5) +1612409220: Socket error on client , disconnecting. +1612409240: New connection from 172.18.0.3 on port 1883. +1612409240: Sending CONNACK to 172.18.0.3 (0, 5) +1612409240: Socket error on client , disconnecting. +1612409260: New connection from 172.18.0.3 on port 1883. +1612409260: Sending CONNACK to 172.18.0.3 (0, 5) +1612409260: Socket error on client , disconnecting. +1612409280: New connection from 172.18.0.3 on port 1883. +1612409280: Sending CONNACK to 172.18.0.3 (0, 5) +1612409280: Socket error on client , disconnecting. +1612409300: New connection from 172.18.0.3 on port 1883. +1612409300: Sending CONNACK to 172.18.0.3 (0, 5) +1612409300: Socket error on client , disconnecting. +1612409320: New connection from 172.18.0.3 on port 1883. +1612409320: Sending CONNACK to 172.18.0.3 (0, 5) +1612409320: Socket error on client , disconnecting. +1612409340: New connection from 172.18.0.3 on port 1883. +1612409340: Sending CONNACK to 172.18.0.3 (0, 5) +1612409340: Socket error on client , disconnecting. +1612409360: New connection from 172.18.0.3 on port 1883. +1612409360: Sending CONNACK to 172.18.0.3 (0, 5) +1612409360: Socket error on client , disconnecting. +1612409380: New connection from 172.18.0.3 on port 1883. +1612409380: Sending CONNACK to 172.18.0.3 (0, 5) +1612409380: Socket error on client , disconnecting. +1612409400: New connection from 172.18.0.3 on port 1883. +1612409400: Sending CONNACK to 172.18.0.3 (0, 5) +1612409400: Socket error on client , disconnecting. +1612409420: New connection from 172.18.0.3 on port 1883. +1612409420: Sending CONNACK to 172.18.0.3 (0, 5) +1612409420: Socket error on client , disconnecting. +1612409440: New connection from 172.18.0.3 on port 1883. +1612409440: Sending CONNACK to 172.18.0.3 (0, 5) +1612409440: Socket error on client , disconnecting. +1612409460: New connection from 172.18.0.3 on port 1883. +1612409460: Sending CONNACK to 172.18.0.3 (0, 5) +1612409460: Socket error on client , disconnecting. +1612409480: New connection from 172.18.0.3 on port 1883. +1612409480: Sending CONNACK to 172.18.0.3 (0, 5) +1612409480: Socket error on client , disconnecting. +1612409500: New connection from 172.18.0.3 on port 1883. +1612409500: Sending CONNACK to 172.18.0.3 (0, 5) +1612409500: Socket error on client , disconnecting. +1612409520: New connection from 172.18.0.3 on port 1883. +1612409520: Sending CONNACK to 172.18.0.3 (0, 5) +1612409520: Socket error on client , disconnecting. +1612409540: New connection from 172.18.0.3 on port 1883. +1612409540: Sending CONNACK to 172.18.0.3 (0, 5) +1612409540: Socket error on client , disconnecting. +1612409560: New connection from 172.18.0.3 on port 1883. +1612409560: Sending CONNACK to 172.18.0.3 (0, 5) +1612409560: Socket error on client , disconnecting. +1612409580: New connection from 172.18.0.3 on port 1883. +1612409580: Sending CONNACK to 172.18.0.3 (0, 5) +1612409580: Socket error on client , disconnecting. +1612409600: New connection from 172.18.0.3 on port 1883. +1612409600: Sending CONNACK to 172.18.0.3 (0, 5) +1612409600: Socket error on client , disconnecting. +1612409620: New connection from 172.18.0.3 on port 1883. +1612409620: Sending CONNACK to 172.18.0.3 (0, 5) +1612409620: Socket error on client , disconnecting. +1612409640: New connection from 172.18.0.3 on port 1883. +1612409640: Sending CONNACK to 172.18.0.3 (0, 5) +1612409640: Socket error on client , disconnecting. +1612409660: New connection from 172.18.0.3 on port 1883. +1612409660: Sending CONNACK to 172.18.0.3 (0, 5) +1612409660: Socket error on client , disconnecting. +1612409680: New connection from 172.18.0.3 on port 1883. +1612409680: Sending CONNACK to 172.18.0.3 (0, 5) +1612409680: Socket error on client , disconnecting. +1612409700: New connection from 172.18.0.3 on port 1883. +1612409700: Sending CONNACK to 172.18.0.3 (0, 5) +1612409700: Socket error on client , disconnecting. +1612409720: New connection from 172.18.0.3 on port 1883. +1612409720: Sending CONNACK to 172.18.0.3 (0, 5) +1612409720: Socket error on client , disconnecting. +1612409740: New connection from 172.18.0.3 on port 1883. +1612409740: Sending CONNACK to 172.18.0.3 (0, 5) +1612409740: Socket error on client , disconnecting. +1612409760: New connection from 172.18.0.3 on port 1883. +1612409760: Sending CONNACK to 172.18.0.3 (0, 5) +1612409760: Socket error on client , disconnecting. +1612409780: New connection from 172.18.0.3 on port 1883. +1612409780: Sending CONNACK to 172.18.0.3 (0, 5) +1612409780: Socket error on client , disconnecting. +1612409800: New connection from 172.18.0.3 on port 1883. +1612409800: Sending CONNACK to 172.18.0.3 (0, 5) +1612409800: Socket error on client , disconnecting. +1612409820: New connection from 172.18.0.3 on port 1883. +1612409820: Sending CONNACK to 172.18.0.3 (0, 5) +1612409820: Socket error on client , disconnecting. +1612409840: New connection from 172.18.0.3 on port 1883. +1612409840: Sending CONNACK to 172.18.0.3 (0, 5) +1612409840: Socket error on client , disconnecting. +1612409860: New connection from 172.18.0.3 on port 1883. +1612409860: Sending CONNACK to 172.18.0.3 (0, 5) +1612409860: Socket error on client , disconnecting. +1612409880: New connection from 172.18.0.3 on port 1883. +1612409880: Sending CONNACK to 172.18.0.3 (0, 5) +1612409880: Socket error on client , disconnecting. +1612409900: New connection from 172.18.0.3 on port 1883. +1612409900: Sending CONNACK to 172.18.0.3 (0, 5) +1612409900: Socket error on client , disconnecting. +1612409920: New connection from 172.18.0.3 on port 1883. +1612409920: Sending CONNACK to 172.18.0.3 (0, 5) +1612409920: Socket error on client , disconnecting. +1612409940: New connection from 172.18.0.3 on port 1883. +1612409940: Sending CONNACK to 172.18.0.3 (0, 5) +1612409940: Socket error on client , disconnecting. +1612409960: New connection from 172.18.0.3 on port 1883. +1612409960: Sending CONNACK to 172.18.0.3 (0, 5) +1612409960: Socket error on client , disconnecting. +1612409980: New connection from 172.18.0.3 on port 1883. +1612409980: Sending CONNACK to 172.18.0.3 (0, 5) +1612409980: Socket error on client , disconnecting. +1612410000: New connection from 172.18.0.3 on port 1883. +1612410000: Sending CONNACK to 172.18.0.3 (0, 5) +1612410000: Socket error on client , disconnecting. +1612410020: New connection from 172.18.0.3 on port 1883. +1612410020: Sending CONNACK to 172.18.0.3 (0, 5) +1612410020: Socket error on client , disconnecting. +1612410040: New connection from 172.18.0.3 on port 1883. +1612410040: Sending CONNACK to 172.18.0.3 (0, 5) +1612410040: Socket error on client , disconnecting. +1612410060: New connection from 172.18.0.3 on port 1883. +1612410060: Sending CONNACK to 172.18.0.3 (0, 5) +1612410060: Socket error on client , disconnecting. +1612410080: New connection from 172.18.0.3 on port 1883. +1612410080: Sending CONNACK to 172.18.0.3 (0, 5) +1612410080: Socket error on client , disconnecting. +1612410100: New connection from 172.18.0.3 on port 1883. +1612410100: Sending CONNACK to 172.18.0.3 (0, 5) +1612410100: Socket error on client , disconnecting. +1612410120: New connection from 172.18.0.3 on port 1883. +1612410120: Sending CONNACK to 172.18.0.3 (0, 5) +1612410120: Socket error on client , disconnecting. +1612410140: New connection from 172.18.0.3 on port 1883. +1612410140: Sending CONNACK to 172.18.0.3 (0, 5) +1612410140: Socket error on client , disconnecting. +1612410160: New connection from 172.18.0.3 on port 1883. +1612410160: Sending CONNACK to 172.18.0.3 (0, 5) +1612410160: Socket error on client , disconnecting. +1612410180: New connection from 172.18.0.3 on port 1883. +1612410180: Sending CONNACK to 172.18.0.3 (0, 5) +1612410180: Socket error on client , disconnecting. +1612410200: New connection from 172.18.0.3 on port 1883. +1612410200: Sending CONNACK to 172.18.0.3 (0, 5) +1612410200: Socket error on client , disconnecting. +1612410220: New connection from 172.18.0.3 on port 1883. +1612410220: Sending CONNACK to 172.18.0.3 (0, 5) +1612410220: Socket error on client , disconnecting. +1612410240: New connection from 172.18.0.3 on port 1883. +1612410240: Sending CONNACK to 172.18.0.3 (0, 5) +1612410240: Socket error on client , disconnecting. +1612410260: New connection from 172.18.0.3 on port 1883. +1612410260: Sending CONNACK to 172.18.0.3 (0, 5) +1612410260: Socket error on client , disconnecting. +1612410280: New connection from 172.18.0.3 on port 1883. +1612410280: Sending CONNACK to 172.18.0.3 (0, 5) +1612410280: Socket error on client , disconnecting. +1612410300: New connection from 172.18.0.3 on port 1883. +1612410300: Sending CONNACK to 172.18.0.3 (0, 5) +1612410300: Socket error on client , disconnecting. +1612410320: New connection from 172.18.0.3 on port 1883. +1612410320: Sending CONNACK to 172.18.0.3 (0, 5) +1612410320: Socket error on client , disconnecting. +1612410340: New connection from 172.18.0.3 on port 1883. +1612410340: Sending CONNACK to 172.18.0.3 (0, 5) +1612410340: Socket error on client , disconnecting. +1612410360: New connection from 172.18.0.3 on port 1883. +1612410360: Sending CONNACK to 172.18.0.3 (0, 5) +1612410360: Socket error on client , disconnecting. +1612410380: New connection from 172.18.0.3 on port 1883. +1612410380: Sending CONNACK to 172.18.0.3 (0, 5) +1612410380: Socket error on client , disconnecting. +1612410397: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612410397: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612410397: Error: Permission denied. +1612410400: New connection from 172.18.0.3 on port 1883. +1612410400: Sending CONNACK to 172.18.0.3 (0, 5) +1612410400: Socket error on client , disconnecting. +1612410420: New connection from 172.18.0.3 on port 1883. +1612410420: Sending CONNACK to 172.18.0.3 (0, 5) +1612410420: Socket error on client , disconnecting. +1612410440: New connection from 172.18.0.3 on port 1883. +1612410440: Sending CONNACK to 172.18.0.3 (0, 5) +1612410440: Socket error on client , disconnecting. +1612410460: New connection from 172.18.0.3 on port 1883. +1612410460: Sending CONNACK to 172.18.0.3 (0, 5) +1612410460: Socket error on client , disconnecting. +1612410480: New connection from 172.18.0.3 on port 1883. +1612410480: Sending CONNACK to 172.18.0.3 (0, 5) +1612410480: Socket error on client , disconnecting. +1612410500: New connection from 172.18.0.3 on port 1883. +1612410500: Sending CONNACK to 172.18.0.3 (0, 5) +1612410500: Socket error on client , disconnecting. +1612410520: New connection from 172.18.0.3 on port 1883. +1612410520: Sending CONNACK to 172.18.0.3 (0, 5) +1612410520: Socket error on client , disconnecting. +1612410540: New connection from 172.18.0.3 on port 1883. +1612410540: Sending CONNACK to 172.18.0.3 (0, 5) +1612410540: Socket error on client , disconnecting. +1612410560: New connection from 172.18.0.3 on port 1883. +1612410560: Sending CONNACK to 172.18.0.3 (0, 5) +1612410560: Socket error on client , disconnecting. +1612410580: New connection from 172.18.0.3 on port 1883. +1612410580: Sending CONNACK to 172.18.0.3 (0, 5) +1612410580: Socket error on client , disconnecting. +1612410600: New connection from 172.18.0.3 on port 1883. +1612410600: Sending CONNACK to 172.18.0.3 (0, 5) +1612410600: Socket error on client , disconnecting. +1612410620: New connection from 172.18.0.3 on port 1883. +1612410620: Sending CONNACK to 172.18.0.3 (0, 5) +1612410620: Socket error on client , disconnecting. +1612410640: New connection from 172.18.0.3 on port 1883. +1612410640: Sending CONNACK to 172.18.0.3 (0, 5) +1612410640: Socket error on client , disconnecting. +1612410660: New connection from 172.18.0.3 on port 1883. +1612410660: Sending CONNACK to 172.18.0.3 (0, 5) +1612410660: Socket error on client , disconnecting. +1612410680: New connection from 172.18.0.3 on port 1883. +1612410680: Sending CONNACK to 172.18.0.3 (0, 5) +1612410680: Socket error on client , disconnecting. +1612410700: New connection from 172.18.0.3 on port 1883. +1612410700: Sending CONNACK to 172.18.0.3 (0, 5) +1612410700: Socket error on client , disconnecting. +1612410720: New connection from 172.18.0.3 on port 1883. +1612410720: Sending CONNACK to 172.18.0.3 (0, 5) +1612410720: Socket error on client , disconnecting. +1612410740: New connection from 172.18.0.3 on port 1883. +1612410740: Sending CONNACK to 172.18.0.3 (0, 5) +1612410740: Socket error on client , disconnecting. +1612410760: New connection from 172.18.0.3 on port 1883. +1612410760: Sending CONNACK to 172.18.0.3 (0, 5) +1612410760: Socket error on client , disconnecting. +1612410780: New connection from 172.18.0.3 on port 1883. +1612410780: Sending CONNACK to 172.18.0.3 (0, 5) +1612410780: Socket error on client , disconnecting. +1612410800: New connection from 172.18.0.3 on port 1883. +1612410800: Sending CONNACK to 172.18.0.3 (0, 5) +1612410800: Socket error on client , disconnecting. +1612410820: New connection from 172.18.0.3 on port 1883. +1612410820: Sending CONNACK to 172.18.0.3 (0, 5) +1612410820: Socket error on client , disconnecting. +1612410840: New connection from 172.18.0.3 on port 1883. +1612410840: Sending CONNACK to 172.18.0.3 (0, 5) +1612410840: Socket error on client , disconnecting. +1612410860: New connection from 172.18.0.3 on port 1883. +1612410860: Sending CONNACK to 172.18.0.3 (0, 5) +1612410860: Socket error on client , disconnecting. +1612410880: New connection from 172.18.0.3 on port 1883. +1612410880: Sending CONNACK to 172.18.0.3 (0, 5) +1612410880: Socket error on client , disconnecting. +1612410900: New connection from 172.18.0.3 on port 1883. +1612410900: Sending CONNACK to 172.18.0.3 (0, 5) +1612410900: Socket error on client , disconnecting. +1612410920: New connection from 172.18.0.3 on port 1883. +1612410920: Sending CONNACK to 172.18.0.3 (0, 5) +1612410920: Socket error on client , disconnecting. +1612410940: New connection from 172.18.0.3 on port 1883. +1612410940: Sending CONNACK to 172.18.0.3 (0, 5) +1612410940: Socket error on client , disconnecting. +1612410960: New connection from 172.18.0.3 on port 1883. +1612410960: Sending CONNACK to 172.18.0.3 (0, 5) +1612410960: Socket error on client , disconnecting. +1612410980: New connection from 172.18.0.3 on port 1883. +1612410980: Sending CONNACK to 172.18.0.3 (0, 5) +1612410980: Socket error on client , disconnecting. +1612411000: New connection from 172.18.0.3 on port 1883. +1612411000: Sending CONNACK to 172.18.0.3 (0, 5) +1612411000: Socket error on client , disconnecting. +1612411020: New connection from 172.18.0.3 on port 1883. +1612411020: Sending CONNACK to 172.18.0.3 (0, 5) +1612411020: Socket error on client , disconnecting. +1612411040: New connection from 172.18.0.3 on port 1883. +1612411040: Sending CONNACK to 172.18.0.3 (0, 5) +1612411040: Socket error on client , disconnecting. +1612411060: New connection from 172.18.0.3 on port 1883. +1612411060: Sending CONNACK to 172.18.0.3 (0, 5) +1612411060: Socket error on client , disconnecting. +1612411080: New connection from 172.18.0.3 on port 1883. +1612411080: Sending CONNACK to 172.18.0.3 (0, 5) +1612411080: Socket error on client , disconnecting. +1612411100: New connection from 172.18.0.3 on port 1883. +1612411100: Sending CONNACK to 172.18.0.3 (0, 5) +1612411100: Socket error on client , disconnecting. +1612411120: New connection from 172.18.0.3 on port 1883. +1612411120: Sending CONNACK to 172.18.0.3 (0, 5) +1612411120: Socket error on client , disconnecting. +1612411140: New connection from 172.18.0.3 on port 1883. +1612411140: Sending CONNACK to 172.18.0.3 (0, 5) +1612411140: Socket error on client , disconnecting. +1612411160: New connection from 172.18.0.3 on port 1883. +1612411160: Sending CONNACK to 172.18.0.3 (0, 5) +1612411160: Socket error on client , disconnecting. +1612411180: New connection from 172.18.0.3 on port 1883. +1612411180: Sending CONNACK to 172.18.0.3 (0, 5) +1612411180: Socket error on client , disconnecting. +1612411200: New connection from 172.18.0.3 on port 1883. +1612411200: Sending CONNACK to 172.18.0.3 (0, 5) +1612411200: Socket error on client , disconnecting. +1612411220: New connection from 172.18.0.3 on port 1883. +1612411220: Sending CONNACK to 172.18.0.3 (0, 5) +1612411220: Socket error on client , disconnecting. +1612411240: New connection from 172.18.0.3 on port 1883. +1612411240: Sending CONNACK to 172.18.0.3 (0, 5) +1612411240: Socket error on client , disconnecting. +1612411260: New connection from 172.18.0.3 on port 1883. +1612411260: Sending CONNACK to 172.18.0.3 (0, 5) +1612411260: Socket error on client , disconnecting. +1612411280: New connection from 172.18.0.3 on port 1883. +1612411280: Sending CONNACK to 172.18.0.3 (0, 5) +1612411280: Socket error on client , disconnecting. +1612411300: New connection from 172.18.0.3 on port 1883. +1612411300: Sending CONNACK to 172.18.0.3 (0, 5) +1612411300: Socket error on client , disconnecting. +1612411320: New connection from 172.18.0.3 on port 1883. +1612411320: Sending CONNACK to 172.18.0.3 (0, 5) +1612411320: Socket error on client , disconnecting. +1612411340: New connection from 172.18.0.3 on port 1883. +1612411340: Sending CONNACK to 172.18.0.3 (0, 5) +1612411340: Socket error on client , disconnecting. +1612411360: New connection from 172.18.0.3 on port 1883. +1612411360: Sending CONNACK to 172.18.0.3 (0, 5) +1612411360: Socket error on client , disconnecting. +1612411380: New connection from 172.18.0.3 on port 1883. +1612411380: Sending CONNACK to 172.18.0.3 (0, 5) +1612411380: Socket error on client , disconnecting. +1612411400: New connection from 172.18.0.3 on port 1883. +1612411400: Sending CONNACK to 172.18.0.3 (0, 5) +1612411400: Socket error on client , disconnecting. +1612411420: New connection from 172.18.0.3 on port 1883. +1612411420: Sending CONNACK to 172.18.0.3 (0, 5) +1612411420: Socket error on client , disconnecting. +1612411440: New connection from 172.18.0.3 on port 1883. +1612411440: Sending CONNACK to 172.18.0.3 (0, 5) +1612411440: Socket error on client , disconnecting. +1612411460: New connection from 172.18.0.3 on port 1883. +1612411460: Sending CONNACK to 172.18.0.3 (0, 5) +1612411460: Socket error on client , disconnecting. +1612411480: New connection from 172.18.0.3 on port 1883. +1612411480: Sending CONNACK to 172.18.0.3 (0, 5) +1612411480: Socket error on client , disconnecting. +1612411500: New connection from 172.18.0.3 on port 1883. +1612411500: Sending CONNACK to 172.18.0.3 (0, 5) +1612411500: Socket error on client , disconnecting. +1612411520: New connection from 172.18.0.3 on port 1883. +1612411520: Sending CONNACK to 172.18.0.3 (0, 5) +1612411520: Socket error on client , disconnecting. +1612411540: New connection from 172.18.0.3 on port 1883. +1612411540: Sending CONNACK to 172.18.0.3 (0, 5) +1612411540: Socket error on client , disconnecting. +1612411560: New connection from 172.18.0.3 on port 1883. +1612411560: Sending CONNACK to 172.18.0.3 (0, 5) +1612411560: Socket error on client , disconnecting. +1612411580: New connection from 172.18.0.3 on port 1883. +1612411580: Sending CONNACK to 172.18.0.3 (0, 5) +1612411580: Socket error on client , disconnecting. +1612411600: New connection from 172.18.0.3 on port 1883. +1612411600: Sending CONNACK to 172.18.0.3 (0, 5) +1612411600: Socket error on client , disconnecting. +1612411620: New connection from 172.18.0.3 on port 1883. +1612411620: Sending CONNACK to 172.18.0.3 (0, 5) +1612411620: Socket error on client , disconnecting. +1612411640: New connection from 172.18.0.3 on port 1883. +1612411640: Sending CONNACK to 172.18.0.3 (0, 5) +1612411640: Socket error on client , disconnecting. +1612411660: New connection from 172.18.0.3 on port 1883. +1612411660: Sending CONNACK to 172.18.0.3 (0, 5) +1612411660: Socket error on client , disconnecting. +1612411680: New connection from 172.18.0.3 on port 1883. +1612411680: Sending CONNACK to 172.18.0.3 (0, 5) +1612411680: Socket error on client , disconnecting. +1612411700: New connection from 172.18.0.3 on port 1883. +1612411700: Sending CONNACK to 172.18.0.3 (0, 5) +1612411700: Socket error on client , disconnecting. +1612411720: New connection from 172.18.0.3 on port 1883. +1612411720: Sending CONNACK to 172.18.0.3 (0, 5) +1612411720: Socket error on client , disconnecting. +1612411740: New connection from 172.18.0.3 on port 1883. +1612411740: Sending CONNACK to 172.18.0.3 (0, 5) +1612411740: Socket error on client , disconnecting. +1612411760: New connection from 172.18.0.3 on port 1883. +1612411760: Sending CONNACK to 172.18.0.3 (0, 5) +1612411760: Socket error on client , disconnecting. +1612411780: New connection from 172.18.0.3 on port 1883. +1612411780: Sending CONNACK to 172.18.0.3 (0, 5) +1612411780: Socket error on client , disconnecting. +1612411800: New connection from 172.18.0.3 on port 1883. +1612411800: Sending CONNACK to 172.18.0.3 (0, 5) +1612411800: Socket error on client , disconnecting. +1612411820: New connection from 172.18.0.3 on port 1883. +1612411820: Sending CONNACK to 172.18.0.3 (0, 5) +1612411820: Socket error on client , disconnecting. +1612411840: New connection from 172.18.0.3 on port 1883. +1612411840: Sending CONNACK to 172.18.0.3 (0, 5) +1612411840: Socket error on client , disconnecting. +1612411860: New connection from 172.18.0.3 on port 1883. +1612411860: Sending CONNACK to 172.18.0.3 (0, 5) +1612411860: Socket error on client , disconnecting. +1612411880: New connection from 172.18.0.3 on port 1883. +1612411880: Sending CONNACK to 172.18.0.3 (0, 5) +1612411880: Socket error on client , disconnecting. +1612411900: New connection from 172.18.0.3 on port 1883. +1612411900: Sending CONNACK to 172.18.0.3 (0, 5) +1612411900: Socket error on client , disconnecting. +1612411920: New connection from 172.18.0.3 on port 1883. +1612411920: Sending CONNACK to 172.18.0.3 (0, 5) +1612411920: Socket error on client , disconnecting. +1612411940: New connection from 172.18.0.3 on port 1883. +1612411940: Sending CONNACK to 172.18.0.3 (0, 5) +1612411940: Socket error on client , disconnecting. +1612411960: New connection from 172.18.0.3 on port 1883. +1612411960: Sending CONNACK to 172.18.0.3 (0, 5) +1612411960: Socket error on client , disconnecting. +1612411980: New connection from 172.18.0.3 on port 1883. +1612411980: Sending CONNACK to 172.18.0.3 (0, 5) +1612411980: Socket error on client , disconnecting. +1612412000: New connection from 172.18.0.3 on port 1883. +1612412000: Sending CONNACK to 172.18.0.3 (0, 5) +1612412000: Socket error on client , disconnecting. +1612412020: New connection from 172.18.0.3 on port 1883. +1612412020: Sending CONNACK to 172.18.0.3 (0, 5) +1612412020: Socket error on client , disconnecting. +1612412040: New connection from 172.18.0.3 on port 1883. +1612412040: Sending CONNACK to 172.18.0.3 (0, 5) +1612412040: Socket error on client , disconnecting. +1612412060: New connection from 172.18.0.3 on port 1883. +1612412060: Sending CONNACK to 172.18.0.3 (0, 5) +1612412060: Socket error on client , disconnecting. +1612412080: New connection from 172.18.0.3 on port 1883. +1612412080: Sending CONNACK to 172.18.0.3 (0, 5) +1612412080: Socket error on client , disconnecting. +1612412100: New connection from 172.18.0.3 on port 1883. +1612412100: Sending CONNACK to 172.18.0.3 (0, 5) +1612412100: Socket error on client , disconnecting. +1612412120: New connection from 172.18.0.3 on port 1883. +1612412120: Sending CONNACK to 172.18.0.3 (0, 5) +1612412120: Socket error on client , disconnecting. +1612412140: New connection from 172.18.0.3 on port 1883. +1612412140: Sending CONNACK to 172.18.0.3 (0, 5) +1612412140: Socket error on client , disconnecting. +1612412160: New connection from 172.18.0.3 on port 1883. +1612412160: Sending CONNACK to 172.18.0.3 (0, 5) +1612412160: Socket error on client , disconnecting. +1612412180: New connection from 172.18.0.3 on port 1883. +1612412180: Sending CONNACK to 172.18.0.3 (0, 5) +1612412180: Socket error on client , disconnecting. +1612412198: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612412198: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612412198: Error: Permission denied. +1612412200: New connection from 172.18.0.3 on port 1883. +1612412200: Sending CONNACK to 172.18.0.3 (0, 5) +1612412200: Socket error on client , disconnecting. +1612412220: New connection from 172.18.0.3 on port 1883. +1612412220: Sending CONNACK to 172.18.0.3 (0, 5) +1612412220: Socket error on client , disconnecting. +1612412240: New connection from 172.18.0.3 on port 1883. +1612412240: Sending CONNACK to 172.18.0.3 (0, 5) +1612412240: Socket error on client , disconnecting. +1612412260: New connection from 172.18.0.3 on port 1883. +1612412260: Sending CONNACK to 172.18.0.3 (0, 5) +1612412260: Socket error on client , disconnecting. +1612412280: New connection from 172.18.0.3 on port 1883. +1612412280: Sending CONNACK to 172.18.0.3 (0, 5) +1612412280: Socket error on client , disconnecting. +1612412300: New connection from 172.18.0.3 on port 1883. +1612412300: Sending CONNACK to 172.18.0.3 (0, 5) +1612412300: Socket error on client , disconnecting. +1612412320: New connection from 172.18.0.3 on port 1883. +1612412320: Sending CONNACK to 172.18.0.3 (0, 5) +1612412320: Socket error on client , disconnecting. +1612412340: New connection from 172.18.0.3 on port 1883. +1612412340: Sending CONNACK to 172.18.0.3 (0, 5) +1612412340: Socket error on client , disconnecting. +1612412360: New connection from 172.18.0.3 on port 1883. +1612412360: Sending CONNACK to 172.18.0.3 (0, 5) +1612412360: Socket error on client , disconnecting. +1612412380: New connection from 172.18.0.3 on port 1883. +1612412380: Sending CONNACK to 172.18.0.3 (0, 5) +1612412380: Socket error on client , disconnecting. +1612412400: New connection from 172.18.0.3 on port 1883. +1612412400: Sending CONNACK to 172.18.0.3 (0, 5) +1612412400: Socket error on client , disconnecting. +1612412420: New connection from 172.18.0.3 on port 1883. +1612412420: Sending CONNACK to 172.18.0.3 (0, 5) +1612412420: Socket error on client , disconnecting. +1612412440: New connection from 172.18.0.3 on port 1883. +1612412440: Sending CONNACK to 172.18.0.3 (0, 5) +1612412440: Socket error on client , disconnecting. +1612412460: New connection from 172.18.0.3 on port 1883. +1612412460: Sending CONNACK to 172.18.0.3 (0, 5) +1612412460: Socket error on client , disconnecting. +1612412480: New connection from 172.18.0.3 on port 1883. +1612412480: Sending CONNACK to 172.18.0.3 (0, 5) +1612412480: Socket error on client , disconnecting. +1612412500: New connection from 172.18.0.3 on port 1883. +1612412500: Sending CONNACK to 172.18.0.3 (0, 5) +1612412500: Socket error on client , disconnecting. +1612412520: New connection from 172.18.0.3 on port 1883. +1612412520: Sending CONNACK to 172.18.0.3 (0, 5) +1612412520: Socket error on client , disconnecting. +1612412540: New connection from 172.18.0.3 on port 1883. +1612412540: Sending CONNACK to 172.18.0.3 (0, 5) +1612412540: Socket error on client , disconnecting. +1612412560: New connection from 172.18.0.3 on port 1883. +1612412560: Sending CONNACK to 172.18.0.3 (0, 5) +1612412560: Socket error on client , disconnecting. +1612412580: New connection from 172.18.0.3 on port 1883. +1612412580: Sending CONNACK to 172.18.0.3 (0, 5) +1612412580: Socket error on client , disconnecting. +1612412600: New connection from 172.18.0.3 on port 1883. +1612412600: Sending CONNACK to 172.18.0.3 (0, 5) +1612412600: Socket error on client , disconnecting. +1612412620: New connection from 172.18.0.3 on port 1883. +1612412620: Sending CONNACK to 172.18.0.3 (0, 5) +1612412620: Socket error on client , disconnecting. +1612412640: New connection from 172.18.0.3 on port 1883. +1612412640: Sending CONNACK to 172.18.0.3 (0, 5) +1612412640: Socket error on client , disconnecting. +1612412660: New connection from 172.18.0.3 on port 1883. +1612412660: Sending CONNACK to 172.18.0.3 (0, 5) +1612412660: Socket error on client , disconnecting. +1612412680: New connection from 172.18.0.3 on port 1883. +1612412680: Sending CONNACK to 172.18.0.3 (0, 5) +1612412680: Socket error on client , disconnecting. +1612412700: New connection from 172.18.0.3 on port 1883. +1612412700: Sending CONNACK to 172.18.0.3 (0, 5) +1612412700: Socket error on client , disconnecting. +1612412720: New connection from 172.18.0.3 on port 1883. +1612412720: Sending CONNACK to 172.18.0.3 (0, 5) +1612412720: Socket error on client , disconnecting. +1612412740: New connection from 172.18.0.3 on port 1883. +1612412740: Sending CONNACK to 172.18.0.3 (0, 5) +1612412740: Socket error on client , disconnecting. +1612412760: New connection from 172.18.0.3 on port 1883. +1612412760: Sending CONNACK to 172.18.0.3 (0, 5) +1612412760: Socket error on client , disconnecting. +1612412780: New connection from 172.18.0.3 on port 1883. +1612412780: Sending CONNACK to 172.18.0.3 (0, 5) +1612412780: Socket error on client , disconnecting. +1612412800: New connection from 172.18.0.3 on port 1883. +1612412800: Sending CONNACK to 172.18.0.3 (0, 5) +1612412800: Socket error on client , disconnecting. +1612412820: New connection from 172.18.0.3 on port 1883. +1612412820: Sending CONNACK to 172.18.0.3 (0, 5) +1612412820: Socket error on client , disconnecting. +1612412840: New connection from 172.18.0.3 on port 1883. +1612412840: Sending CONNACK to 172.18.0.3 (0, 5) +1612412840: Socket error on client , disconnecting. +1612412860: New connection from 172.18.0.3 on port 1883. +1612412860: Sending CONNACK to 172.18.0.3 (0, 5) +1612412860: Socket error on client , disconnecting. +1612412880: New connection from 172.18.0.3 on port 1883. +1612412880: Sending CONNACK to 172.18.0.3 (0, 5) +1612412880: Socket error on client , disconnecting. +1612412900: New connection from 172.18.0.3 on port 1883. +1612412900: Sending CONNACK to 172.18.0.3 (0, 5) +1612412900: Socket error on client , disconnecting. +1612412920: New connection from 172.18.0.3 on port 1883. +1612412920: Sending CONNACK to 172.18.0.3 (0, 5) +1612412920: Socket error on client , disconnecting. +1612412940: New connection from 172.18.0.3 on port 1883. +1612412940: Sending CONNACK to 172.18.0.3 (0, 5) +1612412940: Socket error on client , disconnecting. +1612412960: New connection from 172.18.0.3 on port 1883. +1612412960: Sending CONNACK to 172.18.0.3 (0, 5) +1612412960: Socket error on client , disconnecting. +1612412980: New connection from 172.18.0.3 on port 1883. +1612412980: Sending CONNACK to 172.18.0.3 (0, 5) +1612412980: Socket error on client , disconnecting. +1612413000: New connection from 172.18.0.3 on port 1883. +1612413000: Sending CONNACK to 172.18.0.3 (0, 5) +1612413000: Socket error on client , disconnecting. +1612413020: New connection from 172.18.0.3 on port 1883. +1612413020: Sending CONNACK to 172.18.0.3 (0, 5) +1612413020: Socket error on client , disconnecting. +1612413040: New connection from 172.18.0.3 on port 1883. +1612413040: Sending CONNACK to 172.18.0.3 (0, 5) +1612413040: Socket error on client , disconnecting. +1612413060: New connection from 172.18.0.3 on port 1883. +1612413060: Sending CONNACK to 172.18.0.3 (0, 5) +1612413060: Socket error on client , disconnecting. +1612413080: New connection from 172.18.0.3 on port 1883. +1612413080: Sending CONNACK to 172.18.0.3 (0, 5) +1612413080: Socket error on client , disconnecting. +1612413100: New connection from 172.18.0.3 on port 1883. +1612413100: Sending CONNACK to 172.18.0.3 (0, 5) +1612413100: Socket error on client , disconnecting. +1612413120: New connection from 172.18.0.3 on port 1883. +1612413120: Sending CONNACK to 172.18.0.3 (0, 5) +1612413120: Socket error on client , disconnecting. +1612413140: New connection from 172.18.0.3 on port 1883. +1612413140: Sending CONNACK to 172.18.0.3 (0, 5) +1612413140: Socket error on client , disconnecting. +1612413160: New connection from 172.18.0.3 on port 1883. +1612413160: Sending CONNACK to 172.18.0.3 (0, 5) +1612413160: Socket error on client , disconnecting. +1612413180: New connection from 172.18.0.3 on port 1883. +1612413180: Sending CONNACK to 172.18.0.3 (0, 5) +1612413180: Socket error on client , disconnecting. +1612413200: New connection from 172.18.0.3 on port 1883. +1612413200: Sending CONNACK to 172.18.0.3 (0, 5) +1612413200: Socket error on client , disconnecting. +1612413220: New connection from 172.18.0.3 on port 1883. +1612413220: Sending CONNACK to 172.18.0.3 (0, 5) +1612413220: Socket error on client , disconnecting. +1612413240: New connection from 172.18.0.3 on port 1883. +1612413240: Sending CONNACK to 172.18.0.3 (0, 5) +1612413240: Socket error on client , disconnecting. +1612413260: New connection from 172.18.0.3 on port 1883. +1612413260: Sending CONNACK to 172.18.0.3 (0, 5) +1612413260: Socket error on client , disconnecting. +1612413280: New connection from 172.18.0.3 on port 1883. +1612413280: Sending CONNACK to 172.18.0.3 (0, 5) +1612413280: Socket error on client , disconnecting. +1612413300: New connection from 172.18.0.3 on port 1883. +1612413300: Sending CONNACK to 172.18.0.3 (0, 5) +1612413300: Socket error on client , disconnecting. +1612413320: New connection from 172.18.0.3 on port 1883. +1612413320: Sending CONNACK to 172.18.0.3 (0, 5) +1612413320: Socket error on client , disconnecting. +1612413340: New connection from 172.18.0.3 on port 1883. +1612413340: Sending CONNACK to 172.18.0.3 (0, 5) +1612413340: Socket error on client , disconnecting. +1612413360: New connection from 172.18.0.3 on port 1883. +1612413360: Sending CONNACK to 172.18.0.3 (0, 5) +1612413360: Socket error on client , disconnecting. +1612413380: New connection from 172.18.0.3 on port 1883. +1612413380: Sending CONNACK to 172.18.0.3 (0, 5) +1612413380: Socket error on client , disconnecting. +1612413400: New connection from 172.18.0.3 on port 1883. +1612413400: Sending CONNACK to 172.18.0.3 (0, 5) +1612413400: Socket error on client , disconnecting. +1612413420: New connection from 172.18.0.3 on port 1883. +1612413420: Sending CONNACK to 172.18.0.3 (0, 5) +1612413420: Socket error on client , disconnecting. +1612413440: New connection from 172.18.0.3 on port 1883. +1612413440: Sending CONNACK to 172.18.0.3 (0, 5) +1612413440: Socket error on client , disconnecting. +1612413460: New connection from 172.18.0.3 on port 1883. +1612413460: Sending CONNACK to 172.18.0.3 (0, 5) +1612413460: Socket error on client , disconnecting. +1612413480: New connection from 172.18.0.3 on port 1883. +1612413480: Sending CONNACK to 172.18.0.3 (0, 5) +1612413480: Socket error on client , disconnecting. +1612413500: New connection from 172.18.0.3 on port 1883. +1612413500: Sending CONNACK to 172.18.0.3 (0, 5) +1612413500: Socket error on client , disconnecting. +1612413520: New connection from 172.18.0.3 on port 1883. +1612413520: Sending CONNACK to 172.18.0.3 (0, 5) +1612413520: Socket error on client , disconnecting. +1612413540: New connection from 172.18.0.3 on port 1883. +1612413540: Sending CONNACK to 172.18.0.3 (0, 5) +1612413540: Socket error on client , disconnecting. +1612413560: New connection from 172.18.0.3 on port 1883. +1612413560: Sending CONNACK to 172.18.0.3 (0, 5) +1612413560: Socket error on client , disconnecting. +1612413580: New connection from 172.18.0.3 on port 1883. +1612413580: Sending CONNACK to 172.18.0.3 (0, 5) +1612413580: Socket error on client , disconnecting. +1612413600: New connection from 172.18.0.3 on port 1883. +1612413600: Sending CONNACK to 172.18.0.3 (0, 5) +1612413600: Socket error on client , disconnecting. +1612413620: New connection from 172.18.0.3 on port 1883. +1612413620: Sending CONNACK to 172.18.0.3 (0, 5) +1612413620: Socket error on client , disconnecting. +1612413640: New connection from 172.18.0.3 on port 1883. +1612413640: Sending CONNACK to 172.18.0.3 (0, 5) +1612413640: Socket error on client , disconnecting. +1612413660: New connection from 172.18.0.3 on port 1883. +1612413660: Sending CONNACK to 172.18.0.3 (0, 5) +1612413660: Socket error on client , disconnecting. +1612413680: New connection from 172.18.0.3 on port 1883. +1612413680: Sending CONNACK to 172.18.0.3 (0, 5) +1612413680: Socket error on client , disconnecting. +1612413700: New connection from 172.18.0.3 on port 1883. +1612413700: Sending CONNACK to 172.18.0.3 (0, 5) +1612413700: Socket error on client , disconnecting. +1612413720: New connection from 172.18.0.3 on port 1883. +1612413720: Sending CONNACK to 172.18.0.3 (0, 5) +1612413720: Socket error on client , disconnecting. +1612413740: New connection from 172.18.0.3 on port 1883. +1612413740: Sending CONNACK to 172.18.0.3 (0, 5) +1612413740: Socket error on client , disconnecting. +1612413760: New connection from 172.18.0.3 on port 1883. +1612413760: Sending CONNACK to 172.18.0.3 (0, 5) +1612413760: Socket error on client , disconnecting. +1612413780: New connection from 172.18.0.3 on port 1883. +1612413780: Sending CONNACK to 172.18.0.3 (0, 5) +1612413780: Socket error on client , disconnecting. +1612413800: New connection from 172.18.0.3 on port 1883. +1612413800: Sending CONNACK to 172.18.0.3 (0, 5) +1612413800: Socket error on client , disconnecting. +1612413820: New connection from 172.18.0.3 on port 1883. +1612413820: Sending CONNACK to 172.18.0.3 (0, 5) +1612413820: Socket error on client , disconnecting. +1612413840: New connection from 172.18.0.3 on port 1883. +1612413840: Sending CONNACK to 172.18.0.3 (0, 5) +1612413840: Socket error on client , disconnecting. +1612413860: New connection from 172.18.0.3 on port 1883. +1612413860: Sending CONNACK to 172.18.0.3 (0, 5) +1612413860: Socket error on client , disconnecting. +1612413880: New connection from 172.18.0.3 on port 1883. +1612413880: Sending CONNACK to 172.18.0.3 (0, 5) +1612413880: Socket error on client , disconnecting. +1612413900: New connection from 172.18.0.3 on port 1883. +1612413900: Sending CONNACK to 172.18.0.3 (0, 5) +1612413900: Socket error on client , disconnecting. +1612413920: New connection from 172.18.0.3 on port 1883. +1612413920: Sending CONNACK to 172.18.0.3 (0, 5) +1612413920: Socket error on client , disconnecting. +1612413940: New connection from 172.18.0.3 on port 1883. +1612413940: Sending CONNACK to 172.18.0.3 (0, 5) +1612413940: Socket error on client , disconnecting. +1612413960: New connection from 172.18.0.3 on port 1883. +1612413960: Sending CONNACK to 172.18.0.3 (0, 5) +1612413960: Socket error on client , disconnecting. +1612413980: New connection from 172.18.0.3 on port 1883. +1612413980: Sending CONNACK to 172.18.0.3 (0, 5) +1612413980: Socket error on client , disconnecting. +1612413999: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612413999: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612413999: Error: Permission denied. +1612414000: New connection from 172.18.0.3 on port 1883. +1612414000: Sending CONNACK to 172.18.0.3 (0, 5) +1612414000: Socket error on client , disconnecting. +1612414020: New connection from 172.18.0.3 on port 1883. +1612414020: Sending CONNACK to 172.18.0.3 (0, 5) +1612414020: Socket error on client , disconnecting. +1612414040: New connection from 172.18.0.3 on port 1883. +1612414040: Sending CONNACK to 172.18.0.3 (0, 5) +1612414040: Socket error on client , disconnecting. +1612414060: New connection from 172.18.0.3 on port 1883. +1612414060: Sending CONNACK to 172.18.0.3 (0, 5) +1612414060: Socket error on client , disconnecting. +1612414080: New connection from 172.18.0.3 on port 1883. +1612414080: Sending CONNACK to 172.18.0.3 (0, 5) +1612414080: Socket error on client , disconnecting. +1612414100: New connection from 172.18.0.3 on port 1883. +1612414100: Sending CONNACK to 172.18.0.3 (0, 5) +1612414100: Socket error on client , disconnecting. +1612414120: New connection from 172.18.0.3 on port 1883. +1612414120: Sending CONNACK to 172.18.0.3 (0, 5) +1612414120: Socket error on client , disconnecting. +1612414140: New connection from 172.18.0.3 on port 1883. +1612414140: Sending CONNACK to 172.18.0.3 (0, 5) +1612414140: Socket error on client , disconnecting. +1612414160: New connection from 172.18.0.3 on port 1883. +1612414160: Sending CONNACK to 172.18.0.3 (0, 5) +1612414160: Socket error on client , disconnecting. +1612414180: New connection from 172.18.0.3 on port 1883. +1612414180: Sending CONNACK to 172.18.0.3 (0, 5) +1612414180: Socket error on client , disconnecting. +1612414200: New connection from 172.18.0.3 on port 1883. +1612414200: Sending CONNACK to 172.18.0.3 (0, 5) +1612414200: Socket error on client , disconnecting. +1612414220: New connection from 172.18.0.3 on port 1883. +1612414220: Sending CONNACK to 172.18.0.3 (0, 5) +1612414220: Socket error on client , disconnecting. +1612414240: New connection from 172.18.0.3 on port 1883. +1612414240: Sending CONNACK to 172.18.0.3 (0, 5) +1612414240: Socket error on client , disconnecting. +1612414260: New connection from 172.18.0.3 on port 1883. +1612414260: Sending CONNACK to 172.18.0.3 (0, 5) +1612414260: Socket error on client , disconnecting. +1612414280: New connection from 172.18.0.3 on port 1883. +1612414280: Sending CONNACK to 172.18.0.3 (0, 5) +1612414280: Socket error on client , disconnecting. +1612414300: New connection from 172.18.0.3 on port 1883. +1612414300: Sending CONNACK to 172.18.0.3 (0, 5) +1612414300: Socket error on client , disconnecting. +1612414320: New connection from 172.18.0.3 on port 1883. +1612414320: Sending CONNACK to 172.18.0.3 (0, 5) +1612414320: Socket error on client , disconnecting. +1612414340: New connection from 172.18.0.3 on port 1883. +1612414340: Sending CONNACK to 172.18.0.3 (0, 5) +1612414340: Socket error on client , disconnecting. +1612414360: New connection from 172.18.0.3 on port 1883. +1612414360: Sending CONNACK to 172.18.0.3 (0, 5) +1612414360: Socket error on client , disconnecting. +1612414380: New connection from 172.18.0.3 on port 1883. +1612414380: Sending CONNACK to 172.18.0.3 (0, 5) +1612414380: Socket error on client , disconnecting. +1612414400: New connection from 172.18.0.3 on port 1883. +1612414400: Sending CONNACK to 172.18.0.3 (0, 5) +1612414400: Socket error on client , disconnecting. +1612414420: New connection from 172.18.0.3 on port 1883. +1612414420: Sending CONNACK to 172.18.0.3 (0, 5) +1612414420: Socket error on client , disconnecting. +1612414440: New connection from 172.18.0.3 on port 1883. +1612414440: Sending CONNACK to 172.18.0.3 (0, 5) +1612414440: Socket error on client , disconnecting. +1612414460: New connection from 172.18.0.3 on port 1883. +1612414460: Sending CONNACK to 172.18.0.3 (0, 5) +1612414460: Socket error on client , disconnecting. +1612414480: New connection from 172.18.0.3 on port 1883. +1612414480: Sending CONNACK to 172.18.0.3 (0, 5) +1612414480: Socket error on client , disconnecting. +1612414500: New connection from 172.18.0.3 on port 1883. +1612414500: Sending CONNACK to 172.18.0.3 (0, 5) +1612414500: Socket error on client , disconnecting. +1612414520: New connection from 172.18.0.3 on port 1883. +1612414520: Sending CONNACK to 172.18.0.3 (0, 5) +1612414520: Socket error on client , disconnecting. +1612414540: New connection from 172.18.0.3 on port 1883. +1612414540: Sending CONNACK to 172.18.0.3 (0, 5) +1612414540: Socket error on client , disconnecting. +1612414560: New connection from 172.18.0.3 on port 1883. +1612414560: Sending CONNACK to 172.18.0.3 (0, 5) +1612414560: Socket error on client , disconnecting. +1612414580: New connection from 172.18.0.3 on port 1883. +1612414580: Sending CONNACK to 172.18.0.3 (0, 5) +1612414580: Socket error on client , disconnecting. +1612414600: New connection from 172.18.0.3 on port 1883. +1612414600: Sending CONNACK to 172.18.0.3 (0, 5) +1612414600: Socket error on client , disconnecting. +1612414620: New connection from 172.18.0.3 on port 1883. +1612414620: Sending CONNACK to 172.18.0.3 (0, 5) +1612414620: Socket error on client , disconnecting. +1612414640: New connection from 172.18.0.3 on port 1883. +1612414640: Sending CONNACK to 172.18.0.3 (0, 5) +1612414640: Socket error on client , disconnecting. +1612414660: New connection from 172.18.0.3 on port 1883. +1612414660: Sending CONNACK to 172.18.0.3 (0, 5) +1612414660: Socket error on client , disconnecting. +1612414680: New connection from 172.18.0.3 on port 1883. +1612414680: Sending CONNACK to 172.18.0.3 (0, 5) +1612414680: Socket error on client , disconnecting. +1612414700: New connection from 172.18.0.3 on port 1883. +1612414700: Sending CONNACK to 172.18.0.3 (0, 5) +1612414700: Socket error on client , disconnecting. +1612414720: New connection from 172.18.0.3 on port 1883. +1612414720: Sending CONNACK to 172.18.0.3 (0, 5) +1612414720: Socket error on client , disconnecting. +1612414740: New connection from 172.18.0.3 on port 1883. +1612414740: Sending CONNACK to 172.18.0.3 (0, 5) +1612414740: Socket error on client , disconnecting. +1612414760: New connection from 172.18.0.3 on port 1883. +1612414760: Sending CONNACK to 172.18.0.3 (0, 5) +1612414760: Socket error on client , disconnecting. +1612414780: New connection from 172.18.0.3 on port 1883. +1612414780: Sending CONNACK to 172.18.0.3 (0, 5) +1612414780: Socket error on client , disconnecting. +1612414800: New connection from 172.18.0.3 on port 1883. +1612414800: Sending CONNACK to 172.18.0.3 (0, 5) +1612414800: Socket error on client , disconnecting. +1612414820: New connection from 172.18.0.3 on port 1883. +1612414820: Sending CONNACK to 172.18.0.3 (0, 5) +1612414820: Socket error on client , disconnecting. +1612414840: New connection from 172.18.0.3 on port 1883. +1612414840: Sending CONNACK to 172.18.0.3 (0, 5) +1612414840: Socket error on client , disconnecting. +1612414860: New connection from 172.18.0.3 on port 1883. +1612414860: Sending CONNACK to 172.18.0.3 (0, 5) +1612414860: Socket error on client , disconnecting. +1612414880: New connection from 172.18.0.3 on port 1883. +1612414880: Sending CONNACK to 172.18.0.3 (0, 5) +1612414880: Socket error on client , disconnecting. +1612414900: New connection from 172.18.0.3 on port 1883. +1612414900: Sending CONNACK to 172.18.0.3 (0, 5) +1612414900: Socket error on client , disconnecting. +1612414920: New connection from 172.18.0.3 on port 1883. +1612414920: Sending CONNACK to 172.18.0.3 (0, 5) +1612414920: Socket error on client , disconnecting. +1612414940: New connection from 172.18.0.3 on port 1883. +1612414940: Sending CONNACK to 172.18.0.3 (0, 5) +1612414940: Socket error on client , disconnecting. +1612414960: New connection from 172.18.0.3 on port 1883. +1612414960: Sending CONNACK to 172.18.0.3 (0, 5) +1612414960: Socket error on client , disconnecting. +1612414980: New connection from 172.18.0.3 on port 1883. +1612414980: Sending CONNACK to 172.18.0.3 (0, 5) +1612414980: Socket error on client , disconnecting. +1612415000: New connection from 172.18.0.3 on port 1883. +1612415000: Sending CONNACK to 172.18.0.3 (0, 5) +1612415000: Socket error on client , disconnecting. +1612415020: New connection from 172.18.0.3 on port 1883. +1612415020: Sending CONNACK to 172.18.0.3 (0, 5) +1612415020: Socket error on client , disconnecting. +1612415040: New connection from 172.18.0.3 on port 1883. +1612415040: Sending CONNACK to 172.18.0.3 (0, 5) +1612415040: Socket error on client , disconnecting. +1612415060: New connection from 172.18.0.3 on port 1883. +1612415060: Sending CONNACK to 172.18.0.3 (0, 5) +1612415060: Socket error on client , disconnecting. +1612415080: New connection from 172.18.0.3 on port 1883. +1612415080: Sending CONNACK to 172.18.0.3 (0, 5) +1612415080: Socket error on client , disconnecting. +1612415100: New connection from 172.18.0.3 on port 1883. +1612415100: Sending CONNACK to 172.18.0.3 (0, 5) +1612415100: Socket error on client , disconnecting. +1612415120: New connection from 172.18.0.3 on port 1883. +1612415120: Sending CONNACK to 172.18.0.3 (0, 5) +1612415120: Socket error on client , disconnecting. +1612415140: New connection from 172.18.0.3 on port 1883. +1612415140: Sending CONNACK to 172.18.0.3 (0, 5) +1612415140: Socket error on client , disconnecting. +1612415160: New connection from 172.18.0.3 on port 1883. +1612415160: Sending CONNACK to 172.18.0.3 (0, 5) +1612415160: Socket error on client , disconnecting. +1612415180: New connection from 172.18.0.3 on port 1883. +1612415180: Sending CONNACK to 172.18.0.3 (0, 5) +1612415180: Socket error on client , disconnecting. +1612415200: New connection from 172.18.0.3 on port 1883. +1612415200: Sending CONNACK to 172.18.0.3 (0, 5) +1612415200: Socket error on client , disconnecting. +1612415220: New connection from 172.18.0.3 on port 1883. +1612415220: Sending CONNACK to 172.18.0.3 (0, 5) +1612415220: Socket error on client , disconnecting. +1612415240: New connection from 172.18.0.3 on port 1883. +1612415240: Sending CONNACK to 172.18.0.3 (0, 5) +1612415240: Socket error on client , disconnecting. +1612415260: New connection from 172.18.0.3 on port 1883. +1612415260: Sending CONNACK to 172.18.0.3 (0, 5) +1612415260: Socket error on client , disconnecting. +1612415280: New connection from 172.18.0.3 on port 1883. +1612415280: Sending CONNACK to 172.18.0.3 (0, 5) +1612415280: Socket error on client , disconnecting. +1612415300: New connection from 172.18.0.3 on port 1883. +1612415300: Sending CONNACK to 172.18.0.3 (0, 5) +1612415300: Socket error on client , disconnecting. +1612415320: New connection from 172.18.0.3 on port 1883. +1612415320: Sending CONNACK to 172.18.0.3 (0, 5) +1612415320: Socket error on client , disconnecting. +1612415340: New connection from 172.18.0.3 on port 1883. +1612415340: Sending CONNACK to 172.18.0.3 (0, 5) +1612415340: Socket error on client , disconnecting. +1612415360: New connection from 172.18.0.3 on port 1883. +1612415360: Sending CONNACK to 172.18.0.3 (0, 5) +1612415360: Socket error on client , disconnecting. +1612415380: New connection from 172.18.0.3 on port 1883. +1612415380: Sending CONNACK to 172.18.0.3 (0, 5) +1612415380: Socket error on client , disconnecting. +1612415400: New connection from 172.18.0.3 on port 1883. +1612415400: Sending CONNACK to 172.18.0.3 (0, 5) +1612415400: Socket error on client , disconnecting. +1612415420: New connection from 172.18.0.3 on port 1883. +1612415420: Sending CONNACK to 172.18.0.3 (0, 5) +1612415420: Socket error on client , disconnecting. +1612415440: New connection from 172.18.0.3 on port 1883. +1612415440: Sending CONNACK to 172.18.0.3 (0, 5) +1612415440: Socket error on client , disconnecting. +1612415460: New connection from 172.18.0.3 on port 1883. +1612415460: Sending CONNACK to 172.18.0.3 (0, 5) +1612415460: Socket error on client , disconnecting. +1612415480: New connection from 172.18.0.3 on port 1883. +1612415480: Sending CONNACK to 172.18.0.3 (0, 5) +1612415480: Socket error on client , disconnecting. +1612415500: New connection from 172.18.0.3 on port 1883. +1612415500: Sending CONNACK to 172.18.0.3 (0, 5) +1612415500: Socket error on client , disconnecting. +1612415520: New connection from 172.18.0.3 on port 1883. +1612415520: Sending CONNACK to 172.18.0.3 (0, 5) +1612415520: Socket error on client , disconnecting. +1612415540: New connection from 172.18.0.3 on port 1883. +1612415540: Sending CONNACK to 172.18.0.3 (0, 5) +1612415540: Socket error on client , disconnecting. +1612415560: New connection from 172.18.0.3 on port 1883. +1612415560: Sending CONNACK to 172.18.0.3 (0, 5) +1612415560: Socket error on client , disconnecting. +1612415580: New connection from 172.18.0.3 on port 1883. +1612415580: Sending CONNACK to 172.18.0.3 (0, 5) +1612415580: Socket error on client , disconnecting. +1612415600: New connection from 172.18.0.3 on port 1883. +1612415600: Sending CONNACK to 172.18.0.3 (0, 5) +1612415600: Socket error on client , disconnecting. +1612415620: New connection from 172.18.0.3 on port 1883. +1612415620: Sending CONNACK to 172.18.0.3 (0, 5) +1612415620: Socket error on client , disconnecting. +1612415640: New connection from 172.18.0.3 on port 1883. +1612415640: Sending CONNACK to 172.18.0.3 (0, 5) +1612415640: Socket error on client , disconnecting. +1612415660: New connection from 172.18.0.3 on port 1883. +1612415660: Sending CONNACK to 172.18.0.3 (0, 5) +1612415660: Socket error on client , disconnecting. +1612415680: New connection from 172.18.0.3 on port 1883. +1612415680: Sending CONNACK to 172.18.0.3 (0, 5) +1612415680: Socket error on client , disconnecting. +1612415700: New connection from 172.18.0.3 on port 1883. +1612415700: Sending CONNACK to 172.18.0.3 (0, 5) +1612415700: Socket error on client , disconnecting. +1612415720: New connection from 172.18.0.3 on port 1883. +1612415720: Sending CONNACK to 172.18.0.3 (0, 5) +1612415720: Socket error on client , disconnecting. +1612415740: New connection from 172.18.0.3 on port 1883. +1612415740: Sending CONNACK to 172.18.0.3 (0, 5) +1612415740: Socket error on client , disconnecting. +1612415760: New connection from 172.18.0.3 on port 1883. +1612415760: Sending CONNACK to 172.18.0.3 (0, 5) +1612415760: Socket error on client , disconnecting. +1612415780: New connection from 172.18.0.3 on port 1883. +1612415780: Sending CONNACK to 172.18.0.3 (0, 5) +1612415780: Socket error on client , disconnecting. +1612415800: New connection from 172.18.0.3 on port 1883. +1612415800: Sending CONNACK to 172.18.0.3 (0, 5) +1612415800: Socket error on client , disconnecting. +1612415800: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612415800: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612415800: Error: Permission denied. +1612415820: New connection from 172.18.0.3 on port 1883. +1612415820: Sending CONNACK to 172.18.0.3 (0, 5) +1612415820: Socket error on client , disconnecting. +1612415840: New connection from 172.18.0.3 on port 1883. +1612415840: Sending CONNACK to 172.18.0.3 (0, 5) +1612415840: Socket error on client , disconnecting. +1612415860: New connection from 172.18.0.3 on port 1883. +1612415860: Sending CONNACK to 172.18.0.3 (0, 5) +1612415860: Socket error on client , disconnecting. +1612415880: New connection from 172.18.0.3 on port 1883. +1612415880: Sending CONNACK to 172.18.0.3 (0, 5) +1612415880: Socket error on client , disconnecting. +1612415900: New connection from 172.18.0.3 on port 1883. +1612415900: Sending CONNACK to 172.18.0.3 (0, 5) +1612415900: Socket error on client , disconnecting. +1612415920: New connection from 172.18.0.3 on port 1883. +1612415920: Sending CONNACK to 172.18.0.3 (0, 5) +1612415920: Socket error on client , disconnecting. +1612415940: New connection from 172.18.0.3 on port 1883. +1612415940: Sending CONNACK to 172.18.0.3 (0, 5) +1612415940: Socket error on client , disconnecting. +1612415960: New connection from 172.18.0.3 on port 1883. +1612415960: Sending CONNACK to 172.18.0.3 (0, 5) +1612415960: Socket error on client , disconnecting. +1612415980: New connection from 172.18.0.3 on port 1883. +1612415980: Sending CONNACK to 172.18.0.3 (0, 5) +1612415980: Socket error on client , disconnecting. +1612416000: New connection from 172.18.0.3 on port 1883. +1612416000: Sending CONNACK to 172.18.0.3 (0, 5) +1612416000: Socket error on client , disconnecting. +1612416020: New connection from 172.18.0.3 on port 1883. +1612416020: Sending CONNACK to 172.18.0.3 (0, 5) +1612416020: Socket error on client , disconnecting. +1612416040: New connection from 172.18.0.3 on port 1883. +1612416040: Sending CONNACK to 172.18.0.3 (0, 5) +1612416040: Socket error on client , disconnecting. +1612416060: New connection from 172.18.0.3 on port 1883. +1612416060: Sending CONNACK to 172.18.0.3 (0, 5) +1612416060: Socket error on client , disconnecting. +1612416080: New connection from 172.18.0.3 on port 1883. +1612416080: Sending CONNACK to 172.18.0.3 (0, 5) +1612416080: Socket error on client , disconnecting. +1612416100: New connection from 172.18.0.3 on port 1883. +1612416100: Sending CONNACK to 172.18.0.3 (0, 5) +1612416100: Socket error on client , disconnecting. +1612416120: New connection from 172.18.0.3 on port 1883. +1612416120: Sending CONNACK to 172.18.0.3 (0, 5) +1612416120: Socket error on client , disconnecting. +1612416140: New connection from 172.18.0.3 on port 1883. +1612416140: Sending CONNACK to 172.18.0.3 (0, 5) +1612416140: Socket error on client , disconnecting. +1612416160: New connection from 172.18.0.3 on port 1883. +1612416160: Sending CONNACK to 172.18.0.3 (0, 5) +1612416160: Socket error on client , disconnecting. +1612416180: New connection from 172.18.0.3 on port 1883. +1612416180: Sending CONNACK to 172.18.0.3 (0, 5) +1612416180: Socket error on client , disconnecting. +1612416200: New connection from 172.18.0.3 on port 1883. +1612416200: Sending CONNACK to 172.18.0.3 (0, 5) +1612416200: Socket error on client , disconnecting. +1612416220: New connection from 172.18.0.3 on port 1883. +1612416220: Sending CONNACK to 172.18.0.3 (0, 5) +1612416220: Socket error on client , disconnecting. +1612416240: New connection from 172.18.0.3 on port 1883. +1612416240: Sending CONNACK to 172.18.0.3 (0, 5) +1612416240: Socket error on client , disconnecting. +1612416260: New connection from 172.18.0.3 on port 1883. +1612416260: Sending CONNACK to 172.18.0.3 (0, 5) +1612416260: Socket error on client , disconnecting. +1612416280: New connection from 172.18.0.3 on port 1883. +1612416280: Sending CONNACK to 172.18.0.3 (0, 5) +1612416280: Socket error on client , disconnecting. +1612416300: New connection from 172.18.0.3 on port 1883. +1612416300: Sending CONNACK to 172.18.0.3 (0, 5) +1612416300: Socket error on client , disconnecting. +1612416320: New connection from 172.18.0.3 on port 1883. +1612416320: Sending CONNACK to 172.18.0.3 (0, 5) +1612416320: Socket error on client , disconnecting. +1612416340: New connection from 172.18.0.3 on port 1883. +1612416340: Sending CONNACK to 172.18.0.3 (0, 5) +1612416340: Socket error on client , disconnecting. +1612416360: New connection from 172.18.0.3 on port 1883. +1612416360: Sending CONNACK to 172.18.0.3 (0, 5) +1612416360: Socket error on client , disconnecting. +1612416380: New connection from 172.18.0.3 on port 1883. +1612416380: Sending CONNACK to 172.18.0.3 (0, 5) +1612416380: Socket error on client , disconnecting. +1612416400: New connection from 172.18.0.3 on port 1883. +1612416400: Sending CONNACK to 172.18.0.3 (0, 5) +1612416400: Socket error on client , disconnecting. +1612416420: New connection from 172.18.0.3 on port 1883. +1612416420: Sending CONNACK to 172.18.0.3 (0, 5) +1612416420: Socket error on client , disconnecting. +1612416440: New connection from 172.18.0.3 on port 1883. +1612416440: Sending CONNACK to 172.18.0.3 (0, 5) +1612416440: Socket error on client , disconnecting. +1612416460: New connection from 172.18.0.3 on port 1883. +1612416460: Sending CONNACK to 172.18.0.3 (0, 5) +1612416460: Socket error on client , disconnecting. +1612416480: New connection from 172.18.0.3 on port 1883. +1612416480: Sending CONNACK to 172.18.0.3 (0, 5) +1612416480: Socket error on client , disconnecting. +1612416500: New connection from 172.18.0.3 on port 1883. +1612416500: Sending CONNACK to 172.18.0.3 (0, 5) +1612416500: Socket error on client , disconnecting. +1612416520: New connection from 172.18.0.3 on port 1883. +1612416520: Sending CONNACK to 172.18.0.3 (0, 5) +1612416520: Socket error on client , disconnecting. +1612416540: New connection from 172.18.0.3 on port 1883. +1612416540: Sending CONNACK to 172.18.0.3 (0, 5) +1612416540: Socket error on client , disconnecting. +1612416560: New connection from 172.18.0.3 on port 1883. +1612416560: Sending CONNACK to 172.18.0.3 (0, 5) +1612416560: Socket error on client , disconnecting. +1612416580: New connection from 172.18.0.3 on port 1883. +1612416580: Sending CONNACK to 172.18.0.3 (0, 5) +1612416580: Socket error on client , disconnecting. +1612416600: New connection from 172.18.0.3 on port 1883. +1612416600: Sending CONNACK to 172.18.0.3 (0, 5) +1612416600: Socket error on client , disconnecting. +1612416620: New connection from 172.18.0.3 on port 1883. +1612416620: Sending CONNACK to 172.18.0.3 (0, 5) +1612416620: Socket error on client , disconnecting. +1612416640: New connection from 172.18.0.3 on port 1883. +1612416640: Sending CONNACK to 172.18.0.3 (0, 5) +1612416640: Socket error on client , disconnecting. +1612416660: New connection from 172.18.0.3 on port 1883. +1612416660: Sending CONNACK to 172.18.0.3 (0, 5) +1612416660: Socket error on client , disconnecting. +1612416680: New connection from 172.18.0.3 on port 1883. +1612416680: Sending CONNACK to 172.18.0.3 (0, 5) +1612416680: Socket error on client , disconnecting. +1612416700: New connection from 172.18.0.3 on port 1883. +1612416700: Sending CONNACK to 172.18.0.3 (0, 5) +1612416700: Socket error on client , disconnecting. +1612416720: New connection from 172.18.0.3 on port 1883. +1612416720: Sending CONNACK to 172.18.0.3 (0, 5) +1612416720: Socket error on client , disconnecting. +1612416740: New connection from 172.18.0.3 on port 1883. +1612416740: Sending CONNACK to 172.18.0.3 (0, 5) +1612416740: Socket error on client , disconnecting. +1612416760: New connection from 172.18.0.3 on port 1883. +1612416760: Sending CONNACK to 172.18.0.3 (0, 5) +1612416760: Socket error on client , disconnecting. +1612416780: New connection from 172.18.0.3 on port 1883. +1612416780: Sending CONNACK to 172.18.0.3 (0, 5) +1612416780: Socket error on client , disconnecting. +1612416800: New connection from 172.18.0.3 on port 1883. +1612416800: Sending CONNACK to 172.18.0.3 (0, 5) +1612416800: Socket error on client , disconnecting. +1612416820: New connection from 172.18.0.3 on port 1883. +1612416820: Sending CONNACK to 172.18.0.3 (0, 5) +1612416820: Socket error on client , disconnecting. +1612416840: New connection from 172.18.0.3 on port 1883. +1612416840: Sending CONNACK to 172.18.0.3 (0, 5) +1612416840: Socket error on client , disconnecting. +1612416860: New connection from 172.18.0.3 on port 1883. +1612416860: Sending CONNACK to 172.18.0.3 (0, 5) +1612416860: Socket error on client , disconnecting. +1612416880: New connection from 172.18.0.3 on port 1883. +1612416880: Sending CONNACK to 172.18.0.3 (0, 5) +1612416880: Socket error on client , disconnecting. +1612416900: New connection from 172.18.0.3 on port 1883. +1612416900: Sending CONNACK to 172.18.0.3 (0, 5) +1612416900: Socket error on client , disconnecting. +1612416920: New connection from 172.18.0.3 on port 1883. +1612416920: Sending CONNACK to 172.18.0.3 (0, 5) +1612416920: Socket error on client , disconnecting. +1612416940: New connection from 172.18.0.3 on port 1883. +1612416940: Sending CONNACK to 172.18.0.3 (0, 5) +1612416940: Socket error on client , disconnecting. +1612416960: New connection from 172.18.0.3 on port 1883. +1612416960: Sending CONNACK to 172.18.0.3 (0, 5) +1612416960: Socket error on client , disconnecting. +1612416980: New connection from 172.18.0.3 on port 1883. +1612416980: Sending CONNACK to 172.18.0.3 (0, 5) +1612416980: Socket error on client , disconnecting. +1612417000: New connection from 172.18.0.3 on port 1883. +1612417000: Sending CONNACK to 172.18.0.3 (0, 5) +1612417000: Socket error on client , disconnecting. +1612417020: New connection from 172.18.0.3 on port 1883. +1612417020: Sending CONNACK to 172.18.0.3 (0, 5) +1612417020: Socket error on client , disconnecting. +1612417040: New connection from 172.18.0.3 on port 1883. +1612417040: Sending CONNACK to 172.18.0.3 (0, 5) +1612417040: Socket error on client , disconnecting. +1612417060: New connection from 172.18.0.3 on port 1883. +1612417060: Sending CONNACK to 172.18.0.3 (0, 5) +1612417060: Socket error on client , disconnecting. +1612417080: New connection from 172.18.0.3 on port 1883. +1612417080: Sending CONNACK to 172.18.0.3 (0, 5) +1612417080: Socket error on client , disconnecting. +1612417100: New connection from 172.18.0.3 on port 1883. +1612417100: Sending CONNACK to 172.18.0.3 (0, 5) +1612417100: Socket error on client , disconnecting. +1612417120: New connection from 172.18.0.3 on port 1883. +1612417120: Sending CONNACK to 172.18.0.3 (0, 5) +1612417120: Socket error on client , disconnecting. +1612417140: New connection from 172.18.0.3 on port 1883. +1612417140: Sending CONNACK to 172.18.0.3 (0, 5) +1612417140: Socket error on client , disconnecting. +1612417160: New connection from 172.18.0.3 on port 1883. +1612417160: Sending CONNACK to 172.18.0.3 (0, 5) +1612417160: Socket error on client , disconnecting. +1612417180: New connection from 172.18.0.3 on port 1883. +1612417180: Sending CONNACK to 172.18.0.3 (0, 5) +1612417180: Socket error on client , disconnecting. +1612417200: New connection from 172.18.0.3 on port 1883. +1612417200: Sending CONNACK to 172.18.0.3 (0, 5) +1612417200: Socket error on client , disconnecting. +1612417220: New connection from 172.18.0.3 on port 1883. +1612417220: Sending CONNACK to 172.18.0.3 (0, 5) +1612417220: Socket error on client , disconnecting. +1612417240: New connection from 172.18.0.3 on port 1883. +1612417240: Sending CONNACK to 172.18.0.3 (0, 5) +1612417240: Socket error on client , disconnecting. +1612417260: New connection from 172.18.0.3 on port 1883. +1612417260: Sending CONNACK to 172.18.0.3 (0, 5) +1612417260: Socket error on client , disconnecting. +1612417280: New connection from 172.18.0.3 on port 1883. +1612417280: Sending CONNACK to 172.18.0.3 (0, 5) +1612417280: Socket error on client , disconnecting. +1612417300: New connection from 172.18.0.3 on port 1883. +1612417300: Sending CONNACK to 172.18.0.3 (0, 5) +1612417300: Socket error on client , disconnecting. +1612417320: New connection from 172.18.0.3 on port 1883. +1612417320: Sending CONNACK to 172.18.0.3 (0, 5) +1612417320: Socket error on client , disconnecting. +1612417340: New connection from 172.18.0.3 on port 1883. +1612417340: Sending CONNACK to 172.18.0.3 (0, 5) +1612417340: Socket error on client , disconnecting. +1612417360: New connection from 172.18.0.3 on port 1883. +1612417360: Sending CONNACK to 172.18.0.3 (0, 5) +1612417360: Socket error on client , disconnecting. +1612417380: New connection from 172.18.0.3 on port 1883. +1612417380: Sending CONNACK to 172.18.0.3 (0, 5) +1612417380: Socket error on client , disconnecting. +1612417400: New connection from 172.18.0.3 on port 1883. +1612417400: Sending CONNACK to 172.18.0.3 (0, 5) +1612417400: Socket error on client , disconnecting. +1612417420: New connection from 172.18.0.3 on port 1883. +1612417420: Sending CONNACK to 172.18.0.3 (0, 5) +1612417420: Socket error on client , disconnecting. +1612417440: New connection from 172.18.0.3 on port 1883. +1612417440: Sending CONNACK to 172.18.0.3 (0, 5) +1612417440: Socket error on client , disconnecting. +1612417460: New connection from 172.18.0.3 on port 1883. +1612417460: Sending CONNACK to 172.18.0.3 (0, 5) +1612417460: Socket error on client , disconnecting. +1612417480: New connection from 172.18.0.3 on port 1883. +1612417480: Sending CONNACK to 172.18.0.3 (0, 5) +1612417480: Socket error on client , disconnecting. +1612417500: New connection from 172.18.0.3 on port 1883. +1612417500: Sending CONNACK to 172.18.0.3 (0, 5) +1612417500: Socket error on client , disconnecting. +1612417520: New connection from 172.18.0.3 on port 1883. +1612417520: Sending CONNACK to 172.18.0.3 (0, 5) +1612417520: Socket error on client , disconnecting. +1612417540: New connection from 172.18.0.3 on port 1883. +1612417540: Sending CONNACK to 172.18.0.3 (0, 5) +1612417540: Socket error on client , disconnecting. +1612417560: New connection from 172.18.0.3 on port 1883. +1612417560: Sending CONNACK to 172.18.0.3 (0, 5) +1612417560: Socket error on client , disconnecting. +1612417580: New connection from 172.18.0.3 on port 1883. +1612417580: Sending CONNACK to 172.18.0.3 (0, 5) +1612417580: Socket error on client , disconnecting. +1612417600: New connection from 172.18.0.3 on port 1883. +1612417600: Sending CONNACK to 172.18.0.3 (0, 5) +1612417600: Socket error on client , disconnecting. +1612417601: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612417601: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612417601: Error: Permission denied. +1612417620: New connection from 172.18.0.3 on port 1883. +1612417620: Sending CONNACK to 172.18.0.3 (0, 5) +1612417620: Socket error on client , disconnecting. +1612417640: New connection from 172.18.0.3 on port 1883. +1612417640: Sending CONNACK to 172.18.0.3 (0, 5) +1612417640: Socket error on client , disconnecting. +1612417660: New connection from 172.18.0.3 on port 1883. +1612417660: Sending CONNACK to 172.18.0.3 (0, 5) +1612417660: Socket error on client , disconnecting. +1612417680: New connection from 172.18.0.3 on port 1883. +1612417680: Sending CONNACK to 172.18.0.3 (0, 5) +1612417680: Socket error on client , disconnecting. +1612417700: New connection from 172.18.0.3 on port 1883. +1612417700: Sending CONNACK to 172.18.0.3 (0, 5) +1612417700: Socket error on client , disconnecting. +1612417720: New connection from 172.18.0.3 on port 1883. +1612417720: Sending CONNACK to 172.18.0.3 (0, 5) +1612417720: Socket error on client , disconnecting. +1612417740: New connection from 172.18.0.3 on port 1883. +1612417740: Sending CONNACK to 172.18.0.3 (0, 5) +1612417740: Socket error on client , disconnecting. +1612417760: New connection from 172.18.0.3 on port 1883. +1612417760: Sending CONNACK to 172.18.0.3 (0, 5) +1612417760: Socket error on client , disconnecting. +1612417780: New connection from 172.18.0.3 on port 1883. +1612417780: Sending CONNACK to 172.18.0.3 (0, 5) +1612417780: Socket error on client , disconnecting. +1612417800: New connection from 172.18.0.3 on port 1883. +1612417800: Sending CONNACK to 172.18.0.3 (0, 5) +1612417800: Socket error on client , disconnecting. +1612417820: New connection from 172.18.0.3 on port 1883. +1612417820: Sending CONNACK to 172.18.0.3 (0, 5) +1612417820: Socket error on client , disconnecting. +1612417840: New connection from 172.18.0.3 on port 1883. +1612417840: Sending CONNACK to 172.18.0.3 (0, 5) +1612417840: Socket error on client , disconnecting. +1612417860: New connection from 172.18.0.3 on port 1883. +1612417860: Sending CONNACK to 172.18.0.3 (0, 5) +1612417860: Socket error on client , disconnecting. +1612417880: New connection from 172.18.0.3 on port 1883. +1612417880: Sending CONNACK to 172.18.0.3 (0, 5) +1612417880: Socket error on client , disconnecting. +1612417900: New connection from 172.18.0.3 on port 1883. +1612417900: Sending CONNACK to 172.18.0.3 (0, 5) +1612417900: Socket error on client , disconnecting. +1612417920: New connection from 172.18.0.3 on port 1883. +1612417920: Sending CONNACK to 172.18.0.3 (0, 5) +1612417920: Socket error on client , disconnecting. +1612417940: New connection from 172.18.0.3 on port 1883. +1612417940: Sending CONNACK to 172.18.0.3 (0, 5) +1612417940: Socket error on client , disconnecting. +1612417960: New connection from 172.18.0.3 on port 1883. +1612417960: Sending CONNACK to 172.18.0.3 (0, 5) +1612417960: Socket error on client , disconnecting. +1612417980: New connection from 172.18.0.3 on port 1883. +1612417980: Sending CONNACK to 172.18.0.3 (0, 5) +1612417980: Socket error on client , disconnecting. +1612418000: New connection from 172.18.0.3 on port 1883. +1612418000: Sending CONNACK to 172.18.0.3 (0, 5) +1612418000: Socket error on client , disconnecting. +1612418020: New connection from 172.18.0.3 on port 1883. +1612418020: Sending CONNACK to 172.18.0.3 (0, 5) +1612418020: Socket error on client , disconnecting. +1612418040: New connection from 172.18.0.3 on port 1883. +1612418040: Sending CONNACK to 172.18.0.3 (0, 5) +1612418040: Socket error on client , disconnecting. +1612418060: New connection from 172.18.0.3 on port 1883. +1612418060: Sending CONNACK to 172.18.0.3 (0, 5) +1612418060: Socket error on client , disconnecting. +1612418080: New connection from 172.18.0.3 on port 1883. +1612418080: Sending CONNACK to 172.18.0.3 (0, 5) +1612418080: Socket error on client , disconnecting. +1612418100: New connection from 172.18.0.3 on port 1883. +1612418100: Sending CONNACK to 172.18.0.3 (0, 5) +1612418100: Socket error on client , disconnecting. +1612418120: New connection from 172.18.0.3 on port 1883. +1612418120: Sending CONNACK to 172.18.0.3 (0, 5) +1612418120: Socket error on client , disconnecting. +1612418140: New connection from 172.18.0.3 on port 1883. +1612418140: Sending CONNACK to 172.18.0.3 (0, 5) +1612418140: Socket error on client , disconnecting. +1612418160: New connection from 172.18.0.3 on port 1883. +1612418160: Sending CONNACK to 172.18.0.3 (0, 5) +1612418160: Socket error on client , disconnecting. +1612418180: New connection from 172.18.0.3 on port 1883. +1612418180: Sending CONNACK to 172.18.0.3 (0, 5) +1612418180: Socket error on client , disconnecting. +1612418200: New connection from 172.18.0.3 on port 1883. +1612418200: Sending CONNACK to 172.18.0.3 (0, 5) +1612418200: Socket error on client , disconnecting. +1612418220: New connection from 172.18.0.3 on port 1883. +1612418220: Sending CONNACK to 172.18.0.3 (0, 5) +1612418220: Socket error on client , disconnecting. +1612418240: New connection from 172.18.0.3 on port 1883. +1612418240: Sending CONNACK to 172.18.0.3 (0, 5) +1612418240: Socket error on client , disconnecting. +1612418260: New connection from 172.18.0.3 on port 1883. +1612418260: Sending CONNACK to 172.18.0.3 (0, 5) +1612418260: Socket error on client , disconnecting. +1612418280: New connection from 172.18.0.3 on port 1883. +1612418280: Sending CONNACK to 172.18.0.3 (0, 5) +1612418280: Socket error on client , disconnecting. +1612418300: New connection from 172.18.0.3 on port 1883. +1612418300: Sending CONNACK to 172.18.0.3 (0, 5) +1612418300: Socket error on client , disconnecting. +1612418320: New connection from 172.18.0.3 on port 1883. +1612418320: Sending CONNACK to 172.18.0.3 (0, 5) +1612418320: Socket error on client , disconnecting. +1612418340: New connection from 172.18.0.3 on port 1883. +1612418340: Sending CONNACK to 172.18.0.3 (0, 5) +1612418340: Socket error on client , disconnecting. +1612418360: New connection from 172.18.0.3 on port 1883. +1612418360: Sending CONNACK to 172.18.0.3 (0, 5) +1612418360: Socket error on client , disconnecting. +1612418380: New connection from 172.18.0.3 on port 1883. +1612418380: Sending CONNACK to 172.18.0.3 (0, 5) +1612418380: Socket error on client , disconnecting. +1612418400: New connection from 172.18.0.3 on port 1883. +1612418400: Sending CONNACK to 172.18.0.3 (0, 5) +1612418400: Socket error on client , disconnecting. +1612418420: New connection from 172.18.0.3 on port 1883. +1612418420: Sending CONNACK to 172.18.0.3 (0, 5) +1612418420: Socket error on client , disconnecting. +1612418440: New connection from 172.18.0.3 on port 1883. +1612418440: Sending CONNACK to 172.18.0.3 (0, 5) +1612418440: Socket error on client , disconnecting. +1612418460: New connection from 172.18.0.3 on port 1883. +1612418460: Sending CONNACK to 172.18.0.3 (0, 5) +1612418460: Socket error on client , disconnecting. +1612418480: New connection from 172.18.0.3 on port 1883. +1612418480: Sending CONNACK to 172.18.0.3 (0, 5) +1612418480: Socket error on client , disconnecting. +1612418500: New connection from 172.18.0.3 on port 1883. +1612418500: Sending CONNACK to 172.18.0.3 (0, 5) +1612418500: Socket error on client , disconnecting. +1612418520: New connection from 172.18.0.3 on port 1883. +1612418520: Sending CONNACK to 172.18.0.3 (0, 5) +1612418520: Socket error on client , disconnecting. +1612418540: New connection from 172.18.0.3 on port 1883. +1612418540: Sending CONNACK to 172.18.0.3 (0, 5) +1612418540: Socket error on client , disconnecting. +1612418560: New connection from 172.18.0.3 on port 1883. +1612418560: Sending CONNACK to 172.18.0.3 (0, 5) +1612418560: Socket error on client , disconnecting. +1612418580: New connection from 172.18.0.3 on port 1883. +1612418580: Sending CONNACK to 172.18.0.3 (0, 5) +1612418580: Socket error on client , disconnecting. +1612418600: New connection from 172.18.0.3 on port 1883. +1612418600: Sending CONNACK to 172.18.0.3 (0, 5) +1612418600: Socket error on client , disconnecting. +1612418620: New connection from 172.18.0.3 on port 1883. +1612418620: Sending CONNACK to 172.18.0.3 (0, 5) +1612418620: Socket error on client , disconnecting. +1612418640: New connection from 172.18.0.3 on port 1883. +1612418640: Sending CONNACK to 172.18.0.3 (0, 5) +1612418640: Socket error on client , disconnecting. +1612418660: New connection from 172.18.0.3 on port 1883. +1612418660: Sending CONNACK to 172.18.0.3 (0, 5) +1612418660: Socket error on client , disconnecting. +1612418680: New connection from 172.18.0.3 on port 1883. +1612418680: Sending CONNACK to 172.18.0.3 (0, 5) +1612418680: Socket error on client , disconnecting. +1612418700: New connection from 172.18.0.3 on port 1883. +1612418700: Sending CONNACK to 172.18.0.3 (0, 5) +1612418700: Socket error on client , disconnecting. +1612418720: New connection from 172.18.0.3 on port 1883. +1612418720: Sending CONNACK to 172.18.0.3 (0, 5) +1612418720: Socket error on client , disconnecting. +1612418740: New connection from 172.18.0.3 on port 1883. +1612418740: Sending CONNACK to 172.18.0.3 (0, 5) +1612418740: Socket error on client , disconnecting. +1612418760: New connection from 172.18.0.3 on port 1883. +1612418760: Sending CONNACK to 172.18.0.3 (0, 5) +1612418760: Socket error on client , disconnecting. +1612418780: New connection from 172.18.0.3 on port 1883. +1612418780: Sending CONNACK to 172.18.0.3 (0, 5) +1612418780: Socket error on client , disconnecting. +1612418800: New connection from 172.18.0.3 on port 1883. +1612418800: Sending CONNACK to 172.18.0.3 (0, 5) +1612418800: Socket error on client , disconnecting. +1612418820: New connection from 172.18.0.3 on port 1883. +1612418820: Sending CONNACK to 172.18.0.3 (0, 5) +1612418820: Socket error on client , disconnecting. +1612418840: New connection from 172.18.0.3 on port 1883. +1612418840: Sending CONNACK to 172.18.0.3 (0, 5) +1612418840: Socket error on client , disconnecting. +1612418860: New connection from 172.18.0.3 on port 1883. +1612418860: Sending CONNACK to 172.18.0.3 (0, 5) +1612418860: Socket error on client , disconnecting. +1612418880: New connection from 172.18.0.3 on port 1883. +1612418880: Sending CONNACK to 172.18.0.3 (0, 5) +1612418880: Socket error on client , disconnecting. +1612418900: New connection from 172.18.0.3 on port 1883. +1612418900: Sending CONNACK to 172.18.0.3 (0, 5) +1612418900: Socket error on client , disconnecting. +1612418920: New connection from 172.18.0.3 on port 1883. +1612418920: Sending CONNACK to 172.18.0.3 (0, 5) +1612418920: Socket error on client , disconnecting. +1612418940: New connection from 172.18.0.3 on port 1883. +1612418940: Sending CONNACK to 172.18.0.3 (0, 5) +1612418940: Socket error on client , disconnecting. +1612418960: New connection from 172.18.0.3 on port 1883. +1612418960: Sending CONNACK to 172.18.0.3 (0, 5) +1612418960: Socket error on client , disconnecting. +1612418980: New connection from 172.18.0.3 on port 1883. +1612418980: Sending CONNACK to 172.18.0.3 (0, 5) +1612418980: Socket error on client , disconnecting. +1612419000: New connection from 172.18.0.3 on port 1883. +1612419000: Sending CONNACK to 172.18.0.3 (0, 5) +1612419000: Socket error on client , disconnecting. +1612419020: New connection from 172.18.0.3 on port 1883. +1612419020: Sending CONNACK to 172.18.0.3 (0, 5) +1612419020: Socket error on client , disconnecting. +1612419040: New connection from 172.18.0.3 on port 1883. +1612419040: Sending CONNACK to 172.18.0.3 (0, 5) +1612419040: Socket error on client , disconnecting. +1612419060: New connection from 172.18.0.3 on port 1883. +1612419060: Sending CONNACK to 172.18.0.3 (0, 5) +1612419060: Socket error on client , disconnecting. +1612419080: New connection from 172.18.0.3 on port 1883. +1612419080: Sending CONNACK to 172.18.0.3 (0, 5) +1612419080: Socket error on client , disconnecting. +1612419100: New connection from 172.18.0.3 on port 1883. +1612419100: Sending CONNACK to 172.18.0.3 (0, 5) +1612419100: Socket error on client , disconnecting. +1612419120: New connection from 172.18.0.3 on port 1883. +1612419120: Sending CONNACK to 172.18.0.3 (0, 5) +1612419120: Socket error on client , disconnecting. +1612419140: New connection from 172.18.0.3 on port 1883. +1612419140: Sending CONNACK to 172.18.0.3 (0, 5) +1612419140: Socket error on client , disconnecting. +1612419160: New connection from 172.18.0.3 on port 1883. +1612419160: Sending CONNACK to 172.18.0.3 (0, 5) +1612419160: Socket error on client , disconnecting. +1612419180: New connection from 172.18.0.3 on port 1883. +1612419180: Sending CONNACK to 172.18.0.3 (0, 5) +1612419180: Socket error on client , disconnecting. +1612419200: New connection from 172.18.0.3 on port 1883. +1612419200: Sending CONNACK to 172.18.0.3 (0, 5) +1612419200: Socket error on client , disconnecting. +1612419220: New connection from 172.18.0.3 on port 1883. +1612419220: Sending CONNACK to 172.18.0.3 (0, 5) +1612419220: Socket error on client , disconnecting. +1612419240: New connection from 172.18.0.3 on port 1883. +1612419240: Sending CONNACK to 172.18.0.3 (0, 5) +1612419240: Socket error on client , disconnecting. +1612419260: New connection from 172.18.0.3 on port 1883. +1612419260: Sending CONNACK to 172.18.0.3 (0, 5) +1612419260: Socket error on client , disconnecting. +1612419280: New connection from 172.18.0.3 on port 1883. +1612419280: Sending CONNACK to 172.18.0.3 (0, 5) +1612419280: Socket error on client , disconnecting. +1612419300: New connection from 172.18.0.3 on port 1883. +1612419300: Sending CONNACK to 172.18.0.3 (0, 5) +1612419300: Socket error on client , disconnecting. +1612419320: New connection from 172.18.0.3 on port 1883. +1612419320: Sending CONNACK to 172.18.0.3 (0, 5) +1612419320: Socket error on client , disconnecting. +1612419340: New connection from 172.18.0.3 on port 1883. +1612419340: Sending CONNACK to 172.18.0.3 (0, 5) +1612419340: Socket error on client , disconnecting. +1612419360: New connection from 172.18.0.3 on port 1883. +1612419360: Sending CONNACK to 172.18.0.3 (0, 5) +1612419360: Socket error on client , disconnecting. +1612419380: New connection from 172.18.0.3 on port 1883. +1612419380: Sending CONNACK to 172.18.0.3 (0, 5) +1612419380: Socket error on client , disconnecting. +1612419400: New connection from 172.18.0.3 on port 1883. +1612419400: Sending CONNACK to 172.18.0.3 (0, 5) +1612419400: Socket error on client , disconnecting. +1612419402: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612419402: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612419402: Error: Permission denied. +1612419420: New connection from 172.18.0.3 on port 1883. +1612419420: Sending CONNACK to 172.18.0.3 (0, 5) +1612419420: Socket error on client , disconnecting. +1612419440: New connection from 172.18.0.3 on port 1883. +1612419440: Sending CONNACK to 172.18.0.3 (0, 5) +1612419440: Socket error on client , disconnecting. +1612419460: New connection from 172.18.0.3 on port 1883. +1612419460: Sending CONNACK to 172.18.0.3 (0, 5) +1612419460: Socket error on client , disconnecting. +1612419480: New connection from 172.18.0.3 on port 1883. +1612419480: Sending CONNACK to 172.18.0.3 (0, 5) +1612419480: Socket error on client , disconnecting. +1612419500: New connection from 172.18.0.3 on port 1883. +1612419500: Sending CONNACK to 172.18.0.3 (0, 5) +1612419500: Socket error on client , disconnecting. +1612419520: New connection from 172.18.0.3 on port 1883. +1612419520: Sending CONNACK to 172.18.0.3 (0, 5) +1612419520: Socket error on client , disconnecting. +1612419540: New connection from 172.18.0.3 on port 1883. +1612419540: Sending CONNACK to 172.18.0.3 (0, 5) +1612419540: Socket error on client , disconnecting. +1612419560: New connection from 172.18.0.3 on port 1883. +1612419560: Sending CONNACK to 172.18.0.3 (0, 5) +1612419560: Socket error on client , disconnecting. +1612419580: New connection from 172.18.0.3 on port 1883. +1612419580: Sending CONNACK to 172.18.0.3 (0, 5) +1612419580: Socket error on client , disconnecting. +1612419600: New connection from 172.18.0.3 on port 1883. +1612419600: Sending CONNACK to 172.18.0.3 (0, 5) +1612419600: Socket error on client , disconnecting. +1612419620: New connection from 172.18.0.3 on port 1883. +1612419620: Sending CONNACK to 172.18.0.3 (0, 5) +1612419620: Socket error on client , disconnecting. +1612419640: New connection from 172.18.0.3 on port 1883. +1612419640: Sending CONNACK to 172.18.0.3 (0, 5) +1612419640: Socket error on client , disconnecting. +1612419660: New connection from 172.18.0.3 on port 1883. +1612419660: Sending CONNACK to 172.18.0.3 (0, 5) +1612419660: Socket error on client , disconnecting. +1612419680: New connection from 172.18.0.3 on port 1883. +1612419680: Sending CONNACK to 172.18.0.3 (0, 5) +1612419680: Socket error on client , disconnecting. +1612419700: New connection from 172.18.0.3 on port 1883. +1612419700: Sending CONNACK to 172.18.0.3 (0, 5) +1612419700: Socket error on client , disconnecting. +1612419720: New connection from 172.18.0.3 on port 1883. +1612419720: Sending CONNACK to 172.18.0.3 (0, 5) +1612419720: Socket error on client , disconnecting. +1612419740: New connection from 172.18.0.3 on port 1883. +1612419740: Sending CONNACK to 172.18.0.3 (0, 5) +1612419740: Socket error on client , disconnecting. +1612419760: New connection from 172.18.0.3 on port 1883. +1612419760: Sending CONNACK to 172.18.0.3 (0, 5) +1612419760: Socket error on client , disconnecting. +1612419780: New connection from 172.18.0.3 on port 1883. +1612419780: Sending CONNACK to 172.18.0.3 (0, 5) +1612419780: Socket error on client , disconnecting. +1612419800: New connection from 172.18.0.3 on port 1883. +1612419800: Sending CONNACK to 172.18.0.3 (0, 5) +1612419800: Socket error on client , disconnecting. +1612419820: New connection from 172.18.0.3 on port 1883. +1612419820: Sending CONNACK to 172.18.0.3 (0, 5) +1612419820: Socket error on client , disconnecting. +1612419840: New connection from 172.18.0.3 on port 1883. +1612419840: Sending CONNACK to 172.18.0.3 (0, 5) +1612419840: Socket error on client , disconnecting. +1612419860: New connection from 172.18.0.3 on port 1883. +1612419860: Sending CONNACK to 172.18.0.3 (0, 5) +1612419860: Socket error on client , disconnecting. +1612419880: New connection from 172.18.0.3 on port 1883. +1612419880: Sending CONNACK to 172.18.0.3 (0, 5) +1612419880: Socket error on client , disconnecting. +1612419900: New connection from 172.18.0.3 on port 1883. +1612419900: Sending CONNACK to 172.18.0.3 (0, 5) +1612419900: Socket error on client , disconnecting. +1612419920: New connection from 172.18.0.3 on port 1883. +1612419920: Sending CONNACK to 172.18.0.3 (0, 5) +1612419920: Socket error on client , disconnecting. +1612419940: New connection from 172.18.0.3 on port 1883. +1612419940: Sending CONNACK to 172.18.0.3 (0, 5) +1612419940: Socket error on client , disconnecting. +1612419960: New connection from 172.18.0.3 on port 1883. +1612419960: Sending CONNACK to 172.18.0.3 (0, 5) +1612419960: Socket error on client , disconnecting. +1612419980: New connection from 172.18.0.3 on port 1883. +1612419980: Sending CONNACK to 172.18.0.3 (0, 5) +1612419980: Socket error on client , disconnecting. +1612420000: New connection from 172.18.0.3 on port 1883. +1612420000: Sending CONNACK to 172.18.0.3 (0, 5) +1612420000: Socket error on client , disconnecting. +1612420020: New connection from 172.18.0.3 on port 1883. +1612420020: Sending CONNACK to 172.18.0.3 (0, 5) +1612420020: Socket error on client , disconnecting. +1612420040: New connection from 172.18.0.3 on port 1883. +1612420040: Sending CONNACK to 172.18.0.3 (0, 5) +1612420040: Socket error on client , disconnecting. +1612420060: New connection from 172.18.0.3 on port 1883. +1612420060: Sending CONNACK to 172.18.0.3 (0, 5) +1612420060: Socket error on client , disconnecting. +1612420080: New connection from 172.18.0.3 on port 1883. +1612420080: Sending CONNACK to 172.18.0.3 (0, 5) +1612420080: Socket error on client , disconnecting. +1612420100: New connection from 172.18.0.3 on port 1883. +1612420100: Sending CONNACK to 172.18.0.3 (0, 5) +1612420100: Socket error on client , disconnecting. +1612420120: New connection from 172.18.0.3 on port 1883. +1612420120: Sending CONNACK to 172.18.0.3 (0, 5) +1612420120: Socket error on client , disconnecting. +1612420140: New connection from 172.18.0.3 on port 1883. +1612420140: Sending CONNACK to 172.18.0.3 (0, 5) +1612420140: Socket error on client , disconnecting. +1612420160: New connection from 172.18.0.3 on port 1883. +1612420160: Sending CONNACK to 172.18.0.3 (0, 5) +1612420160: Socket error on client , disconnecting. +1612420180: New connection from 172.18.0.3 on port 1883. +1612420180: Sending CONNACK to 172.18.0.3 (0, 5) +1612420180: Socket error on client , disconnecting. +1612420200: New connection from 172.18.0.3 on port 1883. +1612420200: Sending CONNACK to 172.18.0.3 (0, 5) +1612420200: Socket error on client , disconnecting. +1612420220: New connection from 172.18.0.3 on port 1883. +1612420220: Sending CONNACK to 172.18.0.3 (0, 5) +1612420220: Socket error on client , disconnecting. +1612420240: New connection from 172.18.0.3 on port 1883. +1612420240: Sending CONNACK to 172.18.0.3 (0, 5) +1612420240: Socket error on client , disconnecting. +1612420260: New connection from 172.18.0.3 on port 1883. +1612420260: Sending CONNACK to 172.18.0.3 (0, 5) +1612420260: Socket error on client , disconnecting. +1612420280: New connection from 172.18.0.3 on port 1883. +1612420280: Sending CONNACK to 172.18.0.3 (0, 5) +1612420280: Socket error on client , disconnecting. +1612420300: New connection from 172.18.0.3 on port 1883. +1612420300: Sending CONNACK to 172.18.0.3 (0, 5) +1612420300: Socket error on client , disconnecting. +1612420320: New connection from 172.18.0.3 on port 1883. +1612420320: Sending CONNACK to 172.18.0.3 (0, 5) +1612420320: Socket error on client , disconnecting. +1612420340: New connection from 172.18.0.3 on port 1883. +1612420340: Sending CONNACK to 172.18.0.3 (0, 5) +1612420340: Socket error on client , disconnecting. +1612420360: New connection from 172.18.0.3 on port 1883. +1612420360: Sending CONNACK to 172.18.0.3 (0, 5) +1612420360: Socket error on client , disconnecting. +1612420380: New connection from 172.18.0.3 on port 1883. +1612420380: Sending CONNACK to 172.18.0.3 (0, 5) +1612420380: Socket error on client , disconnecting. +1612420400: New connection from 172.18.0.3 on port 1883. +1612420400: Sending CONNACK to 172.18.0.3 (0, 5) +1612420400: Socket error on client , disconnecting. +1612420420: New connection from 172.18.0.3 on port 1883. +1612420420: Sending CONNACK to 172.18.0.3 (0, 5) +1612420420: Socket error on client , disconnecting. +1612420440: New connection from 172.18.0.3 on port 1883. +1612420440: Sending CONNACK to 172.18.0.3 (0, 5) +1612420440: Socket error on client , disconnecting. +1612420460: New connection from 172.18.0.3 on port 1883. +1612420460: Sending CONNACK to 172.18.0.3 (0, 5) +1612420460: Socket error on client , disconnecting. +1612420480: New connection from 172.18.0.3 on port 1883. +1612420480: Sending CONNACK to 172.18.0.3 (0, 5) +1612420480: Socket error on client , disconnecting. +1612420500: New connection from 172.18.0.3 on port 1883. +1612420500: Sending CONNACK to 172.18.0.3 (0, 5) +1612420500: Socket error on client , disconnecting. +1612420520: New connection from 172.18.0.3 on port 1883. +1612420520: Sending CONNACK to 172.18.0.3 (0, 5) +1612420520: Socket error on client , disconnecting. +1612420540: New connection from 172.18.0.3 on port 1883. +1612420540: Sending CONNACK to 172.18.0.3 (0, 5) +1612420540: Socket error on client , disconnecting. +1612420560: New connection from 172.18.0.3 on port 1883. +1612420560: Sending CONNACK to 172.18.0.3 (0, 5) +1612420560: Socket error on client , disconnecting. +1612420580: New connection from 172.18.0.3 on port 1883. +1612420580: Sending CONNACK to 172.18.0.3 (0, 5) +1612420580: Socket error on client , disconnecting. +1612420600: New connection from 172.18.0.3 on port 1883. +1612420600: Sending CONNACK to 172.18.0.3 (0, 5) +1612420600: Socket error on client , disconnecting. +1612420620: New connection from 172.18.0.3 on port 1883. +1612420620: Sending CONNACK to 172.18.0.3 (0, 5) +1612420620: Socket error on client , disconnecting. +1612420640: New connection from 172.18.0.3 on port 1883. +1612420640: Sending CONNACK to 172.18.0.3 (0, 5) +1612420640: Socket error on client , disconnecting. +1612420660: New connection from 172.18.0.3 on port 1883. +1612420660: Sending CONNACK to 172.18.0.3 (0, 5) +1612420660: Socket error on client , disconnecting. +1612420680: New connection from 172.18.0.3 on port 1883. +1612420680: Sending CONNACK to 172.18.0.3 (0, 5) +1612420680: Socket error on client , disconnecting. +1612420700: New connection from 172.18.0.3 on port 1883. +1612420700: Sending CONNACK to 172.18.0.3 (0, 5) +1612420700: Socket error on client , disconnecting. +1612420720: New connection from 172.18.0.3 on port 1883. +1612420720: Sending CONNACK to 172.18.0.3 (0, 5) +1612420720: Socket error on client , disconnecting. +1612420740: New connection from 172.18.0.3 on port 1883. +1612420740: Sending CONNACK to 172.18.0.3 (0, 5) +1612420740: Socket error on client , disconnecting. +1612420760: New connection from 172.18.0.3 on port 1883. +1612420760: Sending CONNACK to 172.18.0.3 (0, 5) +1612420760: Socket error on client , disconnecting. +1612420780: New connection from 172.18.0.3 on port 1883. +1612420780: Sending CONNACK to 172.18.0.3 (0, 5) +1612420780: Socket error on client , disconnecting. +1612420800: New connection from 172.18.0.3 on port 1883. +1612420800: Sending CONNACK to 172.18.0.3 (0, 5) +1612420800: Socket error on client , disconnecting. +1612420820: New connection from 172.18.0.3 on port 1883. +1612420820: Sending CONNACK to 172.18.0.3 (0, 5) +1612420820: Socket error on client , disconnecting. +1612420840: New connection from 172.18.0.3 on port 1883. +1612420840: Sending CONNACK to 172.18.0.3 (0, 5) +1612420840: Socket error on client , disconnecting. +1612420860: New connection from 172.18.0.3 on port 1883. +1612420860: Sending CONNACK to 172.18.0.3 (0, 5) +1612420860: Socket error on client , disconnecting. +1612420880: New connection from 172.18.0.3 on port 1883. +1612420880: Sending CONNACK to 172.18.0.3 (0, 5) +1612420880: Socket error on client , disconnecting. +1612420900: New connection from 172.18.0.3 on port 1883. +1612420900: Sending CONNACK to 172.18.0.3 (0, 5) +1612420900: Socket error on client , disconnecting. +1612420920: New connection from 172.18.0.3 on port 1883. +1612420920: Sending CONNACK to 172.18.0.3 (0, 5) +1612420920: Socket error on client , disconnecting. +1612420940: New connection from 172.18.0.3 on port 1883. +1612420940: Sending CONNACK to 172.18.0.3 (0, 5) +1612420940: Socket error on client , disconnecting. +1612420960: New connection from 172.18.0.3 on port 1883. +1612420960: Sending CONNACK to 172.18.0.3 (0, 5) +1612420960: Socket error on client , disconnecting. +1612420980: New connection from 172.18.0.3 on port 1883. +1612420980: Sending CONNACK to 172.18.0.3 (0, 5) +1612420980: Socket error on client , disconnecting. +1612421000: New connection from 172.18.0.3 on port 1883. +1612421000: Sending CONNACK to 172.18.0.3 (0, 5) +1612421000: Socket error on client , disconnecting. +1612421020: New connection from 172.18.0.3 on port 1883. +1612421020: Sending CONNACK to 172.18.0.3 (0, 5) +1612421020: Socket error on client , disconnecting. +1612421040: New connection from 172.18.0.3 on port 1883. +1612421040: Sending CONNACK to 172.18.0.3 (0, 5) +1612421040: Socket error on client , disconnecting. +1612421060: New connection from 172.18.0.3 on port 1883. +1612421060: Sending CONNACK to 172.18.0.3 (0, 5) +1612421060: Socket error on client , disconnecting. +1612421080: New connection from 172.18.0.3 on port 1883. +1612421080: Sending CONNACK to 172.18.0.3 (0, 5) +1612421080: Socket error on client , disconnecting. +1612421100: New connection from 172.18.0.3 on port 1883. +1612421100: Sending CONNACK to 172.18.0.3 (0, 5) +1612421100: Socket error on client , disconnecting. +1612421120: New connection from 172.18.0.3 on port 1883. +1612421120: Sending CONNACK to 172.18.0.3 (0, 5) +1612421120: Socket error on client , disconnecting. +1612421140: New connection from 172.18.0.3 on port 1883. +1612421140: Sending CONNACK to 172.18.0.3 (0, 5) +1612421140: Socket error on client , disconnecting. +1612421160: New connection from 172.18.0.3 on port 1883. +1612421160: Sending CONNACK to 172.18.0.3 (0, 5) +1612421160: Socket error on client , disconnecting. +1612421180: New connection from 172.18.0.3 on port 1883. +1612421180: Sending CONNACK to 172.18.0.3 (0, 5) +1612421180: Socket error on client , disconnecting. +1612421200: New connection from 172.18.0.3 on port 1883. +1612421200: Sending CONNACK to 172.18.0.3 (0, 5) +1612421200: Socket error on client , disconnecting. +1612421203: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612421203: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612421203: Error: Permission denied. +1612421220: New connection from 172.18.0.3 on port 1883. +1612421220: Sending CONNACK to 172.18.0.3 (0, 5) +1612421220: Socket error on client , disconnecting. +1612421240: New connection from 172.18.0.3 on port 1883. +1612421240: Sending CONNACK to 172.18.0.3 (0, 5) +1612421240: Socket error on client , disconnecting. +1612421260: New connection from 172.18.0.3 on port 1883. +1612421260: Sending CONNACK to 172.18.0.3 (0, 5) +1612421260: Socket error on client , disconnecting. +1612421280: New connection from 172.18.0.3 on port 1883. +1612421280: Sending CONNACK to 172.18.0.3 (0, 5) +1612421280: Socket error on client , disconnecting. +1612421300: New connection from 172.18.0.3 on port 1883. +1612421300: Sending CONNACK to 172.18.0.3 (0, 5) +1612421300: Socket error on client , disconnecting. +1612421320: New connection from 172.18.0.3 on port 1883. +1612421320: Sending CONNACK to 172.18.0.3 (0, 5) +1612421320: Socket error on client , disconnecting. +1612421340: New connection from 172.18.0.3 on port 1883. +1612421340: Sending CONNACK to 172.18.0.3 (0, 5) +1612421340: Socket error on client , disconnecting. +1612421360: New connection from 172.18.0.3 on port 1883. +1612421360: Sending CONNACK to 172.18.0.3 (0, 5) +1612421360: Socket error on client , disconnecting. +1612421380: New connection from 172.18.0.3 on port 1883. +1612421380: Sending CONNACK to 172.18.0.3 (0, 5) +1612421380: Socket error on client , disconnecting. +1612421400: New connection from 172.18.0.3 on port 1883. +1612421400: Sending CONNACK to 172.18.0.3 (0, 5) +1612421400: Socket error on client , disconnecting. +1612421420: New connection from 172.18.0.3 on port 1883. +1612421420: Sending CONNACK to 172.18.0.3 (0, 5) +1612421420: Socket error on client , disconnecting. +1612421440: New connection from 172.18.0.3 on port 1883. +1612421440: Sending CONNACK to 172.18.0.3 (0, 5) +1612421440: Socket error on client , disconnecting. +1612421460: New connection from 172.18.0.3 on port 1883. +1612421460: Sending CONNACK to 172.18.0.3 (0, 5) +1612421460: Socket error on client , disconnecting. +1612421480: New connection from 172.18.0.3 on port 1883. +1612421480: Sending CONNACK to 172.18.0.3 (0, 5) +1612421480: Socket error on client , disconnecting. +1612421500: New connection from 172.18.0.3 on port 1883. +1612421500: Sending CONNACK to 172.18.0.3 (0, 5) +1612421500: Socket error on client , disconnecting. +1612421520: New connection from 172.18.0.3 on port 1883. +1612421520: Sending CONNACK to 172.18.0.3 (0, 5) +1612421520: Socket error on client , disconnecting. +1612421540: New connection from 172.18.0.3 on port 1883. +1612421540: Sending CONNACK to 172.18.0.3 (0, 5) +1612421540: Socket error on client , disconnecting. +1612421560: New connection from 172.18.0.3 on port 1883. +1612421560: Sending CONNACK to 172.18.0.3 (0, 5) +1612421560: Socket error on client , disconnecting. +1612421580: New connection from 172.18.0.3 on port 1883. +1612421580: Sending CONNACK to 172.18.0.3 (0, 5) +1612421580: Socket error on client , disconnecting. +1612421600: New connection from 172.18.0.3 on port 1883. +1612421600: Sending CONNACK to 172.18.0.3 (0, 5) +1612421600: Socket error on client , disconnecting. +1612421620: New connection from 172.18.0.3 on port 1883. +1612421620: Sending CONNACK to 172.18.0.3 (0, 5) +1612421620: Socket error on client , disconnecting. +1612421640: New connection from 172.18.0.3 on port 1883. +1612421640: Sending CONNACK to 172.18.0.3 (0, 5) +1612421640: Socket error on client , disconnecting. +1612421660: New connection from 172.18.0.3 on port 1883. +1612421660: Sending CONNACK to 172.18.0.3 (0, 5) +1612421660: Socket error on client , disconnecting. +1612421680: New connection from 172.18.0.3 on port 1883. +1612421680: Sending CONNACK to 172.18.0.3 (0, 5) +1612421680: Socket error on client , disconnecting. +1612421700: New connection from 172.18.0.3 on port 1883. +1612421700: Sending CONNACK to 172.18.0.3 (0, 5) +1612421700: Socket error on client , disconnecting. +1612421720: New connection from 172.18.0.3 on port 1883. +1612421720: Sending CONNACK to 172.18.0.3 (0, 5) +1612421720: Socket error on client , disconnecting. +1612421740: New connection from 172.18.0.3 on port 1883. +1612421740: Sending CONNACK to 172.18.0.3 (0, 5) +1612421740: Socket error on client , disconnecting. +1612421760: New connection from 172.18.0.3 on port 1883. +1612421760: Sending CONNACK to 172.18.0.3 (0, 5) +1612421760: Socket error on client , disconnecting. +1612421780: New connection from 172.18.0.3 on port 1883. +1612421780: Sending CONNACK to 172.18.0.3 (0, 5) +1612421780: Socket error on client , disconnecting. +1612421800: New connection from 172.18.0.3 on port 1883. +1612421800: Sending CONNACK to 172.18.0.3 (0, 5) +1612421800: Socket error on client , disconnecting. +1612421820: New connection from 172.18.0.3 on port 1883. +1612421820: Sending CONNACK to 172.18.0.3 (0, 5) +1612421820: Socket error on client , disconnecting. +1612421840: New connection from 172.18.0.3 on port 1883. +1612421840: Sending CONNACK to 172.18.0.3 (0, 5) +1612421840: Socket error on client , disconnecting. +1612421860: New connection from 172.18.0.3 on port 1883. +1612421860: Sending CONNACK to 172.18.0.3 (0, 5) +1612421860: Socket error on client , disconnecting. +1612421880: New connection from 172.18.0.3 on port 1883. +1612421880: Sending CONNACK to 172.18.0.3 (0, 5) +1612421880: Socket error on client , disconnecting. +1612421900: New connection from 172.18.0.3 on port 1883. +1612421900: Sending CONNACK to 172.18.0.3 (0, 5) +1612421900: Socket error on client , disconnecting. +1612421920: New connection from 172.18.0.3 on port 1883. +1612421920: Sending CONNACK to 172.18.0.3 (0, 5) +1612421920: Socket error on client , disconnecting. +1612421940: New connection from 172.18.0.3 on port 1883. +1612421940: Sending CONNACK to 172.18.0.3 (0, 5) +1612421940: Socket error on client , disconnecting. +1612421960: New connection from 172.18.0.3 on port 1883. +1612421960: Sending CONNACK to 172.18.0.3 (0, 5) +1612421960: Socket error on client , disconnecting. +1612421980: New connection from 172.18.0.3 on port 1883. +1612421980: Sending CONNACK to 172.18.0.3 (0, 5) +1612421980: Socket error on client , disconnecting. +1612422000: New connection from 172.18.0.3 on port 1883. +1612422000: Sending CONNACK to 172.18.0.3 (0, 5) +1612422000: Socket error on client , disconnecting. +1612422020: New connection from 172.18.0.3 on port 1883. +1612422020: Sending CONNACK to 172.18.0.3 (0, 5) +1612422020: Socket error on client , disconnecting. +1612422040: New connection from 172.18.0.3 on port 1883. +1612422040: Sending CONNACK to 172.18.0.3 (0, 5) +1612422040: Socket error on client , disconnecting. +1612422060: New connection from 172.18.0.3 on port 1883. +1612422060: Sending CONNACK to 172.18.0.3 (0, 5) +1612422060: Socket error on client , disconnecting. +1612422080: New connection from 172.18.0.3 on port 1883. +1612422080: Sending CONNACK to 172.18.0.3 (0, 5) +1612422080: Socket error on client , disconnecting. +1612422100: New connection from 172.18.0.3 on port 1883. +1612422100: Sending CONNACK to 172.18.0.3 (0, 5) +1612422100: Socket error on client , disconnecting. +1612422120: New connection from 172.18.0.3 on port 1883. +1612422120: Sending CONNACK to 172.18.0.3 (0, 5) +1612422120: Socket error on client , disconnecting. +1612422140: New connection from 172.18.0.3 on port 1883. +1612422140: Sending CONNACK to 172.18.0.3 (0, 5) +1612422140: Socket error on client , disconnecting. +1612422160: New connection from 172.18.0.3 on port 1883. +1612422160: Sending CONNACK to 172.18.0.3 (0, 5) +1612422160: Socket error on client , disconnecting. +1612422180: New connection from 172.18.0.3 on port 1883. +1612422180: Sending CONNACK to 172.18.0.3 (0, 5) +1612422180: Socket error on client , disconnecting. +1612422200: New connection from 172.18.0.3 on port 1883. +1612422200: Sending CONNACK to 172.18.0.3 (0, 5) +1612422200: Socket error on client , disconnecting. +1612422220: New connection from 172.18.0.3 on port 1883. +1612422220: Sending CONNACK to 172.18.0.3 (0, 5) +1612422220: Socket error on client , disconnecting. +1612422240: New connection from 172.18.0.3 on port 1883. +1612422240: Sending CONNACK to 172.18.0.3 (0, 5) +1612422240: Socket error on client , disconnecting. +1612422260: New connection from 172.18.0.3 on port 1883. +1612422260: Sending CONNACK to 172.18.0.3 (0, 5) +1612422260: Socket error on client , disconnecting. +1612422280: New connection from 172.18.0.3 on port 1883. +1612422280: Sending CONNACK to 172.18.0.3 (0, 5) +1612422280: Socket error on client , disconnecting. +1612422300: New connection from 172.18.0.3 on port 1883. +1612422300: Sending CONNACK to 172.18.0.3 (0, 5) +1612422300: Socket error on client , disconnecting. +1612422320: New connection from 172.18.0.3 on port 1883. +1612422320: Sending CONNACK to 172.18.0.3 (0, 5) +1612422320: Socket error on client , disconnecting. +1612422340: New connection from 172.18.0.3 on port 1883. +1612422340: Sending CONNACK to 172.18.0.3 (0, 5) +1612422340: Socket error on client , disconnecting. +1612422360: New connection from 172.18.0.3 on port 1883. +1612422360: Sending CONNACK to 172.18.0.3 (0, 5) +1612422360: Socket error on client , disconnecting. +1612422380: New connection from 172.18.0.3 on port 1883. +1612422380: Sending CONNACK to 172.18.0.3 (0, 5) +1612422380: Socket error on client , disconnecting. +1612422400: New connection from 172.18.0.3 on port 1883. +1612422400: Sending CONNACK to 172.18.0.3 (0, 5) +1612422400: Socket error on client , disconnecting. +1612422420: New connection from 172.18.0.3 on port 1883. +1612422420: Sending CONNACK to 172.18.0.3 (0, 5) +1612422420: Socket error on client , disconnecting. +1612422440: New connection from 172.18.0.3 on port 1883. +1612422440: Sending CONNACK to 172.18.0.3 (0, 5) +1612422440: Socket error on client , disconnecting. +1612422460: New connection from 172.18.0.3 on port 1883. +1612422460: Sending CONNACK to 172.18.0.3 (0, 5) +1612422460: Socket error on client , disconnecting. +1612422480: New connection from 172.18.0.3 on port 1883. +1612422480: Sending CONNACK to 172.18.0.3 (0, 5) +1612422480: Socket error on client , disconnecting. +1612422500: New connection from 172.18.0.3 on port 1883. +1612422500: Sending CONNACK to 172.18.0.3 (0, 5) +1612422500: Socket error on client , disconnecting. +1612422520: New connection from 172.18.0.3 on port 1883. +1612422520: Sending CONNACK to 172.18.0.3 (0, 5) +1612422520: Socket error on client , disconnecting. +1612422540: New connection from 172.18.0.3 on port 1883. +1612422540: Sending CONNACK to 172.18.0.3 (0, 5) +1612422540: Socket error on client , disconnecting. +1612422560: New connection from 172.18.0.3 on port 1883. +1612422560: Sending CONNACK to 172.18.0.3 (0, 5) +1612422560: Socket error on client , disconnecting. +1612422580: New connection from 172.18.0.3 on port 1883. +1612422580: Sending CONNACK to 172.18.0.3 (0, 5) +1612422580: Socket error on client , disconnecting. +1612422600: New connection from 172.18.0.3 on port 1883. +1612422600: Sending CONNACK to 172.18.0.3 (0, 5) +1612422600: Socket error on client , disconnecting. +1612422620: New connection from 172.18.0.3 on port 1883. +1612422620: Sending CONNACK to 172.18.0.3 (0, 5) +1612422620: Socket error on client , disconnecting. +1612422640: New connection from 172.18.0.3 on port 1883. +1612422640: Sending CONNACK to 172.18.0.3 (0, 5) +1612422640: Socket error on client , disconnecting. +1612422660: New connection from 172.18.0.3 on port 1883. +1612422660: Sending CONNACK to 172.18.0.3 (0, 5) +1612422660: Socket error on client , disconnecting. +1612422680: New connection from 172.18.0.3 on port 1883. +1612422680: Sending CONNACK to 172.18.0.3 (0, 5) +1612422680: Socket error on client , disconnecting. +1612422700: New connection from 172.18.0.3 on port 1883. +1612422700: Sending CONNACK to 172.18.0.3 (0, 5) +1612422700: Socket error on client , disconnecting. +1612422720: New connection from 172.18.0.3 on port 1883. +1612422720: Sending CONNACK to 172.18.0.3 (0, 5) +1612422720: Socket error on client , disconnecting. +1612422740: New connection from 172.18.0.3 on port 1883. +1612422740: Sending CONNACK to 172.18.0.3 (0, 5) +1612422740: Socket error on client , disconnecting. +1612422760: New connection from 172.18.0.3 on port 1883. +1612422760: Sending CONNACK to 172.18.0.3 (0, 5) +1612422760: Socket error on client , disconnecting. +1612422780: New connection from 172.18.0.3 on port 1883. +1612422780: Sending CONNACK to 172.18.0.3 (0, 5) +1612422780: Socket error on client , disconnecting. +1612422800: New connection from 172.18.0.3 on port 1883. +1612422800: Sending CONNACK to 172.18.0.3 (0, 5) +1612422800: Socket error on client , disconnecting. +1612422820: New connection from 172.18.0.3 on port 1883. +1612422820: Sending CONNACK to 172.18.0.3 (0, 5) +1612422820: Socket error on client , disconnecting. +1612422840: New connection from 172.18.0.3 on port 1883. +1612422840: Sending CONNACK to 172.18.0.3 (0, 5) +1612422840: Socket error on client , disconnecting. +1612422860: New connection from 172.18.0.3 on port 1883. +1612422860: Sending CONNACK to 172.18.0.3 (0, 5) +1612422860: Socket error on client , disconnecting. +1612422880: New connection from 172.18.0.3 on port 1883. +1612422880: Sending CONNACK to 172.18.0.3 (0, 5) +1612422880: Socket error on client , disconnecting. +1612422900: New connection from 172.18.0.3 on port 1883. +1612422900: Sending CONNACK to 172.18.0.3 (0, 5) +1612422900: Socket error on client , disconnecting. +1612422920: New connection from 172.18.0.3 on port 1883. +1612422920: Sending CONNACK to 172.18.0.3 (0, 5) +1612422920: Socket error on client , disconnecting. +1612422940: New connection from 172.18.0.3 on port 1883. +1612422940: Sending CONNACK to 172.18.0.3 (0, 5) +1612422940: Socket error on client , disconnecting. +1612422960: New connection from 172.18.0.3 on port 1883. +1612422960: Sending CONNACK to 172.18.0.3 (0, 5) +1612422960: Socket error on client , disconnecting. +1612422980: New connection from 172.18.0.3 on port 1883. +1612422980: Sending CONNACK to 172.18.0.3 (0, 5) +1612422980: Socket error on client , disconnecting. +1612423000: New connection from 172.18.0.3 on port 1883. +1612423000: Sending CONNACK to 172.18.0.3 (0, 5) +1612423000: Socket error on client , disconnecting. +1612423004: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612423004: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612423004: Error: Permission denied. +1612423020: New connection from 172.18.0.3 on port 1883. +1612423020: Sending CONNACK to 172.18.0.3 (0, 5) +1612423020: Socket error on client , disconnecting. +1612423040: New connection from 172.18.0.3 on port 1883. +1612423040: Sending CONNACK to 172.18.0.3 (0, 5) +1612423040: Socket error on client , disconnecting. +1612423060: New connection from 172.18.0.3 on port 1883. +1612423060: Sending CONNACK to 172.18.0.3 (0, 5) +1612423060: Socket error on client , disconnecting. +1612423080: New connection from 172.18.0.3 on port 1883. +1612423080: Sending CONNACK to 172.18.0.3 (0, 5) +1612423080: Socket error on client , disconnecting. +1612423100: New connection from 172.18.0.3 on port 1883. +1612423100: Sending CONNACK to 172.18.0.3 (0, 5) +1612423100: Socket error on client , disconnecting. +1612423120: New connection from 172.18.0.3 on port 1883. +1612423120: Sending CONNACK to 172.18.0.3 (0, 5) +1612423120: Socket error on client , disconnecting. +1612423140: New connection from 172.18.0.3 on port 1883. +1612423140: Sending CONNACK to 172.18.0.3 (0, 5) +1612423140: Socket error on client , disconnecting. +1612423160: New connection from 172.18.0.3 on port 1883. +1612423160: Sending CONNACK to 172.18.0.3 (0, 5) +1612423160: Socket error on client , disconnecting. +1612423180: New connection from 172.18.0.3 on port 1883. +1612423180: Sending CONNACK to 172.18.0.3 (0, 5) +1612423180: Socket error on client , disconnecting. +1612423200: New connection from 172.18.0.3 on port 1883. +1612423200: Sending CONNACK to 172.18.0.3 (0, 5) +1612423200: Socket error on client , disconnecting. +1612423220: New connection from 172.18.0.3 on port 1883. +1612423220: Sending CONNACK to 172.18.0.3 (0, 5) +1612423220: Socket error on client , disconnecting. +1612423240: New connection from 172.18.0.3 on port 1883. +1612423240: Sending CONNACK to 172.18.0.3 (0, 5) +1612423240: Socket error on client , disconnecting. +1612423260: New connection from 172.18.0.3 on port 1883. +1612423260: Sending CONNACK to 172.18.0.3 (0, 5) +1612423260: Socket error on client , disconnecting. +1612423280: New connection from 172.18.0.3 on port 1883. +1612423280: Sending CONNACK to 172.18.0.3 (0, 5) +1612423280: Socket error on client , disconnecting. +1612423300: New connection from 172.18.0.3 on port 1883. +1612423300: Sending CONNACK to 172.18.0.3 (0, 5) +1612423300: Socket error on client , disconnecting. +1612423320: New connection from 172.18.0.3 on port 1883. +1612423320: Sending CONNACK to 172.18.0.3 (0, 5) +1612423320: Socket error on client , disconnecting. +1612423340: New connection from 172.18.0.3 on port 1883. +1612423340: Sending CONNACK to 172.18.0.3 (0, 5) +1612423340: Socket error on client , disconnecting. +1612423360: New connection from 172.18.0.3 on port 1883. +1612423360: Sending CONNACK to 172.18.0.3 (0, 5) +1612423360: Socket error on client , disconnecting. +1612423380: New connection from 172.18.0.3 on port 1883. +1612423380: Sending CONNACK to 172.18.0.3 (0, 5) +1612423380: Socket error on client , disconnecting. +1612423400: New connection from 172.18.0.3 on port 1883. +1612423400: Sending CONNACK to 172.18.0.3 (0, 5) +1612423400: Socket error on client , disconnecting. +1612423420: New connection from 172.18.0.3 on port 1883. +1612423420: Sending CONNACK to 172.18.0.3 (0, 5) +1612423420: Socket error on client , disconnecting. +1612423440: New connection from 172.18.0.3 on port 1883. +1612423440: Sending CONNACK to 172.18.0.3 (0, 5) +1612423440: Socket error on client , disconnecting. +1612423460: New connection from 172.18.0.3 on port 1883. +1612423460: Sending CONNACK to 172.18.0.3 (0, 5) +1612423460: Socket error on client , disconnecting. +1612423480: New connection from 172.18.0.3 on port 1883. +1612423480: Sending CONNACK to 172.18.0.3 (0, 5) +1612423480: Socket error on client , disconnecting. +1612423500: New connection from 172.18.0.3 on port 1883. +1612423500: Sending CONNACK to 172.18.0.3 (0, 5) +1612423500: Socket error on client , disconnecting. +1612423520: New connection from 172.18.0.3 on port 1883. +1612423520: Sending CONNACK to 172.18.0.3 (0, 5) +1612423520: Socket error on client , disconnecting. +1612423540: New connection from 172.18.0.3 on port 1883. +1612423540: Sending CONNACK to 172.18.0.3 (0, 5) +1612423540: Socket error on client , disconnecting. +1612423560: New connection from 172.18.0.3 on port 1883. +1612423560: Sending CONNACK to 172.18.0.3 (0, 5) +1612423560: Socket error on client , disconnecting. +1612423580: New connection from 172.18.0.3 on port 1883. +1612423580: Sending CONNACK to 172.18.0.3 (0, 5) +1612423580: Socket error on client , disconnecting. +1612423600: New connection from 172.18.0.3 on port 1883. +1612423600: Sending CONNACK to 172.18.0.3 (0, 5) +1612423600: Socket error on client , disconnecting. +1612423620: New connection from 172.18.0.3 on port 1883. +1612423620: Sending CONNACK to 172.18.0.3 (0, 5) +1612423620: Socket error on client , disconnecting. +1612423640: New connection from 172.18.0.3 on port 1883. +1612423640: Sending CONNACK to 172.18.0.3 (0, 5) +1612423640: Socket error on client , disconnecting. +1612423660: New connection from 172.18.0.3 on port 1883. +1612423660: Sending CONNACK to 172.18.0.3 (0, 5) +1612423660: Socket error on client , disconnecting. +1612423680: New connection from 172.18.0.3 on port 1883. +1612423680: Sending CONNACK to 172.18.0.3 (0, 5) +1612423680: Socket error on client , disconnecting. +1612423700: New connection from 172.18.0.3 on port 1883. +1612423700: Sending CONNACK to 172.18.0.3 (0, 5) +1612423700: Socket error on client , disconnecting. +1612423720: New connection from 172.18.0.3 on port 1883. +1612423720: Sending CONNACK to 172.18.0.3 (0, 5) +1612423720: Socket error on client , disconnecting. +1612423740: New connection from 172.18.0.3 on port 1883. +1612423740: Sending CONNACK to 172.18.0.3 (0, 5) +1612423740: Socket error on client , disconnecting. +1612423760: New connection from 172.18.0.3 on port 1883. +1612423760: Sending CONNACK to 172.18.0.3 (0, 5) +1612423760: Socket error on client , disconnecting. +1612423780: New connection from 172.18.0.3 on port 1883. +1612423780: Sending CONNACK to 172.18.0.3 (0, 5) +1612423780: Socket error on client , disconnecting. +1612423800: New connection from 172.18.0.3 on port 1883. +1612423800: Sending CONNACK to 172.18.0.3 (0, 5) +1612423800: Socket error on client , disconnecting. +1612423820: New connection from 172.18.0.3 on port 1883. +1612423820: Sending CONNACK to 172.18.0.3 (0, 5) +1612423820: Socket error on client , disconnecting. +1612423840: New connection from 172.18.0.3 on port 1883. +1612423840: Sending CONNACK to 172.18.0.3 (0, 5) +1612423840: Socket error on client , disconnecting. +1612423860: New connection from 172.18.0.3 on port 1883. +1612423860: Sending CONNACK to 172.18.0.3 (0, 5) +1612423860: Socket error on client , disconnecting. +1612423880: New connection from 172.18.0.3 on port 1883. +1612423880: Sending CONNACK to 172.18.0.3 (0, 5) +1612423880: Socket error on client , disconnecting. +1612423900: New connection from 172.18.0.3 on port 1883. +1612423900: Sending CONNACK to 172.18.0.3 (0, 5) +1612423900: Socket error on client , disconnecting. +1612423920: New connection from 172.18.0.3 on port 1883. +1612423920: Sending CONNACK to 172.18.0.3 (0, 5) +1612423920: Socket error on client , disconnecting. +1612423940: New connection from 172.18.0.3 on port 1883. +1612423940: Sending CONNACK to 172.18.0.3 (0, 5) +1612423940: Socket error on client , disconnecting. +1612423960: New connection from 172.18.0.3 on port 1883. +1612423960: Sending CONNACK to 172.18.0.3 (0, 5) +1612423960: Socket error on client , disconnecting. +1612423980: New connection from 172.18.0.3 on port 1883. +1612423980: Sending CONNACK to 172.18.0.3 (0, 5) +1612423980: Socket error on client , disconnecting. +1612424000: New connection from 172.18.0.3 on port 1883. +1612424000: Sending CONNACK to 172.18.0.3 (0, 5) +1612424000: Socket error on client , disconnecting. +1612424020: New connection from 172.18.0.3 on port 1883. +1612424020: Sending CONNACK to 172.18.0.3 (0, 5) +1612424020: Socket error on client , disconnecting. +1612424040: New connection from 172.18.0.3 on port 1883. +1612424040: Sending CONNACK to 172.18.0.3 (0, 5) +1612424040: Socket error on client , disconnecting. +1612424060: New connection from 172.18.0.3 on port 1883. +1612424060: Sending CONNACK to 172.18.0.3 (0, 5) +1612424060: Socket error on client , disconnecting. +1612424080: New connection from 172.18.0.3 on port 1883. +1612424080: Sending CONNACK to 172.18.0.3 (0, 5) +1612424080: Socket error on client , disconnecting. +1612424100: New connection from 172.18.0.3 on port 1883. +1612424100: Sending CONNACK to 172.18.0.3 (0, 5) +1612424100: Socket error on client , disconnecting. +1612424120: New connection from 172.18.0.3 on port 1883. +1612424120: Sending CONNACK to 172.18.0.3 (0, 5) +1612424120: Socket error on client , disconnecting. +1612424140: New connection from 172.18.0.3 on port 1883. +1612424140: Sending CONNACK to 172.18.0.3 (0, 5) +1612424140: Socket error on client , disconnecting. +1612424160: New connection from 172.18.0.3 on port 1883. +1612424160: Sending CONNACK to 172.18.0.3 (0, 5) +1612424160: Socket error on client , disconnecting. +1612424180: New connection from 172.18.0.3 on port 1883. +1612424180: Sending CONNACK to 172.18.0.3 (0, 5) +1612424180: Socket error on client , disconnecting. +1612424200: New connection from 172.18.0.3 on port 1883. +1612424200: Sending CONNACK to 172.18.0.3 (0, 5) +1612424200: Socket error on client , disconnecting. +1612424220: New connection from 172.18.0.3 on port 1883. +1612424220: Sending CONNACK to 172.18.0.3 (0, 5) +1612424220: Socket error on client , disconnecting. +1612424240: New connection from 172.18.0.3 on port 1883. +1612424240: Sending CONNACK to 172.18.0.3 (0, 5) +1612424240: Socket error on client , disconnecting. +1612424260: New connection from 172.18.0.3 on port 1883. +1612424260: Sending CONNACK to 172.18.0.3 (0, 5) +1612424260: Socket error on client , disconnecting. +1612424280: New connection from 172.18.0.3 on port 1883. +1612424280: Sending CONNACK to 172.18.0.3 (0, 5) +1612424280: Socket error on client , disconnecting. +1612424300: New connection from 172.18.0.3 on port 1883. +1612424300: Sending CONNACK to 172.18.0.3 (0, 5) +1612424300: Socket error on client , disconnecting. +1612424320: New connection from 172.18.0.3 on port 1883. +1612424320: Sending CONNACK to 172.18.0.3 (0, 5) +1612424320: Socket error on client , disconnecting. +1612424340: New connection from 172.18.0.3 on port 1883. +1612424340: Sending CONNACK to 172.18.0.3 (0, 5) +1612424340: Socket error on client , disconnecting. +1612424360: New connection from 172.18.0.3 on port 1883. +1612424360: Sending CONNACK to 172.18.0.3 (0, 5) +1612424360: Socket error on client , disconnecting. +1612424380: New connection from 172.18.0.3 on port 1883. +1612424380: Sending CONNACK to 172.18.0.3 (0, 5) +1612424380: Socket error on client , disconnecting. +1612424400: New connection from 172.18.0.3 on port 1883. +1612424400: Sending CONNACK to 172.18.0.3 (0, 5) +1612424400: Socket error on client , disconnecting. +1612424420: New connection from 172.18.0.3 on port 1883. +1612424420: Sending CONNACK to 172.18.0.3 (0, 5) +1612424420: Socket error on client , disconnecting. +1612424440: New connection from 172.18.0.3 on port 1883. +1612424440: Sending CONNACK to 172.18.0.3 (0, 5) +1612424440: Socket error on client , disconnecting. +1612424460: New connection from 172.18.0.3 on port 1883. +1612424460: Sending CONNACK to 172.18.0.3 (0, 5) +1612424460: Socket error on client , disconnecting. +1612424480: New connection from 172.18.0.3 on port 1883. +1612424480: Sending CONNACK to 172.18.0.3 (0, 5) +1612424480: Socket error on client , disconnecting. +1612424500: New connection from 172.18.0.3 on port 1883. +1612424500: Sending CONNACK to 172.18.0.3 (0, 5) +1612424500: Socket error on client , disconnecting. +1612424520: New connection from 172.18.0.3 on port 1883. +1612424520: Sending CONNACK to 172.18.0.3 (0, 5) +1612424520: Socket error on client , disconnecting. +1612424540: New connection from 172.18.0.3 on port 1883. +1612424540: Sending CONNACK to 172.18.0.3 (0, 5) +1612424540: Socket error on client , disconnecting. +1612424560: New connection from 172.18.0.3 on port 1883. +1612424560: Sending CONNACK to 172.18.0.3 (0, 5) +1612424560: Socket error on client , disconnecting. +1612424580: New connection from 172.18.0.3 on port 1883. +1612424580: Sending CONNACK to 172.18.0.3 (0, 5) +1612424580: Socket error on client , disconnecting. +1612424600: New connection from 172.18.0.3 on port 1883. +1612424600: Sending CONNACK to 172.18.0.3 (0, 5) +1612424600: Socket error on client , disconnecting. +1612424620: New connection from 172.18.0.3 on port 1883. +1612424620: Sending CONNACK to 172.18.0.3 (0, 5) +1612424620: Socket error on client , disconnecting. +1612424640: New connection from 172.18.0.3 on port 1883. +1612424640: Sending CONNACK to 172.18.0.3 (0, 5) +1612424640: Socket error on client , disconnecting. +1612424660: New connection from 172.18.0.3 on port 1883. +1612424660: Sending CONNACK to 172.18.0.3 (0, 5) +1612424660: Socket error on client , disconnecting. +1612424680: New connection from 172.18.0.3 on port 1883. +1612424680: Sending CONNACK to 172.18.0.3 (0, 5) +1612424680: Socket error on client , disconnecting. +1612424700: New connection from 172.18.0.3 on port 1883. +1612424700: Sending CONNACK to 172.18.0.3 (0, 5) +1612424700: Socket error on client , disconnecting. +1612424720: New connection from 172.18.0.3 on port 1883. +1612424720: Sending CONNACK to 172.18.0.3 (0, 5) +1612424720: Socket error on client , disconnecting. +1612424740: New connection from 172.18.0.3 on port 1883. +1612424740: Sending CONNACK to 172.18.0.3 (0, 5) +1612424740: Socket error on client , disconnecting. +1612424760: New connection from 172.18.0.3 on port 1883. +1612424760: Sending CONNACK to 172.18.0.3 (0, 5) +1612424760: Socket error on client , disconnecting. +1612424780: New connection from 172.18.0.3 on port 1883. +1612424780: Sending CONNACK to 172.18.0.3 (0, 5) +1612424780: Socket error on client , disconnecting. +1612424800: New connection from 172.18.0.3 on port 1883. +1612424800: Sending CONNACK to 172.18.0.3 (0, 5) +1612424800: Socket error on client , disconnecting. +1612424805: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612424805: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612424805: Error: Permission denied. +1612424820: New connection from 172.18.0.3 on port 1883. +1612424820: Sending CONNACK to 172.18.0.3 (0, 5) +1612424820: Socket error on client , disconnecting. +1612424840: New connection from 172.18.0.3 on port 1883. +1612424840: Sending CONNACK to 172.18.0.3 (0, 5) +1612424840: Socket error on client , disconnecting. +1612424860: New connection from 172.18.0.3 on port 1883. +1612424860: Sending CONNACK to 172.18.0.3 (0, 5) +1612424860: Socket error on client , disconnecting. +1612424880: New connection from 172.18.0.3 on port 1883. +1612424880: Sending CONNACK to 172.18.0.3 (0, 5) +1612424880: Socket error on client , disconnecting. +1612424900: New connection from 172.18.0.3 on port 1883. +1612424900: Sending CONNACK to 172.18.0.3 (0, 5) +1612424900: Socket error on client , disconnecting. +1612424920: New connection from 172.18.0.3 on port 1883. +1612424920: Sending CONNACK to 172.18.0.3 (0, 5) +1612424920: Socket error on client , disconnecting. +1612424940: New connection from 172.18.0.3 on port 1883. +1612424940: Sending CONNACK to 172.18.0.3 (0, 5) +1612424940: Socket error on client , disconnecting. +1612424960: New connection from 172.18.0.3 on port 1883. +1612424960: Sending CONNACK to 172.18.0.3 (0, 5) +1612424960: Socket error on client , disconnecting. +1612424980: New connection from 172.18.0.3 on port 1883. +1612424980: Sending CONNACK to 172.18.0.3 (0, 5) +1612424980: Socket error on client , disconnecting. +1612425000: New connection from 172.18.0.3 on port 1883. +1612425000: Sending CONNACK to 172.18.0.3 (0, 5) +1612425000: Socket error on client , disconnecting. +1612425020: New connection from 172.18.0.3 on port 1883. +1612425020: Sending CONNACK to 172.18.0.3 (0, 5) +1612425020: Socket error on client , disconnecting. +1612425040: New connection from 172.18.0.3 on port 1883. +1612425040: Sending CONNACK to 172.18.0.3 (0, 5) +1612425040: Socket error on client , disconnecting. +1612425060: New connection from 172.18.0.3 on port 1883. +1612425060: Sending CONNACK to 172.18.0.3 (0, 5) +1612425060: Socket error on client , disconnecting. +1612425080: New connection from 172.18.0.3 on port 1883. +1612425080: Sending CONNACK to 172.18.0.3 (0, 5) +1612425080: Socket error on client , disconnecting. +1612425100: New connection from 172.18.0.3 on port 1883. +1612425100: Sending CONNACK to 172.18.0.3 (0, 5) +1612425100: Socket error on client , disconnecting. +1612425120: New connection from 172.18.0.3 on port 1883. +1612425120: Sending CONNACK to 172.18.0.3 (0, 5) +1612425120: Socket error on client , disconnecting. +1612425140: New connection from 172.18.0.3 on port 1883. +1612425140: Sending CONNACK to 172.18.0.3 (0, 5) +1612425140: Socket error on client , disconnecting. +1612425160: New connection from 172.18.0.3 on port 1883. +1612425160: Sending CONNACK to 172.18.0.3 (0, 5) +1612425160: Socket error on client , disconnecting. +1612425180: New connection from 172.18.0.3 on port 1883. +1612425180: Sending CONNACK to 172.18.0.3 (0, 5) +1612425180: Socket error on client , disconnecting. +1612425200: New connection from 172.18.0.3 on port 1883. +1612425200: Sending CONNACK to 172.18.0.3 (0, 5) +1612425200: Socket error on client , disconnecting. +1612425220: New connection from 172.18.0.3 on port 1883. +1612425220: Sending CONNACK to 172.18.0.3 (0, 5) +1612425220: Socket error on client , disconnecting. +1612425240: New connection from 172.18.0.3 on port 1883. +1612425240: Sending CONNACK to 172.18.0.3 (0, 5) +1612425240: Socket error on client , disconnecting. +1612425260: New connection from 172.18.0.3 on port 1883. +1612425260: Sending CONNACK to 172.18.0.3 (0, 5) +1612425260: Socket error on client , disconnecting. +1612425280: New connection from 172.18.0.3 on port 1883. +1612425280: Sending CONNACK to 172.18.0.3 (0, 5) +1612425280: Socket error on client , disconnecting. +1612425300: New connection from 172.18.0.3 on port 1883. +1612425300: Sending CONNACK to 172.18.0.3 (0, 5) +1612425300: Socket error on client , disconnecting. +1612425320: New connection from 172.18.0.3 on port 1883. +1612425320: Sending CONNACK to 172.18.0.3 (0, 5) +1612425320: Socket error on client , disconnecting. +1612425340: New connection from 172.18.0.3 on port 1883. +1612425340: Sending CONNACK to 172.18.0.3 (0, 5) +1612425340: Socket error on client , disconnecting. +1612425360: New connection from 172.18.0.3 on port 1883. +1612425360: Sending CONNACK to 172.18.0.3 (0, 5) +1612425360: Socket error on client , disconnecting. +1612425380: New connection from 172.18.0.3 on port 1883. +1612425380: Sending CONNACK to 172.18.0.3 (0, 5) +1612425380: Socket error on client , disconnecting. +1612425400: New connection from 172.18.0.3 on port 1883. +1612425400: Sending CONNACK to 172.18.0.3 (0, 5) +1612425400: Socket error on client , disconnecting. +1612425420: New connection from 172.18.0.3 on port 1883. +1612425420: Sending CONNACK to 172.18.0.3 (0, 5) +1612425420: Socket error on client , disconnecting. +1612425440: New connection from 172.18.0.3 on port 1883. +1612425440: Sending CONNACK to 172.18.0.3 (0, 5) +1612425440: Socket error on client , disconnecting. +1612425460: New connection from 172.18.0.3 on port 1883. +1612425460: Sending CONNACK to 172.18.0.3 (0, 5) +1612425460: Socket error on client , disconnecting. +1612425480: New connection from 172.18.0.3 on port 1883. +1612425480: Sending CONNACK to 172.18.0.3 (0, 5) +1612425480: Socket error on client , disconnecting. +1612425500: New connection from 172.18.0.3 on port 1883. +1612425500: Sending CONNACK to 172.18.0.3 (0, 5) +1612425500: Socket error on client , disconnecting. +1612425520: New connection from 172.18.0.3 on port 1883. +1612425520: Sending CONNACK to 172.18.0.3 (0, 5) +1612425520: Socket error on client , disconnecting. +1612425540: New connection from 172.18.0.3 on port 1883. +1612425540: Sending CONNACK to 172.18.0.3 (0, 5) +1612425540: Socket error on client , disconnecting. +1612425560: New connection from 172.18.0.3 on port 1883. +1612425560: Sending CONNACK to 172.18.0.3 (0, 5) +1612425560: Socket error on client , disconnecting. +1612425580: New connection from 172.18.0.3 on port 1883. +1612425580: Sending CONNACK to 172.18.0.3 (0, 5) +1612425580: Socket error on client , disconnecting. +1612425600: New connection from 172.18.0.3 on port 1883. +1612425600: Sending CONNACK to 172.18.0.3 (0, 5) +1612425600: Socket error on client , disconnecting. +1612425620: New connection from 172.18.0.3 on port 1883. +1612425620: Sending CONNACK to 172.18.0.3 (0, 5) +1612425620: Socket error on client , disconnecting. +1612425640: New connection from 172.18.0.3 on port 1883. +1612425640: Sending CONNACK to 172.18.0.3 (0, 5) +1612425640: Socket error on client , disconnecting. +1612425660: New connection from 172.18.0.3 on port 1883. +1612425660: Sending CONNACK to 172.18.0.3 (0, 5) +1612425660: Socket error on client , disconnecting. +1612425680: New connection from 172.18.0.3 on port 1883. +1612425680: Sending CONNACK to 172.18.0.3 (0, 5) +1612425680: Socket error on client , disconnecting. +1612425700: New connection from 172.18.0.3 on port 1883. +1612425700: Sending CONNACK to 172.18.0.3 (0, 5) +1612425700: Socket error on client , disconnecting. +1612425720: New connection from 172.18.0.3 on port 1883. +1612425720: Sending CONNACK to 172.18.0.3 (0, 5) +1612425720: Socket error on client , disconnecting. +1612425740: New connection from 172.18.0.3 on port 1883. +1612425740: Sending CONNACK to 172.18.0.3 (0, 5) +1612425740: Socket error on client , disconnecting. +1612425760: New connection from 172.18.0.3 on port 1883. +1612425760: Sending CONNACK to 172.18.0.3 (0, 5) +1612425760: Socket error on client , disconnecting. +1612425780: New connection from 172.18.0.3 on port 1883. +1612425780: Sending CONNACK to 172.18.0.3 (0, 5) +1612425780: Socket error on client , disconnecting. +1612425800: New connection from 172.18.0.3 on port 1883. +1612425800: Sending CONNACK to 172.18.0.3 (0, 5) +1612425800: Socket error on client , disconnecting. +1612425820: New connection from 172.18.0.3 on port 1883. +1612425820: Sending CONNACK to 172.18.0.3 (0, 5) +1612425820: Socket error on client , disconnecting. +1612425840: New connection from 172.18.0.3 on port 1883. +1612425840: Sending CONNACK to 172.18.0.3 (0, 5) +1612425840: Socket error on client , disconnecting. +1612425860: New connection from 172.18.0.3 on port 1883. +1612425860: Sending CONNACK to 172.18.0.3 (0, 5) +1612425860: Socket error on client , disconnecting. +1612425880: New connection from 172.18.0.3 on port 1883. +1612425880: Sending CONNACK to 172.18.0.3 (0, 5) +1612425880: Socket error on client , disconnecting. +1612425900: New connection from 172.18.0.3 on port 1883. +1612425900: Sending CONNACK to 172.18.0.3 (0, 5) +1612425900: Socket error on client , disconnecting. +1612425920: New connection from 172.18.0.3 on port 1883. +1612425920: Sending CONNACK to 172.18.0.3 (0, 5) +1612425920: Socket error on client , disconnecting. +1612425940: New connection from 172.18.0.3 on port 1883. +1612425940: Sending CONNACK to 172.18.0.3 (0, 5) +1612425940: Socket error on client , disconnecting. +1612425960: New connection from 172.18.0.3 on port 1883. +1612425960: Sending CONNACK to 172.18.0.3 (0, 5) +1612425960: Socket error on client , disconnecting. +1612425980: New connection from 172.18.0.3 on port 1883. +1612425980: Sending CONNACK to 172.18.0.3 (0, 5) +1612425980: Socket error on client , disconnecting. +1612426000: New connection from 172.18.0.3 on port 1883. +1612426000: Sending CONNACK to 172.18.0.3 (0, 5) +1612426000: Socket error on client , disconnecting. +1612426020: New connection from 172.18.0.3 on port 1883. +1612426020: Sending CONNACK to 172.18.0.3 (0, 5) +1612426020: Socket error on client , disconnecting. +1612426040: New connection from 172.18.0.3 on port 1883. +1612426040: Sending CONNACK to 172.18.0.3 (0, 5) +1612426040: Socket error on client , disconnecting. +1612426060: New connection from 172.18.0.3 on port 1883. +1612426060: Sending CONNACK to 172.18.0.3 (0, 5) +1612426060: Socket error on client , disconnecting. +1612426080: New connection from 172.18.0.3 on port 1883. +1612426080: Sending CONNACK to 172.18.0.3 (0, 5) +1612426080: Socket error on client , disconnecting. +1612426100: New connection from 172.18.0.3 on port 1883. +1612426100: Sending CONNACK to 172.18.0.3 (0, 5) +1612426100: Socket error on client , disconnecting. +1612426120: New connection from 172.18.0.3 on port 1883. +1612426120: Sending CONNACK to 172.18.0.3 (0, 5) +1612426120: Socket error on client , disconnecting. +1612426140: New connection from 172.18.0.3 on port 1883. +1612426140: Sending CONNACK to 172.18.0.3 (0, 5) +1612426140: Socket error on client , disconnecting. +1612426160: New connection from 172.18.0.3 on port 1883. +1612426160: Sending CONNACK to 172.18.0.3 (0, 5) +1612426160: Socket error on client , disconnecting. +1612426180: New connection from 172.18.0.3 on port 1883. +1612426180: Sending CONNACK to 172.18.0.3 (0, 5) +1612426180: Socket error on client , disconnecting. +1612426200: New connection from 172.18.0.3 on port 1883. +1612426200: Sending CONNACK to 172.18.0.3 (0, 5) +1612426200: Socket error on client , disconnecting. +1612426220: New connection from 172.18.0.3 on port 1883. +1612426220: Sending CONNACK to 172.18.0.3 (0, 5) +1612426220: Socket error on client , disconnecting. +1612426240: New connection from 172.18.0.3 on port 1883. +1612426240: Sending CONNACK to 172.18.0.3 (0, 5) +1612426240: Socket error on client , disconnecting. +1612426260: New connection from 172.18.0.3 on port 1883. +1612426260: Sending CONNACK to 172.18.0.3 (0, 5) +1612426260: Socket error on client , disconnecting. +1612426280: New connection from 172.18.0.3 on port 1883. +1612426280: Sending CONNACK to 172.18.0.3 (0, 5) +1612426280: Socket error on client , disconnecting. +1612426300: New connection from 172.18.0.3 on port 1883. +1612426300: Sending CONNACK to 172.18.0.3 (0, 5) +1612426300: Socket error on client , disconnecting. +1612426320: New connection from 172.18.0.3 on port 1883. +1612426320: Sending CONNACK to 172.18.0.3 (0, 5) +1612426320: Socket error on client , disconnecting. +1612426340: New connection from 172.18.0.3 on port 1883. +1612426340: Sending CONNACK to 172.18.0.3 (0, 5) +1612426340: Socket error on client , disconnecting. +1612426360: New connection from 172.18.0.3 on port 1883. +1612426360: Sending CONNACK to 172.18.0.3 (0, 5) +1612426360: Socket error on client , disconnecting. +1612426380: New connection from 172.18.0.3 on port 1883. +1612426380: Sending CONNACK to 172.18.0.3 (0, 5) +1612426380: Socket error on client , disconnecting. +1612426400: New connection from 172.18.0.3 on port 1883. +1612426400: Sending CONNACK to 172.18.0.3 (0, 5) +1612426400: Socket error on client , disconnecting. +1612426420: New connection from 172.18.0.3 on port 1883. +1612426420: Sending CONNACK to 172.18.0.3 (0, 5) +1612426420: Socket error on client , disconnecting. +1612426440: New connection from 172.18.0.3 on port 1883. +1612426440: Sending CONNACK to 172.18.0.3 (0, 5) +1612426440: Socket error on client , disconnecting. +1612426460: New connection from 172.18.0.3 on port 1883. +1612426460: Sending CONNACK to 172.18.0.3 (0, 5) +1612426460: Socket error on client , disconnecting. +1612426480: New connection from 172.18.0.3 on port 1883. +1612426480: Sending CONNACK to 172.18.0.3 (0, 5) +1612426480: Socket error on client , disconnecting. +1612426500: New connection from 172.18.0.3 on port 1883. +1612426500: Sending CONNACK to 172.18.0.3 (0, 5) +1612426500: Socket error on client , disconnecting. +1612426520: New connection from 172.18.0.3 on port 1883. +1612426520: Sending CONNACK to 172.18.0.3 (0, 5) +1612426520: Socket error on client , disconnecting. +1612426540: New connection from 172.18.0.3 on port 1883. +1612426540: Sending CONNACK to 172.18.0.3 (0, 5) +1612426540: Socket error on client , disconnecting. +1612426560: New connection from 172.18.0.3 on port 1883. +1612426560: Sending CONNACK to 172.18.0.3 (0, 5) +1612426560: Socket error on client , disconnecting. +1612426580: New connection from 172.18.0.3 on port 1883. +1612426580: Sending CONNACK to 172.18.0.3 (0, 5) +1612426580: Socket error on client , disconnecting. +1612426600: New connection from 172.18.0.3 on port 1883. +1612426600: Sending CONNACK to 172.18.0.3 (0, 5) +1612426600: Socket error on client , disconnecting. +1612426606: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612426606: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612426606: Error: Permission denied. +1612426620: New connection from 172.18.0.3 on port 1883. +1612426620: Sending CONNACK to 172.18.0.3 (0, 5) +1612426620: Socket error on client , disconnecting. +1612426640: New connection from 172.18.0.3 on port 1883. +1612426640: Sending CONNACK to 172.18.0.3 (0, 5) +1612426640: Socket error on client , disconnecting. +1612426660: New connection from 172.18.0.3 on port 1883. +1612426660: Sending CONNACK to 172.18.0.3 (0, 5) +1612426660: Socket error on client , disconnecting. +1612426680: New connection from 172.18.0.3 on port 1883. +1612426680: Sending CONNACK to 172.18.0.3 (0, 5) +1612426680: Socket error on client , disconnecting. +1612426700: New connection from 172.18.0.3 on port 1883. +1612426700: Sending CONNACK to 172.18.0.3 (0, 5) +1612426700: Socket error on client , disconnecting. +1612426720: New connection from 172.18.0.3 on port 1883. +1612426720: Sending CONNACK to 172.18.0.3 (0, 5) +1612426720: Socket error on client , disconnecting. +1612426740: New connection from 172.18.0.3 on port 1883. +1612426740: Sending CONNACK to 172.18.0.3 (0, 5) +1612426740: Socket error on client , disconnecting. +1612426760: New connection from 172.18.0.3 on port 1883. +1612426760: Sending CONNACK to 172.18.0.3 (0, 5) +1612426760: Socket error on client , disconnecting. +1612426780: New connection from 172.18.0.3 on port 1883. +1612426780: Sending CONNACK to 172.18.0.3 (0, 5) +1612426780: Socket error on client , disconnecting. +1612426800: New connection from 172.18.0.3 on port 1883. +1612426800: Sending CONNACK to 172.18.0.3 (0, 5) +1612426800: Socket error on client , disconnecting. +1612426820: New connection from 172.18.0.3 on port 1883. +1612426820: Sending CONNACK to 172.18.0.3 (0, 5) +1612426820: Socket error on client , disconnecting. +1612426840: New connection from 172.18.0.3 on port 1883. +1612426840: Sending CONNACK to 172.18.0.3 (0, 5) +1612426840: Socket error on client , disconnecting. +1612426860: New connection from 172.18.0.3 on port 1883. +1612426860: Sending CONNACK to 172.18.0.3 (0, 5) +1612426860: Socket error on client , disconnecting. +1612426880: New connection from 172.18.0.3 on port 1883. +1612426880: Sending CONNACK to 172.18.0.3 (0, 5) +1612426880: Socket error on client , disconnecting. +1612426900: New connection from 172.18.0.3 on port 1883. +1612426900: Sending CONNACK to 172.18.0.3 (0, 5) +1612426900: Socket error on client , disconnecting. +1612426920: New connection from 172.18.0.3 on port 1883. +1612426920: Sending CONNACK to 172.18.0.3 (0, 5) +1612426920: Socket error on client , disconnecting. +1612426940: New connection from 172.18.0.3 on port 1883. +1612426940: Sending CONNACK to 172.18.0.3 (0, 5) +1612426940: Socket error on client , disconnecting. +1612426960: New connection from 172.18.0.3 on port 1883. +1612426960: Sending CONNACK to 172.18.0.3 (0, 5) +1612426960: Socket error on client , disconnecting. +1612426980: New connection from 172.18.0.3 on port 1883. +1612426980: Sending CONNACK to 172.18.0.3 (0, 5) +1612426980: Socket error on client , disconnecting. +1612427000: New connection from 172.18.0.3 on port 1883. +1612427000: Sending CONNACK to 172.18.0.3 (0, 5) +1612427000: Socket error on client , disconnecting. +1612427020: New connection from 172.18.0.3 on port 1883. +1612427020: Sending CONNACK to 172.18.0.3 (0, 5) +1612427020: Socket error on client , disconnecting. +1612427040: New connection from 172.18.0.3 on port 1883. +1612427040: Sending CONNACK to 172.18.0.3 (0, 5) +1612427040: Socket error on client , disconnecting. +1612427060: New connection from 172.18.0.3 on port 1883. +1612427060: Sending CONNACK to 172.18.0.3 (0, 5) +1612427060: Socket error on client , disconnecting. +1612427080: New connection from 172.18.0.3 on port 1883. +1612427080: Sending CONNACK to 172.18.0.3 (0, 5) +1612427080: Socket error on client , disconnecting. +1612427100: New connection from 172.18.0.3 on port 1883. +1612427100: Sending CONNACK to 172.18.0.3 (0, 5) +1612427100: Socket error on client , disconnecting. +1612427120: New connection from 172.18.0.3 on port 1883. +1612427120: Sending CONNACK to 172.18.0.3 (0, 5) +1612427120: Socket error on client , disconnecting. +1612427140: New connection from 172.18.0.3 on port 1883. +1612427140: Sending CONNACK to 172.18.0.3 (0, 5) +1612427140: Socket error on client , disconnecting. +1612427160: New connection from 172.18.0.3 on port 1883. +1612427160: Sending CONNACK to 172.18.0.3 (0, 5) +1612427160: Socket error on client , disconnecting. +1612427180: New connection from 172.18.0.3 on port 1883. +1612427180: Sending CONNACK to 172.18.0.3 (0, 5) +1612427180: Socket error on client , disconnecting. +1612427200: New connection from 172.18.0.3 on port 1883. +1612427200: Sending CONNACK to 172.18.0.3 (0, 5) +1612427200: Socket error on client , disconnecting. +1612427220: New connection from 172.18.0.3 on port 1883. +1612427220: Sending CONNACK to 172.18.0.3 (0, 5) +1612427220: Socket error on client , disconnecting. +1612427240: New connection from 172.18.0.3 on port 1883. +1612427240: Sending CONNACK to 172.18.0.3 (0, 5) +1612427240: Socket error on client , disconnecting. +1612427260: New connection from 172.18.0.3 on port 1883. +1612427260: Sending CONNACK to 172.18.0.3 (0, 5) +1612427260: Socket error on client , disconnecting. +1612427280: New connection from 172.18.0.3 on port 1883. +1612427280: Sending CONNACK to 172.18.0.3 (0, 5) +1612427280: Socket error on client , disconnecting. +1612427300: New connection from 172.18.0.3 on port 1883. +1612427300: Sending CONNACK to 172.18.0.3 (0, 5) +1612427300: Socket error on client , disconnecting. +1612427320: New connection from 172.18.0.3 on port 1883. +1612427320: Sending CONNACK to 172.18.0.3 (0, 5) +1612427320: Socket error on client , disconnecting. +1612427340: New connection from 172.18.0.3 on port 1883. +1612427340: Sending CONNACK to 172.18.0.3 (0, 5) +1612427340: Socket error on client , disconnecting. +1612427360: New connection from 172.18.0.3 on port 1883. +1612427360: Sending CONNACK to 172.18.0.3 (0, 5) +1612427360: Socket error on client , disconnecting. +1612427380: New connection from 172.18.0.3 on port 1883. +1612427380: Sending CONNACK to 172.18.0.3 (0, 5) +1612427380: Socket error on client , disconnecting. +1612427400: New connection from 172.18.0.3 on port 1883. +1612427400: Sending CONNACK to 172.18.0.3 (0, 5) +1612427400: Socket error on client , disconnecting. +1612427420: New connection from 172.18.0.3 on port 1883. +1612427420: Sending CONNACK to 172.18.0.3 (0, 5) +1612427420: Socket error on client , disconnecting. +1612427440: New connection from 172.18.0.3 on port 1883. +1612427440: Sending CONNACK to 172.18.0.3 (0, 5) +1612427440: Socket error on client , disconnecting. +1612427460: New connection from 172.18.0.3 on port 1883. +1612427460: Sending CONNACK to 172.18.0.3 (0, 5) +1612427460: Socket error on client , disconnecting. +1612427480: New connection from 172.18.0.3 on port 1883. +1612427480: Sending CONNACK to 172.18.0.3 (0, 5) +1612427480: Socket error on client , disconnecting. +1612427500: New connection from 172.18.0.3 on port 1883. +1612427500: Sending CONNACK to 172.18.0.3 (0, 5) +1612427500: Socket error on client , disconnecting. +1612427520: New connection from 172.18.0.3 on port 1883. +1612427520: Sending CONNACK to 172.18.0.3 (0, 5) +1612427520: Socket error on client , disconnecting. +1612427540: New connection from 172.18.0.3 on port 1883. +1612427540: Sending CONNACK to 172.18.0.3 (0, 5) +1612427540: Socket error on client , disconnecting. +1612427560: New connection from 172.18.0.3 on port 1883. +1612427560: Sending CONNACK to 172.18.0.3 (0, 5) +1612427560: Socket error on client , disconnecting. +1612427580: New connection from 172.18.0.3 on port 1883. +1612427580: Sending CONNACK to 172.18.0.3 (0, 5) +1612427580: Socket error on client , disconnecting. +1612427600: New connection from 172.18.0.3 on port 1883. +1612427600: Sending CONNACK to 172.18.0.3 (0, 5) +1612427600: Socket error on client , disconnecting. +1612427620: New connection from 172.18.0.3 on port 1883. +1612427620: Sending CONNACK to 172.18.0.3 (0, 5) +1612427620: Socket error on client , disconnecting. +1612427640: New connection from 172.18.0.3 on port 1883. +1612427640: Sending CONNACK to 172.18.0.3 (0, 5) +1612427640: Socket error on client , disconnecting. +1612427660: New connection from 172.18.0.3 on port 1883. +1612427660: Sending CONNACK to 172.18.0.3 (0, 5) +1612427660: Socket error on client , disconnecting. +1612427680: New connection from 172.18.0.3 on port 1883. +1612427680: Sending CONNACK to 172.18.0.3 (0, 5) +1612427680: Socket error on client , disconnecting. +1612427700: New connection from 172.18.0.3 on port 1883. +1612427700: Sending CONNACK to 172.18.0.3 (0, 5) +1612427700: Socket error on client , disconnecting. +1612427720: New connection from 172.18.0.3 on port 1883. +1612427720: Sending CONNACK to 172.18.0.3 (0, 5) +1612427720: Socket error on client , disconnecting. +1612427740: New connection from 172.18.0.3 on port 1883. +1612427740: Sending CONNACK to 172.18.0.3 (0, 5) +1612427740: Socket error on client , disconnecting. +1612427760: New connection from 172.18.0.3 on port 1883. +1612427760: Sending CONNACK to 172.18.0.3 (0, 5) +1612427760: Socket error on client , disconnecting. +1612427780: New connection from 172.18.0.3 on port 1883. +1612427780: Sending CONNACK to 172.18.0.3 (0, 5) +1612427780: Socket error on client , disconnecting. +1612427800: New connection from 172.18.0.3 on port 1883. +1612427800: Sending CONNACK to 172.18.0.3 (0, 5) +1612427800: Socket error on client , disconnecting. +1612427820: New connection from 172.18.0.3 on port 1883. +1612427820: Sending CONNACK to 172.18.0.3 (0, 5) +1612427820: Socket error on client , disconnecting. +1612427840: New connection from 172.18.0.3 on port 1883. +1612427840: Sending CONNACK to 172.18.0.3 (0, 5) +1612427840: Socket error on client , disconnecting. +1612427860: New connection from 172.18.0.3 on port 1883. +1612427860: Sending CONNACK to 172.18.0.3 (0, 5) +1612427860: Socket error on client , disconnecting. +1612427880: New connection from 172.18.0.3 on port 1883. +1612427880: Sending CONNACK to 172.18.0.3 (0, 5) +1612427880: Socket error on client , disconnecting. +1612427900: New connection from 172.18.0.3 on port 1883. +1612427900: Sending CONNACK to 172.18.0.3 (0, 5) +1612427900: Socket error on client , disconnecting. +1612427920: New connection from 172.18.0.3 on port 1883. +1612427920: Sending CONNACK to 172.18.0.3 (0, 5) +1612427920: Socket error on client , disconnecting. +1612427940: New connection from 172.18.0.3 on port 1883. +1612427940: Sending CONNACK to 172.18.0.3 (0, 5) +1612427940: Socket error on client , disconnecting. +1612427960: New connection from 172.18.0.3 on port 1883. +1612427960: Sending CONNACK to 172.18.0.3 (0, 5) +1612427960: Socket error on client , disconnecting. +1612427980: New connection from 172.18.0.3 on port 1883. +1612427980: Sending CONNACK to 172.18.0.3 (0, 5) +1612427980: Socket error on client , disconnecting. +1612428000: New connection from 172.18.0.3 on port 1883. +1612428000: Sending CONNACK to 172.18.0.3 (0, 5) +1612428000: Socket error on client , disconnecting. +1612428020: New connection from 172.18.0.3 on port 1883. +1612428020: Sending CONNACK to 172.18.0.3 (0, 5) +1612428020: Socket error on client , disconnecting. +1612428040: New connection from 172.18.0.3 on port 1883. +1612428040: Sending CONNACK to 172.18.0.3 (0, 5) +1612428040: Socket error on client , disconnecting. +1612428060: New connection from 172.18.0.3 on port 1883. +1612428060: Sending CONNACK to 172.18.0.3 (0, 5) +1612428060: Socket error on client , disconnecting. +1612428080: New connection from 172.18.0.3 on port 1883. +1612428080: Sending CONNACK to 172.18.0.3 (0, 5) +1612428080: Socket error on client , disconnecting. +1612428100: New connection from 172.18.0.3 on port 1883. +1612428100: Sending CONNACK to 172.18.0.3 (0, 5) +1612428100: Socket error on client , disconnecting. +1612428120: New connection from 172.18.0.3 on port 1883. +1612428120: Sending CONNACK to 172.18.0.3 (0, 5) +1612428120: Socket error on client , disconnecting. +1612428140: New connection from 172.18.0.3 on port 1883. +1612428140: Sending CONNACK to 172.18.0.3 (0, 5) +1612428140: Socket error on client , disconnecting. +1612428160: New connection from 172.18.0.3 on port 1883. +1612428160: Sending CONNACK to 172.18.0.3 (0, 5) +1612428160: Socket error on client , disconnecting. +1612428180: New connection from 172.18.0.3 on port 1883. +1612428180: Sending CONNACK to 172.18.0.3 (0, 5) +1612428180: Socket error on client , disconnecting. +1612428200: New connection from 172.18.0.3 on port 1883. +1612428200: Sending CONNACK to 172.18.0.3 (0, 5) +1612428200: Socket error on client , disconnecting. +1612428220: New connection from 172.18.0.3 on port 1883. +1612428220: Sending CONNACK to 172.18.0.3 (0, 5) +1612428220: Socket error on client , disconnecting. +1612428240: New connection from 172.18.0.3 on port 1883. +1612428240: Sending CONNACK to 172.18.0.3 (0, 5) +1612428240: Socket error on client , disconnecting. +1612428260: New connection from 172.18.0.3 on port 1883. +1612428260: Sending CONNACK to 172.18.0.3 (0, 5) +1612428260: Socket error on client , disconnecting. +1612428280: New connection from 172.18.0.3 on port 1883. +1612428280: Sending CONNACK to 172.18.0.3 (0, 5) +1612428280: Socket error on client , disconnecting. +1612428300: New connection from 172.18.0.3 on port 1883. +1612428300: Sending CONNACK to 172.18.0.3 (0, 5) +1612428300: Socket error on client , disconnecting. +1612428320: New connection from 172.18.0.3 on port 1883. +1612428320: Sending CONNACK to 172.18.0.3 (0, 5) +1612428320: Socket error on client , disconnecting. +1612428340: New connection from 172.18.0.3 on port 1883. +1612428340: Sending CONNACK to 172.18.0.3 (0, 5) +1612428340: Socket error on client , disconnecting. +1612428360: New connection from 172.18.0.3 on port 1883. +1612428360: Sending CONNACK to 172.18.0.3 (0, 5) +1612428360: Socket error on client , disconnecting. +1612428380: New connection from 172.18.0.3 on port 1883. +1612428380: Sending CONNACK to 172.18.0.3 (0, 5) +1612428380: Socket error on client , disconnecting. +1612428400: New connection from 172.18.0.3 on port 1883. +1612428400: Sending CONNACK to 172.18.0.3 (0, 5) +1612428400: Socket error on client , disconnecting. +1612428407: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612428407: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612428407: Error: Permission denied. +1612428420: New connection from 172.18.0.3 on port 1883. +1612428420: Sending CONNACK to 172.18.0.3 (0, 5) +1612428420: Socket error on client , disconnecting. +1612428440: New connection from 172.18.0.3 on port 1883. +1612428440: Sending CONNACK to 172.18.0.3 (0, 5) +1612428440: Socket error on client , disconnecting. +1612428460: New connection from 172.18.0.3 on port 1883. +1612428460: Sending CONNACK to 172.18.0.3 (0, 5) +1612428460: Socket error on client , disconnecting. +1612428480: New connection from 172.18.0.3 on port 1883. +1612428480: Sending CONNACK to 172.18.0.3 (0, 5) +1612428480: Socket error on client , disconnecting. +1612428500: New connection from 172.18.0.3 on port 1883. +1612428500: Sending CONNACK to 172.18.0.3 (0, 5) +1612428500: Socket error on client , disconnecting. +1612428520: New connection from 172.18.0.3 on port 1883. +1612428520: Sending CONNACK to 172.18.0.3 (0, 5) +1612428520: Socket error on client , disconnecting. +1612428540: New connection from 172.18.0.3 on port 1883. +1612428540: Sending CONNACK to 172.18.0.3 (0, 5) +1612428540: Socket error on client , disconnecting. +1612428560: New connection from 172.18.0.3 on port 1883. +1612428560: Sending CONNACK to 172.18.0.3 (0, 5) +1612428560: Socket error on client , disconnecting. +1612428580: New connection from 172.18.0.3 on port 1883. +1612428580: Sending CONNACK to 172.18.0.3 (0, 5) +1612428580: Socket error on client , disconnecting. +1612428600: New connection from 172.18.0.3 on port 1883. +1612428600: Sending CONNACK to 172.18.0.3 (0, 5) +1612428600: Socket error on client , disconnecting. +1612428620: New connection from 172.18.0.3 on port 1883. +1612428620: Sending CONNACK to 172.18.0.3 (0, 5) +1612428620: Socket error on client , disconnecting. +1612428640: New connection from 172.18.0.3 on port 1883. +1612428640: Sending CONNACK to 172.18.0.3 (0, 5) +1612428640: Socket error on client , disconnecting. +1612428660: New connection from 172.18.0.3 on port 1883. +1612428660: Sending CONNACK to 172.18.0.3 (0, 5) +1612428660: Socket error on client , disconnecting. +1612428680: New connection from 172.18.0.3 on port 1883. +1612428680: Sending CONNACK to 172.18.0.3 (0, 5) +1612428680: Socket error on client , disconnecting. +1612428700: New connection from 172.18.0.3 on port 1883. +1612428700: Sending CONNACK to 172.18.0.3 (0, 5) +1612428700: Socket error on client , disconnecting. +1612428720: New connection from 172.18.0.3 on port 1883. +1612428720: Sending CONNACK to 172.18.0.3 (0, 5) +1612428720: Socket error on client , disconnecting. +1612428740: New connection from 172.18.0.3 on port 1883. +1612428740: Sending CONNACK to 172.18.0.3 (0, 5) +1612428740: Socket error on client , disconnecting. +1612428760: New connection from 172.18.0.3 on port 1883. +1612428760: Sending CONNACK to 172.18.0.3 (0, 5) +1612428760: Socket error on client , disconnecting. +1612428780: New connection from 172.18.0.3 on port 1883. +1612428780: Sending CONNACK to 172.18.0.3 (0, 5) +1612428780: Socket error on client , disconnecting. +1612428800: New connection from 172.18.0.3 on port 1883. +1612428800: Sending CONNACK to 172.18.0.3 (0, 5) +1612428800: Socket error on client , disconnecting. +1612428820: New connection from 172.18.0.3 on port 1883. +1612428820: Sending CONNACK to 172.18.0.3 (0, 5) +1612428820: Socket error on client , disconnecting. +1612428840: New connection from 172.18.0.3 on port 1883. +1612428840: Sending CONNACK to 172.18.0.3 (0, 5) +1612428840: Socket error on client , disconnecting. +1612428860: New connection from 172.18.0.3 on port 1883. +1612428860: Sending CONNACK to 172.18.0.3 (0, 5) +1612428860: Socket error on client , disconnecting. +1612428880: New connection from 172.18.0.3 on port 1883. +1612428880: Sending CONNACK to 172.18.0.3 (0, 5) +1612428880: Socket error on client , disconnecting. +1612428900: New connection from 172.18.0.3 on port 1883. +1612428900: Sending CONNACK to 172.18.0.3 (0, 5) +1612428900: Socket error on client , disconnecting. +1612428920: New connection from 172.18.0.3 on port 1883. +1612428920: Sending CONNACK to 172.18.0.3 (0, 5) +1612428920: Socket error on client , disconnecting. +1612428940: New connection from 172.18.0.3 on port 1883. +1612428940: Sending CONNACK to 172.18.0.3 (0, 5) +1612428940: Socket error on client , disconnecting. +1612428960: New connection from 172.18.0.3 on port 1883. +1612428960: Sending CONNACK to 172.18.0.3 (0, 5) +1612428960: Socket error on client , disconnecting. +1612428980: New connection from 172.18.0.3 on port 1883. +1612428980: Sending CONNACK to 172.18.0.3 (0, 5) +1612428980: Socket error on client , disconnecting. +1612429000: New connection from 172.18.0.3 on port 1883. +1612429000: Sending CONNACK to 172.18.0.3 (0, 5) +1612429000: Socket error on client , disconnecting. +1612429020: New connection from 172.18.0.3 on port 1883. +1612429020: Sending CONNACK to 172.18.0.3 (0, 5) +1612429020: Socket error on client , disconnecting. +1612429040: New connection from 172.18.0.3 on port 1883. +1612429040: Sending CONNACK to 172.18.0.3 (0, 5) +1612429040: Socket error on client , disconnecting. +1612429060: New connection from 172.18.0.3 on port 1883. +1612429060: Sending CONNACK to 172.18.0.3 (0, 5) +1612429060: Socket error on client , disconnecting. +1612429080: New connection from 172.18.0.3 on port 1883. +1612429080: Sending CONNACK to 172.18.0.3 (0, 5) +1612429080: Socket error on client , disconnecting. +1612429100: New connection from 172.18.0.3 on port 1883. +1612429100: Sending CONNACK to 172.18.0.3 (0, 5) +1612429100: Socket error on client , disconnecting. +1612429120: New connection from 172.18.0.3 on port 1883. +1612429120: Sending CONNACK to 172.18.0.3 (0, 5) +1612429120: Socket error on client , disconnecting. +1612429140: New connection from 172.18.0.3 on port 1883. +1612429140: Sending CONNACK to 172.18.0.3 (0, 5) +1612429140: Socket error on client , disconnecting. +1612429160: New connection from 172.18.0.3 on port 1883. +1612429160: Sending CONNACK to 172.18.0.3 (0, 5) +1612429160: Socket error on client , disconnecting. +1612429180: New connection from 172.18.0.3 on port 1883. +1612429180: Sending CONNACK to 172.18.0.3 (0, 5) +1612429180: Socket error on client , disconnecting. +1612429200: New connection from 172.18.0.3 on port 1883. +1612429200: Sending CONNACK to 172.18.0.3 (0, 5) +1612429200: Socket error on client , disconnecting. +1612429220: New connection from 172.18.0.3 on port 1883. +1612429220: Sending CONNACK to 172.18.0.3 (0, 5) +1612429220: Socket error on client , disconnecting. +1612429240: New connection from 172.18.0.3 on port 1883. +1612429240: Sending CONNACK to 172.18.0.3 (0, 5) +1612429240: Socket error on client , disconnecting. +1612429260: New connection from 172.18.0.3 on port 1883. +1612429260: Sending CONNACK to 172.18.0.3 (0, 5) +1612429260: Socket error on client , disconnecting. +1612429280: New connection from 172.18.0.3 on port 1883. +1612429280: Sending CONNACK to 172.18.0.3 (0, 5) +1612429280: Socket error on client , disconnecting. +1612429300: New connection from 172.18.0.3 on port 1883. +1612429300: Sending CONNACK to 172.18.0.3 (0, 5) +1612429300: Socket error on client , disconnecting. +1612429320: New connection from 172.18.0.3 on port 1883. +1612429320: Sending CONNACK to 172.18.0.3 (0, 5) +1612429320: Socket error on client , disconnecting. +1612429340: New connection from 172.18.0.3 on port 1883. +1612429340: Sending CONNACK to 172.18.0.3 (0, 5) +1612429340: Socket error on client , disconnecting. +1612429360: New connection from 172.18.0.3 on port 1883. +1612429360: Sending CONNACK to 172.18.0.3 (0, 5) +1612429360: Socket error on client , disconnecting. +1612429380: New connection from 172.18.0.3 on port 1883. +1612429380: Sending CONNACK to 172.18.0.3 (0, 5) +1612429380: Socket error on client , disconnecting. +1612429400: New connection from 172.18.0.3 on port 1883. +1612429400: Sending CONNACK to 172.18.0.3 (0, 5) +1612429400: Socket error on client , disconnecting. +1612429420: New connection from 172.18.0.3 on port 1883. +1612429420: Sending CONNACK to 172.18.0.3 (0, 5) +1612429420: Socket error on client , disconnecting. +1612429440: New connection from 172.18.0.3 on port 1883. +1612429440: Sending CONNACK to 172.18.0.3 (0, 5) +1612429440: Socket error on client , disconnecting. +1612429460: New connection from 172.18.0.3 on port 1883. +1612429460: Sending CONNACK to 172.18.0.3 (0, 5) +1612429460: Socket error on client , disconnecting. +1612429480: New connection from 172.18.0.3 on port 1883. +1612429480: Sending CONNACK to 172.18.0.3 (0, 5) +1612429480: Socket error on client , disconnecting. +1612429500: New connection from 172.18.0.3 on port 1883. +1612429500: Sending CONNACK to 172.18.0.3 (0, 5) +1612429500: Socket error on client , disconnecting. +1612429520: New connection from 172.18.0.3 on port 1883. +1612429520: Sending CONNACK to 172.18.0.3 (0, 5) +1612429520: Socket error on client , disconnecting. +1612429540: New connection from 172.18.0.3 on port 1883. +1612429540: Sending CONNACK to 172.18.0.3 (0, 5) +1612429540: Socket error on client , disconnecting. +1612429560: New connection from 172.18.0.3 on port 1883. +1612429560: Sending CONNACK to 172.18.0.3 (0, 5) +1612429560: Socket error on client , disconnecting. +1612429580: New connection from 172.18.0.3 on port 1883. +1612429580: Sending CONNACK to 172.18.0.3 (0, 5) +1612429580: Socket error on client , disconnecting. +1612429600: New connection from 172.18.0.3 on port 1883. +1612429600: Sending CONNACK to 172.18.0.3 (0, 5) +1612429600: Socket error on client , disconnecting. +1612429620: New connection from 172.18.0.3 on port 1883. +1612429620: Sending CONNACK to 172.18.0.3 (0, 5) +1612429620: Socket error on client , disconnecting. +1612429640: New connection from 172.18.0.3 on port 1883. +1612429640: Sending CONNACK to 172.18.0.3 (0, 5) +1612429640: Socket error on client , disconnecting. +1612429660: New connection from 172.18.0.3 on port 1883. +1612429660: Sending CONNACK to 172.18.0.3 (0, 5) +1612429660: Socket error on client , disconnecting. +1612429680: New connection from 172.18.0.3 on port 1883. +1612429680: Sending CONNACK to 172.18.0.3 (0, 5) +1612429680: Socket error on client , disconnecting. +1612429700: New connection from 172.18.0.3 on port 1883. +1612429700: Sending CONNACK to 172.18.0.3 (0, 5) +1612429700: Socket error on client , disconnecting. +1612429720: New connection from 172.18.0.3 on port 1883. +1612429720: Sending CONNACK to 172.18.0.3 (0, 5) +1612429720: Socket error on client , disconnecting. +1612429740: New connection from 172.18.0.3 on port 1883. +1612429740: Sending CONNACK to 172.18.0.3 (0, 5) +1612429740: Socket error on client , disconnecting. +1612429760: New connection from 172.18.0.3 on port 1883. +1612429760: Sending CONNACK to 172.18.0.3 (0, 5) +1612429760: Socket error on client , disconnecting. +1612429780: New connection from 172.18.0.3 on port 1883. +1612429780: Sending CONNACK to 172.18.0.3 (0, 5) +1612429780: Socket error on client , disconnecting. +1612429800: New connection from 172.18.0.3 on port 1883. +1612429800: Sending CONNACK to 172.18.0.3 (0, 5) +1612429800: Socket error on client , disconnecting. +1612429820: New connection from 172.18.0.3 on port 1883. +1612429820: Sending CONNACK to 172.18.0.3 (0, 5) +1612429820: Socket error on client , disconnecting. +1612429840: New connection from 172.18.0.3 on port 1883. +1612429840: Sending CONNACK to 172.18.0.3 (0, 5) +1612429840: Socket error on client , disconnecting. +1612429860: New connection from 172.18.0.3 on port 1883. +1612429860: Sending CONNACK to 172.18.0.3 (0, 5) +1612429860: Socket error on client , disconnecting. +1612429880: New connection from 172.18.0.3 on port 1883. +1612429880: Sending CONNACK to 172.18.0.3 (0, 5) +1612429880: Socket error on client , disconnecting. +1612429900: New connection from 172.18.0.3 on port 1883. +1612429900: Sending CONNACK to 172.18.0.3 (0, 5) +1612429900: Socket error on client , disconnecting. +1612429920: New connection from 172.18.0.3 on port 1883. +1612429920: Sending CONNACK to 172.18.0.3 (0, 5) +1612429920: Socket error on client , disconnecting. +1612429940: New connection from 172.18.0.3 on port 1883. +1612429940: Sending CONNACK to 172.18.0.3 (0, 5) +1612429940: Socket error on client , disconnecting. +1612429960: New connection from 172.18.0.3 on port 1883. +1612429960: Sending CONNACK to 172.18.0.3 (0, 5) +1612429960: Socket error on client , disconnecting. +1612429980: New connection from 172.18.0.3 on port 1883. +1612429980: Sending CONNACK to 172.18.0.3 (0, 5) +1612429980: Socket error on client , disconnecting. +1612430000: New connection from 172.18.0.3 on port 1883. +1612430000: Sending CONNACK to 172.18.0.3 (0, 5) +1612430000: Socket error on client , disconnecting. +1612430020: New connection from 172.18.0.3 on port 1883. +1612430020: Sending CONNACK to 172.18.0.3 (0, 5) +1612430020: Socket error on client , disconnecting. +1612430040: New connection from 172.18.0.3 on port 1883. +1612430040: Sending CONNACK to 172.18.0.3 (0, 5) +1612430040: Socket error on client , disconnecting. +1612430060: New connection from 172.18.0.3 on port 1883. +1612430060: Sending CONNACK to 172.18.0.3 (0, 5) +1612430060: Socket error on client , disconnecting. +1612430080: New connection from 172.18.0.3 on port 1883. +1612430080: Sending CONNACK to 172.18.0.3 (0, 5) +1612430080: Socket error on client , disconnecting. +1612430100: New connection from 172.18.0.3 on port 1883. +1612430100: Sending CONNACK to 172.18.0.3 (0, 5) +1612430100: Socket error on client , disconnecting. +1612430120: New connection from 172.18.0.3 on port 1883. +1612430120: Sending CONNACK to 172.18.0.3 (0, 5) +1612430120: Socket error on client , disconnecting. +1612430140: New connection from 172.18.0.3 on port 1883. +1612430140: Sending CONNACK to 172.18.0.3 (0, 5) +1612430140: Socket error on client , disconnecting. +1612430160: New connection from 172.18.0.3 on port 1883. +1612430160: Sending CONNACK to 172.18.0.3 (0, 5) +1612430160: Socket error on client , disconnecting. +1612430180: New connection from 172.18.0.3 on port 1883. +1612430180: Sending CONNACK to 172.18.0.3 (0, 5) +1612430180: Socket error on client , disconnecting. +1612430200: New connection from 172.18.0.3 on port 1883. +1612430200: Sending CONNACK to 172.18.0.3 (0, 5) +1612430200: Socket error on client , disconnecting. +1612430208: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612430208: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612430208: Error: Permission denied. +1612430220: New connection from 172.18.0.3 on port 1883. +1612430220: Sending CONNACK to 172.18.0.3 (0, 5) +1612430220: Socket error on client , disconnecting. +1612430240: New connection from 172.18.0.3 on port 1883. +1612430240: Sending CONNACK to 172.18.0.3 (0, 5) +1612430240: Socket error on client , disconnecting. +1612430260: New connection from 172.18.0.3 on port 1883. +1612430260: Sending CONNACK to 172.18.0.3 (0, 5) +1612430260: Socket error on client , disconnecting. +1612430280: New connection from 172.18.0.3 on port 1883. +1612430280: Sending CONNACK to 172.18.0.3 (0, 5) +1612430280: Socket error on client , disconnecting. +1612430300: New connection from 172.18.0.3 on port 1883. +1612430300: Sending CONNACK to 172.18.0.3 (0, 5) +1612430300: Socket error on client , disconnecting. +1612430320: New connection from 172.18.0.3 on port 1883. +1612430320: Sending CONNACK to 172.18.0.3 (0, 5) +1612430320: Socket error on client , disconnecting. +1612430340: New connection from 172.18.0.3 on port 1883. +1612430340: Sending CONNACK to 172.18.0.3 (0, 5) +1612430340: Socket error on client , disconnecting. +1612430360: New connection from 172.18.0.3 on port 1883. +1612430360: Sending CONNACK to 172.18.0.3 (0, 5) +1612430360: Socket error on client , disconnecting. +1612430380: New connection from 172.18.0.3 on port 1883. +1612430380: Sending CONNACK to 172.18.0.3 (0, 5) +1612430380: Socket error on client , disconnecting. +1612430400: New connection from 172.18.0.3 on port 1883. +1612430400: Sending CONNACK to 172.18.0.3 (0, 5) +1612430400: Socket error on client , disconnecting. +1612430420: New connection from 172.18.0.3 on port 1883. +1612430420: Sending CONNACK to 172.18.0.3 (0, 5) +1612430420: Socket error on client , disconnecting. +1612430440: New connection from 172.18.0.3 on port 1883. +1612430440: Sending CONNACK to 172.18.0.3 (0, 5) +1612430440: Socket error on client , disconnecting. +1612430460: New connection from 172.18.0.3 on port 1883. +1612430460: Sending CONNACK to 172.18.0.3 (0, 5) +1612430460: Socket error on client , disconnecting. +1612430480: New connection from 172.18.0.3 on port 1883. +1612430480: Sending CONNACK to 172.18.0.3 (0, 5) +1612430480: Socket error on client , disconnecting. +1612430500: New connection from 172.18.0.3 on port 1883. +1612430500: Sending CONNACK to 172.18.0.3 (0, 5) +1612430500: Socket error on client , disconnecting. +1612430520: New connection from 172.18.0.3 on port 1883. +1612430520: Sending CONNACK to 172.18.0.3 (0, 5) +1612430520: Socket error on client , disconnecting. +1612430540: New connection from 172.18.0.3 on port 1883. +1612430540: Sending CONNACK to 172.18.0.3 (0, 5) +1612430540: Socket error on client , disconnecting. +1612430560: New connection from 172.18.0.3 on port 1883. +1612430560: Sending CONNACK to 172.18.0.3 (0, 5) +1612430560: Socket error on client , disconnecting. +1612430580: New connection from 172.18.0.3 on port 1883. +1612430580: Sending CONNACK to 172.18.0.3 (0, 5) +1612430580: Socket error on client , disconnecting. +1612430600: New connection from 172.18.0.3 on port 1883. +1612430600: Sending CONNACK to 172.18.0.3 (0, 5) +1612430600: Socket error on client , disconnecting. +1612430620: New connection from 172.18.0.3 on port 1883. +1612430620: Sending CONNACK to 172.18.0.3 (0, 5) +1612430620: Socket error on client , disconnecting. +1612430640: New connection from 172.18.0.3 on port 1883. +1612430640: Sending CONNACK to 172.18.0.3 (0, 5) +1612430640: Socket error on client , disconnecting. +1612430660: New connection from 172.18.0.3 on port 1883. +1612430660: Sending CONNACK to 172.18.0.3 (0, 5) +1612430660: Socket error on client , disconnecting. +1612430680: New connection from 172.18.0.3 on port 1883. +1612430680: Sending CONNACK to 172.18.0.3 (0, 5) +1612430680: Socket error on client , disconnecting. +1612430700: New connection from 172.18.0.3 on port 1883. +1612430700: Sending CONNACK to 172.18.0.3 (0, 5) +1612430700: Socket error on client , disconnecting. +1612430720: New connection from 172.18.0.3 on port 1883. +1612430720: Sending CONNACK to 172.18.0.3 (0, 5) +1612430720: Socket error on client , disconnecting. +1612430740: New connection from 172.18.0.3 on port 1883. +1612430740: Sending CONNACK to 172.18.0.3 (0, 5) +1612430740: Socket error on client , disconnecting. +1612430760: New connection from 172.18.0.3 on port 1883. +1612430760: Sending CONNACK to 172.18.0.3 (0, 5) +1612430760: Socket error on client , disconnecting. +1612430780: New connection from 172.18.0.3 on port 1883. +1612430780: Sending CONNACK to 172.18.0.3 (0, 5) +1612430780: Socket error on client , disconnecting. +1612430800: New connection from 172.18.0.3 on port 1883. +1612430800: Sending CONNACK to 172.18.0.3 (0, 5) +1612430800: Socket error on client , disconnecting. +1612430820: New connection from 172.18.0.3 on port 1883. +1612430820: Sending CONNACK to 172.18.0.3 (0, 5) +1612430820: Socket error on client , disconnecting. +1612430840: New connection from 172.18.0.3 on port 1883. +1612430840: Sending CONNACK to 172.18.0.3 (0, 5) +1612430840: Socket error on client , disconnecting. +1612430860: New connection from 172.18.0.3 on port 1883. +1612430860: Sending CONNACK to 172.18.0.3 (0, 5) +1612430860: Socket error on client , disconnecting. +1612430880: New connection from 172.18.0.3 on port 1883. +1612430880: Sending CONNACK to 172.18.0.3 (0, 5) +1612430880: Socket error on client , disconnecting. +1612430900: New connection from 172.18.0.3 on port 1883. +1612430900: Sending CONNACK to 172.18.0.3 (0, 5) +1612430900: Socket error on client , disconnecting. +1612430920: New connection from 172.18.0.3 on port 1883. +1612430920: Sending CONNACK to 172.18.0.3 (0, 5) +1612430920: Socket error on client , disconnecting. +1612430940: New connection from 172.18.0.3 on port 1883. +1612430940: Sending CONNACK to 172.18.0.3 (0, 5) +1612430940: Socket error on client , disconnecting. +1612430960: New connection from 172.18.0.3 on port 1883. +1612430960: Sending CONNACK to 172.18.0.3 (0, 5) +1612430960: Socket error on client , disconnecting. +1612430980: New connection from 172.18.0.3 on port 1883. +1612430980: Sending CONNACK to 172.18.0.3 (0, 5) +1612430980: Socket error on client , disconnecting. +1612431000: New connection from 172.18.0.3 on port 1883. +1612431000: Sending CONNACK to 172.18.0.3 (0, 5) +1612431000: Socket error on client , disconnecting. +1612431020: New connection from 172.18.0.3 on port 1883. +1612431020: Sending CONNACK to 172.18.0.3 (0, 5) +1612431020: Socket error on client , disconnecting. +1612431040: New connection from 172.18.0.3 on port 1883. +1612431040: Sending CONNACK to 172.18.0.3 (0, 5) +1612431040: Socket error on client , disconnecting. +1612431060: New connection from 172.18.0.3 on port 1883. +1612431060: Sending CONNACK to 172.18.0.3 (0, 5) +1612431060: Socket error on client , disconnecting. +1612431080: New connection from 172.18.0.3 on port 1883. +1612431080: Sending CONNACK to 172.18.0.3 (0, 5) +1612431080: Socket error on client , disconnecting. +1612431100: New connection from 172.18.0.3 on port 1883. +1612431100: Sending CONNACK to 172.18.0.3 (0, 5) +1612431100: Socket error on client , disconnecting. +1612431120: New connection from 172.18.0.3 on port 1883. +1612431120: Sending CONNACK to 172.18.0.3 (0, 5) +1612431120: Socket error on client , disconnecting. +1612431140: New connection from 172.18.0.3 on port 1883. +1612431140: Sending CONNACK to 172.18.0.3 (0, 5) +1612431140: Socket error on client , disconnecting. +1612431160: New connection from 172.18.0.3 on port 1883. +1612431160: Sending CONNACK to 172.18.0.3 (0, 5) +1612431160: Socket error on client , disconnecting. +1612431180: New connection from 172.18.0.3 on port 1883. +1612431180: Sending CONNACK to 172.18.0.3 (0, 5) +1612431180: Socket error on client , disconnecting. +1612431200: New connection from 172.18.0.3 on port 1883. +1612431200: Sending CONNACK to 172.18.0.3 (0, 5) +1612431200: Socket error on client , disconnecting. +1612431220: New connection from 172.18.0.3 on port 1883. +1612431220: Sending CONNACK to 172.18.0.3 (0, 5) +1612431220: Socket error on client , disconnecting. +1612431240: New connection from 172.18.0.3 on port 1883. +1612431240: Sending CONNACK to 172.18.0.3 (0, 5) +1612431240: Socket error on client , disconnecting. +1612431260: New connection from 172.18.0.3 on port 1883. +1612431260: Sending CONNACK to 172.18.0.3 (0, 5) +1612431260: Socket error on client , disconnecting. +1612431280: New connection from 172.18.0.3 on port 1883. +1612431280: Sending CONNACK to 172.18.0.3 (0, 5) +1612431280: Socket error on client , disconnecting. +1612431300: New connection from 172.18.0.3 on port 1883. +1612431300: Sending CONNACK to 172.18.0.3 (0, 5) +1612431300: Socket error on client , disconnecting. +1612431320: New connection from 172.18.0.3 on port 1883. +1612431320: Sending CONNACK to 172.18.0.3 (0, 5) +1612431320: Socket error on client , disconnecting. +1612431340: New connection from 172.18.0.3 on port 1883. +1612431340: Sending CONNACK to 172.18.0.3 (0, 5) +1612431340: Socket error on client , disconnecting. +1612431360: New connection from 172.18.0.3 on port 1883. +1612431360: Sending CONNACK to 172.18.0.3 (0, 5) +1612431360: Socket error on client , disconnecting. +1612431380: New connection from 172.18.0.3 on port 1883. +1612431380: Sending CONNACK to 172.18.0.3 (0, 5) +1612431380: Socket error on client , disconnecting. +1612431400: New connection from 172.18.0.3 on port 1883. +1612431400: Sending CONNACK to 172.18.0.3 (0, 5) +1612431400: Socket error on client , disconnecting. +1612431420: New connection from 172.18.0.3 on port 1883. +1612431420: Sending CONNACK to 172.18.0.3 (0, 5) +1612431420: Socket error on client , disconnecting. +1612431440: New connection from 172.18.0.3 on port 1883. +1612431440: Sending CONNACK to 172.18.0.3 (0, 5) +1612431440: Socket error on client , disconnecting. +1612431460: New connection from 172.18.0.3 on port 1883. +1612431460: Sending CONNACK to 172.18.0.3 (0, 5) +1612431460: Socket error on client , disconnecting. +1612431480: New connection from 172.18.0.3 on port 1883. +1612431480: Sending CONNACK to 172.18.0.3 (0, 5) +1612431480: Socket error on client , disconnecting. +1612431500: New connection from 172.18.0.3 on port 1883. +1612431500: Sending CONNACK to 172.18.0.3 (0, 5) +1612431500: Socket error on client , disconnecting. +1612431520: New connection from 172.18.0.3 on port 1883. +1612431520: Sending CONNACK to 172.18.0.3 (0, 5) +1612431520: Socket error on client , disconnecting. +1612431540: New connection from 172.18.0.3 on port 1883. +1612431540: Sending CONNACK to 172.18.0.3 (0, 5) +1612431540: Socket error on client , disconnecting. +1612431560: New connection from 172.18.0.3 on port 1883. +1612431560: Sending CONNACK to 172.18.0.3 (0, 5) +1612431560: Socket error on client , disconnecting. +1612431580: New connection from 172.18.0.3 on port 1883. +1612431580: Sending CONNACK to 172.18.0.3 (0, 5) +1612431580: Socket error on client , disconnecting. +1612431600: New connection from 172.18.0.3 on port 1883. +1612431600: Sending CONNACK to 172.18.0.3 (0, 5) +1612431600: Socket error on client , disconnecting. +1612431620: New connection from 172.18.0.3 on port 1883. +1612431620: Sending CONNACK to 172.18.0.3 (0, 5) +1612431620: Socket error on client , disconnecting. +1612431640: New connection from 172.18.0.3 on port 1883. +1612431640: Sending CONNACK to 172.18.0.3 (0, 5) +1612431640: Socket error on client , disconnecting. +1612431660: New connection from 172.18.0.3 on port 1883. +1612431660: Sending CONNACK to 172.18.0.3 (0, 5) +1612431660: Socket error on client , disconnecting. +1612431680: New connection from 172.18.0.3 on port 1883. +1612431680: Sending CONNACK to 172.18.0.3 (0, 5) +1612431680: Socket error on client , disconnecting. +1612431700: New connection from 172.18.0.3 on port 1883. +1612431700: Sending CONNACK to 172.18.0.3 (0, 5) +1612431700: Socket error on client , disconnecting. +1612431720: New connection from 172.18.0.3 on port 1883. +1612431720: Sending CONNACK to 172.18.0.3 (0, 5) +1612431720: Socket error on client , disconnecting. +1612431740: New connection from 172.18.0.3 on port 1883. +1612431740: Sending CONNACK to 172.18.0.3 (0, 5) +1612431740: Socket error on client , disconnecting. +1612431760: New connection from 172.18.0.3 on port 1883. +1612431760: Sending CONNACK to 172.18.0.3 (0, 5) +1612431760: Socket error on client , disconnecting. +1612431780: New connection from 172.18.0.3 on port 1883. +1612431780: Sending CONNACK to 172.18.0.3 (0, 5) +1612431780: Socket error on client , disconnecting. +1612431800: New connection from 172.18.0.3 on port 1883. +1612431800: Sending CONNACK to 172.18.0.3 (0, 5) +1612431800: Socket error on client , disconnecting. +1612431820: New connection from 172.18.0.3 on port 1883. +1612431820: Sending CONNACK to 172.18.0.3 (0, 5) +1612431820: Socket error on client , disconnecting. +1612431840: New connection from 172.18.0.3 on port 1883. +1612431840: Sending CONNACK to 172.18.0.3 (0, 5) +1612431840: Socket error on client , disconnecting. +1612431860: New connection from 172.18.0.3 on port 1883. +1612431860: Sending CONNACK to 172.18.0.3 (0, 5) +1612431860: Socket error on client , disconnecting. +1612431880: New connection from 172.18.0.3 on port 1883. +1612431880: Sending CONNACK to 172.18.0.3 (0, 5) +1612431880: Socket error on client , disconnecting. +1612431900: New connection from 172.18.0.3 on port 1883. +1612431900: Sending CONNACK to 172.18.0.3 (0, 5) +1612431900: Socket error on client , disconnecting. +1612431920: New connection from 172.18.0.3 on port 1883. +1612431920: Sending CONNACK to 172.18.0.3 (0, 5) +1612431920: Socket error on client , disconnecting. +1612431940: New connection from 172.18.0.3 on port 1883. +1612431940: Sending CONNACK to 172.18.0.3 (0, 5) +1612431940: Socket error on client , disconnecting. +1612431960: New connection from 172.18.0.3 on port 1883. +1612431960: Sending CONNACK to 172.18.0.3 (0, 5) +1612431960: Socket error on client , disconnecting. +1612431980: New connection from 172.18.0.3 on port 1883. +1612431980: Sending CONNACK to 172.18.0.3 (0, 5) +1612431980: Socket error on client , disconnecting. +1612432000: New connection from 172.18.0.3 on port 1883. +1612432000: Sending CONNACK to 172.18.0.3 (0, 5) +1612432000: Socket error on client , disconnecting. +1612432009: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612432009: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612432009: Error: Permission denied. +1612432020: New connection from 172.18.0.3 on port 1883. +1612432020: Sending CONNACK to 172.18.0.3 (0, 5) +1612432020: Socket error on client , disconnecting. +1612432040: New connection from 172.18.0.3 on port 1883. +1612432040: Sending CONNACK to 172.18.0.3 (0, 5) +1612432040: Socket error on client , disconnecting. +1612432060: New connection from 172.18.0.3 on port 1883. +1612432060: Sending CONNACK to 172.18.0.3 (0, 5) +1612432060: Socket error on client , disconnecting. +1612432080: New connection from 172.18.0.3 on port 1883. +1612432080: Sending CONNACK to 172.18.0.3 (0, 5) +1612432080: Socket error on client , disconnecting. +1612432100: New connection from 172.18.0.3 on port 1883. +1612432100: Sending CONNACK to 172.18.0.3 (0, 5) +1612432100: Socket error on client , disconnecting. +1612432120: New connection from 172.18.0.3 on port 1883. +1612432120: Sending CONNACK to 172.18.0.3 (0, 5) +1612432120: Socket error on client , disconnecting. +1612432140: New connection from 172.18.0.3 on port 1883. +1612432140: Sending CONNACK to 172.18.0.3 (0, 5) +1612432140: Socket error on client , disconnecting. +1612432160: New connection from 172.18.0.3 on port 1883. +1612432160: Sending CONNACK to 172.18.0.3 (0, 5) +1612432160: Socket error on client , disconnecting. +1612432180: New connection from 172.18.0.3 on port 1883. +1612432180: Sending CONNACK to 172.18.0.3 (0, 5) +1612432180: Socket error on client , disconnecting. +1612432200: New connection from 172.18.0.3 on port 1883. +1612432200: Sending CONNACK to 172.18.0.3 (0, 5) +1612432200: Socket error on client , disconnecting. +1612432220: New connection from 172.18.0.3 on port 1883. +1612432220: Sending CONNACK to 172.18.0.3 (0, 5) +1612432220: Socket error on client , disconnecting. +1612432240: New connection from 172.18.0.3 on port 1883. +1612432240: Sending CONNACK to 172.18.0.3 (0, 5) +1612432240: Socket error on client , disconnecting. +1612432260: New connection from 172.18.0.3 on port 1883. +1612432260: Sending CONNACK to 172.18.0.3 (0, 5) +1612432260: Socket error on client , disconnecting. +1612432280: New connection from 172.18.0.3 on port 1883. +1612432280: Sending CONNACK to 172.18.0.3 (0, 5) +1612432280: Socket error on client , disconnecting. +1612432300: New connection from 172.18.0.3 on port 1883. +1612432300: Sending CONNACK to 172.18.0.3 (0, 5) +1612432300: Socket error on client , disconnecting. +1612432320: New connection from 172.18.0.3 on port 1883. +1612432320: Sending CONNACK to 172.18.0.3 (0, 5) +1612432320: Socket error on client , disconnecting. +1612432340: New connection from 172.18.0.3 on port 1883. +1612432340: Sending CONNACK to 172.18.0.3 (0, 5) +1612432340: Socket error on client , disconnecting. +1612432360: New connection from 172.18.0.3 on port 1883. +1612432360: Sending CONNACK to 172.18.0.3 (0, 5) +1612432360: Socket error on client , disconnecting. +1612432380: New connection from 172.18.0.3 on port 1883. +1612432380: Sending CONNACK to 172.18.0.3 (0, 5) +1612432380: Socket error on client , disconnecting. +1612432400: New connection from 172.18.0.3 on port 1883. +1612432400: Sending CONNACK to 172.18.0.3 (0, 5) +1612432400: Socket error on client , disconnecting. +1612432420: New connection from 172.18.0.3 on port 1883. +1612432420: Sending CONNACK to 172.18.0.3 (0, 5) +1612432420: Socket error on client , disconnecting. +1612432440: New connection from 172.18.0.3 on port 1883. +1612432440: Sending CONNACK to 172.18.0.3 (0, 5) +1612432440: Socket error on client , disconnecting. +1612432460: New connection from 172.18.0.3 on port 1883. +1612432460: Sending CONNACK to 172.18.0.3 (0, 5) +1612432460: Socket error on client , disconnecting. +1612432480: New connection from 172.18.0.3 on port 1883. +1612432480: Sending CONNACK to 172.18.0.3 (0, 5) +1612432480: Socket error on client , disconnecting. +1612432500: New connection from 172.18.0.3 on port 1883. +1612432500: Sending CONNACK to 172.18.0.3 (0, 5) +1612432500: Socket error on client , disconnecting. +1612432520: New connection from 172.18.0.3 on port 1883. +1612432520: Sending CONNACK to 172.18.0.3 (0, 5) +1612432520: Socket error on client , disconnecting. +1612432540: New connection from 172.18.0.3 on port 1883. +1612432540: Sending CONNACK to 172.18.0.3 (0, 5) +1612432540: Socket error on client , disconnecting. +1612432560: New connection from 172.18.0.3 on port 1883. +1612432560: Sending CONNACK to 172.18.0.3 (0, 5) +1612432560: Socket error on client , disconnecting. +1612432580: New connection from 172.18.0.3 on port 1883. +1612432580: Sending CONNACK to 172.18.0.3 (0, 5) +1612432580: Socket error on client , disconnecting. +1612432600: New connection from 172.18.0.3 on port 1883. +1612432600: Sending CONNACK to 172.18.0.3 (0, 5) +1612432600: Socket error on client , disconnecting. +1612432620: New connection from 172.18.0.3 on port 1883. +1612432620: Sending CONNACK to 172.18.0.3 (0, 5) +1612432620: Socket error on client , disconnecting. +1612432640: New connection from 172.18.0.3 on port 1883. +1612432640: Sending CONNACK to 172.18.0.3 (0, 5) +1612432640: Socket error on client , disconnecting. +1612432660: New connection from 172.18.0.3 on port 1883. +1612432660: Sending CONNACK to 172.18.0.3 (0, 5) +1612432660: Socket error on client , disconnecting. +1612432680: New connection from 172.18.0.3 on port 1883. +1612432680: Sending CONNACK to 172.18.0.3 (0, 5) +1612432680: Socket error on client , disconnecting. +1612432700: New connection from 172.18.0.3 on port 1883. +1612432700: Sending CONNACK to 172.18.0.3 (0, 5) +1612432700: Socket error on client , disconnecting. +1612432720: New connection from 172.18.0.3 on port 1883. +1612432720: Sending CONNACK to 172.18.0.3 (0, 5) +1612432720: Socket error on client , disconnecting. +1612432740: New connection from 172.18.0.3 on port 1883. +1612432740: Sending CONNACK to 172.18.0.3 (0, 5) +1612432740: Socket error on client , disconnecting. +1612432760: New connection from 172.18.0.3 on port 1883. +1612432760: Sending CONNACK to 172.18.0.3 (0, 5) +1612432760: Socket error on client , disconnecting. +1612432780: New connection from 172.18.0.3 on port 1883. +1612432780: Sending CONNACK to 172.18.0.3 (0, 5) +1612432780: Socket error on client , disconnecting. +1612432800: New connection from 172.18.0.3 on port 1883. +1612432800: Sending CONNACK to 172.18.0.3 (0, 5) +1612432800: Socket error on client , disconnecting. +1612432820: New connection from 172.18.0.3 on port 1883. +1612432820: Sending CONNACK to 172.18.0.3 (0, 5) +1612432820: Socket error on client , disconnecting. +1612432840: New connection from 172.18.0.3 on port 1883. +1612432840: Sending CONNACK to 172.18.0.3 (0, 5) +1612432840: Socket error on client , disconnecting. +1612432860: New connection from 172.18.0.3 on port 1883. +1612432860: Sending CONNACK to 172.18.0.3 (0, 5) +1612432860: Socket error on client , disconnecting. +1612432880: New connection from 172.18.0.3 on port 1883. +1612432880: Sending CONNACK to 172.18.0.3 (0, 5) +1612432880: Socket error on client , disconnecting. +1612432900: New connection from 172.18.0.3 on port 1883. +1612432900: Sending CONNACK to 172.18.0.3 (0, 5) +1612432900: Socket error on client , disconnecting. +1612432920: New connection from 172.18.0.3 on port 1883. +1612432920: Sending CONNACK to 172.18.0.3 (0, 5) +1612432920: Socket error on client , disconnecting. +1612432940: New connection from 172.18.0.3 on port 1883. +1612432940: Sending CONNACK to 172.18.0.3 (0, 5) +1612432940: Socket error on client , disconnecting. +1612432960: New connection from 172.18.0.3 on port 1883. +1612432960: Sending CONNACK to 172.18.0.3 (0, 5) +1612432960: Socket error on client , disconnecting. +1612432980: New connection from 172.18.0.3 on port 1883. +1612432980: Sending CONNACK to 172.18.0.3 (0, 5) +1612432980: Socket error on client , disconnecting. +1612433000: New connection from 172.18.0.3 on port 1883. +1612433000: Sending CONNACK to 172.18.0.3 (0, 5) +1612433000: Socket error on client , disconnecting. +1612433020: New connection from 172.18.0.3 on port 1883. +1612433020: Sending CONNACK to 172.18.0.3 (0, 5) +1612433020: Socket error on client , disconnecting. +1612433040: New connection from 172.18.0.3 on port 1883. +1612433040: Sending CONNACK to 172.18.0.3 (0, 5) +1612433040: Socket error on client , disconnecting. +1612433060: New connection from 172.18.0.3 on port 1883. +1612433060: Sending CONNACK to 172.18.0.3 (0, 5) +1612433060: Socket error on client , disconnecting. +1612433080: New connection from 172.18.0.3 on port 1883. +1612433080: Sending CONNACK to 172.18.0.3 (0, 5) +1612433080: Socket error on client , disconnecting. +1612433100: New connection from 172.18.0.3 on port 1883. +1612433100: Sending CONNACK to 172.18.0.3 (0, 5) +1612433100: Socket error on client , disconnecting. +1612433120: New connection from 172.18.0.3 on port 1883. +1612433120: Sending CONNACK to 172.18.0.3 (0, 5) +1612433120: Socket error on client , disconnecting. +1612433140: New connection from 172.18.0.3 on port 1883. +1612433140: Sending CONNACK to 172.18.0.3 (0, 5) +1612433140: Socket error on client , disconnecting. +1612433160: New connection from 172.18.0.3 on port 1883. +1612433160: Sending CONNACK to 172.18.0.3 (0, 5) +1612433160: Socket error on client , disconnecting. +1612433180: New connection from 172.18.0.3 on port 1883. +1612433180: Sending CONNACK to 172.18.0.3 (0, 5) +1612433180: Socket error on client , disconnecting. +1612433200: New connection from 172.18.0.3 on port 1883. +1612433200: Sending CONNACK to 172.18.0.3 (0, 5) +1612433200: Socket error on client , disconnecting. +1612433220: New connection from 172.18.0.3 on port 1883. +1612433220: Sending CONNACK to 172.18.0.3 (0, 5) +1612433220: Socket error on client , disconnecting. +1612433240: New connection from 172.18.0.3 on port 1883. +1612433240: Sending CONNACK to 172.18.0.3 (0, 5) +1612433240: Socket error on client , disconnecting. +1612433260: New connection from 172.18.0.3 on port 1883. +1612433260: Sending CONNACK to 172.18.0.3 (0, 5) +1612433260: Socket error on client , disconnecting. +1612433280: New connection from 172.18.0.3 on port 1883. +1612433280: Sending CONNACK to 172.18.0.3 (0, 5) +1612433280: Socket error on client , disconnecting. +1612433300: New connection from 172.18.0.3 on port 1883. +1612433300: Sending CONNACK to 172.18.0.3 (0, 5) +1612433300: Socket error on client , disconnecting. +1612433320: New connection from 172.18.0.3 on port 1883. +1612433320: Sending CONNACK to 172.18.0.3 (0, 5) +1612433320: Socket error on client , disconnecting. +1612433340: New connection from 172.18.0.3 on port 1883. +1612433340: Sending CONNACK to 172.18.0.3 (0, 5) +1612433340: Socket error on client , disconnecting. +1612433360: New connection from 172.18.0.3 on port 1883. +1612433360: Sending CONNACK to 172.18.0.3 (0, 5) +1612433360: Socket error on client , disconnecting. +1612433380: New connection from 172.18.0.3 on port 1883. +1612433380: Sending CONNACK to 172.18.0.3 (0, 5) +1612433380: Socket error on client , disconnecting. +1612433400: New connection from 172.18.0.3 on port 1883. +1612433400: Sending CONNACK to 172.18.0.3 (0, 5) +1612433400: Socket error on client , disconnecting. +1612433420: New connection from 172.18.0.3 on port 1883. +1612433420: Sending CONNACK to 172.18.0.3 (0, 5) +1612433420: Socket error on client , disconnecting. +1612433440: New connection from 172.18.0.3 on port 1883. +1612433440: Sending CONNACK to 172.18.0.3 (0, 5) +1612433440: Socket error on client , disconnecting. +1612433460: New connection from 172.18.0.3 on port 1883. +1612433460: Sending CONNACK to 172.18.0.3 (0, 5) +1612433460: Socket error on client , disconnecting. +1612433480: New connection from 172.18.0.3 on port 1883. +1612433480: Sending CONNACK to 172.18.0.3 (0, 5) +1612433480: Socket error on client , disconnecting. +1612433500: New connection from 172.18.0.3 on port 1883. +1612433500: Sending CONNACK to 172.18.0.3 (0, 5) +1612433500: Socket error on client , disconnecting. +1612433520: New connection from 172.18.0.3 on port 1883. +1612433520: Sending CONNACK to 172.18.0.3 (0, 5) +1612433520: Socket error on client , disconnecting. +1612433540: New connection from 172.18.0.3 on port 1883. +1612433540: Sending CONNACK to 172.18.0.3 (0, 5) +1612433540: Socket error on client , disconnecting. +1612433560: New connection from 172.18.0.3 on port 1883. +1612433560: Sending CONNACK to 172.18.0.3 (0, 5) +1612433560: Socket error on client , disconnecting. +1612433580: New connection from 172.18.0.3 on port 1883. +1612433580: Sending CONNACK to 172.18.0.3 (0, 5) +1612433580: Socket error on client , disconnecting. +1612433600: New connection from 172.18.0.3 on port 1883. +1612433600: Sending CONNACK to 172.18.0.3 (0, 5) +1612433600: Socket error on client , disconnecting. +1612433620: New connection from 172.18.0.3 on port 1883. +1612433620: Sending CONNACK to 172.18.0.3 (0, 5) +1612433620: Socket error on client , disconnecting. +1612433640: New connection from 172.18.0.3 on port 1883. +1612433640: Sending CONNACK to 172.18.0.3 (0, 5) +1612433640: Socket error on client , disconnecting. +1612433660: New connection from 172.18.0.3 on port 1883. +1612433660: Sending CONNACK to 172.18.0.3 (0, 5) +1612433660: Socket error on client , disconnecting. +1612433680: New connection from 172.18.0.3 on port 1883. +1612433680: Sending CONNACK to 172.18.0.3 (0, 5) +1612433680: Socket error on client , disconnecting. +1612433700: New connection from 172.18.0.3 on port 1883. +1612433700: Sending CONNACK to 172.18.0.3 (0, 5) +1612433700: Socket error on client , disconnecting. +1612433720: New connection from 172.18.0.3 on port 1883. +1612433720: Sending CONNACK to 172.18.0.3 (0, 5) +1612433720: Socket error on client , disconnecting. +1612433740: New connection from 172.18.0.3 on port 1883. +1612433740: Sending CONNACK to 172.18.0.3 (0, 5) +1612433740: Socket error on client , disconnecting. +1612433760: New connection from 172.18.0.3 on port 1883. +1612433760: Sending CONNACK to 172.18.0.3 (0, 5) +1612433760: Socket error on client , disconnecting. +1612433780: New connection from 172.18.0.3 on port 1883. +1612433780: Sending CONNACK to 172.18.0.3 (0, 5) +1612433780: Socket error on client , disconnecting. +1612433800: New connection from 172.18.0.3 on port 1883. +1612433800: Sending CONNACK to 172.18.0.3 (0, 5) +1612433800: Socket error on client , disconnecting. +1612433810: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612433810: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612433810: Error: Permission denied. +1612433820: New connection from 172.18.0.3 on port 1883. +1612433820: Sending CONNACK to 172.18.0.3 (0, 5) +1612433820: Socket error on client , disconnecting. +1612433840: New connection from 172.18.0.3 on port 1883. +1612433840: Sending CONNACK to 172.18.0.3 (0, 5) +1612433840: Socket error on client , disconnecting. +1612433860: New connection from 172.18.0.3 on port 1883. +1612433860: Sending CONNACK to 172.18.0.3 (0, 5) +1612433860: Socket error on client , disconnecting. +1612433880: New connection from 172.18.0.3 on port 1883. +1612433880: Sending CONNACK to 172.18.0.3 (0, 5) +1612433880: Socket error on client , disconnecting. +1612433900: New connection from 172.18.0.3 on port 1883. +1612433900: Sending CONNACK to 172.18.0.3 (0, 5) +1612433900: Socket error on client , disconnecting. +1612433920: New connection from 172.18.0.3 on port 1883. +1612433920: Sending CONNACK to 172.18.0.3 (0, 5) +1612433920: Socket error on client , disconnecting. +1612433940: New connection from 172.18.0.3 on port 1883. +1612433940: Sending CONNACK to 172.18.0.3 (0, 5) +1612433940: Socket error on client , disconnecting. +1612433960: New connection from 172.18.0.3 on port 1883. +1612433960: Sending CONNACK to 172.18.0.3 (0, 5) +1612433960: Socket error on client , disconnecting. +1612433980: New connection from 172.18.0.3 on port 1883. +1612433980: Sending CONNACK to 172.18.0.3 (0, 5) +1612433980: Socket error on client , disconnecting. +1612434000: New connection from 172.18.0.3 on port 1883. +1612434000: Sending CONNACK to 172.18.0.3 (0, 5) +1612434000: Socket error on client , disconnecting. +1612434020: New connection from 172.18.0.3 on port 1883. +1612434020: Sending CONNACK to 172.18.0.3 (0, 5) +1612434020: Socket error on client , disconnecting. +1612434040: New connection from 172.18.0.3 on port 1883. +1612434040: Sending CONNACK to 172.18.0.3 (0, 5) +1612434040: Socket error on client , disconnecting. +1612434060: New connection from 172.18.0.3 on port 1883. +1612434060: Sending CONNACK to 172.18.0.3 (0, 5) +1612434060: Socket error on client , disconnecting. +1612434080: New connection from 172.18.0.3 on port 1883. +1612434080: Sending CONNACK to 172.18.0.3 (0, 5) +1612434080: Socket error on client , disconnecting. +1612434100: New connection from 172.18.0.3 on port 1883. +1612434100: Sending CONNACK to 172.18.0.3 (0, 5) +1612434100: Socket error on client , disconnecting. +1612434120: New connection from 172.18.0.3 on port 1883. +1612434120: Sending CONNACK to 172.18.0.3 (0, 5) +1612434120: Socket error on client , disconnecting. +1612434140: New connection from 172.18.0.3 on port 1883. +1612434140: Sending CONNACK to 172.18.0.3 (0, 5) +1612434140: Socket error on client , disconnecting. +1612434160: New connection from 172.18.0.3 on port 1883. +1612434160: Sending CONNACK to 172.18.0.3 (0, 5) +1612434160: Socket error on client , disconnecting. +1612434180: New connection from 172.18.0.3 on port 1883. +1612434180: Sending CONNACK to 172.18.0.3 (0, 5) +1612434180: Socket error on client , disconnecting. +1612434200: New connection from 172.18.0.3 on port 1883. +1612434200: Sending CONNACK to 172.18.0.3 (0, 5) +1612434200: Socket error on client , disconnecting. +1612434220: New connection from 172.18.0.3 on port 1883. +1612434220: Sending CONNACK to 172.18.0.3 (0, 5) +1612434220: Socket error on client , disconnecting. +1612434240: New connection from 172.18.0.3 on port 1883. +1612434240: Sending CONNACK to 172.18.0.3 (0, 5) +1612434240: Socket error on client , disconnecting. +1612434260: New connection from 172.18.0.3 on port 1883. +1612434260: Sending CONNACK to 172.18.0.3 (0, 5) +1612434260: Socket error on client , disconnecting. +1612434280: New connection from 172.18.0.3 on port 1883. +1612434280: Sending CONNACK to 172.18.0.3 (0, 5) +1612434280: Socket error on client , disconnecting. +1612434300: New connection from 172.18.0.3 on port 1883. +1612434300: Sending CONNACK to 172.18.0.3 (0, 5) +1612434300: Socket error on client , disconnecting. +1612434320: New connection from 172.18.0.3 on port 1883. +1612434320: Sending CONNACK to 172.18.0.3 (0, 5) +1612434320: Socket error on client , disconnecting. +1612434340: New connection from 172.18.0.3 on port 1883. +1612434340: Sending CONNACK to 172.18.0.3 (0, 5) +1612434340: Socket error on client , disconnecting. +1612434360: New connection from 172.18.0.3 on port 1883. +1612434360: Sending CONNACK to 172.18.0.3 (0, 5) +1612434360: Socket error on client , disconnecting. +1612434380: New connection from 172.18.0.3 on port 1883. +1612434380: Sending CONNACK to 172.18.0.3 (0, 5) +1612434380: Socket error on client , disconnecting. +1612434400: New connection from 172.18.0.3 on port 1883. +1612434400: Sending CONNACK to 172.18.0.3 (0, 5) +1612434400: Socket error on client , disconnecting. +1612434420: New connection from 172.18.0.3 on port 1883. +1612434420: Sending CONNACK to 172.18.0.3 (0, 5) +1612434420: Socket error on client , disconnecting. +1612434440: New connection from 172.18.0.3 on port 1883. +1612434440: Sending CONNACK to 172.18.0.3 (0, 5) +1612434440: Socket error on client , disconnecting. +1612434460: New connection from 172.18.0.3 on port 1883. +1612434460: Sending CONNACK to 172.18.0.3 (0, 5) +1612434460: Socket error on client , disconnecting. +1612434480: New connection from 172.18.0.3 on port 1883. +1612434480: Sending CONNACK to 172.18.0.3 (0, 5) +1612434480: Socket error on client , disconnecting. +1612434500: New connection from 172.18.0.3 on port 1883. +1612434500: Sending CONNACK to 172.18.0.3 (0, 5) +1612434500: Socket error on client , disconnecting. +1612434520: New connection from 172.18.0.3 on port 1883. +1612434520: Sending CONNACK to 172.18.0.3 (0, 5) +1612434520: Socket error on client , disconnecting. +1612434540: New connection from 172.18.0.3 on port 1883. +1612434540: Sending CONNACK to 172.18.0.3 (0, 5) +1612434540: Socket error on client , disconnecting. +1612434560: New connection from 172.18.0.3 on port 1883. +1612434560: Sending CONNACK to 172.18.0.3 (0, 5) +1612434560: Socket error on client , disconnecting. +1612434580: New connection from 172.18.0.3 on port 1883. +1612434580: Sending CONNACK to 172.18.0.3 (0, 5) +1612434580: Socket error on client , disconnecting. +1612434600: New connection from 172.18.0.3 on port 1883. +1612434600: Sending CONNACK to 172.18.0.3 (0, 5) +1612434600: Socket error on client , disconnecting. +1612434620: New connection from 172.18.0.3 on port 1883. +1612434620: Sending CONNACK to 172.18.0.3 (0, 5) +1612434620: Socket error on client , disconnecting. +1612434640: New connection from 172.18.0.3 on port 1883. +1612434640: Sending CONNACK to 172.18.0.3 (0, 5) +1612434640: Socket error on client , disconnecting. +1612434660: New connection from 172.18.0.3 on port 1883. +1612434660: Sending CONNACK to 172.18.0.3 (0, 5) +1612434660: Socket error on client , disconnecting. +1612434680: New connection from 172.18.0.3 on port 1883. +1612434680: Sending CONNACK to 172.18.0.3 (0, 5) +1612434680: Socket error on client , disconnecting. +1612434700: New connection from 172.18.0.3 on port 1883. +1612434700: Sending CONNACK to 172.18.0.3 (0, 5) +1612434700: Socket error on client , disconnecting. +1612434720: New connection from 172.18.0.3 on port 1883. +1612434720: Sending CONNACK to 172.18.0.3 (0, 5) +1612434720: Socket error on client , disconnecting. +1612434740: New connection from 172.18.0.3 on port 1883. +1612434740: Sending CONNACK to 172.18.0.3 (0, 5) +1612434740: Socket error on client , disconnecting. +1612434760: New connection from 172.18.0.3 on port 1883. +1612434760: Sending CONNACK to 172.18.0.3 (0, 5) +1612434760: Socket error on client , disconnecting. +1612434780: New connection from 172.18.0.3 on port 1883. +1612434780: Sending CONNACK to 172.18.0.3 (0, 5) +1612434780: Socket error on client , disconnecting. +1612434800: New connection from 172.18.0.3 on port 1883. +1612434800: Sending CONNACK to 172.18.0.3 (0, 5) +1612434800: Socket error on client , disconnecting. +1612434820: New connection from 172.18.0.3 on port 1883. +1612434820: Sending CONNACK to 172.18.0.3 (0, 5) +1612434820: Socket error on client , disconnecting. +1612434840: New connection from 172.18.0.3 on port 1883. +1612434840: Sending CONNACK to 172.18.0.3 (0, 5) +1612434840: Socket error on client , disconnecting. +1612434860: New connection from 172.18.0.3 on port 1883. +1612434860: Sending CONNACK to 172.18.0.3 (0, 5) +1612434860: Socket error on client , disconnecting. +1612434880: New connection from 172.18.0.3 on port 1883. +1612434880: Sending CONNACK to 172.18.0.3 (0, 5) +1612434880: Socket error on client , disconnecting. +1612434900: New connection from 172.18.0.3 on port 1883. +1612434900: Sending CONNACK to 172.18.0.3 (0, 5) +1612434900: Socket error on client , disconnecting. +1612434920: New connection from 172.18.0.3 on port 1883. +1612434920: Sending CONNACK to 172.18.0.3 (0, 5) +1612434920: Socket error on client , disconnecting. +1612434940: New connection from 172.18.0.3 on port 1883. +1612434940: Sending CONNACK to 172.18.0.3 (0, 5) +1612434940: Socket error on client , disconnecting. +1612434960: New connection from 172.18.0.3 on port 1883. +1612434960: Sending CONNACK to 172.18.0.3 (0, 5) +1612434960: Socket error on client , disconnecting. +1612434980: New connection from 172.18.0.3 on port 1883. +1612434980: Sending CONNACK to 172.18.0.3 (0, 5) +1612434980: Socket error on client , disconnecting. +1612435000: New connection from 172.18.0.3 on port 1883. +1612435000: Sending CONNACK to 172.18.0.3 (0, 5) +1612435000: Socket error on client , disconnecting. +1612435020: New connection from 172.18.0.3 on port 1883. +1612435020: Sending CONNACK to 172.18.0.3 (0, 5) +1612435020: Socket error on client , disconnecting. +1612435040: New connection from 172.18.0.3 on port 1883. +1612435040: Sending CONNACK to 172.18.0.3 (0, 5) +1612435040: Socket error on client , disconnecting. +1612435060: New connection from 172.18.0.3 on port 1883. +1612435060: Sending CONNACK to 172.18.0.3 (0, 5) +1612435060: Socket error on client , disconnecting. +1612435080: New connection from 172.18.0.3 on port 1883. +1612435080: Sending CONNACK to 172.18.0.3 (0, 5) +1612435080: Socket error on client , disconnecting. +1612435100: New connection from 172.18.0.3 on port 1883. +1612435100: Sending CONNACK to 172.18.0.3 (0, 5) +1612435100: Socket error on client , disconnecting. +1612435120: New connection from 172.18.0.3 on port 1883. +1612435120: Sending CONNACK to 172.18.0.3 (0, 5) +1612435120: Socket error on client , disconnecting. +1612435140: New connection from 172.18.0.3 on port 1883. +1612435140: Sending CONNACK to 172.18.0.3 (0, 5) +1612435140: Socket error on client , disconnecting. +1612435160: New connection from 172.18.0.3 on port 1883. +1612435160: Sending CONNACK to 172.18.0.3 (0, 5) +1612435160: Socket error on client , disconnecting. +1612435180: New connection from 172.18.0.3 on port 1883. +1612435180: Sending CONNACK to 172.18.0.3 (0, 5) +1612435180: Socket error on client , disconnecting. +1612435200: New connection from 172.18.0.3 on port 1883. +1612435200: Sending CONNACK to 172.18.0.3 (0, 5) +1612435200: Socket error on client , disconnecting. +1612435220: New connection from 172.18.0.3 on port 1883. +1612435220: Sending CONNACK to 172.18.0.3 (0, 5) +1612435220: Socket error on client , disconnecting. +1612435240: New connection from 172.18.0.3 on port 1883. +1612435240: Sending CONNACK to 172.18.0.3 (0, 5) +1612435240: Socket error on client , disconnecting. +1612435260: New connection from 172.18.0.3 on port 1883. +1612435260: Sending CONNACK to 172.18.0.3 (0, 5) +1612435260: Socket error on client , disconnecting. +1612435280: New connection from 172.18.0.3 on port 1883. +1612435280: Sending CONNACK to 172.18.0.3 (0, 5) +1612435280: Socket error on client , disconnecting. +1612435300: New connection from 172.18.0.3 on port 1883. +1612435300: Sending CONNACK to 172.18.0.3 (0, 5) +1612435300: Socket error on client , disconnecting. +1612435320: New connection from 172.18.0.3 on port 1883. +1612435320: Sending CONNACK to 172.18.0.3 (0, 5) +1612435320: Socket error on client , disconnecting. +1612435340: New connection from 172.18.0.3 on port 1883. +1612435340: Sending CONNACK to 172.18.0.3 (0, 5) +1612435340: Socket error on client , disconnecting. +1612435360: New connection from 172.18.0.3 on port 1883. +1612435360: Sending CONNACK to 172.18.0.3 (0, 5) +1612435360: Socket error on client , disconnecting. +1612435380: New connection from 172.18.0.3 on port 1883. +1612435380: Sending CONNACK to 172.18.0.3 (0, 5) +1612435380: Socket error on client , disconnecting. +1612435400: New connection from 172.18.0.3 on port 1883. +1612435400: Sending CONNACK to 172.18.0.3 (0, 5) +1612435400: Socket error on client , disconnecting. +1612435420: New connection from 172.18.0.3 on port 1883. +1612435420: Sending CONNACK to 172.18.0.3 (0, 5) +1612435420: Socket error on client , disconnecting. +1612435440: New connection from 172.18.0.3 on port 1883. +1612435440: Sending CONNACK to 172.18.0.3 (0, 5) +1612435440: Socket error on client , disconnecting. +1612435460: New connection from 172.18.0.3 on port 1883. +1612435460: Sending CONNACK to 172.18.0.3 (0, 5) +1612435460: Socket error on client , disconnecting. +1612435480: New connection from 172.18.0.3 on port 1883. +1612435480: Sending CONNACK to 172.18.0.3 (0, 5) +1612435480: Socket error on client , disconnecting. +1612435500: New connection from 172.18.0.3 on port 1883. +1612435500: Sending CONNACK to 172.18.0.3 (0, 5) +1612435500: Socket error on client , disconnecting. +1612435520: New connection from 172.18.0.3 on port 1883. +1612435520: Sending CONNACK to 172.18.0.3 (0, 5) +1612435520: Socket error on client , disconnecting. +1612435540: New connection from 172.18.0.3 on port 1883. +1612435540: Sending CONNACK to 172.18.0.3 (0, 5) +1612435540: Socket error on client , disconnecting. +1612435560: New connection from 172.18.0.3 on port 1883. +1612435560: Sending CONNACK to 172.18.0.3 (0, 5) +1612435560: Socket error on client , disconnecting. +1612435580: New connection from 172.18.0.3 on port 1883. +1612435580: Sending CONNACK to 172.18.0.3 (0, 5) +1612435580: Socket error on client , disconnecting. +1612435600: New connection from 172.18.0.3 on port 1883. +1612435600: Sending CONNACK to 172.18.0.3 (0, 5) +1612435600: Socket error on client , disconnecting. +1612435611: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612435611: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612435611: Error: Permission denied. +1612435620: New connection from 172.18.0.3 on port 1883. +1612435620: Sending CONNACK to 172.18.0.3 (0, 5) +1612435620: Socket error on client , disconnecting. +1612435640: New connection from 172.18.0.3 on port 1883. +1612435640: Sending CONNACK to 172.18.0.3 (0, 5) +1612435640: Socket error on client , disconnecting. +1612435660: New connection from 172.18.0.3 on port 1883. +1612435660: Sending CONNACK to 172.18.0.3 (0, 5) +1612435660: Socket error on client , disconnecting. +1612435680: New connection from 172.18.0.3 on port 1883. +1612435680: Sending CONNACK to 172.18.0.3 (0, 5) +1612435680: Socket error on client , disconnecting. +1612435700: New connection from 172.18.0.3 on port 1883. +1612435700: Sending CONNACK to 172.18.0.3 (0, 5) +1612435700: Socket error on client , disconnecting. +1612435720: New connection from 172.18.0.3 on port 1883. +1612435720: Sending CONNACK to 172.18.0.3 (0, 5) +1612435720: Socket error on client , disconnecting. +1612435740: New connection from 172.18.0.3 on port 1883. +1612435740: Sending CONNACK to 172.18.0.3 (0, 5) +1612435740: Socket error on client , disconnecting. +1612435760: New connection from 172.18.0.3 on port 1883. +1612435760: Sending CONNACK to 172.18.0.3 (0, 5) +1612435760: Socket error on client , disconnecting. +1612435780: New connection from 172.18.0.3 on port 1883. +1612435780: Sending CONNACK to 172.18.0.3 (0, 5) +1612435780: Socket error on client , disconnecting. +1612435800: New connection from 172.18.0.3 on port 1883. +1612435800: Sending CONNACK to 172.18.0.3 (0, 5) +1612435800: Socket error on client , disconnecting. +1612435820: New connection from 172.18.0.3 on port 1883. +1612435820: Sending CONNACK to 172.18.0.3 (0, 5) +1612435820: Socket error on client , disconnecting. +1612435840: New connection from 172.18.0.3 on port 1883. +1612435840: Sending CONNACK to 172.18.0.3 (0, 5) +1612435840: Socket error on client , disconnecting. +1612435860: New connection from 172.18.0.3 on port 1883. +1612435860: Sending CONNACK to 172.18.0.3 (0, 5) +1612435860: Socket error on client , disconnecting. +1612435880: New connection from 172.18.0.3 on port 1883. +1612435880: Sending CONNACK to 172.18.0.3 (0, 5) +1612435880: Socket error on client , disconnecting. +1612435900: New connection from 172.18.0.3 on port 1883. +1612435900: Sending CONNACK to 172.18.0.3 (0, 5) +1612435900: Socket error on client , disconnecting. +1612435920: New connection from 172.18.0.3 on port 1883. +1612435920: Sending CONNACK to 172.18.0.3 (0, 5) +1612435920: Socket error on client , disconnecting. +1612435940: New connection from 172.18.0.3 on port 1883. +1612435940: Sending CONNACK to 172.18.0.3 (0, 5) +1612435940: Socket error on client , disconnecting. +1612435960: New connection from 172.18.0.3 on port 1883. +1612435960: Sending CONNACK to 172.18.0.3 (0, 5) +1612435960: Socket error on client , disconnecting. +1612435980: New connection from 172.18.0.3 on port 1883. +1612435980: Sending CONNACK to 172.18.0.3 (0, 5) +1612435980: Socket error on client , disconnecting. +1612436000: New connection from 172.18.0.3 on port 1883. +1612436000: Sending CONNACK to 172.18.0.3 (0, 5) +1612436000: Socket error on client , disconnecting. +1612436020: New connection from 172.18.0.3 on port 1883. +1612436020: Sending CONNACK to 172.18.0.3 (0, 5) +1612436020: Socket error on client , disconnecting. +1612436040: New connection from 172.18.0.3 on port 1883. +1612436040: Sending CONNACK to 172.18.0.3 (0, 5) +1612436040: Socket error on client , disconnecting. +1612436060: New connection from 172.18.0.3 on port 1883. +1612436060: Sending CONNACK to 172.18.0.3 (0, 5) +1612436060: Socket error on client , disconnecting. +1612436080: New connection from 172.18.0.3 on port 1883. +1612436080: Sending CONNACK to 172.18.0.3 (0, 5) +1612436080: Socket error on client , disconnecting. +1612436100: New connection from 172.18.0.3 on port 1883. +1612436100: Sending CONNACK to 172.18.0.3 (0, 5) +1612436100: Socket error on client , disconnecting. +1612436120: New connection from 172.18.0.3 on port 1883. +1612436120: Sending CONNACK to 172.18.0.3 (0, 5) +1612436120: Socket error on client , disconnecting. +1612436140: New connection from 172.18.0.3 on port 1883. +1612436140: Sending CONNACK to 172.18.0.3 (0, 5) +1612436140: Socket error on client , disconnecting. +1612436160: New connection from 172.18.0.3 on port 1883. +1612436160: Sending CONNACK to 172.18.0.3 (0, 5) +1612436160: Socket error on client , disconnecting. +1612436180: New connection from 172.18.0.3 on port 1883. +1612436180: Sending CONNACK to 172.18.0.3 (0, 5) +1612436180: Socket error on client , disconnecting. +1612436200: New connection from 172.18.0.3 on port 1883. +1612436200: Sending CONNACK to 172.18.0.3 (0, 5) +1612436200: Socket error on client , disconnecting. +1612436220: New connection from 172.18.0.3 on port 1883. +1612436220: Sending CONNACK to 172.18.0.3 (0, 5) +1612436220: Socket error on client , disconnecting. +1612436240: New connection from 172.18.0.3 on port 1883. +1612436240: Sending CONNACK to 172.18.0.3 (0, 5) +1612436240: Socket error on client , disconnecting. +1612436260: New connection from 172.18.0.3 on port 1883. +1612436260: Sending CONNACK to 172.18.0.3 (0, 5) +1612436260: Socket error on client , disconnecting. +1612436280: New connection from 172.18.0.3 on port 1883. +1612436280: Sending CONNACK to 172.18.0.3 (0, 5) +1612436280: Socket error on client , disconnecting. +1612436300: New connection from 172.18.0.3 on port 1883. +1612436300: Sending CONNACK to 172.18.0.3 (0, 5) +1612436300: Socket error on client , disconnecting. +1612436320: New connection from 172.18.0.3 on port 1883. +1612436320: Sending CONNACK to 172.18.0.3 (0, 5) +1612436320: Socket error on client , disconnecting. +1612436340: New connection from 172.18.0.3 on port 1883. +1612436340: Sending CONNACK to 172.18.0.3 (0, 5) +1612436340: Socket error on client , disconnecting. +1612436360: New connection from 172.18.0.3 on port 1883. +1612436360: Sending CONNACK to 172.18.0.3 (0, 5) +1612436360: Socket error on client , disconnecting. +1612436380: New connection from 172.18.0.3 on port 1883. +1612436380: Sending CONNACK to 172.18.0.3 (0, 5) +1612436380: Socket error on client , disconnecting. +1612436400: New connection from 172.18.0.3 on port 1883. +1612436400: Sending CONNACK to 172.18.0.3 (0, 5) +1612436400: Socket error on client , disconnecting. +1612436420: New connection from 172.18.0.3 on port 1883. +1612436420: Sending CONNACK to 172.18.0.3 (0, 5) +1612436420: Socket error on client , disconnecting. +1612436440: New connection from 172.18.0.3 on port 1883. +1612436440: Sending CONNACK to 172.18.0.3 (0, 5) +1612436440: Socket error on client , disconnecting. +1612436460: New connection from 172.18.0.3 on port 1883. +1612436460: Sending CONNACK to 172.18.0.3 (0, 5) +1612436460: Socket error on client , disconnecting. +1612436480: New connection from 172.18.0.3 on port 1883. +1612436480: Sending CONNACK to 172.18.0.3 (0, 5) +1612436480: Socket error on client , disconnecting. +1612436500: New connection from 172.18.0.3 on port 1883. +1612436500: Sending CONNACK to 172.18.0.3 (0, 5) +1612436500: Socket error on client , disconnecting. +1612436520: New connection from 172.18.0.3 on port 1883. +1612436520: Sending CONNACK to 172.18.0.3 (0, 5) +1612436520: Socket error on client , disconnecting. +1612436540: New connection from 172.18.0.3 on port 1883. +1612436540: Sending CONNACK to 172.18.0.3 (0, 5) +1612436540: Socket error on client , disconnecting. +1612436560: New connection from 172.18.0.3 on port 1883. +1612436560: Sending CONNACK to 172.18.0.3 (0, 5) +1612436560: Socket error on client , disconnecting. +1612436580: New connection from 172.18.0.3 on port 1883. +1612436580: Sending CONNACK to 172.18.0.3 (0, 5) +1612436580: Socket error on client , disconnecting. +1612436600: New connection from 172.18.0.3 on port 1883. +1612436600: Sending CONNACK to 172.18.0.3 (0, 5) +1612436600: Socket error on client , disconnecting. +1612436620: New connection from 172.18.0.3 on port 1883. +1612436620: Sending CONNACK to 172.18.0.3 (0, 5) +1612436620: Socket error on client , disconnecting. +1612436640: New connection from 172.18.0.3 on port 1883. +1612436640: Sending CONNACK to 172.18.0.3 (0, 5) +1612436640: Socket error on client , disconnecting. +1612436660: New connection from 172.18.0.3 on port 1883. +1612436660: Sending CONNACK to 172.18.0.3 (0, 5) +1612436660: Socket error on client , disconnecting. +1612436680: New connection from 172.18.0.3 on port 1883. +1612436680: Sending CONNACK to 172.18.0.3 (0, 5) +1612436680: Socket error on client , disconnecting. +1612436700: New connection from 172.18.0.3 on port 1883. +1612436700: Sending CONNACK to 172.18.0.3 (0, 5) +1612436700: Socket error on client , disconnecting. +1612436720: New connection from 172.18.0.3 on port 1883. +1612436720: Sending CONNACK to 172.18.0.3 (0, 5) +1612436720: Socket error on client , disconnecting. +1612436740: New connection from 172.18.0.3 on port 1883. +1612436740: Sending CONNACK to 172.18.0.3 (0, 5) +1612436740: Socket error on client , disconnecting. +1612436760: New connection from 172.18.0.3 on port 1883. +1612436760: Sending CONNACK to 172.18.0.3 (0, 5) +1612436760: Socket error on client , disconnecting. +1612436780: New connection from 172.18.0.3 on port 1883. +1612436780: Sending CONNACK to 172.18.0.3 (0, 5) +1612436780: Socket error on client , disconnecting. +1612436800: New connection from 172.18.0.3 on port 1883. +1612436800: Sending CONNACK to 172.18.0.3 (0, 5) +1612436800: Socket error on client , disconnecting. +1612436820: New connection from 172.18.0.3 on port 1883. +1612436820: Sending CONNACK to 172.18.0.3 (0, 5) +1612436820: Socket error on client , disconnecting. +1612436840: New connection from 172.18.0.3 on port 1883. +1612436840: Sending CONNACK to 172.18.0.3 (0, 5) +1612436840: Socket error on client , disconnecting. +1612436860: New connection from 172.18.0.3 on port 1883. +1612436860: Sending CONNACK to 172.18.0.3 (0, 5) +1612436860: Socket error on client , disconnecting. +1612436880: New connection from 172.18.0.3 on port 1883. +1612436880: Sending CONNACK to 172.18.0.3 (0, 5) +1612436880: Socket error on client , disconnecting. +1612436900: New connection from 172.18.0.3 on port 1883. +1612436900: Sending CONNACK to 172.18.0.3 (0, 5) +1612436900: Socket error on client , disconnecting. +1612436920: New connection from 172.18.0.3 on port 1883. +1612436920: Sending CONNACK to 172.18.0.3 (0, 5) +1612436920: Socket error on client , disconnecting. +1612436940: New connection from 172.18.0.3 on port 1883. +1612436940: Sending CONNACK to 172.18.0.3 (0, 5) +1612436940: Socket error on client , disconnecting. +1612436960: New connection from 172.18.0.3 on port 1883. +1612436960: Sending CONNACK to 172.18.0.3 (0, 5) +1612436960: Socket error on client , disconnecting. +1612436980: New connection from 172.18.0.3 on port 1883. +1612436980: Sending CONNACK to 172.18.0.3 (0, 5) +1612436980: Socket error on client , disconnecting. +1612437000: New connection from 172.18.0.3 on port 1883. +1612437000: Sending CONNACK to 172.18.0.3 (0, 5) +1612437000: Socket error on client , disconnecting. +1612437020: New connection from 172.18.0.3 on port 1883. +1612437020: Sending CONNACK to 172.18.0.3 (0, 5) +1612437020: Socket error on client , disconnecting. +1612437040: New connection from 172.18.0.3 on port 1883. +1612437040: Sending CONNACK to 172.18.0.3 (0, 5) +1612437040: Socket error on client , disconnecting. +1612437060: New connection from 172.18.0.3 on port 1883. +1612437060: Sending CONNACK to 172.18.0.3 (0, 5) +1612437060: Socket error on client , disconnecting. +1612437080: New connection from 172.18.0.3 on port 1883. +1612437080: Sending CONNACK to 172.18.0.3 (0, 5) +1612437080: Socket error on client , disconnecting. +1612437100: New connection from 172.18.0.3 on port 1883. +1612437100: Sending CONNACK to 172.18.0.3 (0, 5) +1612437100: Socket error on client , disconnecting. +1612437120: New connection from 172.18.0.3 on port 1883. +1612437120: Sending CONNACK to 172.18.0.3 (0, 5) +1612437120: Socket error on client , disconnecting. +1612437140: New connection from 172.18.0.3 on port 1883. +1612437140: Sending CONNACK to 172.18.0.3 (0, 5) +1612437140: Socket error on client , disconnecting. +1612437160: New connection from 172.18.0.3 on port 1883. +1612437160: Sending CONNACK to 172.18.0.3 (0, 5) +1612437160: Socket error on client , disconnecting. +1612437180: New connection from 172.18.0.3 on port 1883. +1612437180: Sending CONNACK to 172.18.0.3 (0, 5) +1612437180: Socket error on client , disconnecting. +1612437200: New connection from 172.18.0.3 on port 1883. +1612437200: Sending CONNACK to 172.18.0.3 (0, 5) +1612437200: Socket error on client , disconnecting. +1612437220: New connection from 172.18.0.3 on port 1883. +1612437220: Sending CONNACK to 172.18.0.3 (0, 5) +1612437220: Socket error on client , disconnecting. +1612437240: New connection from 172.18.0.3 on port 1883. +1612437240: Sending CONNACK to 172.18.0.3 (0, 5) +1612437240: Socket error on client , disconnecting. +1612437260: New connection from 172.18.0.3 on port 1883. +1612437260: Sending CONNACK to 172.18.0.3 (0, 5) +1612437260: Socket error on client , disconnecting. +1612437280: New connection from 172.18.0.3 on port 1883. +1612437280: Sending CONNACK to 172.18.0.3 (0, 5) +1612437280: Socket error on client , disconnecting. +1612437300: New connection from 172.18.0.3 on port 1883. +1612437300: Sending CONNACK to 172.18.0.3 (0, 5) +1612437300: Socket error on client , disconnecting. +1612437320: New connection from 172.18.0.3 on port 1883. +1612437320: Sending CONNACK to 172.18.0.3 (0, 5) +1612437320: Socket error on client , disconnecting. +1612437340: New connection from 172.18.0.3 on port 1883. +1612437340: Sending CONNACK to 172.18.0.3 (0, 5) +1612437340: Socket error on client , disconnecting. +1612437360: New connection from 172.18.0.3 on port 1883. +1612437360: Sending CONNACK to 172.18.0.3 (0, 5) +1612437360: Socket error on client , disconnecting. +1612437380: New connection from 172.18.0.3 on port 1883. +1612437380: Sending CONNACK to 172.18.0.3 (0, 5) +1612437380: Socket error on client , disconnecting. +1612437400: New connection from 172.18.0.3 on port 1883. +1612437400: Sending CONNACK to 172.18.0.3 (0, 5) +1612437400: Socket error on client , disconnecting. +1612437412: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612437412: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612437412: Error: Permission denied. +1612437420: New connection from 172.18.0.3 on port 1883. +1612437420: Sending CONNACK to 172.18.0.3 (0, 5) +1612437420: Socket error on client , disconnecting. +1612437440: New connection from 172.18.0.3 on port 1883. +1612437440: Sending CONNACK to 172.18.0.3 (0, 5) +1612437440: Socket error on client , disconnecting. +1612437460: New connection from 172.18.0.3 on port 1883. +1612437460: Sending CONNACK to 172.18.0.3 (0, 5) +1612437460: Socket error on client , disconnecting. +1612437480: New connection from 172.18.0.3 on port 1883. +1612437480: Sending CONNACK to 172.18.0.3 (0, 5) +1612437480: Socket error on client , disconnecting. +1612437500: New connection from 172.18.0.3 on port 1883. +1612437500: Sending CONNACK to 172.18.0.3 (0, 5) +1612437500: Socket error on client , disconnecting. +1612437520: New connection from 172.18.0.3 on port 1883. +1612437520: Sending CONNACK to 172.18.0.3 (0, 5) +1612437520: Socket error on client , disconnecting. +1612437540: New connection from 172.18.0.3 on port 1883. +1612437540: Sending CONNACK to 172.18.0.3 (0, 5) +1612437540: Socket error on client , disconnecting. +1612437560: New connection from 172.18.0.3 on port 1883. +1612437560: Sending CONNACK to 172.18.0.3 (0, 5) +1612437560: Socket error on client , disconnecting. +1612437580: New connection from 172.18.0.3 on port 1883. +1612437580: Sending CONNACK to 172.18.0.3 (0, 5) +1612437580: Socket error on client , disconnecting. +1612437600: New connection from 172.18.0.3 on port 1883. +1612437600: Sending CONNACK to 172.18.0.3 (0, 5) +1612437600: Socket error on client , disconnecting. +1612437620: New connection from 172.18.0.3 on port 1883. +1612437620: Sending CONNACK to 172.18.0.3 (0, 5) +1612437620: Socket error on client , disconnecting. +1612437640: New connection from 172.18.0.3 on port 1883. +1612437640: Sending CONNACK to 172.18.0.3 (0, 5) +1612437640: Socket error on client , disconnecting. +1612437660: New connection from 172.18.0.3 on port 1883. +1612437660: Sending CONNACK to 172.18.0.3 (0, 5) +1612437660: Socket error on client , disconnecting. +1612437680: New connection from 172.18.0.3 on port 1883. +1612437680: Sending CONNACK to 172.18.0.3 (0, 5) +1612437680: Socket error on client , disconnecting. +1612437700: New connection from 172.18.0.3 on port 1883. +1612437700: Sending CONNACK to 172.18.0.3 (0, 5) +1612437700: Socket error on client , disconnecting. +1612437720: New connection from 172.18.0.3 on port 1883. +1612437720: Sending CONNACK to 172.18.0.3 (0, 5) +1612437720: Socket error on client , disconnecting. +1612437740: New connection from 172.18.0.3 on port 1883. +1612437740: Sending CONNACK to 172.18.0.3 (0, 5) +1612437740: Socket error on client , disconnecting. +1612437760: New connection from 172.18.0.3 on port 1883. +1612437760: Sending CONNACK to 172.18.0.3 (0, 5) +1612437760: Socket error on client , disconnecting. +1612437780: New connection from 172.18.0.3 on port 1883. +1612437780: Sending CONNACK to 172.18.0.3 (0, 5) +1612437780: Socket error on client , disconnecting. +1612437800: New connection from 172.18.0.3 on port 1883. +1612437800: Sending CONNACK to 172.18.0.3 (0, 5) +1612437800: Socket error on client , disconnecting. +1612437820: New connection from 172.18.0.3 on port 1883. +1612437820: Sending CONNACK to 172.18.0.3 (0, 5) +1612437820: Socket error on client , disconnecting. +1612437840: New connection from 172.18.0.3 on port 1883. +1612437840: Sending CONNACK to 172.18.0.3 (0, 5) +1612437840: Socket error on client , disconnecting. +1612437860: New connection from 172.18.0.3 on port 1883. +1612437860: Sending CONNACK to 172.18.0.3 (0, 5) +1612437860: Socket error on client , disconnecting. +1612437880: New connection from 172.18.0.3 on port 1883. +1612437880: Sending CONNACK to 172.18.0.3 (0, 5) +1612437880: Socket error on client , disconnecting. +1612437900: New connection from 172.18.0.3 on port 1883. +1612437900: Sending CONNACK to 172.18.0.3 (0, 5) +1612437900: Socket error on client , disconnecting. +1612437920: New connection from 172.18.0.3 on port 1883. +1612437920: Sending CONNACK to 172.18.0.3 (0, 5) +1612437920: Socket error on client , disconnecting. +1612437940: New connection from 172.18.0.3 on port 1883. +1612437940: Sending CONNACK to 172.18.0.3 (0, 5) +1612437940: Socket error on client , disconnecting. +1612437960: New connection from 172.18.0.3 on port 1883. +1612437960: Sending CONNACK to 172.18.0.3 (0, 5) +1612437960: Socket error on client , disconnecting. +1612437980: New connection from 172.18.0.3 on port 1883. +1612437980: Sending CONNACK to 172.18.0.3 (0, 5) +1612437980: Socket error on client , disconnecting. +1612438000: New connection from 172.18.0.3 on port 1883. +1612438000: Sending CONNACK to 172.18.0.3 (0, 5) +1612438000: Socket error on client , disconnecting. +1612438020: New connection from 172.18.0.3 on port 1883. +1612438020: Sending CONNACK to 172.18.0.3 (0, 5) +1612438020: Socket error on client , disconnecting. +1612438040: New connection from 172.18.0.3 on port 1883. +1612438040: Sending CONNACK to 172.18.0.3 (0, 5) +1612438040: Socket error on client , disconnecting. +1612438060: New connection from 172.18.0.3 on port 1883. +1612438060: Sending CONNACK to 172.18.0.3 (0, 5) +1612438060: Socket error on client , disconnecting. +1612438080: New connection from 172.18.0.3 on port 1883. +1612438080: Sending CONNACK to 172.18.0.3 (0, 5) +1612438080: Socket error on client , disconnecting. +1612438100: New connection from 172.18.0.3 on port 1883. +1612438100: Sending CONNACK to 172.18.0.3 (0, 5) +1612438100: Socket error on client , disconnecting. +1612438120: New connection from 172.18.0.3 on port 1883. +1612438120: Sending CONNACK to 172.18.0.3 (0, 5) +1612438120: Socket error on client , disconnecting. +1612438140: New connection from 172.18.0.3 on port 1883. +1612438140: Sending CONNACK to 172.18.0.3 (0, 5) +1612438140: Socket error on client , disconnecting. +1612438160: New connection from 172.18.0.3 on port 1883. +1612438160: Sending CONNACK to 172.18.0.3 (0, 5) +1612438160: Socket error on client , disconnecting. +1612438180: New connection from 172.18.0.3 on port 1883. +1612438180: Sending CONNACK to 172.18.0.3 (0, 5) +1612438180: Socket error on client , disconnecting. +1612438200: New connection from 172.18.0.3 on port 1883. +1612438200: Sending CONNACK to 172.18.0.3 (0, 5) +1612438200: Socket error on client , disconnecting. +1612438220: New connection from 172.18.0.3 on port 1883. +1612438220: Sending CONNACK to 172.18.0.3 (0, 5) +1612438220: Socket error on client , disconnecting. +1612438240: New connection from 172.18.0.3 on port 1883. +1612438240: Sending CONNACK to 172.18.0.3 (0, 5) +1612438240: Socket error on client , disconnecting. +1612438260: New connection from 172.18.0.3 on port 1883. +1612438260: Sending CONNACK to 172.18.0.3 (0, 5) +1612438260: Socket error on client , disconnecting. +1612438280: New connection from 172.18.0.3 on port 1883. +1612438280: Sending CONNACK to 172.18.0.3 (0, 5) +1612438280: Socket error on client , disconnecting. +1612438300: New connection from 172.18.0.3 on port 1883. +1612438300: Sending CONNACK to 172.18.0.3 (0, 5) +1612438300: Socket error on client , disconnecting. +1612438320: New connection from 172.18.0.3 on port 1883. +1612438320: Sending CONNACK to 172.18.0.3 (0, 5) +1612438320: Socket error on client , disconnecting. +1612438340: New connection from 172.18.0.3 on port 1883. +1612438340: Sending CONNACK to 172.18.0.3 (0, 5) +1612438340: Socket error on client , disconnecting. +1612438360: New connection from 172.18.0.3 on port 1883. +1612438360: Sending CONNACK to 172.18.0.3 (0, 5) +1612438360: Socket error on client , disconnecting. +1612438380: New connection from 172.18.0.3 on port 1883. +1612438380: Sending CONNACK to 172.18.0.3 (0, 5) +1612438380: Socket error on client , disconnecting. +1612438400: New connection from 172.18.0.3 on port 1883. +1612438400: Sending CONNACK to 172.18.0.3 (0, 5) +1612438400: Socket error on client , disconnecting. +1612438420: New connection from 172.18.0.3 on port 1883. +1612438420: Sending CONNACK to 172.18.0.3 (0, 5) +1612438420: Socket error on client , disconnecting. +1612438440: New connection from 172.18.0.3 on port 1883. +1612438440: Sending CONNACK to 172.18.0.3 (0, 5) +1612438440: Socket error on client , disconnecting. +1612438460: New connection from 172.18.0.3 on port 1883. +1612438460: Sending CONNACK to 172.18.0.3 (0, 5) +1612438460: Socket error on client , disconnecting. +1612438480: New connection from 172.18.0.3 on port 1883. +1612438480: Sending CONNACK to 172.18.0.3 (0, 5) +1612438480: Socket error on client , disconnecting. +1612438500: New connection from 172.18.0.3 on port 1883. +1612438500: Sending CONNACK to 172.18.0.3 (0, 5) +1612438500: Socket error on client , disconnecting. +1612438520: New connection from 172.18.0.3 on port 1883. +1612438520: Sending CONNACK to 172.18.0.3 (0, 5) +1612438520: Socket error on client , disconnecting. +1612438540: New connection from 172.18.0.3 on port 1883. +1612438540: Sending CONNACK to 172.18.0.3 (0, 5) +1612438540: Socket error on client , disconnecting. +1612438560: New connection from 172.18.0.3 on port 1883. +1612438560: Sending CONNACK to 172.18.0.3 (0, 5) +1612438560: Socket error on client , disconnecting. +1612438580: New connection from 172.18.0.3 on port 1883. +1612438580: Sending CONNACK to 172.18.0.3 (0, 5) +1612438580: Socket error on client , disconnecting. +1612438600: New connection from 172.18.0.3 on port 1883. +1612438600: Sending CONNACK to 172.18.0.3 (0, 5) +1612438600: Socket error on client , disconnecting. +1612438620: New connection from 172.18.0.3 on port 1883. +1612438620: Sending CONNACK to 172.18.0.3 (0, 5) +1612438620: Socket error on client , disconnecting. +1612438640: New connection from 172.18.0.3 on port 1883. +1612438640: Sending CONNACK to 172.18.0.3 (0, 5) +1612438640: Socket error on client , disconnecting. +1612438660: New connection from 172.18.0.3 on port 1883. +1612438660: Sending CONNACK to 172.18.0.3 (0, 5) +1612438660: Socket error on client , disconnecting. +1612438680: New connection from 172.18.0.3 on port 1883. +1612438680: Sending CONNACK to 172.18.0.3 (0, 5) +1612438680: Socket error on client , disconnecting. +1612438700: New connection from 172.18.0.3 on port 1883. +1612438700: Sending CONNACK to 172.18.0.3 (0, 5) +1612438700: Socket error on client , disconnecting. +1612438720: New connection from 172.18.0.3 on port 1883. +1612438720: Sending CONNACK to 172.18.0.3 (0, 5) +1612438720: Socket error on client , disconnecting. +1612438740: New connection from 172.18.0.3 on port 1883. +1612438740: Sending CONNACK to 172.18.0.3 (0, 5) +1612438740: Socket error on client , disconnecting. +1612438760: New connection from 172.18.0.3 on port 1883. +1612438760: Sending CONNACK to 172.18.0.3 (0, 5) +1612438760: Socket error on client , disconnecting. +1612438780: New connection from 172.18.0.3 on port 1883. +1612438780: Sending CONNACK to 172.18.0.3 (0, 5) +1612438780: Socket error on client , disconnecting. +1612438800: New connection from 172.18.0.3 on port 1883. +1612438800: Sending CONNACK to 172.18.0.3 (0, 5) +1612438800: Socket error on client , disconnecting. +1612438820: New connection from 172.18.0.3 on port 1883. +1612438820: Sending CONNACK to 172.18.0.3 (0, 5) +1612438820: Socket error on client , disconnecting. +1612438840: New connection from 172.18.0.3 on port 1883. +1612438840: Sending CONNACK to 172.18.0.3 (0, 5) +1612438840: Socket error on client , disconnecting. +1612438860: New connection from 172.18.0.3 on port 1883. +1612438860: Sending CONNACK to 172.18.0.3 (0, 5) +1612438860: Socket error on client , disconnecting. +1612438880: New connection from 172.18.0.3 on port 1883. +1612438880: Sending CONNACK to 172.18.0.3 (0, 5) +1612438880: Socket error on client , disconnecting. +1612438900: New connection from 172.18.0.3 on port 1883. +1612438900: Sending CONNACK to 172.18.0.3 (0, 5) +1612438900: Socket error on client , disconnecting. +1612438920: New connection from 172.18.0.3 on port 1883. +1612438920: Sending CONNACK to 172.18.0.3 (0, 5) +1612438920: Socket error on client , disconnecting. +1612438940: New connection from 172.18.0.3 on port 1883. +1612438940: Sending CONNACK to 172.18.0.3 (0, 5) +1612438940: Socket error on client , disconnecting. +1612438960: New connection from 172.18.0.3 on port 1883. +1612438960: Sending CONNACK to 172.18.0.3 (0, 5) +1612438960: Socket error on client , disconnecting. +1612438980: New connection from 172.18.0.3 on port 1883. +1612438980: Sending CONNACK to 172.18.0.3 (0, 5) +1612438980: Socket error on client , disconnecting. +1612439000: New connection from 172.18.0.3 on port 1883. +1612439000: Sending CONNACK to 172.18.0.3 (0, 5) +1612439000: Socket error on client , disconnecting. +1612439020: New connection from 172.18.0.3 on port 1883. +1612439020: Sending CONNACK to 172.18.0.3 (0, 5) +1612439020: Socket error on client , disconnecting. +1612439040: New connection from 172.18.0.3 on port 1883. +1612439040: Sending CONNACK to 172.18.0.3 (0, 5) +1612439040: Socket error on client , disconnecting. +1612439060: New connection from 172.18.0.3 on port 1883. +1612439060: Sending CONNACK to 172.18.0.3 (0, 5) +1612439060: Socket error on client , disconnecting. +1612439080: New connection from 172.18.0.3 on port 1883. +1612439080: Sending CONNACK to 172.18.0.3 (0, 5) +1612439080: Socket error on client , disconnecting. +1612439100: New connection from 172.18.0.3 on port 1883. +1612439100: Sending CONNACK to 172.18.0.3 (0, 5) +1612439100: Socket error on client , disconnecting. +1612439120: New connection from 172.18.0.3 on port 1883. +1612439120: Sending CONNACK to 172.18.0.3 (0, 5) +1612439120: Socket error on client , disconnecting. +1612439140: New connection from 172.18.0.3 on port 1883. +1612439140: Sending CONNACK to 172.18.0.3 (0, 5) +1612439140: Socket error on client , disconnecting. +1612439160: New connection from 172.18.0.3 on port 1883. +1612439160: Sending CONNACK to 172.18.0.3 (0, 5) +1612439160: Socket error on client , disconnecting. +1612439180: New connection from 172.18.0.3 on port 1883. +1612439180: Sending CONNACK to 172.18.0.3 (0, 5) +1612439180: Socket error on client , disconnecting. +1612439200: New connection from 172.18.0.3 on port 1883. +1612439200: Sending CONNACK to 172.18.0.3 (0, 5) +1612439200: Socket error on client , disconnecting. +1612439213: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612439213: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612439213: Error: Permission denied. +1612439220: New connection from 172.18.0.3 on port 1883. +1612439220: Sending CONNACK to 172.18.0.3 (0, 5) +1612439220: Socket error on client , disconnecting. +1612439240: New connection from 172.18.0.3 on port 1883. +1612439240: Sending CONNACK to 172.18.0.3 (0, 5) +1612439240: Socket error on client , disconnecting. +1612439260: New connection from 172.18.0.3 on port 1883. +1612439260: Sending CONNACK to 172.18.0.3 (0, 5) +1612439260: Socket error on client , disconnecting. +1612439280: New connection from 172.18.0.3 on port 1883. +1612439280: Sending CONNACK to 172.18.0.3 (0, 5) +1612439280: Socket error on client , disconnecting. +1612439300: New connection from 172.18.0.3 on port 1883. +1612439300: Sending CONNACK to 172.18.0.3 (0, 5) +1612439300: Socket error on client , disconnecting. +1612439320: New connection from 172.18.0.3 on port 1883. +1612439320: Sending CONNACK to 172.18.0.3 (0, 5) +1612439320: Socket error on client , disconnecting. +1612439340: New connection from 172.18.0.3 on port 1883. +1612439340: Sending CONNACK to 172.18.0.3 (0, 5) +1612439340: Socket error on client , disconnecting. +1612439360: New connection from 172.18.0.3 on port 1883. +1612439360: Sending CONNACK to 172.18.0.3 (0, 5) +1612439360: Socket error on client , disconnecting. +1612439380: New connection from 172.18.0.3 on port 1883. +1612439380: Sending CONNACK to 172.18.0.3 (0, 5) +1612439380: Socket error on client , disconnecting. +1612439400: New connection from 172.18.0.3 on port 1883. +1612439400: Sending CONNACK to 172.18.0.3 (0, 5) +1612439400: Socket error on client , disconnecting. +1612439420: New connection from 172.18.0.3 on port 1883. +1612439420: Sending CONNACK to 172.18.0.3 (0, 5) +1612439420: Socket error on client , disconnecting. +1612439440: New connection from 172.18.0.3 on port 1883. +1612439440: Sending CONNACK to 172.18.0.3 (0, 5) +1612439440: Socket error on client , disconnecting. +1612439460: New connection from 172.18.0.3 on port 1883. +1612439460: Sending CONNACK to 172.18.0.3 (0, 5) +1612439460: Socket error on client , disconnecting. +1612439480: New connection from 172.18.0.3 on port 1883. +1612439480: Sending CONNACK to 172.18.0.3 (0, 5) +1612439480: Socket error on client , disconnecting. +1612439500: New connection from 172.18.0.3 on port 1883. +1612439500: Sending CONNACK to 172.18.0.3 (0, 5) +1612439500: Socket error on client , disconnecting. +1612439520: New connection from 172.18.0.3 on port 1883. +1612439520: Sending CONNACK to 172.18.0.3 (0, 5) +1612439520: Socket error on client , disconnecting. +1612439540: New connection from 172.18.0.3 on port 1883. +1612439540: Sending CONNACK to 172.18.0.3 (0, 5) +1612439540: Socket error on client , disconnecting. +1612439560: New connection from 172.18.0.3 on port 1883. +1612439560: Sending CONNACK to 172.18.0.3 (0, 5) +1612439560: Socket error on client , disconnecting. +1612439580: New connection from 172.18.0.3 on port 1883. +1612439580: Sending CONNACK to 172.18.0.3 (0, 5) +1612439580: Socket error on client , disconnecting. +1612439600: New connection from 172.18.0.3 on port 1883. +1612439600: Sending CONNACK to 172.18.0.3 (0, 5) +1612439600: Socket error on client , disconnecting. +1612439620: New connection from 172.18.0.3 on port 1883. +1612439620: Sending CONNACK to 172.18.0.3 (0, 5) +1612439620: Socket error on client , disconnecting. +1612439640: New connection from 172.18.0.3 on port 1883. +1612439640: Sending CONNACK to 172.18.0.3 (0, 5) +1612439640: Socket error on client , disconnecting. +1612439660: New connection from 172.18.0.3 on port 1883. +1612439660: Sending CONNACK to 172.18.0.3 (0, 5) +1612439660: Socket error on client , disconnecting. +1612439680: New connection from 172.18.0.3 on port 1883. +1612439680: Sending CONNACK to 172.18.0.3 (0, 5) +1612439680: Socket error on client , disconnecting. +1612439700: New connection from 172.18.0.3 on port 1883. +1612439700: Sending CONNACK to 172.18.0.3 (0, 5) +1612439700: Socket error on client , disconnecting. +1612439720: New connection from 172.18.0.3 on port 1883. +1612439720: Sending CONNACK to 172.18.0.3 (0, 5) +1612439720: Socket error on client , disconnecting. +1612439740: New connection from 172.18.0.3 on port 1883. +1612439740: Sending CONNACK to 172.18.0.3 (0, 5) +1612439740: Socket error on client , disconnecting. +1612439760: New connection from 172.18.0.3 on port 1883. +1612439760: Sending CONNACK to 172.18.0.3 (0, 5) +1612439760: Socket error on client , disconnecting. +1612439780: New connection from 172.18.0.3 on port 1883. +1612439780: Sending CONNACK to 172.18.0.3 (0, 5) +1612439780: Socket error on client , disconnecting. +1612439800: New connection from 172.18.0.3 on port 1883. +1612439800: Sending CONNACK to 172.18.0.3 (0, 5) +1612439800: Socket error on client , disconnecting. +1612439820: New connection from 172.18.0.3 on port 1883. +1612439820: Sending CONNACK to 172.18.0.3 (0, 5) +1612439820: Socket error on client , disconnecting. +1612439840: New connection from 172.18.0.3 on port 1883. +1612439840: Sending CONNACK to 172.18.0.3 (0, 5) +1612439840: Socket error on client , disconnecting. +1612439860: New connection from 172.18.0.3 on port 1883. +1612439860: Sending CONNACK to 172.18.0.3 (0, 5) +1612439860: Socket error on client , disconnecting. +1612439880: New connection from 172.18.0.3 on port 1883. +1612439880: Sending CONNACK to 172.18.0.3 (0, 5) +1612439880: Socket error on client , disconnecting. +1612439900: New connection from 172.18.0.3 on port 1883. +1612439900: Sending CONNACK to 172.18.0.3 (0, 5) +1612439900: Socket error on client , disconnecting. +1612439920: New connection from 172.18.0.3 on port 1883. +1612439920: Sending CONNACK to 172.18.0.3 (0, 5) +1612439920: Socket error on client , disconnecting. +1612439940: New connection from 172.18.0.3 on port 1883. +1612439940: Sending CONNACK to 172.18.0.3 (0, 5) +1612439940: Socket error on client , disconnecting. +1612439960: New connection from 172.18.0.3 on port 1883. +1612439960: Sending CONNACK to 172.18.0.3 (0, 5) +1612439960: Socket error on client , disconnecting. +1612439980: New connection from 172.18.0.3 on port 1883. +1612439980: Sending CONNACK to 172.18.0.3 (0, 5) +1612439980: Socket error on client , disconnecting. +1612440000: New connection from 172.18.0.3 on port 1883. +1612440000: Sending CONNACK to 172.18.0.3 (0, 5) +1612440000: Socket error on client , disconnecting. +1612440020: New connection from 172.18.0.3 on port 1883. +1612440020: Sending CONNACK to 172.18.0.3 (0, 5) +1612440020: Socket error on client , disconnecting. +1612440040: New connection from 172.18.0.3 on port 1883. +1612440040: Sending CONNACK to 172.18.0.3 (0, 5) +1612440040: Socket error on client , disconnecting. +1612440060: New connection from 172.18.0.3 on port 1883. +1612440060: Sending CONNACK to 172.18.0.3 (0, 5) +1612440060: Socket error on client , disconnecting. +1612440080: New connection from 172.18.0.3 on port 1883. +1612440080: Sending CONNACK to 172.18.0.3 (0, 5) +1612440080: Socket error on client , disconnecting. +1612440100: New connection from 172.18.0.3 on port 1883. +1612440100: Sending CONNACK to 172.18.0.3 (0, 5) +1612440100: Socket error on client , disconnecting. +1612440120: New connection from 172.18.0.3 on port 1883. +1612440120: Sending CONNACK to 172.18.0.3 (0, 5) +1612440120: Socket error on client , disconnecting. +1612440140: New connection from 172.18.0.3 on port 1883. +1612440140: Sending CONNACK to 172.18.0.3 (0, 5) +1612440140: Socket error on client , disconnecting. +1612440160: New connection from 172.18.0.3 on port 1883. +1612440160: Sending CONNACK to 172.18.0.3 (0, 5) +1612440160: Socket error on client , disconnecting. +1612440180: New connection from 172.18.0.3 on port 1883. +1612440180: Sending CONNACK to 172.18.0.3 (0, 5) +1612440180: Socket error on client , disconnecting. +1612440200: New connection from 172.18.0.3 on port 1883. +1612440200: Sending CONNACK to 172.18.0.3 (0, 5) +1612440200: Socket error on client , disconnecting. +1612440220: New connection from 172.18.0.3 on port 1883. +1612440220: Sending CONNACK to 172.18.0.3 (0, 5) +1612440220: Socket error on client , disconnecting. +1612440240: New connection from 172.18.0.3 on port 1883. +1612440240: Sending CONNACK to 172.18.0.3 (0, 5) +1612440240: Socket error on client , disconnecting. +1612440260: New connection from 172.18.0.3 on port 1883. +1612440260: Sending CONNACK to 172.18.0.3 (0, 5) +1612440260: Socket error on client , disconnecting. +1612440280: New connection from 172.18.0.3 on port 1883. +1612440280: Sending CONNACK to 172.18.0.3 (0, 5) +1612440280: Socket error on client , disconnecting. +1612440300: New connection from 172.18.0.3 on port 1883. +1612440300: Sending CONNACK to 172.18.0.3 (0, 5) +1612440300: Socket error on client , disconnecting. +1612440320: New connection from 172.18.0.3 on port 1883. +1612440320: Sending CONNACK to 172.18.0.3 (0, 5) +1612440320: Socket error on client , disconnecting. +1612440340: New connection from 172.18.0.3 on port 1883. +1612440340: Sending CONNACK to 172.18.0.3 (0, 5) +1612440340: Socket error on client , disconnecting. +1612440360: New connection from 172.18.0.3 on port 1883. +1612440360: Sending CONNACK to 172.18.0.3 (0, 5) +1612440360: Socket error on client , disconnecting. +1612440380: New connection from 172.18.0.3 on port 1883. +1612440380: Sending CONNACK to 172.18.0.3 (0, 5) +1612440380: Socket error on client , disconnecting. +1612440400: New connection from 172.18.0.3 on port 1883. +1612440400: Sending CONNACK to 172.18.0.3 (0, 5) +1612440400: Socket error on client , disconnecting. +1612440420: New connection from 172.18.0.3 on port 1883. +1612440420: Sending CONNACK to 172.18.0.3 (0, 5) +1612440420: Socket error on client , disconnecting. +1612440440: New connection from 172.18.0.3 on port 1883. +1612440440: Sending CONNACK to 172.18.0.3 (0, 5) +1612440440: Socket error on client , disconnecting. +1612440460: New connection from 172.18.0.3 on port 1883. +1612440460: Sending CONNACK to 172.18.0.3 (0, 5) +1612440460: Socket error on client , disconnecting. +1612440480: New connection from 172.18.0.3 on port 1883. +1612440480: Sending CONNACK to 172.18.0.3 (0, 5) +1612440480: Socket error on client , disconnecting. +1612440500: New connection from 172.18.0.3 on port 1883. +1612440500: Sending CONNACK to 172.18.0.3 (0, 5) +1612440500: Socket error on client , disconnecting. +1612440520: New connection from 172.18.0.3 on port 1883. +1612440520: Sending CONNACK to 172.18.0.3 (0, 5) +1612440520: Socket error on client , disconnecting. +1612440540: New connection from 172.18.0.3 on port 1883. +1612440540: Sending CONNACK to 172.18.0.3 (0, 5) +1612440540: Socket error on client , disconnecting. +1612440560: New connection from 172.18.0.3 on port 1883. +1612440560: Sending CONNACK to 172.18.0.3 (0, 5) +1612440560: Socket error on client , disconnecting. +1612440580: New connection from 172.18.0.3 on port 1883. +1612440580: Sending CONNACK to 172.18.0.3 (0, 5) +1612440580: Socket error on client , disconnecting. +1612440600: New connection from 172.18.0.3 on port 1883. +1612440600: Sending CONNACK to 172.18.0.3 (0, 5) +1612440600: Socket error on client , disconnecting. +1612440620: New connection from 172.18.0.3 on port 1883. +1612440620: Sending CONNACK to 172.18.0.3 (0, 5) +1612440620: Socket error on client , disconnecting. +1612440640: New connection from 172.18.0.3 on port 1883. +1612440640: Sending CONNACK to 172.18.0.3 (0, 5) +1612440640: Socket error on client , disconnecting. +1612440660: New connection from 172.18.0.3 on port 1883. +1612440660: Sending CONNACK to 172.18.0.3 (0, 5) +1612440660: Socket error on client , disconnecting. +1612440680: New connection from 172.18.0.3 on port 1883. +1612440680: Sending CONNACK to 172.18.0.3 (0, 5) +1612440680: Socket error on client , disconnecting. +1612440700: New connection from 172.18.0.3 on port 1883. +1612440700: Sending CONNACK to 172.18.0.3 (0, 5) +1612440700: Socket error on client , disconnecting. +1612440720: New connection from 172.18.0.3 on port 1883. +1612440720: Sending CONNACK to 172.18.0.3 (0, 5) +1612440720: Socket error on client , disconnecting. +1612440740: New connection from 172.18.0.3 on port 1883. +1612440740: Sending CONNACK to 172.18.0.3 (0, 5) +1612440740: Socket error on client , disconnecting. +1612440760: New connection from 172.18.0.3 on port 1883. +1612440760: Sending CONNACK to 172.18.0.3 (0, 5) +1612440760: Socket error on client , disconnecting. +1612440780: New connection from 172.18.0.3 on port 1883. +1612440780: Sending CONNACK to 172.18.0.3 (0, 5) +1612440780: Socket error on client , disconnecting. +1612440800: New connection from 172.18.0.3 on port 1883. +1612440800: Sending CONNACK to 172.18.0.3 (0, 5) +1612440800: Socket error on client , disconnecting. +1612440820: New connection from 172.18.0.3 on port 1883. +1612440820: Sending CONNACK to 172.18.0.3 (0, 5) +1612440820: Socket error on client , disconnecting. +1612440840: New connection from 172.18.0.3 on port 1883. +1612440840: Sending CONNACK to 172.18.0.3 (0, 5) +1612440840: Socket error on client , disconnecting. +1612440860: New connection from 172.18.0.3 on port 1883. +1612440860: Sending CONNACK to 172.18.0.3 (0, 5) +1612440860: Socket error on client , disconnecting. +1612440880: New connection from 172.18.0.3 on port 1883. +1612440880: Sending CONNACK to 172.18.0.3 (0, 5) +1612440880: Socket error on client , disconnecting. +1612440900: New connection from 172.18.0.3 on port 1883. +1612440900: Sending CONNACK to 172.18.0.3 (0, 5) +1612440900: Socket error on client , disconnecting. +1612440920: New connection from 172.18.0.3 on port 1883. +1612440920: Sending CONNACK to 172.18.0.3 (0, 5) +1612440920: Socket error on client , disconnecting. +1612440940: New connection from 172.18.0.3 on port 1883. +1612440940: Sending CONNACK to 172.18.0.3 (0, 5) +1612440940: Socket error on client , disconnecting. +1612440960: New connection from 172.18.0.3 on port 1883. +1612440960: Sending CONNACK to 172.18.0.3 (0, 5) +1612440960: Socket error on client , disconnecting. +1612440980: New connection from 172.18.0.3 on port 1883. +1612440980: Sending CONNACK to 172.18.0.3 (0, 5) +1612440980: Socket error on client , disconnecting. +1612441000: New connection from 172.18.0.3 on port 1883. +1612441000: Sending CONNACK to 172.18.0.3 (0, 5) +1612441000: Socket error on client , disconnecting. +1612441014: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612441014: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612441014: Error: Permission denied. +1612441020: New connection from 172.18.0.3 on port 1883. +1612441020: Sending CONNACK to 172.18.0.3 (0, 5) +1612441020: Socket error on client , disconnecting. +1612441040: New connection from 172.18.0.3 on port 1883. +1612441040: Sending CONNACK to 172.18.0.3 (0, 5) +1612441040: Socket error on client , disconnecting. +1612441060: New connection from 172.18.0.3 on port 1883. +1612441060: Sending CONNACK to 172.18.0.3 (0, 5) +1612441060: Socket error on client , disconnecting. +1612441080: New connection from 172.18.0.3 on port 1883. +1612441080: Sending CONNACK to 172.18.0.3 (0, 5) +1612441080: Socket error on client , disconnecting. +1612441100: New connection from 172.18.0.3 on port 1883. +1612441100: Sending CONNACK to 172.18.0.3 (0, 5) +1612441100: Socket error on client , disconnecting. +1612441120: New connection from 172.18.0.3 on port 1883. +1612441120: Sending CONNACK to 172.18.0.3 (0, 5) +1612441120: Socket error on client , disconnecting. +1612441140: New connection from 172.18.0.3 on port 1883. +1612441140: Sending CONNACK to 172.18.0.3 (0, 5) +1612441140: Socket error on client , disconnecting. +1612441160: New connection from 172.18.0.3 on port 1883. +1612441160: Sending CONNACK to 172.18.0.3 (0, 5) +1612441160: Socket error on client , disconnecting. +1612441180: New connection from 172.18.0.3 on port 1883. +1612441180: Sending CONNACK to 172.18.0.3 (0, 5) +1612441180: Socket error on client , disconnecting. +1612441200: New connection from 172.18.0.3 on port 1883. +1612441200: Sending CONNACK to 172.18.0.3 (0, 5) +1612441200: Socket error on client , disconnecting. +1612441220: New connection from 172.18.0.3 on port 1883. +1612441220: Sending CONNACK to 172.18.0.3 (0, 5) +1612441220: Socket error on client , disconnecting. +1612441240: New connection from 172.18.0.3 on port 1883. +1612441240: Sending CONNACK to 172.18.0.3 (0, 5) +1612441240: Socket error on client , disconnecting. +1612441260: New connection from 172.18.0.3 on port 1883. +1612441260: Sending CONNACK to 172.18.0.3 (0, 5) +1612441260: Socket error on client , disconnecting. +1612441280: New connection from 172.18.0.3 on port 1883. +1612441280: Sending CONNACK to 172.18.0.3 (0, 5) +1612441280: Socket error on client , disconnecting. +1612441300: New connection from 172.18.0.3 on port 1883. +1612441300: Sending CONNACK to 172.18.0.3 (0, 5) +1612441300: Socket error on client , disconnecting. +1612441320: New connection from 172.18.0.3 on port 1883. +1612441320: Sending CONNACK to 172.18.0.3 (0, 5) +1612441320: Socket error on client , disconnecting. +1612441340: New connection from 172.18.0.3 on port 1883. +1612441340: Sending CONNACK to 172.18.0.3 (0, 5) +1612441340: Socket error on client , disconnecting. +1612441360: New connection from 172.18.0.3 on port 1883. +1612441360: Sending CONNACK to 172.18.0.3 (0, 5) +1612441360: Socket error on client , disconnecting. +1612441380: New connection from 172.18.0.3 on port 1883. +1612441380: Sending CONNACK to 172.18.0.3 (0, 5) +1612441380: Socket error on client , disconnecting. +1612441400: New connection from 172.18.0.3 on port 1883. +1612441400: Sending CONNACK to 172.18.0.3 (0, 5) +1612441400: Socket error on client , disconnecting. +1612441420: New connection from 172.18.0.3 on port 1883. +1612441420: Sending CONNACK to 172.18.0.3 (0, 5) +1612441420: Socket error on client , disconnecting. +1612441440: New connection from 172.18.0.3 on port 1883. +1612441440: Sending CONNACK to 172.18.0.3 (0, 5) +1612441440: Socket error on client , disconnecting. +1612441460: New connection from 172.18.0.3 on port 1883. +1612441460: Sending CONNACK to 172.18.0.3 (0, 5) +1612441460: Socket error on client , disconnecting. +1612441480: New connection from 172.18.0.3 on port 1883. +1612441480: Sending CONNACK to 172.18.0.3 (0, 5) +1612441480: Socket error on client , disconnecting. +1612441500: New connection from 172.18.0.3 on port 1883. +1612441500: Sending CONNACK to 172.18.0.3 (0, 5) +1612441500: Socket error on client , disconnecting. +1612441520: New connection from 172.18.0.3 on port 1883. +1612441520: Sending CONNACK to 172.18.0.3 (0, 5) +1612441520: Socket error on client , disconnecting. +1612441540: New connection from 172.18.0.3 on port 1883. +1612441540: Sending CONNACK to 172.18.0.3 (0, 5) +1612441540: Socket error on client , disconnecting. +1612441560: New connection from 172.18.0.3 on port 1883. +1612441560: Sending CONNACK to 172.18.0.3 (0, 5) +1612441560: Socket error on client , disconnecting. +1612441580: New connection from 172.18.0.3 on port 1883. +1612441580: Sending CONNACK to 172.18.0.3 (0, 5) +1612441580: Socket error on client , disconnecting. +1612441600: New connection from 172.18.0.3 on port 1883. +1612441600: Sending CONNACK to 172.18.0.3 (0, 5) +1612441600: Socket error on client , disconnecting. +1612441620: New connection from 172.18.0.3 on port 1883. +1612441620: Sending CONNACK to 172.18.0.3 (0, 5) +1612441620: Socket error on client , disconnecting. +1612441640: New connection from 172.18.0.3 on port 1883. +1612441640: Sending CONNACK to 172.18.0.3 (0, 5) +1612441640: Socket error on client , disconnecting. +1612441660: New connection from 172.18.0.3 on port 1883. +1612441660: Sending CONNACK to 172.18.0.3 (0, 5) +1612441660: Socket error on client , disconnecting. +1612441680: New connection from 172.18.0.3 on port 1883. +1612441680: Sending CONNACK to 172.18.0.3 (0, 5) +1612441680: Socket error on client , disconnecting. +1612441700: New connection from 172.18.0.3 on port 1883. +1612441700: Sending CONNACK to 172.18.0.3 (0, 5) +1612441700: Socket error on client , disconnecting. +1612441720: New connection from 172.18.0.3 on port 1883. +1612441720: Sending CONNACK to 172.18.0.3 (0, 5) +1612441720: Socket error on client , disconnecting. +1612441740: New connection from 172.18.0.3 on port 1883. +1612441740: Sending CONNACK to 172.18.0.3 (0, 5) +1612441740: Socket error on client , disconnecting. +1612441760: New connection from 172.18.0.3 on port 1883. +1612441760: Sending CONNACK to 172.18.0.3 (0, 5) +1612441760: Socket error on client , disconnecting. +1612441780: New connection from 172.18.0.3 on port 1883. +1612441780: Sending CONNACK to 172.18.0.3 (0, 5) +1612441780: Socket error on client , disconnecting. +1612441800: New connection from 172.18.0.3 on port 1883. +1612441800: Sending CONNACK to 172.18.0.3 (0, 5) +1612441800: Socket error on client , disconnecting. +1612441820: New connection from 172.18.0.3 on port 1883. +1612441820: Sending CONNACK to 172.18.0.3 (0, 5) +1612441820: Socket error on client , disconnecting. +1612441840: New connection from 172.18.0.3 on port 1883. +1612441840: Sending CONNACK to 172.18.0.3 (0, 5) +1612441840: Socket error on client , disconnecting. +1612441860: New connection from 172.18.0.3 on port 1883. +1612441860: Sending CONNACK to 172.18.0.3 (0, 5) +1612441860: Socket error on client , disconnecting. +1612441880: New connection from 172.18.0.3 on port 1883. +1612441880: Sending CONNACK to 172.18.0.3 (0, 5) +1612441880: Socket error on client , disconnecting. +1612441900: New connection from 172.18.0.3 on port 1883. +1612441900: Sending CONNACK to 172.18.0.3 (0, 5) +1612441900: Socket error on client , disconnecting. +1612441920: New connection from 172.18.0.3 on port 1883. +1612441920: Sending CONNACK to 172.18.0.3 (0, 5) +1612441920: Socket error on client , disconnecting. +1612441940: New connection from 172.18.0.3 on port 1883. +1612441940: Sending CONNACK to 172.18.0.3 (0, 5) +1612441940: Socket error on client , disconnecting. +1612441960: New connection from 172.18.0.3 on port 1883. +1612441960: Sending CONNACK to 172.18.0.3 (0, 5) +1612441960: Socket error on client , disconnecting. +1612441980: New connection from 172.18.0.3 on port 1883. +1612441980: Sending CONNACK to 172.18.0.3 (0, 5) +1612441980: Socket error on client , disconnecting. +1612442000: New connection from 172.18.0.3 on port 1883. +1612442000: Sending CONNACK to 172.18.0.3 (0, 5) +1612442000: Socket error on client , disconnecting. +1612442020: New connection from 172.18.0.3 on port 1883. +1612442020: Sending CONNACK to 172.18.0.3 (0, 5) +1612442020: Socket error on client , disconnecting. +1612442040: New connection from 172.18.0.3 on port 1883. +1612442040: Sending CONNACK to 172.18.0.3 (0, 5) +1612442040: Socket error on client , disconnecting. +1612442060: New connection from 172.18.0.3 on port 1883. +1612442060: Sending CONNACK to 172.18.0.3 (0, 5) +1612442060: Socket error on client , disconnecting. +1612442080: New connection from 172.18.0.3 on port 1883. +1612442080: Sending CONNACK to 172.18.0.3 (0, 5) +1612442080: Socket error on client , disconnecting. +1612442100: New connection from 172.18.0.3 on port 1883. +1612442100: Sending CONNACK to 172.18.0.3 (0, 5) +1612442100: Socket error on client , disconnecting. +1612442120: New connection from 172.18.0.3 on port 1883. +1612442120: Sending CONNACK to 172.18.0.3 (0, 5) +1612442120: Socket error on client , disconnecting. +1612442140: New connection from 172.18.0.3 on port 1883. +1612442140: Sending CONNACK to 172.18.0.3 (0, 5) +1612442140: Socket error on client , disconnecting. +1612442160: New connection from 172.18.0.3 on port 1883. +1612442160: Sending CONNACK to 172.18.0.3 (0, 5) +1612442160: Socket error on client , disconnecting. +1612442180: New connection from 172.18.0.3 on port 1883. +1612442180: Sending CONNACK to 172.18.0.3 (0, 5) +1612442180: Socket error on client , disconnecting. +1612442200: New connection from 172.18.0.3 on port 1883. +1612442200: Sending CONNACK to 172.18.0.3 (0, 5) +1612442200: Socket error on client , disconnecting. +1612442220: New connection from 172.18.0.3 on port 1883. +1612442220: Sending CONNACK to 172.18.0.3 (0, 5) +1612442220: Socket error on client , disconnecting. +1612442240: New connection from 172.18.0.3 on port 1883. +1612442240: Sending CONNACK to 172.18.0.3 (0, 5) +1612442240: Socket error on client , disconnecting. +1612442260: New connection from 172.18.0.3 on port 1883. +1612442260: Sending CONNACK to 172.18.0.3 (0, 5) +1612442260: Socket error on client , disconnecting. +1612442280: New connection from 172.18.0.3 on port 1883. +1612442280: Sending CONNACK to 172.18.0.3 (0, 5) +1612442280: Socket error on client , disconnecting. +1612442300: New connection from 172.18.0.3 on port 1883. +1612442300: Sending CONNACK to 172.18.0.3 (0, 5) +1612442300: Socket error on client , disconnecting. +1612442320: New connection from 172.18.0.3 on port 1883. +1612442320: Sending CONNACK to 172.18.0.3 (0, 5) +1612442320: Socket error on client , disconnecting. +1612442340: New connection from 172.18.0.3 on port 1883. +1612442340: Sending CONNACK to 172.18.0.3 (0, 5) +1612442340: Socket error on client , disconnecting. +1612442360: New connection from 172.18.0.3 on port 1883. +1612442360: Sending CONNACK to 172.18.0.3 (0, 5) +1612442360: Socket error on client , disconnecting. +1612442380: New connection from 172.18.0.3 on port 1883. +1612442380: Sending CONNACK to 172.18.0.3 (0, 5) +1612442380: Socket error on client , disconnecting. +1612442400: New connection from 172.18.0.3 on port 1883. +1612442400: Sending CONNACK to 172.18.0.3 (0, 5) +1612442400: Socket error on client , disconnecting. +1612442420: New connection from 172.18.0.3 on port 1883. +1612442420: Sending CONNACK to 172.18.0.3 (0, 5) +1612442420: Socket error on client , disconnecting. +1612442440: New connection from 172.18.0.3 on port 1883. +1612442440: Sending CONNACK to 172.18.0.3 (0, 5) +1612442440: Socket error on client , disconnecting. +1612442460: New connection from 172.18.0.3 on port 1883. +1612442460: Sending CONNACK to 172.18.0.3 (0, 5) +1612442460: Socket error on client , disconnecting. +1612442480: New connection from 172.18.0.3 on port 1883. +1612442480: Sending CONNACK to 172.18.0.3 (0, 5) +1612442480: Socket error on client , disconnecting. +1612442500: New connection from 172.18.0.3 on port 1883. +1612442500: Sending CONNACK to 172.18.0.3 (0, 5) +1612442500: Socket error on client , disconnecting. +1612442520: New connection from 172.18.0.3 on port 1883. +1612442520: Sending CONNACK to 172.18.0.3 (0, 5) +1612442520: Socket error on client , disconnecting. +1612442540: New connection from 172.18.0.3 on port 1883. +1612442540: Sending CONNACK to 172.18.0.3 (0, 5) +1612442540: Socket error on client , disconnecting. +1612442560: New connection from 172.18.0.3 on port 1883. +1612442560: Sending CONNACK to 172.18.0.3 (0, 5) +1612442560: Socket error on client , disconnecting. +1612442580: New connection from 172.18.0.3 on port 1883. +1612442580: Sending CONNACK to 172.18.0.3 (0, 5) +1612442580: Socket error on client , disconnecting. +1612442600: New connection from 172.18.0.3 on port 1883. +1612442600: Sending CONNACK to 172.18.0.3 (0, 5) +1612442600: Socket error on client , disconnecting. +1612442620: New connection from 172.18.0.3 on port 1883. +1612442620: Sending CONNACK to 172.18.0.3 (0, 5) +1612442620: Socket error on client , disconnecting. +1612442640: New connection from 172.18.0.3 on port 1883. +1612442640: Sending CONNACK to 172.18.0.3 (0, 5) +1612442640: Socket error on client , disconnecting. +1612442660: New connection from 172.18.0.3 on port 1883. +1612442660: Sending CONNACK to 172.18.0.3 (0, 5) +1612442660: Socket error on client , disconnecting. +1612442680: New connection from 172.18.0.3 on port 1883. +1612442680: Sending CONNACK to 172.18.0.3 (0, 5) +1612442680: Socket error on client , disconnecting. +1612442700: New connection from 172.18.0.3 on port 1883. +1612442700: Sending CONNACK to 172.18.0.3 (0, 5) +1612442700: Socket error on client , disconnecting. +1612442720: New connection from 172.18.0.3 on port 1883. +1612442720: Sending CONNACK to 172.18.0.3 (0, 5) +1612442720: Socket error on client , disconnecting. +1612442740: New connection from 172.18.0.3 on port 1883. +1612442740: Sending CONNACK to 172.18.0.3 (0, 5) +1612442740: Socket error on client , disconnecting. +1612442760: New connection from 172.18.0.3 on port 1883. +1612442760: Sending CONNACK to 172.18.0.3 (0, 5) +1612442760: Socket error on client , disconnecting. +1612442780: New connection from 172.18.0.3 on port 1883. +1612442780: Sending CONNACK to 172.18.0.3 (0, 5) +1612442780: Socket error on client , disconnecting. +1612442800: New connection from 172.18.0.3 on port 1883. +1612442800: Sending CONNACK to 172.18.0.3 (0, 5) +1612442800: Socket error on client , disconnecting. +1612442815: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612442815: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612442815: Error: Permission denied. +1612442820: New connection from 172.18.0.3 on port 1883. +1612442820: Sending CONNACK to 172.18.0.3 (0, 5) +1612442820: Socket error on client , disconnecting. +1612442840: New connection from 172.18.0.3 on port 1883. +1612442840: Sending CONNACK to 172.18.0.3 (0, 5) +1612442840: Socket error on client , disconnecting. +1612442860: New connection from 172.18.0.3 on port 1883. +1612442860: Sending CONNACK to 172.18.0.3 (0, 5) +1612442860: Socket error on client , disconnecting. +1612442880: New connection from 172.18.0.3 on port 1883. +1612442880: Sending CONNACK to 172.18.0.3 (0, 5) +1612442880: Socket error on client , disconnecting. +1612442900: New connection from 172.18.0.3 on port 1883. +1612442900: Sending CONNACK to 172.18.0.3 (0, 5) +1612442900: Socket error on client , disconnecting. +1612442920: New connection from 172.18.0.3 on port 1883. +1612442920: Sending CONNACK to 172.18.0.3 (0, 5) +1612442920: Socket error on client , disconnecting. +1612442940: New connection from 172.18.0.3 on port 1883. +1612442940: Sending CONNACK to 172.18.0.3 (0, 5) +1612442940: Socket error on client , disconnecting. +1612442960: New connection from 172.18.0.3 on port 1883. +1612442960: Sending CONNACK to 172.18.0.3 (0, 5) +1612442960: Socket error on client , disconnecting. +1612442980: New connection from 172.18.0.3 on port 1883. +1612442980: Sending CONNACK to 172.18.0.3 (0, 5) +1612442980: Socket error on client , disconnecting. +1612443000: New connection from 172.18.0.3 on port 1883. +1612443000: Sending CONNACK to 172.18.0.3 (0, 5) +1612443000: Socket error on client , disconnecting. +1612443020: New connection from 172.18.0.3 on port 1883. +1612443020: Sending CONNACK to 172.18.0.3 (0, 5) +1612443020: Socket error on client , disconnecting. +1612443040: New connection from 172.18.0.3 on port 1883. +1612443040: Sending CONNACK to 172.18.0.3 (0, 5) +1612443040: Socket error on client , disconnecting. +1612443060: New connection from 172.18.0.3 on port 1883. +1612443060: Sending CONNACK to 172.18.0.3 (0, 5) +1612443060: Socket error on client , disconnecting. +1612443080: New connection from 172.18.0.3 on port 1883. +1612443080: Sending CONNACK to 172.18.0.3 (0, 5) +1612443080: Socket error on client , disconnecting. +1612443100: New connection from 172.18.0.3 on port 1883. +1612443100: Sending CONNACK to 172.18.0.3 (0, 5) +1612443100: Socket error on client , disconnecting. +1612443120: New connection from 172.18.0.3 on port 1883. +1612443120: Sending CONNACK to 172.18.0.3 (0, 5) +1612443120: Socket error on client , disconnecting. +1612443140: New connection from 172.18.0.3 on port 1883. +1612443140: Sending CONNACK to 172.18.0.3 (0, 5) +1612443140: Socket error on client , disconnecting. +1612443160: New connection from 172.18.0.3 on port 1883. +1612443160: Sending CONNACK to 172.18.0.3 (0, 5) +1612443160: Socket error on client , disconnecting. +1612443180: New connection from 172.18.0.3 on port 1883. +1612443180: Sending CONNACK to 172.18.0.3 (0, 5) +1612443180: Socket error on client , disconnecting. +1612443200: New connection from 172.18.0.3 on port 1883. +1612443200: Sending CONNACK to 172.18.0.3 (0, 5) +1612443200: Socket error on client , disconnecting. +1612443220: New connection from 172.18.0.3 on port 1883. +1612443220: Sending CONNACK to 172.18.0.3 (0, 5) +1612443220: Socket error on client , disconnecting. +1612443240: New connection from 172.18.0.3 on port 1883. +1612443240: Sending CONNACK to 172.18.0.3 (0, 5) +1612443240: Socket error on client , disconnecting. +1612443260: New connection from 172.18.0.3 on port 1883. +1612443260: Sending CONNACK to 172.18.0.3 (0, 5) +1612443260: Socket error on client , disconnecting. +1612443280: New connection from 172.18.0.3 on port 1883. +1612443280: Sending CONNACK to 172.18.0.3 (0, 5) +1612443280: Socket error on client , disconnecting. +1612443300: New connection from 172.18.0.3 on port 1883. +1612443300: Sending CONNACK to 172.18.0.3 (0, 5) +1612443300: Socket error on client , disconnecting. +1612443320: New connection from 172.18.0.3 on port 1883. +1612443320: Sending CONNACK to 172.18.0.3 (0, 5) +1612443320: Socket error on client , disconnecting. +1612443340: New connection from 172.18.0.3 on port 1883. +1612443340: Sending CONNACK to 172.18.0.3 (0, 5) +1612443340: Socket error on client , disconnecting. +1612443360: New connection from 172.18.0.3 on port 1883. +1612443360: Sending CONNACK to 172.18.0.3 (0, 5) +1612443360: Socket error on client , disconnecting. +1612443380: New connection from 172.18.0.3 on port 1883. +1612443380: Sending CONNACK to 172.18.0.3 (0, 5) +1612443380: Socket error on client , disconnecting. +1612443400: New connection from 172.18.0.3 on port 1883. +1612443400: Sending CONNACK to 172.18.0.3 (0, 5) +1612443400: Socket error on client , disconnecting. +1612443420: New connection from 172.18.0.3 on port 1883. +1612443420: Sending CONNACK to 172.18.0.3 (0, 5) +1612443420: Socket error on client , disconnecting. +1612443440: New connection from 172.18.0.3 on port 1883. +1612443440: Sending CONNACK to 172.18.0.3 (0, 5) +1612443440: Socket error on client , disconnecting. +1612443460: New connection from 172.18.0.3 on port 1883. +1612443460: Sending CONNACK to 172.18.0.3 (0, 5) +1612443460: Socket error on client , disconnecting. +1612443480: New connection from 172.18.0.3 on port 1883. +1612443480: Sending CONNACK to 172.18.0.3 (0, 5) +1612443480: Socket error on client , disconnecting. +1612443500: New connection from 172.18.0.3 on port 1883. +1612443500: Sending CONNACK to 172.18.0.3 (0, 5) +1612443500: Socket error on client , disconnecting. +1612443520: New connection from 172.18.0.3 on port 1883. +1612443520: Sending CONNACK to 172.18.0.3 (0, 5) +1612443520: Socket error on client , disconnecting. +1612443540: New connection from 172.18.0.3 on port 1883. +1612443540: Sending CONNACK to 172.18.0.3 (0, 5) +1612443540: Socket error on client , disconnecting. +1612443560: New connection from 172.18.0.3 on port 1883. +1612443560: Sending CONNACK to 172.18.0.3 (0, 5) +1612443560: Socket error on client , disconnecting. +1612443580: New connection from 172.18.0.3 on port 1883. +1612443580: Sending CONNACK to 172.18.0.3 (0, 5) +1612443580: Socket error on client , disconnecting. +1612443600: New connection from 172.18.0.3 on port 1883. +1612443600: Sending CONNACK to 172.18.0.3 (0, 5) +1612443600: Socket error on client , disconnecting. +1612443620: New connection from 172.18.0.3 on port 1883. +1612443620: Sending CONNACK to 172.18.0.3 (0, 5) +1612443620: Socket error on client , disconnecting. +1612443640: New connection from 172.18.0.3 on port 1883. +1612443640: Sending CONNACK to 172.18.0.3 (0, 5) +1612443640: Socket error on client , disconnecting. +1612443660: New connection from 172.18.0.3 on port 1883. +1612443660: Sending CONNACK to 172.18.0.3 (0, 5) +1612443660: Socket error on client , disconnecting. +1612443680: New connection from 172.18.0.3 on port 1883. +1612443680: Sending CONNACK to 172.18.0.3 (0, 5) +1612443680: Socket error on client , disconnecting. +1612443700: New connection from 172.18.0.3 on port 1883. +1612443700: Sending CONNACK to 172.18.0.3 (0, 5) +1612443700: Socket error on client , disconnecting. +1612443720: New connection from 172.18.0.3 on port 1883. +1612443720: Sending CONNACK to 172.18.0.3 (0, 5) +1612443720: Socket error on client , disconnecting. +1612443740: New connection from 172.18.0.3 on port 1883. +1612443740: Sending CONNACK to 172.18.0.3 (0, 5) +1612443740: Socket error on client , disconnecting. +1612443760: New connection from 172.18.0.3 on port 1883. +1612443760: Sending CONNACK to 172.18.0.3 (0, 5) +1612443760: Socket error on client , disconnecting. +1612443780: New connection from 172.18.0.3 on port 1883. +1612443780: Sending CONNACK to 172.18.0.3 (0, 5) +1612443780: Socket error on client , disconnecting. +1612443800: New connection from 172.18.0.3 on port 1883. +1612443800: Sending CONNACK to 172.18.0.3 (0, 5) +1612443800: Socket error on client , disconnecting. +1612443820: New connection from 172.18.0.3 on port 1883. +1612443820: Sending CONNACK to 172.18.0.3 (0, 5) +1612443820: Socket error on client , disconnecting. +1612443840: New connection from 172.18.0.3 on port 1883. +1612443840: Sending CONNACK to 172.18.0.3 (0, 5) +1612443840: Socket error on client , disconnecting. +1612443860: New connection from 172.18.0.3 on port 1883. +1612443860: Sending CONNACK to 172.18.0.3 (0, 5) +1612443860: Socket error on client , disconnecting. +1612443880: New connection from 172.18.0.3 on port 1883. +1612443880: Sending CONNACK to 172.18.0.3 (0, 5) +1612443880: Socket error on client , disconnecting. +1612443900: New connection from 172.18.0.3 on port 1883. +1612443900: Sending CONNACK to 172.18.0.3 (0, 5) +1612443900: Socket error on client , disconnecting. +1612443920: New connection from 172.18.0.3 on port 1883. +1612443920: Sending CONNACK to 172.18.0.3 (0, 5) +1612443920: Socket error on client , disconnecting. +1612443940: New connection from 172.18.0.3 on port 1883. +1612443940: Sending CONNACK to 172.18.0.3 (0, 5) +1612443940: Socket error on client , disconnecting. +1612443960: New connection from 172.18.0.3 on port 1883. +1612443960: Sending CONNACK to 172.18.0.3 (0, 5) +1612443960: Socket error on client , disconnecting. +1612443980: New connection from 172.18.0.3 on port 1883. +1612443980: Sending CONNACK to 172.18.0.3 (0, 5) +1612443980: Socket error on client , disconnecting. +1612444000: New connection from 172.18.0.3 on port 1883. +1612444000: Sending CONNACK to 172.18.0.3 (0, 5) +1612444000: Socket error on client , disconnecting. +1612444020: New connection from 172.18.0.3 on port 1883. +1612444020: Sending CONNACK to 172.18.0.3 (0, 5) +1612444020: Socket error on client , disconnecting. +1612444040: New connection from 172.18.0.3 on port 1883. +1612444040: Sending CONNACK to 172.18.0.3 (0, 5) +1612444040: Socket error on client , disconnecting. +1612444060: New connection from 172.18.0.3 on port 1883. +1612444060: Sending CONNACK to 172.18.0.3 (0, 5) +1612444060: Socket error on client , disconnecting. +1612444080: New connection from 172.18.0.3 on port 1883. +1612444080: Sending CONNACK to 172.18.0.3 (0, 5) +1612444080: Socket error on client , disconnecting. +1612444100: New connection from 172.18.0.3 on port 1883. +1612444100: Sending CONNACK to 172.18.0.3 (0, 5) +1612444100: Socket error on client , disconnecting. +1612444120: New connection from 172.18.0.3 on port 1883. +1612444120: Sending CONNACK to 172.18.0.3 (0, 5) +1612444120: Socket error on client , disconnecting. +1612444140: New connection from 172.18.0.3 on port 1883. +1612444140: Sending CONNACK to 172.18.0.3 (0, 5) +1612444140: Socket error on client , disconnecting. +1612444160: New connection from 172.18.0.3 on port 1883. +1612444160: Sending CONNACK to 172.18.0.3 (0, 5) +1612444160: Socket error on client , disconnecting. +1612444180: New connection from 172.18.0.3 on port 1883. +1612444180: Sending CONNACK to 172.18.0.3 (0, 5) +1612444180: Socket error on client , disconnecting. +1612444200: New connection from 172.18.0.3 on port 1883. +1612444200: Sending CONNACK to 172.18.0.3 (0, 5) +1612444200: Socket error on client , disconnecting. +1612444220: New connection from 172.18.0.3 on port 1883. +1612444220: Sending CONNACK to 172.18.0.3 (0, 5) +1612444220: Socket error on client , disconnecting. +1612444240: New connection from 172.18.0.3 on port 1883. +1612444240: Sending CONNACK to 172.18.0.3 (0, 5) +1612444240: Socket error on client , disconnecting. +1612444260: New connection from 172.18.0.3 on port 1883. +1612444260: Sending CONNACK to 172.18.0.3 (0, 5) +1612444260: Socket error on client , disconnecting. +1612444280: New connection from 172.18.0.3 on port 1883. +1612444280: Sending CONNACK to 172.18.0.3 (0, 5) +1612444280: Socket error on client , disconnecting. +1612444300: New connection from 172.18.0.3 on port 1883. +1612444300: Sending CONNACK to 172.18.0.3 (0, 5) +1612444300: Socket error on client , disconnecting. +1612444320: New connection from 172.18.0.3 on port 1883. +1612444320: Sending CONNACK to 172.18.0.3 (0, 5) +1612444320: Socket error on client , disconnecting. +1612444340: New connection from 172.18.0.3 on port 1883. +1612444340: Sending CONNACK to 172.18.0.3 (0, 5) +1612444340: Socket error on client , disconnecting. +1612444360: New connection from 172.18.0.3 on port 1883. +1612444360: Sending CONNACK to 172.18.0.3 (0, 5) +1612444360: Socket error on client , disconnecting. +1612444380: New connection from 172.18.0.3 on port 1883. +1612444380: Sending CONNACK to 172.18.0.3 (0, 5) +1612444380: Socket error on client , disconnecting. +1612444400: New connection from 172.18.0.3 on port 1883. +1612444400: Sending CONNACK to 172.18.0.3 (0, 5) +1612444400: Socket error on client , disconnecting. +1612444420: New connection from 172.18.0.3 on port 1883. +1612444420: Sending CONNACK to 172.18.0.3 (0, 5) +1612444420: Socket error on client , disconnecting. +1612444440: New connection from 172.18.0.3 on port 1883. +1612444440: Sending CONNACK to 172.18.0.3 (0, 5) +1612444440: Socket error on client , disconnecting. +1612444460: New connection from 172.18.0.3 on port 1883. +1612444460: Sending CONNACK to 172.18.0.3 (0, 5) +1612444460: Socket error on client , disconnecting. +1612444480: New connection from 172.18.0.3 on port 1883. +1612444480: Sending CONNACK to 172.18.0.3 (0, 5) +1612444480: Socket error on client , disconnecting. +1612444500: New connection from 172.18.0.3 on port 1883. +1612444500: Sending CONNACK to 172.18.0.3 (0, 5) +1612444500: Socket error on client , disconnecting. +1612444520: New connection from 172.18.0.3 on port 1883. +1612444520: Sending CONNACK to 172.18.0.3 (0, 5) +1612444520: Socket error on client , disconnecting. +1612444540: New connection from 172.18.0.3 on port 1883. +1612444540: Sending CONNACK to 172.18.0.3 (0, 5) +1612444540: Socket error on client , disconnecting. +1612444560: New connection from 172.18.0.3 on port 1883. +1612444560: Sending CONNACK to 172.18.0.3 (0, 5) +1612444560: Socket error on client , disconnecting. +1612444580: New connection from 172.18.0.3 on port 1883. +1612444580: Sending CONNACK to 172.18.0.3 (0, 5) +1612444580: Socket error on client , disconnecting. +1612444600: New connection from 172.18.0.3 on port 1883. +1612444600: Sending CONNACK to 172.18.0.3 (0, 5) +1612444600: Socket error on client , disconnecting. +1612444616: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612444616: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612444616: Error: Permission denied. +1612444620: New connection from 172.18.0.3 on port 1883. +1612444620: Sending CONNACK to 172.18.0.3 (0, 5) +1612444620: Socket error on client , disconnecting. +1612444640: New connection from 172.18.0.3 on port 1883. +1612444640: Sending CONNACK to 172.18.0.3 (0, 5) +1612444640: Socket error on client , disconnecting. +1612444660: New connection from 172.18.0.3 on port 1883. +1612444660: Sending CONNACK to 172.18.0.3 (0, 5) +1612444660: Socket error on client , disconnecting. +1612444680: New connection from 172.18.0.3 on port 1883. +1612444680: Sending CONNACK to 172.18.0.3 (0, 5) +1612444680: Socket error on client , disconnecting. +1612444700: New connection from 172.18.0.3 on port 1883. +1612444700: Sending CONNACK to 172.18.0.3 (0, 5) +1612444700: Socket error on client , disconnecting. +1612444720: New connection from 172.18.0.3 on port 1883. +1612444720: Sending CONNACK to 172.18.0.3 (0, 5) +1612444720: Socket error on client , disconnecting. +1612444740: New connection from 172.18.0.3 on port 1883. +1612444740: Sending CONNACK to 172.18.0.3 (0, 5) +1612444740: Socket error on client , disconnecting. +1612444760: New connection from 172.18.0.3 on port 1883. +1612444760: Sending CONNACK to 172.18.0.3 (0, 5) +1612444760: Socket error on client , disconnecting. +1612444780: New connection from 172.18.0.3 on port 1883. +1612444780: Sending CONNACK to 172.18.0.3 (0, 5) +1612444780: Socket error on client , disconnecting. +1612444800: New connection from 172.18.0.3 on port 1883. +1612444800: Sending CONNACK to 172.18.0.3 (0, 5) +1612444800: Socket error on client , disconnecting. +1612444820: New connection from 172.18.0.3 on port 1883. +1612444820: Sending CONNACK to 172.18.0.3 (0, 5) +1612444820: Socket error on client , disconnecting. +1612444840: New connection from 172.18.0.3 on port 1883. +1612444840: Sending CONNACK to 172.18.0.3 (0, 5) +1612444840: Socket error on client , disconnecting. +1612444860: New connection from 172.18.0.3 on port 1883. +1612444860: Sending CONNACK to 172.18.0.3 (0, 5) +1612444860: Socket error on client , disconnecting. +1612444880: New connection from 172.18.0.3 on port 1883. +1612444880: Sending CONNACK to 172.18.0.3 (0, 5) +1612444880: Socket error on client , disconnecting. +1612444900: New connection from 172.18.0.3 on port 1883. +1612444900: Sending CONNACK to 172.18.0.3 (0, 5) +1612444900: Socket error on client , disconnecting. +1612444920: New connection from 172.18.0.3 on port 1883. +1612444920: Sending CONNACK to 172.18.0.3 (0, 5) +1612444920: Socket error on client , disconnecting. +1612444940: New connection from 172.18.0.3 on port 1883. +1612444940: Sending CONNACK to 172.18.0.3 (0, 5) +1612444940: Socket error on client , disconnecting. +1612444960: New connection from 172.18.0.3 on port 1883. +1612444960: Sending CONNACK to 172.18.0.3 (0, 5) +1612444960: Socket error on client , disconnecting. +1612444980: New connection from 172.18.0.3 on port 1883. +1612444980: Sending CONNACK to 172.18.0.3 (0, 5) +1612444980: Socket error on client , disconnecting. +1612445000: New connection from 172.18.0.3 on port 1883. +1612445000: Sending CONNACK to 172.18.0.3 (0, 5) +1612445000: Socket error on client , disconnecting. +1612445020: New connection from 172.18.0.3 on port 1883. +1612445020: Sending CONNACK to 172.18.0.3 (0, 5) +1612445020: Socket error on client , disconnecting. +1612445040: New connection from 172.18.0.3 on port 1883. +1612445040: Sending CONNACK to 172.18.0.3 (0, 5) +1612445040: Socket error on client , disconnecting. +1612445060: New connection from 172.18.0.3 on port 1883. +1612445060: Sending CONNACK to 172.18.0.3 (0, 5) +1612445060: Socket error on client , disconnecting. +1612445080: New connection from 172.18.0.3 on port 1883. +1612445080: Sending CONNACK to 172.18.0.3 (0, 5) +1612445080: Socket error on client , disconnecting. +1612445100: New connection from 172.18.0.3 on port 1883. +1612445100: Sending CONNACK to 172.18.0.3 (0, 5) +1612445100: Socket error on client , disconnecting. +1612445120: New connection from 172.18.0.3 on port 1883. +1612445120: Sending CONNACK to 172.18.0.3 (0, 5) +1612445120: Socket error on client , disconnecting. +1612445140: New connection from 172.18.0.3 on port 1883. +1612445140: Sending CONNACK to 172.18.0.3 (0, 5) +1612445140: Socket error on client , disconnecting. +1612445160: New connection from 172.18.0.3 on port 1883. +1612445160: Sending CONNACK to 172.18.0.3 (0, 5) +1612445160: Socket error on client , disconnecting. +1612445180: New connection from 172.18.0.3 on port 1883. +1612445180: Sending CONNACK to 172.18.0.3 (0, 5) +1612445180: Socket error on client , disconnecting. +1612445200: New connection from 172.18.0.3 on port 1883. +1612445200: Sending CONNACK to 172.18.0.3 (0, 5) +1612445200: Socket error on client , disconnecting. +1612445220: New connection from 172.18.0.3 on port 1883. +1612445220: Sending CONNACK to 172.18.0.3 (0, 5) +1612445220: Socket error on client , disconnecting. +1612445240: New connection from 172.18.0.3 on port 1883. +1612445240: Sending CONNACK to 172.18.0.3 (0, 5) +1612445240: Socket error on client , disconnecting. +1612445260: New connection from 172.18.0.3 on port 1883. +1612445260: Sending CONNACK to 172.18.0.3 (0, 5) +1612445260: Socket error on client , disconnecting. +1612445280: New connection from 172.18.0.3 on port 1883. +1612445280: Sending CONNACK to 172.18.0.3 (0, 5) +1612445280: Socket error on client , disconnecting. +1612445300: New connection from 172.18.0.3 on port 1883. +1612445300: Sending CONNACK to 172.18.0.3 (0, 5) +1612445300: Socket error on client , disconnecting. +1612445320: New connection from 172.18.0.3 on port 1883. +1612445320: Sending CONNACK to 172.18.0.3 (0, 5) +1612445320: Socket error on client , disconnecting. +1612445340: New connection from 172.18.0.3 on port 1883. +1612445340: Sending CONNACK to 172.18.0.3 (0, 5) +1612445340: Socket error on client , disconnecting. +1612445360: New connection from 172.18.0.3 on port 1883. +1612445360: Sending CONNACK to 172.18.0.3 (0, 5) +1612445360: Socket error on client , disconnecting. +1612445380: New connection from 172.18.0.3 on port 1883. +1612445380: Sending CONNACK to 172.18.0.3 (0, 5) +1612445380: Socket error on client , disconnecting. +1612445400: New connection from 172.18.0.3 on port 1883. +1612445400: Sending CONNACK to 172.18.0.3 (0, 5) +1612445400: Socket error on client , disconnecting. +1612445420: New connection from 172.18.0.3 on port 1883. +1612445420: Sending CONNACK to 172.18.0.3 (0, 5) +1612445420: Socket error on client , disconnecting. +1612445440: New connection from 172.18.0.3 on port 1883. +1612445440: Sending CONNACK to 172.18.0.3 (0, 5) +1612445440: Socket error on client , disconnecting. +1612445460: New connection from 172.18.0.3 on port 1883. +1612445460: Sending CONNACK to 172.18.0.3 (0, 5) +1612445460: Socket error on client , disconnecting. +1612445480: New connection from 172.18.0.3 on port 1883. +1612445480: Sending CONNACK to 172.18.0.3 (0, 5) +1612445480: Socket error on client , disconnecting. +1612445500: New connection from 172.18.0.3 on port 1883. +1612445500: Sending CONNACK to 172.18.0.3 (0, 5) +1612445500: Socket error on client , disconnecting. +1612445520: New connection from 172.18.0.3 on port 1883. +1612445520: Sending CONNACK to 172.18.0.3 (0, 5) +1612445520: Socket error on client , disconnecting. +1612445540: New connection from 172.18.0.3 on port 1883. +1612445540: Sending CONNACK to 172.18.0.3 (0, 5) +1612445540: Socket error on client , disconnecting. +1612445560: New connection from 172.18.0.3 on port 1883. +1612445560: Sending CONNACK to 172.18.0.3 (0, 5) +1612445560: Socket error on client , disconnecting. +1612445580: New connection from 172.18.0.3 on port 1883. +1612445580: Sending CONNACK to 172.18.0.3 (0, 5) +1612445580: Socket error on client , disconnecting. +1612445600: New connection from 172.18.0.3 on port 1883. +1612445600: Sending CONNACK to 172.18.0.3 (0, 5) +1612445600: Socket error on client , disconnecting. +1612445620: New connection from 172.18.0.3 on port 1883. +1612445620: Sending CONNACK to 172.18.0.3 (0, 5) +1612445620: Socket error on client , disconnecting. +1612445640: New connection from 172.18.0.3 on port 1883. +1612445640: Sending CONNACK to 172.18.0.3 (0, 5) +1612445640: Socket error on client , disconnecting. +1612445660: New connection from 172.18.0.3 on port 1883. +1612445660: Sending CONNACK to 172.18.0.3 (0, 5) +1612445660: Socket error on client , disconnecting. +1612445680: New connection from 172.18.0.3 on port 1883. +1612445680: Sending CONNACK to 172.18.0.3 (0, 5) +1612445680: Socket error on client , disconnecting. +1612445700: New connection from 172.18.0.3 on port 1883. +1612445700: Sending CONNACK to 172.18.0.3 (0, 5) +1612445700: Socket error on client , disconnecting. +1612445720: New connection from 172.18.0.3 on port 1883. +1612445720: Sending CONNACK to 172.18.0.3 (0, 5) +1612445720: Socket error on client , disconnecting. +1612445740: New connection from 172.18.0.3 on port 1883. +1612445740: Sending CONNACK to 172.18.0.3 (0, 5) +1612445740: Socket error on client , disconnecting. +1612445760: New connection from 172.18.0.3 on port 1883. +1612445760: Sending CONNACK to 172.18.0.3 (0, 5) +1612445760: Socket error on client , disconnecting. +1612445780: New connection from 172.18.0.3 on port 1883. +1612445780: Sending CONNACK to 172.18.0.3 (0, 5) +1612445780: Socket error on client , disconnecting. +1612445800: New connection from 172.18.0.3 on port 1883. +1612445800: Sending CONNACK to 172.18.0.3 (0, 5) +1612445800: Socket error on client , disconnecting. +1612445820: New connection from 172.18.0.3 on port 1883. +1612445820: Sending CONNACK to 172.18.0.3 (0, 5) +1612445820: Socket error on client , disconnecting. +1612445840: New connection from 172.18.0.3 on port 1883. +1612445840: Sending CONNACK to 172.18.0.3 (0, 5) +1612445840: Socket error on client , disconnecting. +1612445860: New connection from 172.18.0.3 on port 1883. +1612445860: Sending CONNACK to 172.18.0.3 (0, 5) +1612445860: Socket error on client , disconnecting. +1612445880: New connection from 172.18.0.3 on port 1883. +1612445880: Sending CONNACK to 172.18.0.3 (0, 5) +1612445880: Socket error on client , disconnecting. +1612445900: New connection from 172.18.0.3 on port 1883. +1612445900: Sending CONNACK to 172.18.0.3 (0, 5) +1612445900: Socket error on client , disconnecting. +1612445920: New connection from 172.18.0.3 on port 1883. +1612445920: Sending CONNACK to 172.18.0.3 (0, 5) +1612445920: Socket error on client , disconnecting. +1612445940: New connection from 172.18.0.3 on port 1883. +1612445940: Sending CONNACK to 172.18.0.3 (0, 5) +1612445940: Socket error on client , disconnecting. +1612445960: New connection from 172.18.0.3 on port 1883. +1612445960: Sending CONNACK to 172.18.0.3 (0, 5) +1612445960: Socket error on client , disconnecting. +1612445980: New connection from 172.18.0.3 on port 1883. +1612445980: Sending CONNACK to 172.18.0.3 (0, 5) +1612445980: Socket error on client , disconnecting. +1612446000: New connection from 172.18.0.3 on port 1883. +1612446000: Sending CONNACK to 172.18.0.3 (0, 5) +1612446000: Socket error on client , disconnecting. +1612446020: New connection from 172.18.0.3 on port 1883. +1612446020: Sending CONNACK to 172.18.0.3 (0, 5) +1612446020: Socket error on client , disconnecting. +1612446040: New connection from 172.18.0.3 on port 1883. +1612446040: Sending CONNACK to 172.18.0.3 (0, 5) +1612446040: Socket error on client , disconnecting. +1612446060: New connection from 172.18.0.3 on port 1883. +1612446060: Sending CONNACK to 172.18.0.3 (0, 5) +1612446060: Socket error on client , disconnecting. +1612446080: New connection from 172.18.0.3 on port 1883. +1612446080: Sending CONNACK to 172.18.0.3 (0, 5) +1612446080: Socket error on client , disconnecting. +1612446100: New connection from 172.18.0.3 on port 1883. +1612446100: Sending CONNACK to 172.18.0.3 (0, 5) +1612446100: Socket error on client , disconnecting. +1612446120: New connection from 172.18.0.3 on port 1883. +1612446120: Sending CONNACK to 172.18.0.3 (0, 5) +1612446120: Socket error on client , disconnecting. +1612446140: New connection from 172.18.0.3 on port 1883. +1612446140: Sending CONNACK to 172.18.0.3 (0, 5) +1612446140: Socket error on client , disconnecting. +1612446160: New connection from 172.18.0.3 on port 1883. +1612446160: Sending CONNACK to 172.18.0.3 (0, 5) +1612446160: Socket error on client , disconnecting. +1612446180: New connection from 172.18.0.3 on port 1883. +1612446180: Sending CONNACK to 172.18.0.3 (0, 5) +1612446180: Socket error on client , disconnecting. +1612446200: New connection from 172.18.0.3 on port 1883. +1612446200: Sending CONNACK to 172.18.0.3 (0, 5) +1612446200: Socket error on client , disconnecting. +1612446220: New connection from 172.18.0.3 on port 1883. +1612446220: Sending CONNACK to 172.18.0.3 (0, 5) +1612446220: Socket error on client , disconnecting. +1612446240: New connection from 172.18.0.3 on port 1883. +1612446240: Sending CONNACK to 172.18.0.3 (0, 5) +1612446240: Socket error on client , disconnecting. +1612446260: New connection from 172.18.0.3 on port 1883. +1612446260: Sending CONNACK to 172.18.0.3 (0, 5) +1612446260: Socket error on client , disconnecting. +1612446280: New connection from 172.18.0.3 on port 1883. +1612446280: Sending CONNACK to 172.18.0.3 (0, 5) +1612446280: Socket error on client , disconnecting. +1612446300: New connection from 172.18.0.3 on port 1883. +1612446300: Sending CONNACK to 172.18.0.3 (0, 5) +1612446300: Socket error on client , disconnecting. +1612446320: New connection from 172.18.0.3 on port 1883. +1612446320: Sending CONNACK to 172.18.0.3 (0, 5) +1612446320: Socket error on client , disconnecting. +1612446340: New connection from 172.18.0.3 on port 1883. +1612446340: Sending CONNACK to 172.18.0.3 (0, 5) +1612446340: Socket error on client , disconnecting. +1612446360: New connection from 172.18.0.3 on port 1883. +1612446360: Sending CONNACK to 172.18.0.3 (0, 5) +1612446360: Socket error on client , disconnecting. +1612446380: New connection from 172.18.0.3 on port 1883. +1612446380: Sending CONNACK to 172.18.0.3 (0, 5) +1612446380: Socket error on client , disconnecting. +1612446400: New connection from 172.18.0.3 on port 1883. +1612446400: Sending CONNACK to 172.18.0.3 (0, 5) +1612446400: Socket error on client , disconnecting. +1612446417: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612446417: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612446417: Error: Permission denied. +1612446420: New connection from 172.18.0.3 on port 1883. +1612446420: Sending CONNACK to 172.18.0.3 (0, 5) +1612446420: Socket error on client , disconnecting. +1612446440: New connection from 172.18.0.3 on port 1883. +1612446440: Sending CONNACK to 172.18.0.3 (0, 5) +1612446440: Socket error on client , disconnecting. +1612446460: New connection from 172.18.0.3 on port 1883. +1612446460: Sending CONNACK to 172.18.0.3 (0, 5) +1612446460: Socket error on client , disconnecting. +1612446480: New connection from 172.18.0.3 on port 1883. +1612446480: Sending CONNACK to 172.18.0.3 (0, 5) +1612446480: Socket error on client , disconnecting. +1612446500: New connection from 172.18.0.3 on port 1883. +1612446500: Sending CONNACK to 172.18.0.3 (0, 5) +1612446500: Socket error on client , disconnecting. +1612446520: New connection from 172.18.0.3 on port 1883. +1612446520: Sending CONNACK to 172.18.0.3 (0, 5) +1612446520: Socket error on client , disconnecting. +1612446540: New connection from 172.18.0.3 on port 1883. +1612446540: Sending CONNACK to 172.18.0.3 (0, 5) +1612446540: Socket error on client , disconnecting. +1612446560: New connection from 172.18.0.3 on port 1883. +1612446560: Sending CONNACK to 172.18.0.3 (0, 5) +1612446560: Socket error on client , disconnecting. +1612446580: New connection from 172.18.0.3 on port 1883. +1612446580: Sending CONNACK to 172.18.0.3 (0, 5) +1612446580: Socket error on client , disconnecting. +1612446600: New connection from 172.18.0.3 on port 1883. +1612446600: Sending CONNACK to 172.18.0.3 (0, 5) +1612446600: Socket error on client , disconnecting. +1612446620: New connection from 172.18.0.3 on port 1883. +1612446620: Sending CONNACK to 172.18.0.3 (0, 5) +1612446620: Socket error on client , disconnecting. +1612446640: New connection from 172.18.0.3 on port 1883. +1612446640: Sending CONNACK to 172.18.0.3 (0, 5) +1612446640: Socket error on client , disconnecting. +1612446660: New connection from 172.18.0.3 on port 1883. +1612446660: Sending CONNACK to 172.18.0.3 (0, 5) +1612446660: Socket error on client , disconnecting. +1612446680: New connection from 172.18.0.3 on port 1883. +1612446680: Sending CONNACK to 172.18.0.3 (0, 5) +1612446680: Socket error on client , disconnecting. +1612446700: New connection from 172.18.0.3 on port 1883. +1612446700: Sending CONNACK to 172.18.0.3 (0, 5) +1612446700: Socket error on client , disconnecting. +1612446720: New connection from 172.18.0.3 on port 1883. +1612446720: Sending CONNACK to 172.18.0.3 (0, 5) +1612446720: Socket error on client , disconnecting. +1612446740: New connection from 172.18.0.3 on port 1883. +1612446740: Sending CONNACK to 172.18.0.3 (0, 5) +1612446740: Socket error on client , disconnecting. +1612446760: New connection from 172.18.0.3 on port 1883. +1612446760: Sending CONNACK to 172.18.0.3 (0, 5) +1612446760: Socket error on client , disconnecting. +1612446780: New connection from 172.18.0.3 on port 1883. +1612446780: Sending CONNACK to 172.18.0.3 (0, 5) +1612446780: Socket error on client , disconnecting. +1612446800: New connection from 172.18.0.3 on port 1883. +1612446800: Sending CONNACK to 172.18.0.3 (0, 5) +1612446800: Socket error on client , disconnecting. +1612446820: New connection from 172.18.0.3 on port 1883. +1612446820: Sending CONNACK to 172.18.0.3 (0, 5) +1612446820: Socket error on client , disconnecting. +1612446840: New connection from 172.18.0.3 on port 1883. +1612446840: Sending CONNACK to 172.18.0.3 (0, 5) +1612446840: Socket error on client , disconnecting. +1612446860: New connection from 172.18.0.3 on port 1883. +1612446860: Sending CONNACK to 172.18.0.3 (0, 5) +1612446860: Socket error on client , disconnecting. +1612446880: New connection from 172.18.0.3 on port 1883. +1612446880: Sending CONNACK to 172.18.0.3 (0, 5) +1612446880: Socket error on client , disconnecting. +1612446900: New connection from 172.18.0.3 on port 1883. +1612446900: Sending CONNACK to 172.18.0.3 (0, 5) +1612446900: Socket error on client , disconnecting. +1612446920: New connection from 172.18.0.3 on port 1883. +1612446920: Sending CONNACK to 172.18.0.3 (0, 5) +1612446920: Socket error on client , disconnecting. +1612446940: New connection from 172.18.0.3 on port 1883. +1612446940: Sending CONNACK to 172.18.0.3 (0, 5) +1612446940: Socket error on client , disconnecting. +1612446960: New connection from 172.18.0.3 on port 1883. +1612446960: Sending CONNACK to 172.18.0.3 (0, 5) +1612446960: Socket error on client , disconnecting. +1612446980: New connection from 172.18.0.3 on port 1883. +1612446980: Sending CONNACK to 172.18.0.3 (0, 5) +1612446980: Socket error on client , disconnecting. +1612447000: New connection from 172.18.0.3 on port 1883. +1612447000: Sending CONNACK to 172.18.0.3 (0, 5) +1612447000: Socket error on client , disconnecting. +1612447020: New connection from 172.18.0.3 on port 1883. +1612447020: Sending CONNACK to 172.18.0.3 (0, 5) +1612447020: Socket error on client , disconnecting. +1612447040: New connection from 172.18.0.3 on port 1883. +1612447040: Sending CONNACK to 172.18.0.3 (0, 5) +1612447040: Socket error on client , disconnecting. +1612447060: New connection from 172.18.0.3 on port 1883. +1612447060: Sending CONNACK to 172.18.0.3 (0, 5) +1612447060: Socket error on client , disconnecting. +1612447080: New connection from 172.18.0.3 on port 1883. +1612447080: Sending CONNACK to 172.18.0.3 (0, 5) +1612447080: Socket error on client , disconnecting. +1612447100: New connection from 172.18.0.3 on port 1883. +1612447100: Sending CONNACK to 172.18.0.3 (0, 5) +1612447100: Socket error on client , disconnecting. +1612447120: New connection from 172.18.0.3 on port 1883. +1612447120: Sending CONNACK to 172.18.0.3 (0, 5) +1612447120: Socket error on client , disconnecting. +1612447140: New connection from 172.18.0.3 on port 1883. +1612447140: Sending CONNACK to 172.18.0.3 (0, 5) +1612447140: Socket error on client , disconnecting. +1612447160: New connection from 172.18.0.3 on port 1883. +1612447160: Sending CONNACK to 172.18.0.3 (0, 5) +1612447160: Socket error on client , disconnecting. +1612447180: New connection from 172.18.0.3 on port 1883. +1612447180: Sending CONNACK to 172.18.0.3 (0, 5) +1612447180: Socket error on client , disconnecting. +1612447200: New connection from 172.18.0.3 on port 1883. +1612447200: Sending CONNACK to 172.18.0.3 (0, 5) +1612447200: Socket error on client , disconnecting. +1612447220: New connection from 172.18.0.3 on port 1883. +1612447220: Sending CONNACK to 172.18.0.3 (0, 5) +1612447220: Socket error on client , disconnecting. +1612447240: New connection from 172.18.0.3 on port 1883. +1612447240: Sending CONNACK to 172.18.0.3 (0, 5) +1612447240: Socket error on client , disconnecting. +1612447260: New connection from 172.18.0.3 on port 1883. +1612447260: Sending CONNACK to 172.18.0.3 (0, 5) +1612447260: Socket error on client , disconnecting. +1612447280: New connection from 172.18.0.3 on port 1883. +1612447280: Sending CONNACK to 172.18.0.3 (0, 5) +1612447280: Socket error on client , disconnecting. +1612447300: New connection from 172.18.0.3 on port 1883. +1612447300: Sending CONNACK to 172.18.0.3 (0, 5) +1612447300: Socket error on client , disconnecting. +1612447320: New connection from 172.18.0.3 on port 1883. +1612447320: Sending CONNACK to 172.18.0.3 (0, 5) +1612447320: Socket error on client , disconnecting. +1612447340: New connection from 172.18.0.3 on port 1883. +1612447340: Sending CONNACK to 172.18.0.3 (0, 5) +1612447340: Socket error on client , disconnecting. +1612447360: New connection from 172.18.0.3 on port 1883. +1612447360: Sending CONNACK to 172.18.0.3 (0, 5) +1612447360: Socket error on client , disconnecting. +1612447380: New connection from 172.18.0.3 on port 1883. +1612447380: Sending CONNACK to 172.18.0.3 (0, 5) +1612447380: Socket error on client , disconnecting. +1612447400: New connection from 172.18.0.3 on port 1883. +1612447400: Sending CONNACK to 172.18.0.3 (0, 5) +1612447400: Socket error on client , disconnecting. +1612447420: New connection from 172.18.0.3 on port 1883. +1612447420: Sending CONNACK to 172.18.0.3 (0, 5) +1612447420: Socket error on client , disconnecting. +1612447440: New connection from 172.18.0.3 on port 1883. +1612447440: Sending CONNACK to 172.18.0.3 (0, 5) +1612447440: Socket error on client , disconnecting. +1612447460: New connection from 172.18.0.3 on port 1883. +1612447460: Sending CONNACK to 172.18.0.3 (0, 5) +1612447460: Socket error on client , disconnecting. +1612447480: New connection from 172.18.0.3 on port 1883. +1612447480: Sending CONNACK to 172.18.0.3 (0, 5) +1612447480: Socket error on client , disconnecting. +1612447500: New connection from 172.18.0.3 on port 1883. +1612447500: Sending CONNACK to 172.18.0.3 (0, 5) +1612447500: Socket error on client , disconnecting. +1612447520: New connection from 172.18.0.3 on port 1883. +1612447520: Sending CONNACK to 172.18.0.3 (0, 5) +1612447520: Socket error on client , disconnecting. +1612447540: New connection from 172.18.0.3 on port 1883. +1612447540: Sending CONNACK to 172.18.0.3 (0, 5) +1612447540: Socket error on client , disconnecting. +1612447560: New connection from 172.18.0.3 on port 1883. +1612447560: Sending CONNACK to 172.18.0.3 (0, 5) +1612447560: Socket error on client , disconnecting. +1612447580: New connection from 172.18.0.3 on port 1883. +1612447580: Sending CONNACK to 172.18.0.3 (0, 5) +1612447580: Socket error on client , disconnecting. +1612447600: New connection from 172.18.0.3 on port 1883. +1612447600: Sending CONNACK to 172.18.0.3 (0, 5) +1612447600: Socket error on client , disconnecting. +1612447620: New connection from 172.18.0.3 on port 1883. +1612447620: Sending CONNACK to 172.18.0.3 (0, 5) +1612447620: Socket error on client , disconnecting. +1612447640: New connection from 172.18.0.3 on port 1883. +1612447640: Sending CONNACK to 172.18.0.3 (0, 5) +1612447640: Socket error on client , disconnecting. +1612447660: New connection from 172.18.0.3 on port 1883. +1612447660: Sending CONNACK to 172.18.0.3 (0, 5) +1612447660: Socket error on client , disconnecting. +1612447680: New connection from 172.18.0.3 on port 1883. +1612447680: Sending CONNACK to 172.18.0.3 (0, 5) +1612447680: Socket error on client , disconnecting. +1612447700: New connection from 172.18.0.3 on port 1883. +1612447700: Sending CONNACK to 172.18.0.3 (0, 5) +1612447700: Socket error on client , disconnecting. +1612447720: New connection from 172.18.0.3 on port 1883. +1612447720: Sending CONNACK to 172.18.0.3 (0, 5) +1612447720: Socket error on client , disconnecting. +1612447740: New connection from 172.18.0.3 on port 1883. +1612447740: Sending CONNACK to 172.18.0.3 (0, 5) +1612447740: Socket error on client , disconnecting. +1612447760: New connection from 172.18.0.3 on port 1883. +1612447760: Sending CONNACK to 172.18.0.3 (0, 5) +1612447760: Socket error on client , disconnecting. +1612447780: New connection from 172.18.0.3 on port 1883. +1612447780: Sending CONNACK to 172.18.0.3 (0, 5) +1612447780: Socket error on client , disconnecting. +1612447800: New connection from 172.18.0.3 on port 1883. +1612447800: Sending CONNACK to 172.18.0.3 (0, 5) +1612447800: Socket error on client , disconnecting. +1612447820: New connection from 172.18.0.3 on port 1883. +1612447820: Sending CONNACK to 172.18.0.3 (0, 5) +1612447820: Socket error on client , disconnecting. +1612447840: New connection from 172.18.0.3 on port 1883. +1612447840: Sending CONNACK to 172.18.0.3 (0, 5) +1612447840: Socket error on client , disconnecting. +1612447860: New connection from 172.18.0.3 on port 1883. +1612447860: Sending CONNACK to 172.18.0.3 (0, 5) +1612447860: Socket error on client , disconnecting. +1612447880: New connection from 172.18.0.3 on port 1883. +1612447880: Sending CONNACK to 172.18.0.3 (0, 5) +1612447880: Socket error on client , disconnecting. +1612447900: New connection from 172.18.0.3 on port 1883. +1612447900: Sending CONNACK to 172.18.0.3 (0, 5) +1612447900: Socket error on client , disconnecting. +1612447920: New connection from 172.18.0.3 on port 1883. +1612447920: Sending CONNACK to 172.18.0.3 (0, 5) +1612447920: Socket error on client , disconnecting. +1612447940: New connection from 172.18.0.3 on port 1883. +1612447940: Sending CONNACK to 172.18.0.3 (0, 5) +1612447940: Socket error on client , disconnecting. +1612447960: New connection from 172.18.0.3 on port 1883. +1612447960: Sending CONNACK to 172.18.0.3 (0, 5) +1612447960: Socket error on client , disconnecting. +1612447980: New connection from 172.18.0.3 on port 1883. +1612447980: Sending CONNACK to 172.18.0.3 (0, 5) +1612447980: Socket error on client , disconnecting. +1612448000: New connection from 172.18.0.3 on port 1883. +1612448000: Sending CONNACK to 172.18.0.3 (0, 5) +1612448000: Socket error on client , disconnecting. +1612448020: New connection from 172.18.0.3 on port 1883. +1612448020: Sending CONNACK to 172.18.0.3 (0, 5) +1612448020: Socket error on client , disconnecting. +1612448040: New connection from 172.18.0.3 on port 1883. +1612448040: Sending CONNACK to 172.18.0.3 (0, 5) +1612448040: Socket error on client , disconnecting. +1612448060: New connection from 172.18.0.3 on port 1883. +1612448060: Sending CONNACK to 172.18.0.3 (0, 5) +1612448060: Socket error on client , disconnecting. +1612448080: New connection from 172.18.0.3 on port 1883. +1612448080: Sending CONNACK to 172.18.0.3 (0, 5) +1612448080: Socket error on client , disconnecting. +1612448100: New connection from 172.18.0.3 on port 1883. +1612448100: Sending CONNACK to 172.18.0.3 (0, 5) +1612448100: Socket error on client , disconnecting. +1612448120: New connection from 172.18.0.3 on port 1883. +1612448120: Sending CONNACK to 172.18.0.3 (0, 5) +1612448120: Socket error on client , disconnecting. +1612448140: New connection from 172.18.0.3 on port 1883. +1612448140: Sending CONNACK to 172.18.0.3 (0, 5) +1612448140: Socket error on client , disconnecting. +1612448160: New connection from 172.18.0.3 on port 1883. +1612448160: Sending CONNACK to 172.18.0.3 (0, 5) +1612448160: Socket error on client , disconnecting. +1612448180: New connection from 172.18.0.3 on port 1883. +1612448180: Sending CONNACK to 172.18.0.3 (0, 5) +1612448180: Socket error on client , disconnecting. +1612448200: New connection from 172.18.0.3 on port 1883. +1612448200: Sending CONNACK to 172.18.0.3 (0, 5) +1612448200: Socket error on client , disconnecting. +1612448218: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612448218: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612448218: Error: Permission denied. +1612448220: New connection from 172.18.0.3 on port 1883. +1612448220: Sending CONNACK to 172.18.0.3 (0, 5) +1612448220: Socket error on client , disconnecting. +1612448240: New connection from 172.18.0.3 on port 1883. +1612448240: Sending CONNACK to 172.18.0.3 (0, 5) +1612448240: Socket error on client , disconnecting. +1612448260: New connection from 172.18.0.3 on port 1883. +1612448260: Sending CONNACK to 172.18.0.3 (0, 5) +1612448260: Socket error on client , disconnecting. +1612448280: New connection from 172.18.0.3 on port 1883. +1612448280: Sending CONNACK to 172.18.0.3 (0, 5) +1612448280: Socket error on client , disconnecting. +1612448300: New connection from 172.18.0.3 on port 1883. +1612448300: Sending CONNACK to 172.18.0.3 (0, 5) +1612448300: Socket error on client , disconnecting. +1612448320: New connection from 172.18.0.3 on port 1883. +1612448320: Sending CONNACK to 172.18.0.3 (0, 5) +1612448320: Socket error on client , disconnecting. +1612448340: New connection from 172.18.0.3 on port 1883. +1612448340: Sending CONNACK to 172.18.0.3 (0, 5) +1612448340: Socket error on client , disconnecting. +1612448360: New connection from 172.18.0.3 on port 1883. +1612448360: Sending CONNACK to 172.18.0.3 (0, 5) +1612448360: Socket error on client , disconnecting. +1612448380: New connection from 172.18.0.3 on port 1883. +1612448380: Sending CONNACK to 172.18.0.3 (0, 5) +1612448380: Socket error on client , disconnecting. +1612448400: New connection from 172.18.0.3 on port 1883. +1612448400: Sending CONNACK to 172.18.0.3 (0, 5) +1612448400: Socket error on client , disconnecting. +1612448420: New connection from 172.18.0.3 on port 1883. +1612448420: Sending CONNACK to 172.18.0.3 (0, 5) +1612448420: Socket error on client , disconnecting. +1612448440: New connection from 172.18.0.3 on port 1883. +1612448440: Sending CONNACK to 172.18.0.3 (0, 5) +1612448440: Socket error on client , disconnecting. +1612448460: New connection from 172.18.0.3 on port 1883. +1612448460: Sending CONNACK to 172.18.0.3 (0, 5) +1612448460: Socket error on client , disconnecting. +1612448480: New connection from 172.18.0.3 on port 1883. +1612448480: Sending CONNACK to 172.18.0.3 (0, 5) +1612448480: Socket error on client , disconnecting. +1612448500: New connection from 172.18.0.3 on port 1883. +1612448500: Sending CONNACK to 172.18.0.3 (0, 5) +1612448500: Socket error on client , disconnecting. +1612448520: New connection from 172.18.0.3 on port 1883. +1612448520: Sending CONNACK to 172.18.0.3 (0, 5) +1612448520: Socket error on client , disconnecting. +1612448540: New connection from 172.18.0.3 on port 1883. +1612448540: Sending CONNACK to 172.18.0.3 (0, 5) +1612448540: Socket error on client , disconnecting. +1612448560: New connection from 172.18.0.3 on port 1883. +1612448560: Sending CONNACK to 172.18.0.3 (0, 5) +1612448560: Socket error on client , disconnecting. +1612448580: New connection from 172.18.0.3 on port 1883. +1612448580: Sending CONNACK to 172.18.0.3 (0, 5) +1612448580: Socket error on client , disconnecting. +1612448600: New connection from 172.18.0.3 on port 1883. +1612448600: Sending CONNACK to 172.18.0.3 (0, 5) +1612448600: Socket error on client , disconnecting. +1612448620: New connection from 172.18.0.3 on port 1883. +1612448620: Sending CONNACK to 172.18.0.3 (0, 5) +1612448620: Socket error on client , disconnecting. +1612448640: New connection from 172.18.0.3 on port 1883. +1612448640: Sending CONNACK to 172.18.0.3 (0, 5) +1612448640: Socket error on client , disconnecting. +1612448660: New connection from 172.18.0.3 on port 1883. +1612448660: Sending CONNACK to 172.18.0.3 (0, 5) +1612448660: Socket error on client , disconnecting. +1612448680: New connection from 172.18.0.3 on port 1883. +1612448680: Sending CONNACK to 172.18.0.3 (0, 5) +1612448680: Socket error on client , disconnecting. +1612448700: New connection from 172.18.0.3 on port 1883. +1612448700: Sending CONNACK to 172.18.0.3 (0, 5) +1612448700: Socket error on client , disconnecting. +1612448720: New connection from 172.18.0.3 on port 1883. +1612448720: Sending CONNACK to 172.18.0.3 (0, 5) +1612448720: Socket error on client , disconnecting. +1612448740: New connection from 172.18.0.3 on port 1883. +1612448740: Sending CONNACK to 172.18.0.3 (0, 5) +1612448740: Socket error on client , disconnecting. +1612448760: New connection from 172.18.0.3 on port 1883. +1612448760: Sending CONNACK to 172.18.0.3 (0, 5) +1612448760: Socket error on client , disconnecting. +1612448780: New connection from 172.18.0.3 on port 1883. +1612448780: Sending CONNACK to 172.18.0.3 (0, 5) +1612448780: Socket error on client , disconnecting. +1612448800: New connection from 172.18.0.3 on port 1883. +1612448800: Sending CONNACK to 172.18.0.3 (0, 5) +1612448800: Socket error on client , disconnecting. +1612448820: New connection from 172.18.0.3 on port 1883. +1612448820: Sending CONNACK to 172.18.0.3 (0, 5) +1612448820: Socket error on client , disconnecting. +1612448840: New connection from 172.18.0.3 on port 1883. +1612448840: Sending CONNACK to 172.18.0.3 (0, 5) +1612448840: Socket error on client , disconnecting. +1612448860: New connection from 172.18.0.3 on port 1883. +1612448860: Sending CONNACK to 172.18.0.3 (0, 5) +1612448860: Socket error on client , disconnecting. +1612448880: New connection from 172.18.0.3 on port 1883. +1612448880: Sending CONNACK to 172.18.0.3 (0, 5) +1612448880: Socket error on client , disconnecting. +1612448900: New connection from 172.18.0.3 on port 1883. +1612448900: Sending CONNACK to 172.18.0.3 (0, 5) +1612448900: Socket error on client , disconnecting. +1612448920: New connection from 172.18.0.3 on port 1883. +1612448920: Sending CONNACK to 172.18.0.3 (0, 5) +1612448920: Socket error on client , disconnecting. +1612448940: New connection from 172.18.0.3 on port 1883. +1612448940: Sending CONNACK to 172.18.0.3 (0, 5) +1612448940: Socket error on client , disconnecting. +1612448960: New connection from 172.18.0.3 on port 1883. +1612448960: Sending CONNACK to 172.18.0.3 (0, 5) +1612448960: Socket error on client , disconnecting. +1612448980: New connection from 172.18.0.3 on port 1883. +1612448980: Sending CONNACK to 172.18.0.3 (0, 5) +1612448980: Socket error on client , disconnecting. +1612449000: New connection from 172.18.0.3 on port 1883. +1612449000: Sending CONNACK to 172.18.0.3 (0, 5) +1612449000: Socket error on client , disconnecting. +1612449020: New connection from 172.18.0.3 on port 1883. +1612449020: Sending CONNACK to 172.18.0.3 (0, 5) +1612449020: Socket error on client , disconnecting. +1612449040: New connection from 172.18.0.3 on port 1883. +1612449040: Sending CONNACK to 172.18.0.3 (0, 5) +1612449040: Socket error on client , disconnecting. +1612449060: New connection from 172.18.0.3 on port 1883. +1612449060: Sending CONNACK to 172.18.0.3 (0, 5) +1612449060: Socket error on client , disconnecting. +1612449080: New connection from 172.18.0.3 on port 1883. +1612449080: Sending CONNACK to 172.18.0.3 (0, 5) +1612449080: Socket error on client , disconnecting. +1612449100: New connection from 172.18.0.3 on port 1883. +1612449100: Sending CONNACK to 172.18.0.3 (0, 5) +1612449100: Socket error on client , disconnecting. +1612449120: New connection from 172.18.0.3 on port 1883. +1612449120: Sending CONNACK to 172.18.0.3 (0, 5) +1612449120: Socket error on client , disconnecting. +1612449140: New connection from 172.18.0.3 on port 1883. +1612449140: Sending CONNACK to 172.18.0.3 (0, 5) +1612449140: Socket error on client , disconnecting. +1612449160: New connection from 172.18.0.3 on port 1883. +1612449160: Sending CONNACK to 172.18.0.3 (0, 5) +1612449160: Socket error on client , disconnecting. +1612449180: New connection from 172.18.0.3 on port 1883. +1612449180: Sending CONNACK to 172.18.0.3 (0, 5) +1612449180: Socket error on client , disconnecting. +1612449200: New connection from 172.18.0.3 on port 1883. +1612449200: Sending CONNACK to 172.18.0.3 (0, 5) +1612449200: Socket error on client , disconnecting. +1612449220: New connection from 172.18.0.3 on port 1883. +1612449220: Sending CONNACK to 172.18.0.3 (0, 5) +1612449220: Socket error on client , disconnecting. +1612449240: New connection from 172.18.0.3 on port 1883. +1612449240: Sending CONNACK to 172.18.0.3 (0, 5) +1612449240: Socket error on client , disconnecting. +1612449260: New connection from 172.18.0.3 on port 1883. +1612449260: Sending CONNACK to 172.18.0.3 (0, 5) +1612449260: Socket error on client , disconnecting. +1612449280: New connection from 172.18.0.3 on port 1883. +1612449280: Sending CONNACK to 172.18.0.3 (0, 5) +1612449280: Socket error on client , disconnecting. +1612449300: New connection from 172.18.0.3 on port 1883. +1612449300: Sending CONNACK to 172.18.0.3 (0, 5) +1612449300: Socket error on client , disconnecting. +1612449320: New connection from 172.18.0.3 on port 1883. +1612449320: Sending CONNACK to 172.18.0.3 (0, 5) +1612449320: Socket error on client , disconnecting. +1612449340: New connection from 172.18.0.3 on port 1883. +1612449340: Sending CONNACK to 172.18.0.3 (0, 5) +1612449340: Socket error on client , disconnecting. +1612449360: New connection from 172.18.0.3 on port 1883. +1612449360: Sending CONNACK to 172.18.0.3 (0, 5) +1612449360: Socket error on client , disconnecting. +1612449380: New connection from 172.18.0.3 on port 1883. +1612449380: Sending CONNACK to 172.18.0.3 (0, 5) +1612449380: Socket error on client , disconnecting. +1612449400: New connection from 172.18.0.3 on port 1883. +1612449400: Sending CONNACK to 172.18.0.3 (0, 5) +1612449400: Socket error on client , disconnecting. +1612449420: New connection from 172.18.0.3 on port 1883. +1612449420: Sending CONNACK to 172.18.0.3 (0, 5) +1612449420: Socket error on client , disconnecting. +1612449440: New connection from 172.18.0.3 on port 1883. +1612449440: Sending CONNACK to 172.18.0.3 (0, 5) +1612449440: Socket error on client , disconnecting. +1612449460: New connection from 172.18.0.3 on port 1883. +1612449460: Sending CONNACK to 172.18.0.3 (0, 5) +1612449460: Socket error on client , disconnecting. +1612449480: New connection from 172.18.0.3 on port 1883. +1612449480: Sending CONNACK to 172.18.0.3 (0, 5) +1612449480: Socket error on client , disconnecting. +1612449500: New connection from 172.18.0.3 on port 1883. +1612449500: Sending CONNACK to 172.18.0.3 (0, 5) +1612449500: Socket error on client , disconnecting. +1612449520: New connection from 172.18.0.3 on port 1883. +1612449520: Sending CONNACK to 172.18.0.3 (0, 5) +1612449520: Socket error on client , disconnecting. +1612449540: New connection from 172.18.0.3 on port 1883. +1612449540: Sending CONNACK to 172.18.0.3 (0, 5) +1612449540: Socket error on client , disconnecting. +1612449560: New connection from 172.18.0.3 on port 1883. +1612449560: Sending CONNACK to 172.18.0.3 (0, 5) +1612449560: Socket error on client , disconnecting. +1612449580: New connection from 172.18.0.3 on port 1883. +1612449580: Sending CONNACK to 172.18.0.3 (0, 5) +1612449580: Socket error on client , disconnecting. +1612449600: New connection from 172.18.0.3 on port 1883. +1612449600: Sending CONNACK to 172.18.0.3 (0, 5) +1612449600: Socket error on client , disconnecting. +1612449620: New connection from 172.18.0.3 on port 1883. +1612449620: Sending CONNACK to 172.18.0.3 (0, 5) +1612449620: Socket error on client , disconnecting. +1612449640: New connection from 172.18.0.3 on port 1883. +1612449640: Sending CONNACK to 172.18.0.3 (0, 5) +1612449640: Socket error on client , disconnecting. +1612449660: New connection from 172.18.0.3 on port 1883. +1612449660: Sending CONNACK to 172.18.0.3 (0, 5) +1612449660: Socket error on client , disconnecting. +1612449680: New connection from 172.18.0.3 on port 1883. +1612449680: Sending CONNACK to 172.18.0.3 (0, 5) +1612449680: Socket error on client , disconnecting. +1612449700: New connection from 172.18.0.3 on port 1883. +1612449700: Sending CONNACK to 172.18.0.3 (0, 5) +1612449700: Socket error on client , disconnecting. +1612449720: New connection from 172.18.0.3 on port 1883. +1612449720: Sending CONNACK to 172.18.0.3 (0, 5) +1612449720: Socket error on client , disconnecting. +1612449740: New connection from 172.18.0.3 on port 1883. +1612449740: Sending CONNACK to 172.18.0.3 (0, 5) +1612449740: Socket error on client , disconnecting. +1612449760: New connection from 172.18.0.3 on port 1883. +1612449760: Sending CONNACK to 172.18.0.3 (0, 5) +1612449760: Socket error on client , disconnecting. +1612449780: New connection from 172.18.0.3 on port 1883. +1612449780: Sending CONNACK to 172.18.0.3 (0, 5) +1612449780: Socket error on client , disconnecting. +1612449800: New connection from 172.18.0.3 on port 1883. +1612449800: Sending CONNACK to 172.18.0.3 (0, 5) +1612449800: Socket error on client , disconnecting. +1612449820: New connection from 172.18.0.3 on port 1883. +1612449820: Sending CONNACK to 172.18.0.3 (0, 5) +1612449820: Socket error on client , disconnecting. +1612449840: New connection from 172.18.0.3 on port 1883. +1612449840: Sending CONNACK to 172.18.0.3 (0, 5) +1612449840: Socket error on client , disconnecting. +1612449860: New connection from 172.18.0.3 on port 1883. +1612449860: Sending CONNACK to 172.18.0.3 (0, 5) +1612449860: Socket error on client , disconnecting. +1612449880: New connection from 172.18.0.3 on port 1883. +1612449880: Sending CONNACK to 172.18.0.3 (0, 5) +1612449880: Socket error on client , disconnecting. +1612449900: New connection from 172.18.0.3 on port 1883. +1612449900: Sending CONNACK to 172.18.0.3 (0, 5) +1612449900: Socket error on client , disconnecting. +1612449920: New connection from 172.18.0.3 on port 1883. +1612449920: Sending CONNACK to 172.18.0.3 (0, 5) +1612449920: Socket error on client , disconnecting. +1612449940: New connection from 172.18.0.3 on port 1883. +1612449940: Sending CONNACK to 172.18.0.3 (0, 5) +1612449940: Socket error on client , disconnecting. +1612449960: New connection from 172.18.0.3 on port 1883. +1612449960: Sending CONNACK to 172.18.0.3 (0, 5) +1612449960: Socket error on client , disconnecting. +1612449980: New connection from 172.18.0.3 on port 1883. +1612449980: Sending CONNACK to 172.18.0.3 (0, 5) +1612449980: Socket error on client , disconnecting. +1612450000: New connection from 172.18.0.3 on port 1883. +1612450000: Sending CONNACK to 172.18.0.3 (0, 5) +1612450000: Socket error on client , disconnecting. +1612450019: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612450019: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612450019: Error: Permission denied. +1612450020: New connection from 172.18.0.3 on port 1883. +1612450020: Sending CONNACK to 172.18.0.3 (0, 5) +1612450020: Socket error on client , disconnecting. +1612450040: New connection from 172.18.0.3 on port 1883. +1612450040: Sending CONNACK to 172.18.0.3 (0, 5) +1612450040: Socket error on client , disconnecting. +1612450060: New connection from 172.18.0.3 on port 1883. +1612450060: Sending CONNACK to 172.18.0.3 (0, 5) +1612450060: Socket error on client , disconnecting. +1612450080: New connection from 172.18.0.3 on port 1883. +1612450080: Sending CONNACK to 172.18.0.3 (0, 5) +1612450080: Socket error on client , disconnecting. +1612450100: New connection from 172.18.0.3 on port 1883. +1612450100: Sending CONNACK to 172.18.0.3 (0, 5) +1612450100: Socket error on client , disconnecting. +1612450120: New connection from 172.18.0.3 on port 1883. +1612450120: Sending CONNACK to 172.18.0.3 (0, 5) +1612450120: Socket error on client , disconnecting. +1612450140: New connection from 172.18.0.3 on port 1883. +1612450140: Sending CONNACK to 172.18.0.3 (0, 5) +1612450140: Socket error on client , disconnecting. +1612450160: New connection from 172.18.0.3 on port 1883. +1612450160: Sending CONNACK to 172.18.0.3 (0, 5) +1612450160: Socket error on client , disconnecting. +1612450180: New connection from 172.18.0.3 on port 1883. +1612450180: Sending CONNACK to 172.18.0.3 (0, 5) +1612450180: Socket error on client , disconnecting. +1612450200: New connection from 172.18.0.3 on port 1883. +1612450200: Sending CONNACK to 172.18.0.3 (0, 5) +1612450200: Socket error on client , disconnecting. +1612450220: New connection from 172.18.0.3 on port 1883. +1612450220: Sending CONNACK to 172.18.0.3 (0, 5) +1612450220: Socket error on client , disconnecting. +1612450240: New connection from 172.18.0.3 on port 1883. +1612450240: Sending CONNACK to 172.18.0.3 (0, 5) +1612450240: Socket error on client , disconnecting. +1612450260: New connection from 172.18.0.3 on port 1883. +1612450260: Sending CONNACK to 172.18.0.3 (0, 5) +1612450260: Socket error on client , disconnecting. +1612450280: New connection from 172.18.0.3 on port 1883. +1612450280: Sending CONNACK to 172.18.0.3 (0, 5) +1612450280: Socket error on client , disconnecting. +1612450300: New connection from 172.18.0.3 on port 1883. +1612450300: Sending CONNACK to 172.18.0.3 (0, 5) +1612450300: Socket error on client , disconnecting. +1612450320: New connection from 172.18.0.3 on port 1883. +1612450320: Sending CONNACK to 172.18.0.3 (0, 5) +1612450320: Socket error on client , disconnecting. +1612450340: New connection from 172.18.0.3 on port 1883. +1612450340: Sending CONNACK to 172.18.0.3 (0, 5) +1612450340: Socket error on client , disconnecting. +1612450360: New connection from 172.18.0.3 on port 1883. +1612450360: Sending CONNACK to 172.18.0.3 (0, 5) +1612450360: Socket error on client , disconnecting. +1612450380: New connection from 172.18.0.3 on port 1883. +1612450380: Sending CONNACK to 172.18.0.3 (0, 5) +1612450380: Socket error on client , disconnecting. +1612450400: New connection from 172.18.0.3 on port 1883. +1612450400: Sending CONNACK to 172.18.0.3 (0, 5) +1612450400: Socket error on client , disconnecting. +1612450420: New connection from 172.18.0.3 on port 1883. +1612450420: Sending CONNACK to 172.18.0.3 (0, 5) +1612450420: Socket error on client , disconnecting. +1612450440: New connection from 172.18.0.3 on port 1883. +1612450440: Sending CONNACK to 172.18.0.3 (0, 5) +1612450440: Socket error on client , disconnecting. +1612450460: New connection from 172.18.0.3 on port 1883. +1612450460: Sending CONNACK to 172.18.0.3 (0, 5) +1612450460: Socket error on client , disconnecting. +1612450480: New connection from 172.18.0.3 on port 1883. +1612450480: Sending CONNACK to 172.18.0.3 (0, 5) +1612450480: Socket error on client , disconnecting. +1612450500: New connection from 172.18.0.3 on port 1883. +1612450500: Sending CONNACK to 172.18.0.3 (0, 5) +1612450500: Socket error on client , disconnecting. +1612450520: New connection from 172.18.0.3 on port 1883. +1612450520: Sending CONNACK to 172.18.0.3 (0, 5) +1612450520: Socket error on client , disconnecting. +1612450540: New connection from 172.18.0.3 on port 1883. +1612450540: Sending CONNACK to 172.18.0.3 (0, 5) +1612450540: Socket error on client , disconnecting. +1612450560: New connection from 172.18.0.3 on port 1883. +1612450560: Sending CONNACK to 172.18.0.3 (0, 5) +1612450560: Socket error on client , disconnecting. +1612450580: New connection from 172.18.0.3 on port 1883. +1612450580: Sending CONNACK to 172.18.0.3 (0, 5) +1612450580: Socket error on client , disconnecting. +1612450600: New connection from 172.18.0.3 on port 1883. +1612450600: Sending CONNACK to 172.18.0.3 (0, 5) +1612450600: Socket error on client , disconnecting. +1612450620: New connection from 172.18.0.3 on port 1883. +1612450620: Sending CONNACK to 172.18.0.3 (0, 5) +1612450620: Socket error on client , disconnecting. +1612450640: New connection from 172.18.0.3 on port 1883. +1612450640: Sending CONNACK to 172.18.0.3 (0, 5) +1612450640: Socket error on client , disconnecting. +1612450660: New connection from 172.18.0.3 on port 1883. +1612450660: Sending CONNACK to 172.18.0.3 (0, 5) +1612450660: Socket error on client , disconnecting. +1612450680: New connection from 172.18.0.3 on port 1883. +1612450680: Sending CONNACK to 172.18.0.3 (0, 5) +1612450680: Socket error on client , disconnecting. +1612450700: New connection from 172.18.0.3 on port 1883. +1612450700: Sending CONNACK to 172.18.0.3 (0, 5) +1612450700: Socket error on client , disconnecting. +1612450720: New connection from 172.18.0.3 on port 1883. +1612450720: Sending CONNACK to 172.18.0.3 (0, 5) +1612450720: Socket error on client , disconnecting. +1612450740: New connection from 172.18.0.3 on port 1883. +1612450740: Sending CONNACK to 172.18.0.3 (0, 5) +1612450740: Socket error on client , disconnecting. +1612450760: New connection from 172.18.0.3 on port 1883. +1612450760: Sending CONNACK to 172.18.0.3 (0, 5) +1612450760: Socket error on client , disconnecting. +1612450780: New connection from 172.18.0.3 on port 1883. +1612450780: Sending CONNACK to 172.18.0.3 (0, 5) +1612450780: Socket error on client , disconnecting. +1612450800: New connection from 172.18.0.3 on port 1883. +1612450800: Sending CONNACK to 172.18.0.3 (0, 5) +1612450800: Socket error on client , disconnecting. +1612450820: New connection from 172.18.0.3 on port 1883. +1612450820: Sending CONNACK to 172.18.0.3 (0, 5) +1612450820: Socket error on client , disconnecting. +1612450840: New connection from 172.18.0.3 on port 1883. +1612450840: Sending CONNACK to 172.18.0.3 (0, 5) +1612450840: Socket error on client , disconnecting. +1612450860: New connection from 172.18.0.3 on port 1883. +1612450860: Sending CONNACK to 172.18.0.3 (0, 5) +1612450860: Socket error on client , disconnecting. +1612450880: New connection from 172.18.0.3 on port 1883. +1612450880: Sending CONNACK to 172.18.0.3 (0, 5) +1612450880: Socket error on client , disconnecting. +1612450900: New connection from 172.18.0.3 on port 1883. +1612450900: Sending CONNACK to 172.18.0.3 (0, 5) +1612450900: Socket error on client , disconnecting. +1612450920: New connection from 172.18.0.3 on port 1883. +1612450920: Sending CONNACK to 172.18.0.3 (0, 5) +1612450920: Socket error on client , disconnecting. +1612450940: New connection from 172.18.0.3 on port 1883. +1612450940: Sending CONNACK to 172.18.0.3 (0, 5) +1612450940: Socket error on client , disconnecting. +1612450960: New connection from 172.18.0.3 on port 1883. +1612450960: Sending CONNACK to 172.18.0.3 (0, 5) +1612450960: Socket error on client , disconnecting. +1612450980: New connection from 172.18.0.3 on port 1883. +1612450980: Sending CONNACK to 172.18.0.3 (0, 5) +1612450980: Socket error on client , disconnecting. +1612451000: New connection from 172.18.0.3 on port 1883. +1612451000: Sending CONNACK to 172.18.0.3 (0, 5) +1612451000: Socket error on client , disconnecting. +1612451020: New connection from 172.18.0.3 on port 1883. +1612451020: Sending CONNACK to 172.18.0.3 (0, 5) +1612451020: Socket error on client , disconnecting. +1612451040: New connection from 172.18.0.3 on port 1883. +1612451040: Sending CONNACK to 172.18.0.3 (0, 5) +1612451040: Socket error on client , disconnecting. +1612451060: New connection from 172.18.0.3 on port 1883. +1612451060: Sending CONNACK to 172.18.0.3 (0, 5) +1612451060: Socket error on client , disconnecting. +1612451080: New connection from 172.18.0.3 on port 1883. +1612451080: Sending CONNACK to 172.18.0.3 (0, 5) +1612451080: Socket error on client , disconnecting. +1612451100: New connection from 172.18.0.3 on port 1883. +1612451100: Sending CONNACK to 172.18.0.3 (0, 5) +1612451100: Socket error on client , disconnecting. +1612451120: New connection from 172.18.0.3 on port 1883. +1612451120: Sending CONNACK to 172.18.0.3 (0, 5) +1612451120: Socket error on client , disconnecting. +1612451140: New connection from 172.18.0.3 on port 1883. +1612451140: Sending CONNACK to 172.18.0.3 (0, 5) +1612451140: Socket error on client , disconnecting. +1612451160: New connection from 172.18.0.3 on port 1883. +1612451160: Sending CONNACK to 172.18.0.3 (0, 5) +1612451160: Socket error on client , disconnecting. +1612451180: New connection from 172.18.0.3 on port 1883. +1612451180: Sending CONNACK to 172.18.0.3 (0, 5) +1612451180: Socket error on client , disconnecting. +1612451200: New connection from 172.18.0.3 on port 1883. +1612451200: Sending CONNACK to 172.18.0.3 (0, 5) +1612451200: Socket error on client , disconnecting. +1612451220: New connection from 172.18.0.3 on port 1883. +1612451220: Sending CONNACK to 172.18.0.3 (0, 5) +1612451220: Socket error on client , disconnecting. +1612451240: New connection from 172.18.0.3 on port 1883. +1612451240: Sending CONNACK to 172.18.0.3 (0, 5) +1612451240: Socket error on client , disconnecting. +1612451260: New connection from 172.18.0.3 on port 1883. +1612451260: Sending CONNACK to 172.18.0.3 (0, 5) +1612451260: Socket error on client , disconnecting. +1612451280: New connection from 172.18.0.3 on port 1883. +1612451280: Sending CONNACK to 172.18.0.3 (0, 5) +1612451280: Socket error on client , disconnecting. +1612451300: New connection from 172.18.0.3 on port 1883. +1612451300: Sending CONNACK to 172.18.0.3 (0, 5) +1612451300: Socket error on client , disconnecting. +1612451320: New connection from 172.18.0.3 on port 1883. +1612451320: Sending CONNACK to 172.18.0.3 (0, 5) +1612451320: Socket error on client , disconnecting. +1612451340: New connection from 172.18.0.3 on port 1883. +1612451340: Sending CONNACK to 172.18.0.3 (0, 5) +1612451340: Socket error on client , disconnecting. +1612451360: New connection from 172.18.0.3 on port 1883. +1612451360: Sending CONNACK to 172.18.0.3 (0, 5) +1612451360: Socket error on client , disconnecting. +1612451380: New connection from 172.18.0.3 on port 1883. +1612451380: Sending CONNACK to 172.18.0.3 (0, 5) +1612451380: Socket error on client , disconnecting. +1612451400: New connection from 172.18.0.3 on port 1883. +1612451400: Sending CONNACK to 172.18.0.3 (0, 5) +1612451400: Socket error on client , disconnecting. +1612451420: New connection from 172.18.0.3 on port 1883. +1612451420: Sending CONNACK to 172.18.0.3 (0, 5) +1612451420: Socket error on client , disconnecting. +1612451440: New connection from 172.18.0.3 on port 1883. +1612451440: Sending CONNACK to 172.18.0.3 (0, 5) +1612451440: Socket error on client , disconnecting. +1612451460: New connection from 172.18.0.3 on port 1883. +1612451460: Sending CONNACK to 172.18.0.3 (0, 5) +1612451460: Socket error on client , disconnecting. +1612451480: New connection from 172.18.0.3 on port 1883. +1612451480: Sending CONNACK to 172.18.0.3 (0, 5) +1612451480: Socket error on client , disconnecting. +1612451500: New connection from 172.18.0.3 on port 1883. +1612451500: Sending CONNACK to 172.18.0.3 (0, 5) +1612451500: Socket error on client , disconnecting. +1612451520: New connection from 172.18.0.3 on port 1883. +1612451520: Sending CONNACK to 172.18.0.3 (0, 5) +1612451520: Socket error on client , disconnecting. +1612451540: New connection from 172.18.0.3 on port 1883. +1612451540: Sending CONNACK to 172.18.0.3 (0, 5) +1612451540: Socket error on client , disconnecting. +1612451560: New connection from 172.18.0.3 on port 1883. +1612451560: Sending CONNACK to 172.18.0.3 (0, 5) +1612451560: Socket error on client , disconnecting. +1612451580: New connection from 172.18.0.3 on port 1883. +1612451580: Sending CONNACK to 172.18.0.3 (0, 5) +1612451580: Socket error on client , disconnecting. +1612451600: New connection from 172.18.0.3 on port 1883. +1612451600: Sending CONNACK to 172.18.0.3 (0, 5) +1612451600: Socket error on client , disconnecting. +1612451620: New connection from 172.18.0.3 on port 1883. +1612451620: Sending CONNACK to 172.18.0.3 (0, 5) +1612451620: Socket error on client , disconnecting. +1612451640: New connection from 172.18.0.3 on port 1883. +1612451640: Sending CONNACK to 172.18.0.3 (0, 5) +1612451640: Socket error on client , disconnecting. +1612451660: New connection from 172.18.0.3 on port 1883. +1612451660: Sending CONNACK to 172.18.0.3 (0, 5) +1612451660: Socket error on client , disconnecting. +1612451680: New connection from 172.18.0.3 on port 1883. +1612451680: Sending CONNACK to 172.18.0.3 (0, 5) +1612451680: Socket error on client , disconnecting. +1612451700: New connection from 172.18.0.3 on port 1883. +1612451700: Sending CONNACK to 172.18.0.3 (0, 5) +1612451700: Socket error on client , disconnecting. +1612451720: New connection from 172.18.0.3 on port 1883. +1612451720: Sending CONNACK to 172.18.0.3 (0, 5) +1612451720: Socket error on client , disconnecting. +1612451740: New connection from 172.18.0.3 on port 1883. +1612451740: Sending CONNACK to 172.18.0.3 (0, 5) +1612451740: Socket error on client , disconnecting. +1612451760: New connection from 172.18.0.3 on port 1883. +1612451760: Sending CONNACK to 172.18.0.3 (0, 5) +1612451760: Socket error on client , disconnecting. +1612451780: New connection from 172.18.0.3 on port 1883. +1612451780: Sending CONNACK to 172.18.0.3 (0, 5) +1612451780: Socket error on client , disconnecting. +1612451800: New connection from 172.18.0.3 on port 1883. +1612451800: Sending CONNACK to 172.18.0.3 (0, 5) +1612451800: Socket error on client , disconnecting. +1612451820: New connection from 172.18.0.3 on port 1883. +1612451820: Sending CONNACK to 172.18.0.3 (0, 5) +1612451820: Socket error on client , disconnecting. +1612451820: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612451820: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612451820: Error: Permission denied. +1612451840: New connection from 172.18.0.3 on port 1883. +1612451840: Sending CONNACK to 172.18.0.3 (0, 5) +1612451840: Socket error on client , disconnecting. +1612451860: New connection from 172.18.0.3 on port 1883. +1612451860: Sending CONNACK to 172.18.0.3 (0, 5) +1612451860: Socket error on client , disconnecting. +1612451880: New connection from 172.18.0.3 on port 1883. +1612451880: Sending CONNACK to 172.18.0.3 (0, 5) +1612451880: Socket error on client , disconnecting. +1612451900: New connection from 172.18.0.3 on port 1883. +1612451900: Sending CONNACK to 172.18.0.3 (0, 5) +1612451900: Socket error on client , disconnecting. +1612451920: New connection from 172.18.0.3 on port 1883. +1612451920: Sending CONNACK to 172.18.0.3 (0, 5) +1612451920: Socket error on client , disconnecting. +1612451940: New connection from 172.18.0.3 on port 1883. +1612451940: Sending CONNACK to 172.18.0.3 (0, 5) +1612451940: Socket error on client , disconnecting. +1612451960: New connection from 172.18.0.3 on port 1883. +1612451960: Sending CONNACK to 172.18.0.3 (0, 5) +1612451960: Socket error on client , disconnecting. +1612451980: New connection from 172.18.0.3 on port 1883. +1612451980: Sending CONNACK to 172.18.0.3 (0, 5) +1612451980: Socket error on client , disconnecting. +1612452000: New connection from 172.18.0.3 on port 1883. +1612452000: Sending CONNACK to 172.18.0.3 (0, 5) +1612452000: Socket error on client , disconnecting. +1612452020: New connection from 172.18.0.3 on port 1883. +1612452020: Sending CONNACK to 172.18.0.3 (0, 5) +1612452020: Socket error on client , disconnecting. +1612452040: New connection from 172.18.0.3 on port 1883. +1612452040: Sending CONNACK to 172.18.0.3 (0, 5) +1612452040: Socket error on client , disconnecting. +1612452060: New connection from 172.18.0.3 on port 1883. +1612452060: Sending CONNACK to 172.18.0.3 (0, 5) +1612452060: Socket error on client , disconnecting. +1612452080: New connection from 172.18.0.3 on port 1883. +1612452080: Sending CONNACK to 172.18.0.3 (0, 5) +1612452080: Socket error on client , disconnecting. +1612452100: New connection from 172.18.0.3 on port 1883. +1612452100: Sending CONNACK to 172.18.0.3 (0, 5) +1612452100: Socket error on client , disconnecting. +1612452120: New connection from 172.18.0.3 on port 1883. +1612452120: Sending CONNACK to 172.18.0.3 (0, 5) +1612452120: Socket error on client , disconnecting. +1612452140: New connection from 172.18.0.3 on port 1883. +1612452140: Sending CONNACK to 172.18.0.3 (0, 5) +1612452140: Socket error on client , disconnecting. +1612452160: New connection from 172.18.0.3 on port 1883. +1612452160: Sending CONNACK to 172.18.0.3 (0, 5) +1612452160: Socket error on client , disconnecting. +1612452180: New connection from 172.18.0.3 on port 1883. +1612452180: Sending CONNACK to 172.18.0.3 (0, 5) +1612452180: Socket error on client , disconnecting. +1612452200: New connection from 172.18.0.3 on port 1883. +1612452200: Sending CONNACK to 172.18.0.3 (0, 5) +1612452200: Socket error on client , disconnecting. +1612452220: New connection from 172.18.0.3 on port 1883. +1612452220: Sending CONNACK to 172.18.0.3 (0, 5) +1612452220: Socket error on client , disconnecting. +1612452240: New connection from 172.18.0.3 on port 1883. +1612452240: Sending CONNACK to 172.18.0.3 (0, 5) +1612452240: Socket error on client , disconnecting. +1612452260: New connection from 172.18.0.3 on port 1883. +1612452260: Sending CONNACK to 172.18.0.3 (0, 5) +1612452260: Socket error on client , disconnecting. +1612452280: New connection from 172.18.0.3 on port 1883. +1612452280: Sending CONNACK to 172.18.0.3 (0, 5) +1612452280: Socket error on client , disconnecting. +1612452300: New connection from 172.18.0.3 on port 1883. +1612452300: Sending CONNACK to 172.18.0.3 (0, 5) +1612452300: Socket error on client , disconnecting. +1612452320: New connection from 172.18.0.3 on port 1883. +1612452320: Sending CONNACK to 172.18.0.3 (0, 5) +1612452320: Socket error on client , disconnecting. +1612452340: New connection from 172.18.0.3 on port 1883. +1612452340: Sending CONNACK to 172.18.0.3 (0, 5) +1612452340: Socket error on client , disconnecting. +1612452360: New connection from 172.18.0.3 on port 1883. +1612452360: Sending CONNACK to 172.18.0.3 (0, 5) +1612452360: Socket error on client , disconnecting. +1612452380: New connection from 172.18.0.3 on port 1883. +1612452380: Sending CONNACK to 172.18.0.3 (0, 5) +1612452380: Socket error on client , disconnecting. +1612452400: New connection from 172.18.0.3 on port 1883. +1612452400: Sending CONNACK to 172.18.0.3 (0, 5) +1612452400: Socket error on client , disconnecting. +1612452420: New connection from 172.18.0.3 on port 1883. +1612452420: Sending CONNACK to 172.18.0.3 (0, 5) +1612452420: Socket error on client , disconnecting. +1612452440: New connection from 172.18.0.3 on port 1883. +1612452440: Sending CONNACK to 172.18.0.3 (0, 5) +1612452440: Socket error on client , disconnecting. +1612452460: New connection from 172.18.0.3 on port 1883. +1612452460: Sending CONNACK to 172.18.0.3 (0, 5) +1612452460: Socket error on client , disconnecting. +1612452480: New connection from 172.18.0.3 on port 1883. +1612452480: Sending CONNACK to 172.18.0.3 (0, 5) +1612452480: Socket error on client , disconnecting. +1612452500: New connection from 172.18.0.3 on port 1883. +1612452500: Sending CONNACK to 172.18.0.3 (0, 5) +1612452500: Socket error on client , disconnecting. +1612452520: New connection from 172.18.0.3 on port 1883. +1612452520: Sending CONNACK to 172.18.0.3 (0, 5) +1612452520: Socket error on client , disconnecting. +1612452540: New connection from 172.18.0.3 on port 1883. +1612452540: Sending CONNACK to 172.18.0.3 (0, 5) +1612452540: Socket error on client , disconnecting. +1612452560: New connection from 172.18.0.3 on port 1883. +1612452560: Sending CONNACK to 172.18.0.3 (0, 5) +1612452560: Socket error on client , disconnecting. +1612452580: New connection from 172.18.0.3 on port 1883. +1612452580: Sending CONNACK to 172.18.0.3 (0, 5) +1612452580: Socket error on client , disconnecting. +1612452600: New connection from 172.18.0.3 on port 1883. +1612452600: Sending CONNACK to 172.18.0.3 (0, 5) +1612452600: Socket error on client , disconnecting. +1612452620: New connection from 172.18.0.3 on port 1883. +1612452620: Sending CONNACK to 172.18.0.3 (0, 5) +1612452620: Socket error on client , disconnecting. +1612452640: New connection from 172.18.0.3 on port 1883. +1612452640: Sending CONNACK to 172.18.0.3 (0, 5) +1612452640: Socket error on client , disconnecting. +1612452660: New connection from 172.18.0.3 on port 1883. +1612452660: Sending CONNACK to 172.18.0.3 (0, 5) +1612452660: Socket error on client , disconnecting. +1612452680: New connection from 172.18.0.3 on port 1883. +1612452680: Sending CONNACK to 172.18.0.3 (0, 5) +1612452680: Socket error on client , disconnecting. +1612452700: New connection from 172.18.0.3 on port 1883. +1612452700: Sending CONNACK to 172.18.0.3 (0, 5) +1612452700: Socket error on client , disconnecting. +1612452720: New connection from 172.18.0.3 on port 1883. +1612452720: Sending CONNACK to 172.18.0.3 (0, 5) +1612452720: Socket error on client , disconnecting. +1612452740: New connection from 172.18.0.3 on port 1883. +1612452740: Sending CONNACK to 172.18.0.3 (0, 5) +1612452740: Socket error on client , disconnecting. +1612452760: New connection from 172.18.0.3 on port 1883. +1612452760: Sending CONNACK to 172.18.0.3 (0, 5) +1612452760: Socket error on client , disconnecting. +1612452780: New connection from 172.18.0.3 on port 1883. +1612452780: Sending CONNACK to 172.18.0.3 (0, 5) +1612452780: Socket error on client , disconnecting. +1612452800: New connection from 172.18.0.3 on port 1883. +1612452800: Sending CONNACK to 172.18.0.3 (0, 5) +1612452800: Socket error on client , disconnecting. +1612452820: New connection from 172.18.0.3 on port 1883. +1612452820: Sending CONNACK to 172.18.0.3 (0, 5) +1612452820: Socket error on client , disconnecting. +1612452840: New connection from 172.18.0.3 on port 1883. +1612452840: Sending CONNACK to 172.18.0.3 (0, 5) +1612452840: Socket error on client , disconnecting. +1612452860: New connection from 172.18.0.3 on port 1883. +1612452860: Sending CONNACK to 172.18.0.3 (0, 5) +1612452860: Socket error on client , disconnecting. +1612452880: New connection from 172.18.0.3 on port 1883. +1612452880: Sending CONNACK to 172.18.0.3 (0, 5) +1612452880: Socket error on client , disconnecting. +1612452900: New connection from 172.18.0.3 on port 1883. +1612452900: Sending CONNACK to 172.18.0.3 (0, 5) +1612452900: Socket error on client , disconnecting. +1612452920: New connection from 172.18.0.3 on port 1883. +1612452920: Sending CONNACK to 172.18.0.3 (0, 5) +1612452920: Socket error on client , disconnecting. +1612452940: New connection from 172.18.0.3 on port 1883. +1612452940: Sending CONNACK to 172.18.0.3 (0, 5) +1612452940: Socket error on client , disconnecting. +1612452960: New connection from 172.18.0.3 on port 1883. +1612452960: Sending CONNACK to 172.18.0.3 (0, 5) +1612452960: Socket error on client , disconnecting. +1612452980: New connection from 172.18.0.3 on port 1883. +1612452980: Sending CONNACK to 172.18.0.3 (0, 5) +1612452980: Socket error on client , disconnecting. +1612453000: New connection from 172.18.0.3 on port 1883. +1612453000: Sending CONNACK to 172.18.0.3 (0, 5) +1612453000: Socket error on client , disconnecting. +1612453020: New connection from 172.18.0.3 on port 1883. +1612453020: Sending CONNACK to 172.18.0.3 (0, 5) +1612453020: Socket error on client , disconnecting. +1612453040: New connection from 172.18.0.3 on port 1883. +1612453040: Sending CONNACK to 172.18.0.3 (0, 5) +1612453040: Socket error on client , disconnecting. +1612453060: New connection from 172.18.0.3 on port 1883. +1612453060: Sending CONNACK to 172.18.0.3 (0, 5) +1612453060: Socket error on client , disconnecting. +1612453080: New connection from 172.18.0.3 on port 1883. +1612453080: Sending CONNACK to 172.18.0.3 (0, 5) +1612453080: Socket error on client , disconnecting. +1612453100: New connection from 172.18.0.3 on port 1883. +1612453100: Sending CONNACK to 172.18.0.3 (0, 5) +1612453100: Socket error on client , disconnecting. +1612453120: New connection from 172.18.0.3 on port 1883. +1612453120: Sending CONNACK to 172.18.0.3 (0, 5) +1612453120: Socket error on client , disconnecting. +1612453140: New connection from 172.18.0.3 on port 1883. +1612453140: Sending CONNACK to 172.18.0.3 (0, 5) +1612453140: Socket error on client , disconnecting. +1612453160: New connection from 172.18.0.3 on port 1883. +1612453160: Sending CONNACK to 172.18.0.3 (0, 5) +1612453160: Socket error on client , disconnecting. +1612453180: New connection from 172.18.0.3 on port 1883. +1612453180: Sending CONNACK to 172.18.0.3 (0, 5) +1612453180: Socket error on client , disconnecting. +1612453200: New connection from 172.18.0.3 on port 1883. +1612453200: Sending CONNACK to 172.18.0.3 (0, 5) +1612453200: Socket error on client , disconnecting. +1612453220: New connection from 172.18.0.3 on port 1883. +1612453220: Sending CONNACK to 172.18.0.3 (0, 5) +1612453220: Socket error on client , disconnecting. +1612453240: New connection from 172.18.0.3 on port 1883. +1612453240: Sending CONNACK to 172.18.0.3 (0, 5) +1612453240: Socket error on client , disconnecting. +1612453260: New connection from 172.18.0.3 on port 1883. +1612453260: Sending CONNACK to 172.18.0.3 (0, 5) +1612453260: Socket error on client , disconnecting. +1612453280: New connection from 172.18.0.3 on port 1883. +1612453280: Sending CONNACK to 172.18.0.3 (0, 5) +1612453280: Socket error on client , disconnecting. +1612453300: New connection from 172.18.0.3 on port 1883. +1612453300: Sending CONNACK to 172.18.0.3 (0, 5) +1612453300: Socket error on client , disconnecting. +1612453320: New connection from 172.18.0.3 on port 1883. +1612453320: Sending CONNACK to 172.18.0.3 (0, 5) +1612453320: Socket error on client , disconnecting. +1612453340: New connection from 172.18.0.3 on port 1883. +1612453340: Sending CONNACK to 172.18.0.3 (0, 5) +1612453340: Socket error on client , disconnecting. +1612453360: New connection from 172.18.0.3 on port 1883. +1612453360: Sending CONNACK to 172.18.0.3 (0, 5) +1612453360: Socket error on client , disconnecting. +1612453380: New connection from 172.18.0.3 on port 1883. +1612453380: Sending CONNACK to 172.18.0.3 (0, 5) +1612453380: Socket error on client , disconnecting. +1612453400: New connection from 172.18.0.3 on port 1883. +1612453400: Sending CONNACK to 172.18.0.3 (0, 5) +1612453400: Socket error on client , disconnecting. +1612453420: New connection from 172.18.0.3 on port 1883. +1612453420: Sending CONNACK to 172.18.0.3 (0, 5) +1612453420: Socket error on client , disconnecting. +1612453440: New connection from 172.18.0.3 on port 1883. +1612453440: Sending CONNACK to 172.18.0.3 (0, 5) +1612453440: Socket error on client , disconnecting. +1612453460: New connection from 172.18.0.3 on port 1883. +1612453460: Sending CONNACK to 172.18.0.3 (0, 5) +1612453460: Socket error on client , disconnecting. +1612453480: New connection from 172.18.0.3 on port 1883. +1612453480: Sending CONNACK to 172.18.0.3 (0, 5) +1612453480: Socket error on client , disconnecting. +1612453500: New connection from 172.18.0.3 on port 1883. +1612453500: Sending CONNACK to 172.18.0.3 (0, 5) +1612453500: Socket error on client , disconnecting. +1612453520: New connection from 172.18.0.3 on port 1883. +1612453520: Sending CONNACK to 172.18.0.3 (0, 5) +1612453520: Socket error on client , disconnecting. +1612453540: New connection from 172.18.0.3 on port 1883. +1612453540: Sending CONNACK to 172.18.0.3 (0, 5) +1612453540: Socket error on client , disconnecting. +1612453560: New connection from 172.18.0.3 on port 1883. +1612453560: Sending CONNACK to 172.18.0.3 (0, 5) +1612453560: Socket error on client , disconnecting. +1612453580: New connection from 172.18.0.3 on port 1883. +1612453580: Sending CONNACK to 172.18.0.3 (0, 5) +1612453580: Socket error on client , disconnecting. +1612453600: New connection from 172.18.0.3 on port 1883. +1612453600: Sending CONNACK to 172.18.0.3 (0, 5) +1612453600: Socket error on client , disconnecting. +1612453620: New connection from 172.18.0.3 on port 1883. +1612453620: Sending CONNACK to 172.18.0.3 (0, 5) +1612453620: Socket error on client , disconnecting. +1612453621: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612453621: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612453621: Error: Permission denied. +1612453640: New connection from 172.18.0.3 on port 1883. +1612453640: Sending CONNACK to 172.18.0.3 (0, 5) +1612453640: Socket error on client , disconnecting. +1612453660: New connection from 172.18.0.3 on port 1883. +1612453660: Sending CONNACK to 172.18.0.3 (0, 5) +1612453660: Socket error on client , disconnecting. +1612453680: New connection from 172.18.0.3 on port 1883. +1612453680: Sending CONNACK to 172.18.0.3 (0, 5) +1612453680: Socket error on client , disconnecting. +1612453700: New connection from 172.18.0.3 on port 1883. +1612453700: Sending CONNACK to 172.18.0.3 (0, 5) +1612453700: Socket error on client , disconnecting. +1612453720: New connection from 172.18.0.3 on port 1883. +1612453720: Sending CONNACK to 172.18.0.3 (0, 5) +1612453720: Socket error on client , disconnecting. +1612453740: New connection from 172.18.0.3 on port 1883. +1612453740: Sending CONNACK to 172.18.0.3 (0, 5) +1612453740: Socket error on client , disconnecting. +1612453760: New connection from 172.18.0.3 on port 1883. +1612453760: Sending CONNACK to 172.18.0.3 (0, 5) +1612453760: Socket error on client , disconnecting. +1612453780: New connection from 172.18.0.3 on port 1883. +1612453780: Sending CONNACK to 172.18.0.3 (0, 5) +1612453780: Socket error on client , disconnecting. +1612453800: New connection from 172.18.0.3 on port 1883. +1612453800: Sending CONNACK to 172.18.0.3 (0, 5) +1612453800: Socket error on client , disconnecting. +1612453820: New connection from 172.18.0.3 on port 1883. +1612453820: Sending CONNACK to 172.18.0.3 (0, 5) +1612453820: Socket error on client , disconnecting. +1612453840: New connection from 172.18.0.3 on port 1883. +1612453840: Sending CONNACK to 172.18.0.3 (0, 5) +1612453840: Socket error on client , disconnecting. +1612453860: New connection from 172.18.0.3 on port 1883. +1612453860: Sending CONNACK to 172.18.0.3 (0, 5) +1612453860: Socket error on client , disconnecting. +1612453880: New connection from 172.18.0.3 on port 1883. +1612453880: Sending CONNACK to 172.18.0.3 (0, 5) +1612453880: Socket error on client , disconnecting. +1612453900: New connection from 172.18.0.3 on port 1883. +1612453900: Sending CONNACK to 172.18.0.3 (0, 5) +1612453900: Socket error on client , disconnecting. +1612453920: New connection from 172.18.0.3 on port 1883. +1612453920: Sending CONNACK to 172.18.0.3 (0, 5) +1612453920: Socket error on client , disconnecting. +1612453940: New connection from 172.18.0.3 on port 1883. +1612453940: Sending CONNACK to 172.18.0.3 (0, 5) +1612453940: Socket error on client , disconnecting. +1612453960: New connection from 172.18.0.3 on port 1883. +1612453960: Sending CONNACK to 172.18.0.3 (0, 5) +1612453960: Socket error on client , disconnecting. +1612453980: New connection from 172.18.0.3 on port 1883. +1612453980: Sending CONNACK to 172.18.0.3 (0, 5) +1612453980: Socket error on client , disconnecting. +1612454000: New connection from 172.18.0.3 on port 1883. +1612454000: Sending CONNACK to 172.18.0.3 (0, 5) +1612454000: Socket error on client , disconnecting. +1612454020: New connection from 172.18.0.3 on port 1883. +1612454020: Sending CONNACK to 172.18.0.3 (0, 5) +1612454020: Socket error on client , disconnecting. +1612454040: New connection from 172.18.0.3 on port 1883. +1612454040: Sending CONNACK to 172.18.0.3 (0, 5) +1612454040: Socket error on client , disconnecting. +1612454060: New connection from 172.18.0.3 on port 1883. +1612454060: Sending CONNACK to 172.18.0.3 (0, 5) +1612454060: Socket error on client , disconnecting. +1612454080: New connection from 172.18.0.3 on port 1883. +1612454080: Sending CONNACK to 172.18.0.3 (0, 5) +1612454080: Socket error on client , disconnecting. +1612454100: New connection from 172.18.0.3 on port 1883. +1612454100: Sending CONNACK to 172.18.0.3 (0, 5) +1612454100: Socket error on client , disconnecting. +1612454120: New connection from 172.18.0.3 on port 1883. +1612454120: Sending CONNACK to 172.18.0.3 (0, 5) +1612454120: Socket error on client , disconnecting. +1612454140: New connection from 172.18.0.3 on port 1883. +1612454140: Sending CONNACK to 172.18.0.3 (0, 5) +1612454140: Socket error on client , disconnecting. +1612454160: New connection from 172.18.0.3 on port 1883. +1612454160: Sending CONNACK to 172.18.0.3 (0, 5) +1612454160: Socket error on client , disconnecting. +1612454180: New connection from 172.18.0.3 on port 1883. +1612454180: Sending CONNACK to 172.18.0.3 (0, 5) +1612454180: Socket error on client , disconnecting. +1612454200: New connection from 172.18.0.3 on port 1883. +1612454200: Sending CONNACK to 172.18.0.3 (0, 5) +1612454200: Socket error on client , disconnecting. +1612454220: New connection from 172.18.0.3 on port 1883. +1612454220: Sending CONNACK to 172.18.0.3 (0, 5) +1612454220: Socket error on client , disconnecting. +1612454240: New connection from 172.18.0.3 on port 1883. +1612454240: Sending CONNACK to 172.18.0.3 (0, 5) +1612454240: Socket error on client , disconnecting. +1612454260: New connection from 172.18.0.3 on port 1883. +1612454260: Sending CONNACK to 172.18.0.3 (0, 5) +1612454260: Socket error on client , disconnecting. +1612454280: New connection from 172.18.0.3 on port 1883. +1612454280: Sending CONNACK to 172.18.0.3 (0, 5) +1612454280: Socket error on client , disconnecting. +1612454300: New connection from 172.18.0.3 on port 1883. +1612454300: Sending CONNACK to 172.18.0.3 (0, 5) +1612454300: Socket error on client , disconnecting. +1612454320: New connection from 172.18.0.3 on port 1883. +1612454320: Sending CONNACK to 172.18.0.3 (0, 5) +1612454320: Socket error on client , disconnecting. +1612454340: New connection from 172.18.0.3 on port 1883. +1612454340: Sending CONNACK to 172.18.0.3 (0, 5) +1612454340: Socket error on client , disconnecting. +1612454360: New connection from 172.18.0.3 on port 1883. +1612454360: Sending CONNACK to 172.18.0.3 (0, 5) +1612454360: Socket error on client , disconnecting. +1612454380: New connection from 172.18.0.3 on port 1883. +1612454380: Sending CONNACK to 172.18.0.3 (0, 5) +1612454380: Socket error on client , disconnecting. +1612454400: New connection from 172.18.0.3 on port 1883. +1612454400: Sending CONNACK to 172.18.0.3 (0, 5) +1612454400: Socket error on client , disconnecting. +1612454420: New connection from 172.18.0.3 on port 1883. +1612454420: Sending CONNACK to 172.18.0.3 (0, 5) +1612454420: Socket error on client , disconnecting. +1612454440: New connection from 172.18.0.3 on port 1883. +1612454440: Sending CONNACK to 172.18.0.3 (0, 5) +1612454440: Socket error on client , disconnecting. +1612454460: New connection from 172.18.0.3 on port 1883. +1612454460: Sending CONNACK to 172.18.0.3 (0, 5) +1612454460: Socket error on client , disconnecting. +1612454480: New connection from 172.18.0.3 on port 1883. +1612454480: Sending CONNACK to 172.18.0.3 (0, 5) +1612454480: Socket error on client , disconnecting. +1612454500: New connection from 172.18.0.3 on port 1883. +1612454500: Sending CONNACK to 172.18.0.3 (0, 5) +1612454500: Socket error on client , disconnecting. +1612454520: New connection from 172.18.0.3 on port 1883. +1612454520: Sending CONNACK to 172.18.0.3 (0, 5) +1612454520: Socket error on client , disconnecting. +1612454540: New connection from 172.18.0.3 on port 1883. +1612454540: Sending CONNACK to 172.18.0.3 (0, 5) +1612454540: Socket error on client , disconnecting. +1612454560: New connection from 172.18.0.3 on port 1883. +1612454560: Sending CONNACK to 172.18.0.3 (0, 5) +1612454560: Socket error on client , disconnecting. +1612454580: New connection from 172.18.0.3 on port 1883. +1612454580: Sending CONNACK to 172.18.0.3 (0, 5) +1612454580: Socket error on client , disconnecting. +1612454600: New connection from 172.18.0.3 on port 1883. +1612454600: Sending CONNACK to 172.18.0.3 (0, 5) +1612454600: Socket error on client , disconnecting. +1612454620: New connection from 172.18.0.3 on port 1883. +1612454620: Sending CONNACK to 172.18.0.3 (0, 5) +1612454620: Socket error on client , disconnecting. +1612454640: New connection from 172.18.0.3 on port 1883. +1612454640: Sending CONNACK to 172.18.0.3 (0, 5) +1612454640: Socket error on client , disconnecting. +1612454660: New connection from 172.18.0.3 on port 1883. +1612454660: Sending CONNACK to 172.18.0.3 (0, 5) +1612454660: Socket error on client , disconnecting. +1612454680: New connection from 172.18.0.3 on port 1883. +1612454680: Sending CONNACK to 172.18.0.3 (0, 5) +1612454680: Socket error on client , disconnecting. +1612454700: New connection from 172.18.0.3 on port 1883. +1612454700: Sending CONNACK to 172.18.0.3 (0, 5) +1612454700: Socket error on client , disconnecting. +1612454720: New connection from 172.18.0.3 on port 1883. +1612454720: Sending CONNACK to 172.18.0.3 (0, 5) +1612454720: Socket error on client , disconnecting. +1612454740: New connection from 172.18.0.3 on port 1883. +1612454740: Sending CONNACK to 172.18.0.3 (0, 5) +1612454740: Socket error on client , disconnecting. +1612454760: New connection from 172.18.0.3 on port 1883. +1612454760: Sending CONNACK to 172.18.0.3 (0, 5) +1612454760: Socket error on client , disconnecting. +1612454780: New connection from 172.18.0.3 on port 1883. +1612454780: Sending CONNACK to 172.18.0.3 (0, 5) +1612454780: Socket error on client , disconnecting. +1612454800: New connection from 172.18.0.3 on port 1883. +1612454800: Sending CONNACK to 172.18.0.3 (0, 5) +1612454800: Socket error on client , disconnecting. +1612454820: New connection from 172.18.0.3 on port 1883. +1612454820: Sending CONNACK to 172.18.0.3 (0, 5) +1612454820: Socket error on client , disconnecting. +1612454840: New connection from 172.18.0.3 on port 1883. +1612454840: Sending CONNACK to 172.18.0.3 (0, 5) +1612454840: Socket error on client , disconnecting. +1612454860: New connection from 172.18.0.3 on port 1883. +1612454860: Sending CONNACK to 172.18.0.3 (0, 5) +1612454860: Socket error on client , disconnecting. +1612454880: New connection from 172.18.0.3 on port 1883. +1612454880: Sending CONNACK to 172.18.0.3 (0, 5) +1612454880: Socket error on client , disconnecting. +1612454900: New connection from 172.18.0.3 on port 1883. +1612454900: Sending CONNACK to 172.18.0.3 (0, 5) +1612454900: Socket error on client , disconnecting. +1612454920: New connection from 172.18.0.3 on port 1883. +1612454920: Sending CONNACK to 172.18.0.3 (0, 5) +1612454920: Socket error on client , disconnecting. +1612454940: New connection from 172.18.0.3 on port 1883. +1612454940: Sending CONNACK to 172.18.0.3 (0, 5) +1612454940: Socket error on client , disconnecting. +1612454960: New connection from 172.18.0.3 on port 1883. +1612454960: Sending CONNACK to 172.18.0.3 (0, 5) +1612454960: Socket error on client , disconnecting. +1612454980: New connection from 172.18.0.3 on port 1883. +1612454980: Sending CONNACK to 172.18.0.3 (0, 5) +1612454980: Socket error on client , disconnecting. +1612455000: New connection from 172.18.0.3 on port 1883. +1612455000: Sending CONNACK to 172.18.0.3 (0, 5) +1612455000: Socket error on client , disconnecting. +1612455020: New connection from 172.18.0.3 on port 1883. +1612455020: Sending CONNACK to 172.18.0.3 (0, 5) +1612455020: Socket error on client , disconnecting. +1612455040: New connection from 172.18.0.3 on port 1883. +1612455040: Sending CONNACK to 172.18.0.3 (0, 5) +1612455040: Socket error on client , disconnecting. +1612455060: New connection from 172.18.0.3 on port 1883. +1612455060: Sending CONNACK to 172.18.0.3 (0, 5) +1612455060: Socket error on client , disconnecting. +1612455080: New connection from 172.18.0.3 on port 1883. +1612455080: Sending CONNACK to 172.18.0.3 (0, 5) +1612455080: Socket error on client , disconnecting. +1612455100: New connection from 172.18.0.3 on port 1883. +1612455100: Sending CONNACK to 172.18.0.3 (0, 5) +1612455100: Socket error on client , disconnecting. +1612455120: New connection from 172.18.0.3 on port 1883. +1612455120: Sending CONNACK to 172.18.0.3 (0, 5) +1612455120: Socket error on client , disconnecting. +1612455140: New connection from 172.18.0.3 on port 1883. +1612455140: Sending CONNACK to 172.18.0.3 (0, 5) +1612455140: Socket error on client , disconnecting. +1612455160: New connection from 172.18.0.3 on port 1883. +1612455160: Sending CONNACK to 172.18.0.3 (0, 5) +1612455160: Socket error on client , disconnecting. +1612455180: New connection from 172.18.0.3 on port 1883. +1612455180: Sending CONNACK to 172.18.0.3 (0, 5) +1612455180: Socket error on client , disconnecting. +1612455200: New connection from 172.18.0.3 on port 1883. +1612455200: Sending CONNACK to 172.18.0.3 (0, 5) +1612455200: Socket error on client , disconnecting. +1612455220: New connection from 172.18.0.3 on port 1883. +1612455220: Sending CONNACK to 172.18.0.3 (0, 5) +1612455220: Socket error on client , disconnecting. +1612455240: New connection from 172.18.0.3 on port 1883. +1612455240: Sending CONNACK to 172.18.0.3 (0, 5) +1612455240: Socket error on client , disconnecting. +1612455260: New connection from 172.18.0.3 on port 1883. +1612455260: Sending CONNACK to 172.18.0.3 (0, 5) +1612455260: Socket error on client , disconnecting. +1612455280: New connection from 172.18.0.3 on port 1883. +1612455280: Sending CONNACK to 172.18.0.3 (0, 5) +1612455280: Socket error on client , disconnecting. +1612455300: New connection from 172.18.0.3 on port 1883. +1612455300: Sending CONNACK to 172.18.0.3 (0, 5) +1612455300: Socket error on client , disconnecting. +1612455320: New connection from 172.18.0.3 on port 1883. +1612455320: Sending CONNACK to 172.18.0.3 (0, 5) +1612455320: Socket error on client , disconnecting. +1612455340: New connection from 172.18.0.3 on port 1883. +1612455340: Sending CONNACK to 172.18.0.3 (0, 5) +1612455340: Socket error on client , disconnecting. +1612455360: New connection from 172.18.0.3 on port 1883. +1612455360: Sending CONNACK to 172.18.0.3 (0, 5) +1612455360: Socket error on client , disconnecting. +1612455380: New connection from 172.18.0.3 on port 1883. +1612455380: Sending CONNACK to 172.18.0.3 (0, 5) +1612455380: Socket error on client , disconnecting. +1612455400: New connection from 172.18.0.3 on port 1883. +1612455400: Sending CONNACK to 172.18.0.3 (0, 5) +1612455400: Socket error on client , disconnecting. +1612455420: New connection from 172.18.0.3 on port 1883. +1612455420: Sending CONNACK to 172.18.0.3 (0, 5) +1612455420: Socket error on client , disconnecting. +1612455422: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612455422: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612455422: Error: Permission denied. +1612455440: New connection from 172.18.0.3 on port 1883. +1612455440: Sending CONNACK to 172.18.0.3 (0, 5) +1612455440: Socket error on client , disconnecting. +1612455460: New connection from 172.18.0.3 on port 1883. +1612455460: Sending CONNACK to 172.18.0.3 (0, 5) +1612455460: Socket error on client , disconnecting. +1612455480: New connection from 172.18.0.3 on port 1883. +1612455480: Sending CONNACK to 172.18.0.3 (0, 5) +1612455480: Socket error on client , disconnecting. +1612455500: New connection from 172.18.0.3 on port 1883. +1612455500: Sending CONNACK to 172.18.0.3 (0, 5) +1612455500: Socket error on client , disconnecting. +1612455520: New connection from 172.18.0.3 on port 1883. +1612455520: Sending CONNACK to 172.18.0.3 (0, 5) +1612455520: Socket error on client , disconnecting. +1612455540: New connection from 172.18.0.3 on port 1883. +1612455540: Sending CONNACK to 172.18.0.3 (0, 5) +1612455540: Socket error on client , disconnecting. +1612455560: New connection from 172.18.0.3 on port 1883. +1612455560: Sending CONNACK to 172.18.0.3 (0, 5) +1612455560: Socket error on client , disconnecting. +1612455580: New connection from 172.18.0.3 on port 1883. +1612455580: Sending CONNACK to 172.18.0.3 (0, 5) +1612455580: Socket error on client , disconnecting. +1612455600: New connection from 172.18.0.3 on port 1883. +1612455600: Sending CONNACK to 172.18.0.3 (0, 5) +1612455600: Socket error on client , disconnecting. +1612455620: New connection from 172.18.0.3 on port 1883. +1612455620: Sending CONNACK to 172.18.0.3 (0, 5) +1612455620: Socket error on client , disconnecting. +1612455640: New connection from 172.18.0.3 on port 1883. +1612455640: Sending CONNACK to 172.18.0.3 (0, 5) +1612455640: Socket error on client , disconnecting. +1612455660: New connection from 172.18.0.3 on port 1883. +1612455660: Sending CONNACK to 172.18.0.3 (0, 5) +1612455660: Socket error on client , disconnecting. +1612455680: New connection from 172.18.0.3 on port 1883. +1612455680: Sending CONNACK to 172.18.0.3 (0, 5) +1612455680: Socket error on client , disconnecting. +1612455700: New connection from 172.18.0.3 on port 1883. +1612455700: Sending CONNACK to 172.18.0.3 (0, 5) +1612455700: Socket error on client , disconnecting. +1612455720: New connection from 172.18.0.3 on port 1883. +1612455720: Sending CONNACK to 172.18.0.3 (0, 5) +1612455720: Socket error on client , disconnecting. +1612455740: New connection from 172.18.0.3 on port 1883. +1612455740: Sending CONNACK to 172.18.0.3 (0, 5) +1612455740: Socket error on client , disconnecting. +1612455760: New connection from 172.18.0.3 on port 1883. +1612455760: Sending CONNACK to 172.18.0.3 (0, 5) +1612455760: Socket error on client , disconnecting. +1612455780: New connection from 172.18.0.3 on port 1883. +1612455780: Sending CONNACK to 172.18.0.3 (0, 5) +1612455780: Socket error on client , disconnecting. +1612455800: New connection from 172.18.0.3 on port 1883. +1612455800: Sending CONNACK to 172.18.0.3 (0, 5) +1612455800: Socket error on client , disconnecting. +1612455820: New connection from 172.18.0.3 on port 1883. +1612455820: Sending CONNACK to 172.18.0.3 (0, 5) +1612455820: Socket error on client , disconnecting. +1612455840: New connection from 172.18.0.3 on port 1883. +1612455840: Sending CONNACK to 172.18.0.3 (0, 5) +1612455840: Socket error on client , disconnecting. +1612455860: New connection from 172.18.0.3 on port 1883. +1612455860: Sending CONNACK to 172.18.0.3 (0, 5) +1612455860: Socket error on client , disconnecting. +1612455880: New connection from 172.18.0.3 on port 1883. +1612455880: Sending CONNACK to 172.18.0.3 (0, 5) +1612455880: Socket error on client , disconnecting. +1612455900: New connection from 172.18.0.3 on port 1883. +1612455900: Sending CONNACK to 172.18.0.3 (0, 5) +1612455900: Socket error on client , disconnecting. +1612455920: New connection from 172.18.0.3 on port 1883. +1612455920: Sending CONNACK to 172.18.0.3 (0, 5) +1612455920: Socket error on client , disconnecting. +1612455940: New connection from 172.18.0.3 on port 1883. +1612455940: Sending CONNACK to 172.18.0.3 (0, 5) +1612455940: Socket error on client , disconnecting. +1612455960: New connection from 172.18.0.3 on port 1883. +1612455960: Sending CONNACK to 172.18.0.3 (0, 5) +1612455960: Socket error on client , disconnecting. +1612455980: New connection from 172.18.0.3 on port 1883. +1612455980: Sending CONNACK to 172.18.0.3 (0, 5) +1612455980: Socket error on client , disconnecting. +1612456000: New connection from 172.18.0.3 on port 1883. +1612456000: Sending CONNACK to 172.18.0.3 (0, 5) +1612456000: Socket error on client , disconnecting. +1612456020: New connection from 172.18.0.3 on port 1883. +1612456020: Sending CONNACK to 172.18.0.3 (0, 5) +1612456020: Socket error on client , disconnecting. +1612456040: New connection from 172.18.0.3 on port 1883. +1612456040: Sending CONNACK to 172.18.0.3 (0, 5) +1612456040: Socket error on client , disconnecting. +1612456060: New connection from 172.18.0.3 on port 1883. +1612456060: Sending CONNACK to 172.18.0.3 (0, 5) +1612456060: Socket error on client , disconnecting. +1612456080: New connection from 172.18.0.3 on port 1883. +1612456080: Sending CONNACK to 172.18.0.3 (0, 5) +1612456080: Socket error on client , disconnecting. +1612456100: New connection from 172.18.0.3 on port 1883. +1612456100: Sending CONNACK to 172.18.0.3 (0, 5) +1612456100: Socket error on client , disconnecting. +1612456120: New connection from 172.18.0.3 on port 1883. +1612456120: Sending CONNACK to 172.18.0.3 (0, 5) +1612456120: Socket error on client , disconnecting. +1612456140: New connection from 172.18.0.3 on port 1883. +1612456140: Sending CONNACK to 172.18.0.3 (0, 5) +1612456140: Socket error on client , disconnecting. +1612456160: New connection from 172.18.0.3 on port 1883. +1612456160: Sending CONNACK to 172.18.0.3 (0, 5) +1612456160: Socket error on client , disconnecting. +1612456180: New connection from 172.18.0.3 on port 1883. +1612456180: Sending CONNACK to 172.18.0.3 (0, 5) +1612456180: Socket error on client , disconnecting. +1612456200: New connection from 172.18.0.3 on port 1883. +1612456200: Sending CONNACK to 172.18.0.3 (0, 5) +1612456200: Socket error on client , disconnecting. +1612456220: New connection from 172.18.0.3 on port 1883. +1612456220: Sending CONNACK to 172.18.0.3 (0, 5) +1612456220: Socket error on client , disconnecting. +1612456240: New connection from 172.18.0.3 on port 1883. +1612456240: Sending CONNACK to 172.18.0.3 (0, 5) +1612456240: Socket error on client , disconnecting. +1612456260: New connection from 172.18.0.3 on port 1883. +1612456260: Sending CONNACK to 172.18.0.3 (0, 5) +1612456260: Socket error on client , disconnecting. +1612456280: New connection from 172.18.0.3 on port 1883. +1612456280: Sending CONNACK to 172.18.0.3 (0, 5) +1612456280: Socket error on client , disconnecting. +1612456300: New connection from 172.18.0.3 on port 1883. +1612456300: Sending CONNACK to 172.18.0.3 (0, 5) +1612456300: Socket error on client , disconnecting. +1612456320: New connection from 172.18.0.3 on port 1883. +1612456320: Sending CONNACK to 172.18.0.3 (0, 5) +1612456320: Socket error on client , disconnecting. +1612456340: New connection from 172.18.0.3 on port 1883. +1612456340: Sending CONNACK to 172.18.0.3 (0, 5) +1612456340: Socket error on client , disconnecting. +1612456360: New connection from 172.18.0.3 on port 1883. +1612456360: Sending CONNACK to 172.18.0.3 (0, 5) +1612456360: Socket error on client , disconnecting. +1612456380: New connection from 172.18.0.3 on port 1883. +1612456380: Sending CONNACK to 172.18.0.3 (0, 5) +1612456380: Socket error on client , disconnecting. +1612456400: New connection from 172.18.0.3 on port 1883. +1612456400: Sending CONNACK to 172.18.0.3 (0, 5) +1612456400: Socket error on client , disconnecting. +1612456420: New connection from 172.18.0.3 on port 1883. +1612456420: Sending CONNACK to 172.18.0.3 (0, 5) +1612456420: Socket error on client , disconnecting. +1612456440: New connection from 172.18.0.3 on port 1883. +1612456440: Sending CONNACK to 172.18.0.3 (0, 5) +1612456440: Socket error on client , disconnecting. +1612456460: New connection from 172.18.0.3 on port 1883. +1612456460: Sending CONNACK to 172.18.0.3 (0, 5) +1612456460: Socket error on client , disconnecting. +1612456480: New connection from 172.18.0.3 on port 1883. +1612456480: Sending CONNACK to 172.18.0.3 (0, 5) +1612456480: Socket error on client , disconnecting. +1612456500: New connection from 172.18.0.3 on port 1883. +1612456500: Sending CONNACK to 172.18.0.3 (0, 5) +1612456500: Socket error on client , disconnecting. +1612456520: New connection from 172.18.0.3 on port 1883. +1612456520: Sending CONNACK to 172.18.0.3 (0, 5) +1612456520: Socket error on client , disconnecting. +1612456540: New connection from 172.18.0.3 on port 1883. +1612456540: Sending CONNACK to 172.18.0.3 (0, 5) +1612456540: Socket error on client , disconnecting. +1612456560: New connection from 172.18.0.3 on port 1883. +1612456560: Sending CONNACK to 172.18.0.3 (0, 5) +1612456560: Socket error on client , disconnecting. +1612456580: New connection from 172.18.0.3 on port 1883. +1612456580: Sending CONNACK to 172.18.0.3 (0, 5) +1612456580: Socket error on client , disconnecting. +1612456600: New connection from 172.18.0.3 on port 1883. +1612456600: Sending CONNACK to 172.18.0.3 (0, 5) +1612456600: Socket error on client , disconnecting. +1612456620: New connection from 172.18.0.3 on port 1883. +1612456620: Sending CONNACK to 172.18.0.3 (0, 5) +1612456620: Socket error on client , disconnecting. +1612456640: New connection from 172.18.0.3 on port 1883. +1612456640: Sending CONNACK to 172.18.0.3 (0, 5) +1612456640: Socket error on client , disconnecting. +1612456660: New connection from 172.18.0.3 on port 1883. +1612456660: Sending CONNACK to 172.18.0.3 (0, 5) +1612456660: Socket error on client , disconnecting. +1612456680: New connection from 172.18.0.3 on port 1883. +1612456680: Sending CONNACK to 172.18.0.3 (0, 5) +1612456680: Socket error on client , disconnecting. +1612456700: New connection from 172.18.0.3 on port 1883. +1612456700: Sending CONNACK to 172.18.0.3 (0, 5) +1612456700: Socket error on client , disconnecting. +1612456720: New connection from 172.18.0.3 on port 1883. +1612456720: Sending CONNACK to 172.18.0.3 (0, 5) +1612456720: Socket error on client , disconnecting. +1612456740: New connection from 172.18.0.3 on port 1883. +1612456740: Sending CONNACK to 172.18.0.3 (0, 5) +1612456740: Socket error on client , disconnecting. +1612456760: New connection from 172.18.0.3 on port 1883. +1612456760: Sending CONNACK to 172.18.0.3 (0, 5) +1612456760: Socket error on client , disconnecting. +1612456780: New connection from 172.18.0.3 on port 1883. +1612456780: Sending CONNACK to 172.18.0.3 (0, 5) +1612456780: Socket error on client , disconnecting. +1612456800: New connection from 172.18.0.3 on port 1883. +1612456800: Sending CONNACK to 172.18.0.3 (0, 5) +1612456800: Socket error on client , disconnecting. +1612456820: New connection from 172.18.0.3 on port 1883. +1612456820: Sending CONNACK to 172.18.0.3 (0, 5) +1612456820: Socket error on client , disconnecting. +1612456840: New connection from 172.18.0.3 on port 1883. +1612456840: Sending CONNACK to 172.18.0.3 (0, 5) +1612456840: Socket error on client , disconnecting. +1612456860: New connection from 172.18.0.3 on port 1883. +1612456860: Sending CONNACK to 172.18.0.3 (0, 5) +1612456860: Socket error on client , disconnecting. +1612456880: New connection from 172.18.0.3 on port 1883. +1612456880: Sending CONNACK to 172.18.0.3 (0, 5) +1612456880: Socket error on client , disconnecting. +1612456900: New connection from 172.18.0.3 on port 1883. +1612456900: Sending CONNACK to 172.18.0.3 (0, 5) +1612456900: Socket error on client , disconnecting. +1612456920: New connection from 172.18.0.3 on port 1883. +1612456920: Sending CONNACK to 172.18.0.3 (0, 5) +1612456920: Socket error on client , disconnecting. +1612456940: New connection from 172.18.0.3 on port 1883. +1612456940: Sending CONNACK to 172.18.0.3 (0, 5) +1612456940: Socket error on client , disconnecting. +1612456960: New connection from 172.18.0.3 on port 1883. +1612456960: Sending CONNACK to 172.18.0.3 (0, 5) +1612456960: Socket error on client , disconnecting. +1612456980: New connection from 172.18.0.3 on port 1883. +1612456980: Sending CONNACK to 172.18.0.3 (0, 5) +1612456980: Socket error on client , disconnecting. +1612457000: New connection from 172.18.0.3 on port 1883. +1612457000: Sending CONNACK to 172.18.0.3 (0, 5) +1612457000: Socket error on client , disconnecting. +1612457020: New connection from 172.18.0.3 on port 1883. +1612457020: Sending CONNACK to 172.18.0.3 (0, 5) +1612457020: Socket error on client , disconnecting. +1612457040: New connection from 172.18.0.3 on port 1883. +1612457040: Sending CONNACK to 172.18.0.3 (0, 5) +1612457040: Socket error on client , disconnecting. +1612457060: New connection from 172.18.0.3 on port 1883. +1612457060: Sending CONNACK to 172.18.0.3 (0, 5) +1612457060: Socket error on client , disconnecting. +1612457080: New connection from 172.18.0.3 on port 1883. +1612457080: Sending CONNACK to 172.18.0.3 (0, 5) +1612457080: Socket error on client , disconnecting. +1612457100: New connection from 172.18.0.3 on port 1883. +1612457100: Sending CONNACK to 172.18.0.3 (0, 5) +1612457100: Socket error on client , disconnecting. +1612457120: New connection from 172.18.0.3 on port 1883. +1612457120: Sending CONNACK to 172.18.0.3 (0, 5) +1612457120: Socket error on client , disconnecting. +1612457140: New connection from 172.18.0.3 on port 1883. +1612457140: Sending CONNACK to 172.18.0.3 (0, 5) +1612457140: Socket error on client , disconnecting. +1612457160: New connection from 172.18.0.3 on port 1883. +1612457160: Sending CONNACK to 172.18.0.3 (0, 5) +1612457160: Socket error on client , disconnecting. +1612457180: New connection from 172.18.0.3 on port 1883. +1612457180: Sending CONNACK to 172.18.0.3 (0, 5) +1612457180: Socket error on client , disconnecting. +1612457200: New connection from 172.18.0.3 on port 1883. +1612457200: Sending CONNACK to 172.18.0.3 (0, 5) +1612457200: Socket error on client , disconnecting. +1612457220: New connection from 172.18.0.3 on port 1883. +1612457220: Sending CONNACK to 172.18.0.3 (0, 5) +1612457220: Socket error on client , disconnecting. +1612457223: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612457223: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612457223: Error: Permission denied. +1612457240: New connection from 172.18.0.3 on port 1883. +1612457240: Sending CONNACK to 172.18.0.3 (0, 5) +1612457240: Socket error on client , disconnecting. +1612457260: New connection from 172.18.0.3 on port 1883. +1612457260: Sending CONNACK to 172.18.0.3 (0, 5) +1612457260: Socket error on client , disconnecting. +1612457280: New connection from 172.18.0.3 on port 1883. +1612457280: Sending CONNACK to 172.18.0.3 (0, 5) +1612457280: Socket error on client , disconnecting. +1612457300: New connection from 172.18.0.3 on port 1883. +1612457300: Sending CONNACK to 172.18.0.3 (0, 5) +1612457300: Socket error on client , disconnecting. +1612457320: New connection from 172.18.0.3 on port 1883. +1612457320: Sending CONNACK to 172.18.0.3 (0, 5) +1612457320: Socket error on client , disconnecting. +1612457340: New connection from 172.18.0.3 on port 1883. +1612457340: Sending CONNACK to 172.18.0.3 (0, 5) +1612457340: Socket error on client , disconnecting. +1612457360: New connection from 172.18.0.3 on port 1883. +1612457360: Sending CONNACK to 172.18.0.3 (0, 5) +1612457360: Socket error on client , disconnecting. +1612457380: New connection from 172.18.0.3 on port 1883. +1612457380: Sending CONNACK to 172.18.0.3 (0, 5) +1612457380: Socket error on client , disconnecting. +1612457400: New connection from 172.18.0.3 on port 1883. +1612457400: Sending CONNACK to 172.18.0.3 (0, 5) +1612457400: Socket error on client , disconnecting. +1612457420: New connection from 172.18.0.3 on port 1883. +1612457420: Sending CONNACK to 172.18.0.3 (0, 5) +1612457420: Socket error on client , disconnecting. +1612457440: New connection from 172.18.0.3 on port 1883. +1612457440: Sending CONNACK to 172.18.0.3 (0, 5) +1612457440: Socket error on client , disconnecting. +1612457460: New connection from 172.18.0.3 on port 1883. +1612457460: Sending CONNACK to 172.18.0.3 (0, 5) +1612457460: Socket error on client , disconnecting. +1612457480: New connection from 172.18.0.3 on port 1883. +1612457480: Sending CONNACK to 172.18.0.3 (0, 5) +1612457480: Socket error on client , disconnecting. +1612457500: New connection from 172.18.0.3 on port 1883. +1612457500: Sending CONNACK to 172.18.0.3 (0, 5) +1612457500: Socket error on client , disconnecting. +1612457520: New connection from 172.18.0.3 on port 1883. +1612457520: Sending CONNACK to 172.18.0.3 (0, 5) +1612457520: Socket error on client , disconnecting. +1612457540: New connection from 172.18.0.3 on port 1883. +1612457540: Sending CONNACK to 172.18.0.3 (0, 5) +1612457540: Socket error on client , disconnecting. +1612457560: New connection from 172.18.0.3 on port 1883. +1612457560: Sending CONNACK to 172.18.0.3 (0, 5) +1612457560: Socket error on client , disconnecting. +1612457580: New connection from 172.18.0.3 on port 1883. +1612457580: Sending CONNACK to 172.18.0.3 (0, 5) +1612457580: Socket error on client , disconnecting. +1612457600: New connection from 172.18.0.3 on port 1883. +1612457600: Sending CONNACK to 172.18.0.3 (0, 5) +1612457600: Socket error on client , disconnecting. +1612457620: New connection from 172.18.0.3 on port 1883. +1612457620: Sending CONNACK to 172.18.0.3 (0, 5) +1612457620: Socket error on client , disconnecting. +1612457640: New connection from 172.18.0.3 on port 1883. +1612457640: Sending CONNACK to 172.18.0.3 (0, 5) +1612457640: Socket error on client , disconnecting. +1612457660: New connection from 172.18.0.3 on port 1883. +1612457660: Sending CONNACK to 172.18.0.3 (0, 5) +1612457660: Socket error on client , disconnecting. +1612457680: New connection from 172.18.0.3 on port 1883. +1612457680: Sending CONNACK to 172.18.0.3 (0, 5) +1612457680: Socket error on client , disconnecting. +1612457700: New connection from 172.18.0.3 on port 1883. +1612457700: Sending CONNACK to 172.18.0.3 (0, 5) +1612457700: Socket error on client , disconnecting. +1612457720: New connection from 172.18.0.3 on port 1883. +1612457720: Sending CONNACK to 172.18.0.3 (0, 5) +1612457720: Socket error on client , disconnecting. +1612457740: New connection from 172.18.0.3 on port 1883. +1612457740: Sending CONNACK to 172.18.0.3 (0, 5) +1612457740: Socket error on client , disconnecting. +1612457760: New connection from 172.18.0.3 on port 1883. +1612457760: Sending CONNACK to 172.18.0.3 (0, 5) +1612457760: Socket error on client , disconnecting. +1612457780: New connection from 172.18.0.3 on port 1883. +1612457780: Sending CONNACK to 172.18.0.3 (0, 5) +1612457780: Socket error on client , disconnecting. +1612457800: New connection from 172.18.0.3 on port 1883. +1612457800: Sending CONNACK to 172.18.0.3 (0, 5) +1612457800: Socket error on client , disconnecting. +1612457820: New connection from 172.18.0.3 on port 1883. +1612457820: Sending CONNACK to 172.18.0.3 (0, 5) +1612457820: Socket error on client , disconnecting. +1612457840: New connection from 172.18.0.3 on port 1883. +1612457840: Sending CONNACK to 172.18.0.3 (0, 5) +1612457840: Socket error on client , disconnecting. +1612457860: New connection from 172.18.0.3 on port 1883. +1612457860: Sending CONNACK to 172.18.0.3 (0, 5) +1612457860: Socket error on client , disconnecting. +1612457880: New connection from 172.18.0.3 on port 1883. +1612457880: Sending CONNACK to 172.18.0.3 (0, 5) +1612457880: Socket error on client , disconnecting. +1612457900: New connection from 172.18.0.3 on port 1883. +1612457900: Sending CONNACK to 172.18.0.3 (0, 5) +1612457900: Socket error on client , disconnecting. +1612457920: New connection from 172.18.0.3 on port 1883. +1612457920: Sending CONNACK to 172.18.0.3 (0, 5) +1612457920: Socket error on client , disconnecting. +1612457940: New connection from 172.18.0.3 on port 1883. +1612457940: Sending CONNACK to 172.18.0.3 (0, 5) +1612457940: Socket error on client , disconnecting. +1612457960: New connection from 172.18.0.3 on port 1883. +1612457960: Sending CONNACK to 172.18.0.3 (0, 5) +1612457960: Socket error on client , disconnecting. +1612457980: New connection from 172.18.0.3 on port 1883. +1612457980: Sending CONNACK to 172.18.0.3 (0, 5) +1612457980: Socket error on client , disconnecting. +1612458000: New connection from 172.18.0.3 on port 1883. +1612458000: Sending CONNACK to 172.18.0.3 (0, 5) +1612458000: Socket error on client , disconnecting. +1612458020: New connection from 172.18.0.3 on port 1883. +1612458020: Sending CONNACK to 172.18.0.3 (0, 5) +1612458020: Socket error on client , disconnecting. +1612458040: New connection from 172.18.0.3 on port 1883. +1612458040: Sending CONNACK to 172.18.0.3 (0, 5) +1612458040: Socket error on client , disconnecting. +1612458060: New connection from 172.18.0.3 on port 1883. +1612458060: Sending CONNACK to 172.18.0.3 (0, 5) +1612458060: Socket error on client , disconnecting. +1612458080: New connection from 172.18.0.3 on port 1883. +1612458080: Sending CONNACK to 172.18.0.3 (0, 5) +1612458080: Socket error on client , disconnecting. +1612458100: New connection from 172.18.0.3 on port 1883. +1612458100: Sending CONNACK to 172.18.0.3 (0, 5) +1612458100: Socket error on client , disconnecting. +1612458120: New connection from 172.18.0.3 on port 1883. +1612458120: Sending CONNACK to 172.18.0.3 (0, 5) +1612458120: Socket error on client , disconnecting. +1612458140: New connection from 172.18.0.3 on port 1883. +1612458140: Sending CONNACK to 172.18.0.3 (0, 5) +1612458140: Socket error on client , disconnecting. +1612458160: New connection from 172.18.0.3 on port 1883. +1612458160: Sending CONNACK to 172.18.0.3 (0, 5) +1612458160: Socket error on client , disconnecting. +1612458180: New connection from 172.18.0.3 on port 1883. +1612458180: Sending CONNACK to 172.18.0.3 (0, 5) +1612458180: Socket error on client , disconnecting. +1612458200: New connection from 172.18.0.3 on port 1883. +1612458200: Sending CONNACK to 172.18.0.3 (0, 5) +1612458200: Socket error on client , disconnecting. +1612458220: New connection from 172.18.0.3 on port 1883. +1612458220: Sending CONNACK to 172.18.0.3 (0, 5) +1612458220: Socket error on client , disconnecting. +1612458240: New connection from 172.18.0.3 on port 1883. +1612458240: Sending CONNACK to 172.18.0.3 (0, 5) +1612458240: Socket error on client , disconnecting. +1612458260: New connection from 172.18.0.3 on port 1883. +1612458260: Sending CONNACK to 172.18.0.3 (0, 5) +1612458260: Socket error on client , disconnecting. +1612458280: New connection from 172.18.0.3 on port 1883. +1612458280: Sending CONNACK to 172.18.0.3 (0, 5) +1612458280: Socket error on client , disconnecting. +1612458300: New connection from 172.18.0.3 on port 1883. +1612458300: Sending CONNACK to 172.18.0.3 (0, 5) +1612458300: Socket error on client , disconnecting. +1612458320: New connection from 172.18.0.3 on port 1883. +1612458320: Sending CONNACK to 172.18.0.3 (0, 5) +1612458320: Socket error on client , disconnecting. +1612458340: New connection from 172.18.0.3 on port 1883. +1612458340: Sending CONNACK to 172.18.0.3 (0, 5) +1612458340: Socket error on client , disconnecting. +1612458360: New connection from 172.18.0.3 on port 1883. +1612458360: Sending CONNACK to 172.18.0.3 (0, 5) +1612458360: Socket error on client , disconnecting. +1612458380: New connection from 172.18.0.3 on port 1883. +1612458380: Sending CONNACK to 172.18.0.3 (0, 5) +1612458380: Socket error on client , disconnecting. +1612458400: New connection from 172.18.0.3 on port 1883. +1612458400: Sending CONNACK to 172.18.0.3 (0, 5) +1612458400: Socket error on client , disconnecting. +1612458420: New connection from 172.18.0.3 on port 1883. +1612458420: Sending CONNACK to 172.18.0.3 (0, 5) +1612458420: Socket error on client , disconnecting. +1612458440: New connection from 172.18.0.3 on port 1883. +1612458440: Sending CONNACK to 172.18.0.3 (0, 5) +1612458440: Socket error on client , disconnecting. +1612458460: New connection from 172.18.0.3 on port 1883. +1612458460: Sending CONNACK to 172.18.0.3 (0, 5) +1612458460: Socket error on client , disconnecting. +1612458480: New connection from 172.18.0.3 on port 1883. +1612458480: Sending CONNACK to 172.18.0.3 (0, 5) +1612458480: Socket error on client , disconnecting. +1612458500: New connection from 172.18.0.3 on port 1883. +1612458500: Sending CONNACK to 172.18.0.3 (0, 5) +1612458500: Socket error on client , disconnecting. +1612458520: New connection from 172.18.0.3 on port 1883. +1612458520: Sending CONNACK to 172.18.0.3 (0, 5) +1612458520: Socket error on client , disconnecting. +1612458540: New connection from 172.18.0.3 on port 1883. +1612458540: Sending CONNACK to 172.18.0.3 (0, 5) +1612458540: Socket error on client , disconnecting. +1612458560: New connection from 172.18.0.3 on port 1883. +1612458560: Sending CONNACK to 172.18.0.3 (0, 5) +1612458560: Socket error on client , disconnecting. +1612458580: New connection from 172.18.0.3 on port 1883. +1612458580: Sending CONNACK to 172.18.0.3 (0, 5) +1612458580: Socket error on client , disconnecting. +1612458600: New connection from 172.18.0.3 on port 1883. +1612458600: Sending CONNACK to 172.18.0.3 (0, 5) +1612458600: Socket error on client , disconnecting. +1612458620: New connection from 172.18.0.3 on port 1883. +1612458620: Sending CONNACK to 172.18.0.3 (0, 5) +1612458620: Socket error on client , disconnecting. +1612458640: New connection from 172.18.0.3 on port 1883. +1612458640: Sending CONNACK to 172.18.0.3 (0, 5) +1612458640: Socket error on client , disconnecting. +1612458660: New connection from 172.18.0.3 on port 1883. +1612458660: Sending CONNACK to 172.18.0.3 (0, 5) +1612458660: Socket error on client , disconnecting. +1612458680: New connection from 172.18.0.3 on port 1883. +1612458680: Sending CONNACK to 172.18.0.3 (0, 5) +1612458680: Socket error on client , disconnecting. +1612458700: New connection from 172.18.0.3 on port 1883. +1612458700: Sending CONNACK to 172.18.0.3 (0, 5) +1612458700: Socket error on client , disconnecting. +1612458720: New connection from 172.18.0.3 on port 1883. +1612458720: Sending CONNACK to 172.18.0.3 (0, 5) +1612458720: Socket error on client , disconnecting. +1612458740: New connection from 172.18.0.3 on port 1883. +1612458740: Sending CONNACK to 172.18.0.3 (0, 5) +1612458740: Socket error on client , disconnecting. +1612458760: New connection from 172.18.0.3 on port 1883. +1612458760: Sending CONNACK to 172.18.0.3 (0, 5) +1612458760: Socket error on client , disconnecting. +1612458780: New connection from 172.18.0.3 on port 1883. +1612458780: Sending CONNACK to 172.18.0.3 (0, 5) +1612458780: Socket error on client , disconnecting. +1612458800: New connection from 172.18.0.3 on port 1883. +1612458800: Sending CONNACK to 172.18.0.3 (0, 5) +1612458800: Socket error on client , disconnecting. +1612458820: New connection from 172.18.0.3 on port 1883. +1612458820: Sending CONNACK to 172.18.0.3 (0, 5) +1612458820: Socket error on client , disconnecting. +1612458840: New connection from 172.18.0.3 on port 1883. +1612458840: Sending CONNACK to 172.18.0.3 (0, 5) +1612458840: Socket error on client , disconnecting. +1612458860: New connection from 172.18.0.3 on port 1883. +1612458860: Sending CONNACK to 172.18.0.3 (0, 5) +1612458860: Socket error on client , disconnecting. +1612458880: New connection from 172.18.0.3 on port 1883. +1612458880: Sending CONNACK to 172.18.0.3 (0, 5) +1612458880: Socket error on client , disconnecting. +1612458900: New connection from 172.18.0.3 on port 1883. +1612458900: Sending CONNACK to 172.18.0.3 (0, 5) +1612458900: Socket error on client , disconnecting. +1612458920: New connection from 172.18.0.3 on port 1883. +1612458920: Sending CONNACK to 172.18.0.3 (0, 5) +1612458920: Socket error on client , disconnecting. +1612458940: New connection from 172.18.0.3 on port 1883. +1612458940: Sending CONNACK to 172.18.0.3 (0, 5) +1612458940: Socket error on client , disconnecting. +1612458960: New connection from 172.18.0.3 on port 1883. +1612458960: Sending CONNACK to 172.18.0.3 (0, 5) +1612458960: Socket error on client , disconnecting. +1612458980: New connection from 172.18.0.3 on port 1883. +1612458980: Sending CONNACK to 172.18.0.3 (0, 5) +1612458980: Socket error on client , disconnecting. +1612459000: New connection from 172.18.0.3 on port 1883. +1612459000: Sending CONNACK to 172.18.0.3 (0, 5) +1612459000: Socket error on client , disconnecting. +1612459020: New connection from 172.18.0.3 on port 1883. +1612459020: Sending CONNACK to 172.18.0.3 (0, 5) +1612459020: Socket error on client , disconnecting. +1612459024: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612459024: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612459024: Error: Permission denied. +1612459040: New connection from 172.18.0.3 on port 1883. +1612459040: Sending CONNACK to 172.18.0.3 (0, 5) +1612459040: Socket error on client , disconnecting. +1612459060: New connection from 172.18.0.3 on port 1883. +1612459060: Sending CONNACK to 172.18.0.3 (0, 5) +1612459060: Socket error on client , disconnecting. +1612459080: New connection from 172.18.0.3 on port 1883. +1612459080: Sending CONNACK to 172.18.0.3 (0, 5) +1612459080: Socket error on client , disconnecting. +1612459100: New connection from 172.18.0.3 on port 1883. +1612459100: Sending CONNACK to 172.18.0.3 (0, 5) +1612459100: Socket error on client , disconnecting. +1612459120: New connection from 172.18.0.3 on port 1883. +1612459120: Sending CONNACK to 172.18.0.3 (0, 5) +1612459120: Socket error on client , disconnecting. +1612459140: New connection from 172.18.0.3 on port 1883. +1612459140: Sending CONNACK to 172.18.0.3 (0, 5) +1612459140: Socket error on client , disconnecting. +1612459160: New connection from 172.18.0.3 on port 1883. +1612459160: Sending CONNACK to 172.18.0.3 (0, 5) +1612459160: Socket error on client , disconnecting. +1612459180: New connection from 172.18.0.3 on port 1883. +1612459180: Sending CONNACK to 172.18.0.3 (0, 5) +1612459180: Socket error on client , disconnecting. +1612459200: New connection from 172.18.0.3 on port 1883. +1612459200: Sending CONNACK to 172.18.0.3 (0, 5) +1612459200: Socket error on client , disconnecting. +1612459220: New connection from 172.18.0.3 on port 1883. +1612459220: Sending CONNACK to 172.18.0.3 (0, 5) +1612459220: Socket error on client , disconnecting. +1612459240: New connection from 172.18.0.3 on port 1883. +1612459240: Sending CONNACK to 172.18.0.3 (0, 5) +1612459240: Socket error on client , disconnecting. +1612459260: New connection from 172.18.0.3 on port 1883. +1612459260: Sending CONNACK to 172.18.0.3 (0, 5) +1612459260: Socket error on client , disconnecting. +1612459280: New connection from 172.18.0.3 on port 1883. +1612459280: Sending CONNACK to 172.18.0.3 (0, 5) +1612459280: Socket error on client , disconnecting. +1612459300: New connection from 172.18.0.3 on port 1883. +1612459300: Sending CONNACK to 172.18.0.3 (0, 5) +1612459300: Socket error on client , disconnecting. +1612459320: New connection from 172.18.0.3 on port 1883. +1612459320: Sending CONNACK to 172.18.0.3 (0, 5) +1612459320: Socket error on client , disconnecting. +1612459340: New connection from 172.18.0.3 on port 1883. +1612459340: Sending CONNACK to 172.18.0.3 (0, 5) +1612459340: Socket error on client , disconnecting. +1612459360: New connection from 172.18.0.3 on port 1883. +1612459360: Sending CONNACK to 172.18.0.3 (0, 5) +1612459360: Socket error on client , disconnecting. +1612459380: New connection from 172.18.0.3 on port 1883. +1612459380: Sending CONNACK to 172.18.0.3 (0, 5) +1612459380: Socket error on client , disconnecting. +1612459400: New connection from 172.18.0.3 on port 1883. +1612459400: Sending CONNACK to 172.18.0.3 (0, 5) +1612459400: Socket error on client , disconnecting. +1612459420: New connection from 172.18.0.3 on port 1883. +1612459420: Sending CONNACK to 172.18.0.3 (0, 5) +1612459420: Socket error on client , disconnecting. +1612459440: New connection from 172.18.0.3 on port 1883. +1612459440: Sending CONNACK to 172.18.0.3 (0, 5) +1612459440: Socket error on client , disconnecting. +1612459460: New connection from 172.18.0.3 on port 1883. +1612459460: Sending CONNACK to 172.18.0.3 (0, 5) +1612459460: Socket error on client , disconnecting. +1612459480: New connection from 172.18.0.3 on port 1883. +1612459480: Sending CONNACK to 172.18.0.3 (0, 5) +1612459480: Socket error on client , disconnecting. +1612459500: New connection from 172.18.0.3 on port 1883. +1612459500: Sending CONNACK to 172.18.0.3 (0, 5) +1612459500: Socket error on client , disconnecting. +1612459520: New connection from 172.18.0.3 on port 1883. +1612459520: Sending CONNACK to 172.18.0.3 (0, 5) +1612459520: Socket error on client , disconnecting. +1612459540: New connection from 172.18.0.3 on port 1883. +1612459540: Sending CONNACK to 172.18.0.3 (0, 5) +1612459540: Socket error on client , disconnecting. +1612459560: New connection from 172.18.0.3 on port 1883. +1612459560: Sending CONNACK to 172.18.0.3 (0, 5) +1612459560: Socket error on client , disconnecting. +1612459580: New connection from 172.18.0.3 on port 1883. +1612459580: Sending CONNACK to 172.18.0.3 (0, 5) +1612459580: Socket error on client , disconnecting. +1612459600: New connection from 172.18.0.3 on port 1883. +1612459600: Sending CONNACK to 172.18.0.3 (0, 5) +1612459600: Socket error on client , disconnecting. +1612459620: New connection from 172.18.0.3 on port 1883. +1612459620: Sending CONNACK to 172.18.0.3 (0, 5) +1612459620: Socket error on client , disconnecting. +1612459640: New connection from 172.18.0.3 on port 1883. +1612459640: Sending CONNACK to 172.18.0.3 (0, 5) +1612459640: Socket error on client , disconnecting. +1612459660: New connection from 172.18.0.3 on port 1883. +1612459660: Sending CONNACK to 172.18.0.3 (0, 5) +1612459660: Socket error on client , disconnecting. +1612459680: New connection from 172.18.0.3 on port 1883. +1612459680: Sending CONNACK to 172.18.0.3 (0, 5) +1612459680: Socket error on client , disconnecting. +1612459700: New connection from 172.18.0.3 on port 1883. +1612459700: Sending CONNACK to 172.18.0.3 (0, 5) +1612459700: Socket error on client , disconnecting. +1612459720: New connection from 172.18.0.3 on port 1883. +1612459720: Sending CONNACK to 172.18.0.3 (0, 5) +1612459720: Socket error on client , disconnecting. +1612459740: New connection from 172.18.0.3 on port 1883. +1612459740: Sending CONNACK to 172.18.0.3 (0, 5) +1612459740: Socket error on client , disconnecting. +1612459760: New connection from 172.18.0.3 on port 1883. +1612459760: Sending CONNACK to 172.18.0.3 (0, 5) +1612459760: Socket error on client , disconnecting. +1612459780: New connection from 172.18.0.3 on port 1883. +1612459780: Sending CONNACK to 172.18.0.3 (0, 5) +1612459780: Socket error on client , disconnecting. +1612459800: New connection from 172.18.0.3 on port 1883. +1612459800: Sending CONNACK to 172.18.0.3 (0, 5) +1612459800: Socket error on client , disconnecting. +1612459820: New connection from 172.18.0.3 on port 1883. +1612459820: Sending CONNACK to 172.18.0.3 (0, 5) +1612459820: Socket error on client , disconnecting. +1612459840: New connection from 172.18.0.3 on port 1883. +1612459840: Sending CONNACK to 172.18.0.3 (0, 5) +1612459840: Socket error on client , disconnecting. +1612459860: New connection from 172.18.0.3 on port 1883. +1612459860: Sending CONNACK to 172.18.0.3 (0, 5) +1612459860: Socket error on client , disconnecting. +1612459880: New connection from 172.18.0.3 on port 1883. +1612459880: Sending CONNACK to 172.18.0.3 (0, 5) +1612459880: Socket error on client , disconnecting. +1612459900: New connection from 172.18.0.3 on port 1883. +1612459900: Sending CONNACK to 172.18.0.3 (0, 5) +1612459900: Socket error on client , disconnecting. +1612459920: New connection from 172.18.0.3 on port 1883. +1612459920: Sending CONNACK to 172.18.0.3 (0, 5) +1612459920: Socket error on client , disconnecting. +1612459940: New connection from 172.18.0.3 on port 1883. +1612459940: Sending CONNACK to 172.18.0.3 (0, 5) +1612459940: Socket error on client , disconnecting. +1612459960: New connection from 172.18.0.3 on port 1883. +1612459960: Sending CONNACK to 172.18.0.3 (0, 5) +1612459960: Socket error on client , disconnecting. +1612459980: New connection from 172.18.0.3 on port 1883. +1612459980: Sending CONNACK to 172.18.0.3 (0, 5) +1612459980: Socket error on client , disconnecting. +1612460000: New connection from 172.18.0.3 on port 1883. +1612460000: Sending CONNACK to 172.18.0.3 (0, 5) +1612460000: Socket error on client , disconnecting. +1612460020: New connection from 172.18.0.3 on port 1883. +1612460020: Sending CONNACK to 172.18.0.3 (0, 5) +1612460020: Socket error on client , disconnecting. +1612460040: New connection from 172.18.0.3 on port 1883. +1612460040: Sending CONNACK to 172.18.0.3 (0, 5) +1612460040: Socket error on client , disconnecting. +1612460060: New connection from 172.18.0.3 on port 1883. +1612460060: Sending CONNACK to 172.18.0.3 (0, 5) +1612460060: Socket error on client , disconnecting. +1612460080: New connection from 172.18.0.3 on port 1883. +1612460080: Sending CONNACK to 172.18.0.3 (0, 5) +1612460080: Socket error on client , disconnecting. +1612460100: New connection from 172.18.0.3 on port 1883. +1612460100: Sending CONNACK to 172.18.0.3 (0, 5) +1612460100: Socket error on client , disconnecting. +1612460120: New connection from 172.18.0.3 on port 1883. +1612460120: Sending CONNACK to 172.18.0.3 (0, 5) +1612460120: Socket error on client , disconnecting. +1612460140: New connection from 172.18.0.3 on port 1883. +1612460140: Sending CONNACK to 172.18.0.3 (0, 5) +1612460140: Socket error on client , disconnecting. +1612460160: New connection from 172.18.0.3 on port 1883. +1612460160: Sending CONNACK to 172.18.0.3 (0, 5) +1612460160: Socket error on client , disconnecting. +1612460180: New connection from 172.18.0.3 on port 1883. +1612460180: Sending CONNACK to 172.18.0.3 (0, 5) +1612460180: Socket error on client , disconnecting. +1612460200: New connection from 172.18.0.3 on port 1883. +1612460200: Sending CONNACK to 172.18.0.3 (0, 5) +1612460200: Socket error on client , disconnecting. +1612460220: New connection from 172.18.0.3 on port 1883. +1612460220: Sending CONNACK to 172.18.0.3 (0, 5) +1612460220: Socket error on client , disconnecting. +1612460240: New connection from 172.18.0.3 on port 1883. +1612460240: Sending CONNACK to 172.18.0.3 (0, 5) +1612460240: Socket error on client , disconnecting. +1612460260: New connection from 172.18.0.3 on port 1883. +1612460260: Sending CONNACK to 172.18.0.3 (0, 5) +1612460260: Socket error on client , disconnecting. +1612460280: New connection from 172.18.0.3 on port 1883. +1612460280: Sending CONNACK to 172.18.0.3 (0, 5) +1612460280: Socket error on client , disconnecting. +1612460300: New connection from 172.18.0.3 on port 1883. +1612460300: Sending CONNACK to 172.18.0.3 (0, 5) +1612460300: Socket error on client , disconnecting. +1612460320: New connection from 172.18.0.3 on port 1883. +1612460320: Sending CONNACK to 172.18.0.3 (0, 5) +1612460320: Socket error on client , disconnecting. +1612460340: New connection from 172.18.0.3 on port 1883. +1612460340: Sending CONNACK to 172.18.0.3 (0, 5) +1612460340: Socket error on client , disconnecting. +1612460360: New connection from 172.18.0.3 on port 1883. +1612460360: Sending CONNACK to 172.18.0.3 (0, 5) +1612460360: Socket error on client , disconnecting. +1612460380: New connection from 172.18.0.3 on port 1883. +1612460380: Sending CONNACK to 172.18.0.3 (0, 5) +1612460380: Socket error on client , disconnecting. +1612460400: New connection from 172.18.0.3 on port 1883. +1612460400: Sending CONNACK to 172.18.0.3 (0, 5) +1612460400: Socket error on client , disconnecting. +1612460420: New connection from 172.18.0.3 on port 1883. +1612460420: Sending CONNACK to 172.18.0.3 (0, 5) +1612460420: Socket error on client , disconnecting. +1612460440: New connection from 172.18.0.3 on port 1883. +1612460440: Sending CONNACK to 172.18.0.3 (0, 5) +1612460440: Socket error on client , disconnecting. +1612460460: New connection from 172.18.0.3 on port 1883. +1612460460: Sending CONNACK to 172.18.0.3 (0, 5) +1612460460: Socket error on client , disconnecting. +1612460480: New connection from 172.18.0.3 on port 1883. +1612460480: Sending CONNACK to 172.18.0.3 (0, 5) +1612460480: Socket error on client , disconnecting. +1612460500: New connection from 172.18.0.3 on port 1883. +1612460500: Sending CONNACK to 172.18.0.3 (0, 5) +1612460500: Socket error on client , disconnecting. +1612460520: New connection from 172.18.0.3 on port 1883. +1612460520: Sending CONNACK to 172.18.0.3 (0, 5) +1612460520: Socket error on client , disconnecting. +1612460540: New connection from 172.18.0.3 on port 1883. +1612460540: Sending CONNACK to 172.18.0.3 (0, 5) +1612460540: Socket error on client , disconnecting. +1612460560: New connection from 172.18.0.3 on port 1883. +1612460560: Sending CONNACK to 172.18.0.3 (0, 5) +1612460560: Socket error on client , disconnecting. +1612460580: New connection from 172.18.0.3 on port 1883. +1612460580: Sending CONNACK to 172.18.0.3 (0, 5) +1612460580: Socket error on client , disconnecting. +1612460600: New connection from 172.18.0.3 on port 1883. +1612460600: Sending CONNACK to 172.18.0.3 (0, 5) +1612460600: Socket error on client , disconnecting. +1612460620: New connection from 172.18.0.3 on port 1883. +1612460620: Sending CONNACK to 172.18.0.3 (0, 5) +1612460620: Socket error on client , disconnecting. +1612460640: New connection from 172.18.0.3 on port 1883. +1612460640: Sending CONNACK to 172.18.0.3 (0, 5) +1612460640: Socket error on client , disconnecting. +1612460660: New connection from 172.18.0.3 on port 1883. +1612460660: Sending CONNACK to 172.18.0.3 (0, 5) +1612460660: Socket error on client , disconnecting. +1612460680: New connection from 172.18.0.3 on port 1883. +1612460680: Sending CONNACK to 172.18.0.3 (0, 5) +1612460680: Socket error on client , disconnecting. +1612460700: New connection from 172.18.0.3 on port 1883. +1612460700: Sending CONNACK to 172.18.0.3 (0, 5) +1612460700: Socket error on client , disconnecting. +1612460720: New connection from 172.18.0.3 on port 1883. +1612460720: Sending CONNACK to 172.18.0.3 (0, 5) +1612460720: Socket error on client , disconnecting. +1612460740: New connection from 172.18.0.3 on port 1883. +1612460740: Sending CONNACK to 172.18.0.3 (0, 5) +1612460740: Socket error on client , disconnecting. +1612460760: New connection from 172.18.0.3 on port 1883. +1612460760: Sending CONNACK to 172.18.0.3 (0, 5) +1612460760: Socket error on client , disconnecting. +1612460780: New connection from 172.18.0.3 on port 1883. +1612460780: Sending CONNACK to 172.18.0.3 (0, 5) +1612460780: Socket error on client , disconnecting. +1612460800: New connection from 172.18.0.3 on port 1883. +1612460800: Sending CONNACK to 172.18.0.3 (0, 5) +1612460800: Socket error on client , disconnecting. +1612460820: New connection from 172.18.0.3 on port 1883. +1612460820: Sending CONNACK to 172.18.0.3 (0, 5) +1612460820: Socket error on client , disconnecting. +1612460825: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612460825: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612460825: Error: Permission denied. +1612460840: New connection from 172.18.0.3 on port 1883. +1612460840: Sending CONNACK to 172.18.0.3 (0, 5) +1612460840: Socket error on client , disconnecting. +1612460860: New connection from 172.18.0.3 on port 1883. +1612460860: Sending CONNACK to 172.18.0.3 (0, 5) +1612460860: Socket error on client , disconnecting. +1612460880: New connection from 172.18.0.3 on port 1883. +1612460880: Sending CONNACK to 172.18.0.3 (0, 5) +1612460880: Socket error on client , disconnecting. +1612460900: New connection from 172.18.0.3 on port 1883. +1612460900: Sending CONNACK to 172.18.0.3 (0, 5) +1612460900: Socket error on client , disconnecting. +1612460920: New connection from 172.18.0.3 on port 1883. +1612460920: Sending CONNACK to 172.18.0.3 (0, 5) +1612460920: Socket error on client , disconnecting. +1612460940: New connection from 172.18.0.3 on port 1883. +1612460940: Sending CONNACK to 172.18.0.3 (0, 5) +1612460940: Socket error on client , disconnecting. +1612460960: New connection from 172.18.0.3 on port 1883. +1612460960: Sending CONNACK to 172.18.0.3 (0, 5) +1612460960: Socket error on client , disconnecting. +1612460980: New connection from 172.18.0.3 on port 1883. +1612460980: Sending CONNACK to 172.18.0.3 (0, 5) +1612460980: Socket error on client , disconnecting. +1612461000: New connection from 172.18.0.3 on port 1883. +1612461000: Sending CONNACK to 172.18.0.3 (0, 5) +1612461000: Socket error on client , disconnecting. +1612461020: New connection from 172.18.0.3 on port 1883. +1612461020: Sending CONNACK to 172.18.0.3 (0, 5) +1612461020: Socket error on client , disconnecting. +1612461040: New connection from 172.18.0.3 on port 1883. +1612461040: Sending CONNACK to 172.18.0.3 (0, 5) +1612461040: Socket error on client , disconnecting. +1612461060: New connection from 172.18.0.3 on port 1883. +1612461060: Sending CONNACK to 172.18.0.3 (0, 5) +1612461060: Socket error on client , disconnecting. +1612461080: New connection from 172.18.0.3 on port 1883. +1612461080: Sending CONNACK to 172.18.0.3 (0, 5) +1612461080: Socket error on client , disconnecting. +1612461100: New connection from 172.18.0.3 on port 1883. +1612461100: Sending CONNACK to 172.18.0.3 (0, 5) +1612461100: Socket error on client , disconnecting. +1612461120: New connection from 172.18.0.3 on port 1883. +1612461120: Sending CONNACK to 172.18.0.3 (0, 5) +1612461120: Socket error on client , disconnecting. +1612461140: New connection from 172.18.0.3 on port 1883. +1612461140: Sending CONNACK to 172.18.0.3 (0, 5) +1612461140: Socket error on client , disconnecting. +1612461160: New connection from 172.18.0.3 on port 1883. +1612461160: Sending CONNACK to 172.18.0.3 (0, 5) +1612461160: Socket error on client , disconnecting. +1612461180: New connection from 172.18.0.3 on port 1883. +1612461180: Sending CONNACK to 172.18.0.3 (0, 5) +1612461180: Socket error on client , disconnecting. +1612461200: New connection from 172.18.0.3 on port 1883. +1612461200: Sending CONNACK to 172.18.0.3 (0, 5) +1612461200: Socket error on client , disconnecting. +1612461220: New connection from 172.18.0.3 on port 1883. +1612461220: Sending CONNACK to 172.18.0.3 (0, 5) +1612461220: Socket error on client , disconnecting. +1612461240: New connection from 172.18.0.3 on port 1883. +1612461240: Sending CONNACK to 172.18.0.3 (0, 5) +1612461240: Socket error on client , disconnecting. +1612461260: New connection from 172.18.0.3 on port 1883. +1612461260: Sending CONNACK to 172.18.0.3 (0, 5) +1612461260: Socket error on client , disconnecting. +1612461280: New connection from 172.18.0.3 on port 1883. +1612461280: Sending CONNACK to 172.18.0.3 (0, 5) +1612461280: Socket error on client , disconnecting. +1612461300: New connection from 172.18.0.3 on port 1883. +1612461300: Sending CONNACK to 172.18.0.3 (0, 5) +1612461300: Socket error on client , disconnecting. +1612461320: New connection from 172.18.0.3 on port 1883. +1612461320: Sending CONNACK to 172.18.0.3 (0, 5) +1612461320: Socket error on client , disconnecting. +1612461340: New connection from 172.18.0.3 on port 1883. +1612461340: Sending CONNACK to 172.18.0.3 (0, 5) +1612461340: Socket error on client , disconnecting. +1612461360: New connection from 172.18.0.3 on port 1883. +1612461360: Sending CONNACK to 172.18.0.3 (0, 5) +1612461360: Socket error on client , disconnecting. +1612461380: New connection from 172.18.0.3 on port 1883. +1612461380: Sending CONNACK to 172.18.0.3 (0, 5) +1612461380: Socket error on client , disconnecting. +1612461400: New connection from 172.18.0.3 on port 1883. +1612461400: Sending CONNACK to 172.18.0.3 (0, 5) +1612461400: Socket error on client , disconnecting. +1612461420: New connection from 172.18.0.3 on port 1883. +1612461420: Sending CONNACK to 172.18.0.3 (0, 5) +1612461420: Socket error on client , disconnecting. +1612461440: New connection from 172.18.0.3 on port 1883. +1612461440: Sending CONNACK to 172.18.0.3 (0, 5) +1612461440: Socket error on client , disconnecting. +1612461460: New connection from 172.18.0.3 on port 1883. +1612461460: Sending CONNACK to 172.18.0.3 (0, 5) +1612461460: Socket error on client , disconnecting. +1612461480: New connection from 172.18.0.3 on port 1883. +1612461480: Sending CONNACK to 172.18.0.3 (0, 5) +1612461480: Socket error on client , disconnecting. +1612461500: New connection from 172.18.0.3 on port 1883. +1612461500: Sending CONNACK to 172.18.0.3 (0, 5) +1612461500: Socket error on client , disconnecting. +1612461520: New connection from 172.18.0.3 on port 1883. +1612461520: Sending CONNACK to 172.18.0.3 (0, 5) +1612461520: Socket error on client , disconnecting. +1612461540: New connection from 172.18.0.3 on port 1883. +1612461540: Sending CONNACK to 172.18.0.3 (0, 5) +1612461540: Socket error on client , disconnecting. +1612461560: New connection from 172.18.0.3 on port 1883. +1612461560: Sending CONNACK to 172.18.0.3 (0, 5) +1612461560: Socket error on client , disconnecting. +1612461580: New connection from 172.18.0.3 on port 1883. +1612461580: Sending CONNACK to 172.18.0.3 (0, 5) +1612461580: Socket error on client , disconnecting. +1612461600: New connection from 172.18.0.3 on port 1883. +1612461600: Sending CONNACK to 172.18.0.3 (0, 5) +1612461600: Socket error on client , disconnecting. +1612461620: New connection from 172.18.0.3 on port 1883. +1612461620: Sending CONNACK to 172.18.0.3 (0, 5) +1612461620: Socket error on client , disconnecting. +1612461640: New connection from 172.18.0.3 on port 1883. +1612461640: Sending CONNACK to 172.18.0.3 (0, 5) +1612461640: Socket error on client , disconnecting. +1612461660: New connection from 172.18.0.3 on port 1883. +1612461660: Sending CONNACK to 172.18.0.3 (0, 5) +1612461660: Socket error on client , disconnecting. +1612461680: New connection from 172.18.0.3 on port 1883. +1612461680: Sending CONNACK to 172.18.0.3 (0, 5) +1612461680: Socket error on client , disconnecting. +1612461700: New connection from 172.18.0.3 on port 1883. +1612461700: Sending CONNACK to 172.18.0.3 (0, 5) +1612461700: Socket error on client , disconnecting. +1612461720: New connection from 172.18.0.3 on port 1883. +1612461720: Sending CONNACK to 172.18.0.3 (0, 5) +1612461720: Socket error on client , disconnecting. +1612461740: New connection from 172.18.0.3 on port 1883. +1612461740: Sending CONNACK to 172.18.0.3 (0, 5) +1612461740: Socket error on client , disconnecting. +1612461760: New connection from 172.18.0.3 on port 1883. +1612461760: Sending CONNACK to 172.18.0.3 (0, 5) +1612461760: Socket error on client , disconnecting. +1612461780: New connection from 172.18.0.3 on port 1883. +1612461780: Sending CONNACK to 172.18.0.3 (0, 5) +1612461780: Socket error on client , disconnecting. +1612461800: New connection from 172.18.0.3 on port 1883. +1612461800: Sending CONNACK to 172.18.0.3 (0, 5) +1612461800: Socket error on client , disconnecting. +1612461820: New connection from 172.18.0.3 on port 1883. +1612461820: Sending CONNACK to 172.18.0.3 (0, 5) +1612461820: Socket error on client , disconnecting. +1612461840: New connection from 172.18.0.3 on port 1883. +1612461840: Sending CONNACK to 172.18.0.3 (0, 5) +1612461840: Socket error on client , disconnecting. +1612461860: New connection from 172.18.0.3 on port 1883. +1612461860: Sending CONNACK to 172.18.0.3 (0, 5) +1612461860: Socket error on client , disconnecting. +1612461880: New connection from 172.18.0.3 on port 1883. +1612461880: Sending CONNACK to 172.18.0.3 (0, 5) +1612461880: Socket error on client , disconnecting. +1612461900: New connection from 172.18.0.3 on port 1883. +1612461900: Sending CONNACK to 172.18.0.3 (0, 5) +1612461900: Socket error on client , disconnecting. +1612461920: New connection from 172.18.0.3 on port 1883. +1612461920: Sending CONNACK to 172.18.0.3 (0, 5) +1612461920: Socket error on client , disconnecting. +1612461940: New connection from 172.18.0.3 on port 1883. +1612461940: Sending CONNACK to 172.18.0.3 (0, 5) +1612461940: Socket error on client , disconnecting. +1612461960: New connection from 172.18.0.3 on port 1883. +1612461960: Sending CONNACK to 172.18.0.3 (0, 5) +1612461960: Socket error on client , disconnecting. +1612461980: New connection from 172.18.0.3 on port 1883. +1612461980: Sending CONNACK to 172.18.0.3 (0, 5) +1612461980: Socket error on client , disconnecting. +1612462000: New connection from 172.18.0.3 on port 1883. +1612462000: Sending CONNACK to 172.18.0.3 (0, 5) +1612462000: Socket error on client , disconnecting. +1612462020: New connection from 172.18.0.3 on port 1883. +1612462020: Sending CONNACK to 172.18.0.3 (0, 5) +1612462020: Socket error on client , disconnecting. +1612462040: New connection from 172.18.0.3 on port 1883. +1612462040: Sending CONNACK to 172.18.0.3 (0, 5) +1612462040: Socket error on client , disconnecting. +1612462060: New connection from 172.18.0.3 on port 1883. +1612462060: Sending CONNACK to 172.18.0.3 (0, 5) +1612462060: Socket error on client , disconnecting. +1612462080: New connection from 172.18.0.3 on port 1883. +1612462080: Sending CONNACK to 172.18.0.3 (0, 5) +1612462080: Socket error on client , disconnecting. +1612462100: New connection from 172.18.0.3 on port 1883. +1612462100: Sending CONNACK to 172.18.0.3 (0, 5) +1612462100: Socket error on client , disconnecting. +1612462120: New connection from 172.18.0.3 on port 1883. +1612462120: Sending CONNACK to 172.18.0.3 (0, 5) +1612462120: Socket error on client , disconnecting. +1612462140: New connection from 172.18.0.3 on port 1883. +1612462140: Sending CONNACK to 172.18.0.3 (0, 5) +1612462140: Socket error on client , disconnecting. +1612462160: New connection from 172.18.0.3 on port 1883. +1612462160: Sending CONNACK to 172.18.0.3 (0, 5) +1612462160: Socket error on client , disconnecting. +1612462180: New connection from 172.18.0.3 on port 1883. +1612462180: Sending CONNACK to 172.18.0.3 (0, 5) +1612462180: Socket error on client , disconnecting. +1612462200: New connection from 172.18.0.3 on port 1883. +1612462200: Sending CONNACK to 172.18.0.3 (0, 5) +1612462200: Socket error on client , disconnecting. +1612462220: New connection from 172.18.0.3 on port 1883. +1612462220: Sending CONNACK to 172.18.0.3 (0, 5) +1612462220: Socket error on client , disconnecting. +1612462240: New connection from 172.18.0.3 on port 1883. +1612462240: Sending CONNACK to 172.18.0.3 (0, 5) +1612462240: Socket error on client , disconnecting. +1612462260: New connection from 172.18.0.3 on port 1883. +1612462260: Sending CONNACK to 172.18.0.3 (0, 5) +1612462260: Socket error on client , disconnecting. +1612462280: New connection from 172.18.0.3 on port 1883. +1612462280: Sending CONNACK to 172.18.0.3 (0, 5) +1612462280: Socket error on client , disconnecting. +1612462300: New connection from 172.18.0.3 on port 1883. +1612462300: Sending CONNACK to 172.18.0.3 (0, 5) +1612462300: Socket error on client , disconnecting. +1612462320: New connection from 172.18.0.3 on port 1883. +1612462320: Sending CONNACK to 172.18.0.3 (0, 5) +1612462320: Socket error on client , disconnecting. +1612462340: New connection from 172.18.0.3 on port 1883. +1612462340: Sending CONNACK to 172.18.0.3 (0, 5) +1612462340: Socket error on client , disconnecting. +1612462360: New connection from 172.18.0.3 on port 1883. +1612462360: Sending CONNACK to 172.18.0.3 (0, 5) +1612462360: Socket error on client , disconnecting. +1612462380: New connection from 172.18.0.3 on port 1883. +1612462380: Sending CONNACK to 172.18.0.3 (0, 5) +1612462380: Socket error on client , disconnecting. +1612462400: New connection from 172.18.0.3 on port 1883. +1612462400: Sending CONNACK to 172.18.0.3 (0, 5) +1612462400: Socket error on client , disconnecting. +1612462420: New connection from 172.18.0.3 on port 1883. +1612462420: Sending CONNACK to 172.18.0.3 (0, 5) +1612462420: Socket error on client , disconnecting. +1612462440: New connection from 172.18.0.3 on port 1883. +1612462440: Sending CONNACK to 172.18.0.3 (0, 5) +1612462440: Socket error on client , disconnecting. +1612462460: New connection from 172.18.0.3 on port 1883. +1612462460: Sending CONNACK to 172.18.0.3 (0, 5) +1612462460: Socket error on client , disconnecting. +1612462480: New connection from 172.18.0.3 on port 1883. +1612462480: Sending CONNACK to 172.18.0.3 (0, 5) +1612462480: Socket error on client , disconnecting. +1612462500: New connection from 172.18.0.3 on port 1883. +1612462500: Sending CONNACK to 172.18.0.3 (0, 5) +1612462500: Socket error on client , disconnecting. +1612462520: New connection from 172.18.0.3 on port 1883. +1612462520: Sending CONNACK to 172.18.0.3 (0, 5) +1612462520: Socket error on client , disconnecting. +1612462540: New connection from 172.18.0.3 on port 1883. +1612462540: Sending CONNACK to 172.18.0.3 (0, 5) +1612462540: Socket error on client , disconnecting. +1612462560: New connection from 172.18.0.3 on port 1883. +1612462560: Sending CONNACK to 172.18.0.3 (0, 5) +1612462560: Socket error on client , disconnecting. +1612462580: New connection from 172.18.0.3 on port 1883. +1612462580: Sending CONNACK to 172.18.0.3 (0, 5) +1612462580: Socket error on client , disconnecting. +1612462600: New connection from 172.18.0.3 on port 1883. +1612462600: Sending CONNACK to 172.18.0.3 (0, 5) +1612462600: Socket error on client , disconnecting. +1612462620: New connection from 172.18.0.3 on port 1883. +1612462620: Sending CONNACK to 172.18.0.3 (0, 5) +1612462620: Socket error on client , disconnecting. +1612462626: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612462626: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612462626: Error: Permission denied. +1612462640: New connection from 172.18.0.3 on port 1883. +1612462640: Sending CONNACK to 172.18.0.3 (0, 5) +1612462640: Socket error on client , disconnecting. +1612462660: New connection from 172.18.0.3 on port 1883. +1612462660: Sending CONNACK to 172.18.0.3 (0, 5) +1612462660: Socket error on client , disconnecting. +1612462680: New connection from 172.18.0.3 on port 1883. +1612462680: Sending CONNACK to 172.18.0.3 (0, 5) +1612462680: Socket error on client , disconnecting. +1612462700: New connection from 172.18.0.3 on port 1883. +1612462700: Sending CONNACK to 172.18.0.3 (0, 5) +1612462700: Socket error on client , disconnecting. +1612462720: New connection from 172.18.0.3 on port 1883. +1612462720: Sending CONNACK to 172.18.0.3 (0, 5) +1612462720: Socket error on client , disconnecting. +1612462740: New connection from 172.18.0.3 on port 1883. +1612462740: Sending CONNACK to 172.18.0.3 (0, 5) +1612462740: Socket error on client , disconnecting. +1612462760: New connection from 172.18.0.3 on port 1883. +1612462760: Sending CONNACK to 172.18.0.3 (0, 5) +1612462760: Socket error on client , disconnecting. +1612462780: New connection from 172.18.0.3 on port 1883. +1612462780: Sending CONNACK to 172.18.0.3 (0, 5) +1612462780: Socket error on client , disconnecting. +1612462800: New connection from 172.18.0.3 on port 1883. +1612462800: Sending CONNACK to 172.18.0.3 (0, 5) +1612462800: Socket error on client , disconnecting. +1612462820: New connection from 172.18.0.3 on port 1883. +1612462820: Sending CONNACK to 172.18.0.3 (0, 5) +1612462820: Socket error on client , disconnecting. +1612462840: New connection from 172.18.0.3 on port 1883. +1612462840: Sending CONNACK to 172.18.0.3 (0, 5) +1612462840: Socket error on client , disconnecting. +1612462860: New connection from 172.18.0.3 on port 1883. +1612462860: Sending CONNACK to 172.18.0.3 (0, 5) +1612462860: Socket error on client , disconnecting. +1612462880: New connection from 172.18.0.3 on port 1883. +1612462880: Sending CONNACK to 172.18.0.3 (0, 5) +1612462880: Socket error on client , disconnecting. +1612462900: New connection from 172.18.0.3 on port 1883. +1612462900: Sending CONNACK to 172.18.0.3 (0, 5) +1612462900: Socket error on client , disconnecting. +1612462920: New connection from 172.18.0.3 on port 1883. +1612462920: Sending CONNACK to 172.18.0.3 (0, 5) +1612462920: Socket error on client , disconnecting. +1612462940: New connection from 172.18.0.3 on port 1883. +1612462940: Sending CONNACK to 172.18.0.3 (0, 5) +1612462940: Socket error on client , disconnecting. +1612462960: New connection from 172.18.0.3 on port 1883. +1612462960: Sending CONNACK to 172.18.0.3 (0, 5) +1612462960: Socket error on client , disconnecting. +1612462980: New connection from 172.18.0.3 on port 1883. +1612462980: Sending CONNACK to 172.18.0.3 (0, 5) +1612462980: Socket error on client , disconnecting. +1612463000: New connection from 172.18.0.3 on port 1883. +1612463000: Sending CONNACK to 172.18.0.3 (0, 5) +1612463000: Socket error on client , disconnecting. +1612463020: New connection from 172.18.0.3 on port 1883. +1612463020: Sending CONNACK to 172.18.0.3 (0, 5) +1612463020: Socket error on client , disconnecting. +1612463040: New connection from 172.18.0.3 on port 1883. +1612463040: Sending CONNACK to 172.18.0.3 (0, 5) +1612463040: Socket error on client , disconnecting. +1612463060: New connection from 172.18.0.3 on port 1883. +1612463060: Sending CONNACK to 172.18.0.3 (0, 5) +1612463060: Socket error on client , disconnecting. +1612463080: New connection from 172.18.0.3 on port 1883. +1612463080: Sending CONNACK to 172.18.0.3 (0, 5) +1612463080: Socket error on client , disconnecting. +1612463100: New connection from 172.18.0.3 on port 1883. +1612463100: Sending CONNACK to 172.18.0.3 (0, 5) +1612463100: Socket error on client , disconnecting. +1612463120: New connection from 172.18.0.3 on port 1883. +1612463120: Sending CONNACK to 172.18.0.3 (0, 5) +1612463120: Socket error on client , disconnecting. +1612463140: New connection from 172.18.0.3 on port 1883. +1612463140: Sending CONNACK to 172.18.0.3 (0, 5) +1612463140: Socket error on client , disconnecting. +1612463160: New connection from 172.18.0.3 on port 1883. +1612463160: Sending CONNACK to 172.18.0.3 (0, 5) +1612463160: Socket error on client , disconnecting. +1612463180: New connection from 172.18.0.3 on port 1883. +1612463180: Sending CONNACK to 172.18.0.3 (0, 5) +1612463180: Socket error on client , disconnecting. +1612463200: New connection from 172.18.0.3 on port 1883. +1612463200: Sending CONNACK to 172.18.0.3 (0, 5) +1612463200: Socket error on client , disconnecting. +1612463220: New connection from 172.18.0.3 on port 1883. +1612463220: Sending CONNACK to 172.18.0.3 (0, 5) +1612463220: Socket error on client , disconnecting. +1612463240: New connection from 172.18.0.3 on port 1883. +1612463240: Sending CONNACK to 172.18.0.3 (0, 5) +1612463240: Socket error on client , disconnecting. +1612463260: New connection from 172.18.0.3 on port 1883. +1612463260: Sending CONNACK to 172.18.0.3 (0, 5) +1612463260: Socket error on client , disconnecting. +1612463280: New connection from 172.18.0.3 on port 1883. +1612463280: Sending CONNACK to 172.18.0.3 (0, 5) +1612463280: Socket error on client , disconnecting. +1612463300: New connection from 172.18.0.3 on port 1883. +1612463300: Sending CONNACK to 172.18.0.3 (0, 5) +1612463300: Socket error on client , disconnecting. +1612463320: New connection from 172.18.0.3 on port 1883. +1612463320: Sending CONNACK to 172.18.0.3 (0, 5) +1612463320: Socket error on client , disconnecting. +1612463340: New connection from 172.18.0.3 on port 1883. +1612463340: Sending CONNACK to 172.18.0.3 (0, 5) +1612463340: Socket error on client , disconnecting. +1612463360: New connection from 172.18.0.3 on port 1883. +1612463360: Sending CONNACK to 172.18.0.3 (0, 5) +1612463360: Socket error on client , disconnecting. +1612463380: New connection from 172.18.0.3 on port 1883. +1612463380: Sending CONNACK to 172.18.0.3 (0, 5) +1612463380: Socket error on client , disconnecting. +1612463400: New connection from 172.18.0.3 on port 1883. +1612463400: Sending CONNACK to 172.18.0.3 (0, 5) +1612463400: Socket error on client , disconnecting. +1612463420: New connection from 172.18.0.3 on port 1883. +1612463420: Sending CONNACK to 172.18.0.3 (0, 5) +1612463420: Socket error on client , disconnecting. +1612463440: New connection from 172.18.0.3 on port 1883. +1612463440: Sending CONNACK to 172.18.0.3 (0, 5) +1612463440: Socket error on client , disconnecting. +1612463460: New connection from 172.18.0.3 on port 1883. +1612463460: Sending CONNACK to 172.18.0.3 (0, 5) +1612463460: Socket error on client , disconnecting. +1612463480: New connection from 172.18.0.3 on port 1883. +1612463480: Sending CONNACK to 172.18.0.3 (0, 5) +1612463480: Socket error on client , disconnecting. +1612463500: New connection from 172.18.0.3 on port 1883. +1612463500: Sending CONNACK to 172.18.0.3 (0, 5) +1612463500: Socket error on client , disconnecting. +1612463520: New connection from 172.18.0.3 on port 1883. +1612463520: Sending CONNACK to 172.18.0.3 (0, 5) +1612463520: Socket error on client , disconnecting. +1612463540: New connection from 172.18.0.3 on port 1883. +1612463540: Sending CONNACK to 172.18.0.3 (0, 5) +1612463540: Socket error on client , disconnecting. +1612463560: New connection from 172.18.0.3 on port 1883. +1612463560: Sending CONNACK to 172.18.0.3 (0, 5) +1612463560: Socket error on client , disconnecting. +1612463580: New connection from 172.18.0.3 on port 1883. +1612463580: Sending CONNACK to 172.18.0.3 (0, 5) +1612463580: Socket error on client , disconnecting. +1612463600: New connection from 172.18.0.3 on port 1883. +1612463600: Sending CONNACK to 172.18.0.3 (0, 5) +1612463600: Socket error on client , disconnecting. +1612463620: New connection from 172.18.0.3 on port 1883. +1612463620: Sending CONNACK to 172.18.0.3 (0, 5) +1612463620: Socket error on client , disconnecting. +1612463640: New connection from 172.18.0.3 on port 1883. +1612463640: Sending CONNACK to 172.18.0.3 (0, 5) +1612463640: Socket error on client , disconnecting. +1612463660: New connection from 172.18.0.3 on port 1883. +1612463660: Sending CONNACK to 172.18.0.3 (0, 5) +1612463660: Socket error on client , disconnecting. +1612463680: New connection from 172.18.0.3 on port 1883. +1612463680: Sending CONNACK to 172.18.0.3 (0, 5) +1612463680: Socket error on client , disconnecting. +1612463700: New connection from 172.18.0.3 on port 1883. +1612463700: Sending CONNACK to 172.18.0.3 (0, 5) +1612463700: Socket error on client , disconnecting. +1612463720: New connection from 172.18.0.3 on port 1883. +1612463720: Sending CONNACK to 172.18.0.3 (0, 5) +1612463720: Socket error on client , disconnecting. +1612463740: New connection from 172.18.0.3 on port 1883. +1612463740: Sending CONNACK to 172.18.0.3 (0, 5) +1612463740: Socket error on client , disconnecting. +1612463760: New connection from 172.18.0.3 on port 1883. +1612463760: Sending CONNACK to 172.18.0.3 (0, 5) +1612463760: Socket error on client , disconnecting. +1612463780: New connection from 172.18.0.3 on port 1883. +1612463780: Sending CONNACK to 172.18.0.3 (0, 5) +1612463780: Socket error on client , disconnecting. +1612463800: New connection from 172.18.0.3 on port 1883. +1612463800: Sending CONNACK to 172.18.0.3 (0, 5) +1612463800: Socket error on client , disconnecting. +1612463820: New connection from 172.18.0.3 on port 1883. +1612463820: Sending CONNACK to 172.18.0.3 (0, 5) +1612463820: Socket error on client , disconnecting. +1612463840: New connection from 172.18.0.3 on port 1883. +1612463840: Sending CONNACK to 172.18.0.3 (0, 5) +1612463840: Socket error on client , disconnecting. +1612463860: New connection from 172.18.0.3 on port 1883. +1612463860: Sending CONNACK to 172.18.0.3 (0, 5) +1612463860: Socket error on client , disconnecting. +1612463880: New connection from 172.18.0.3 on port 1883. +1612463880: Sending CONNACK to 172.18.0.3 (0, 5) +1612463880: Socket error on client , disconnecting. +1612463900: New connection from 172.18.0.3 on port 1883. +1612463900: Sending CONNACK to 172.18.0.3 (0, 5) +1612463900: Socket error on client , disconnecting. +1612463920: New connection from 172.18.0.3 on port 1883. +1612463920: Sending CONNACK to 172.18.0.3 (0, 5) +1612463920: Socket error on client , disconnecting. +1612463940: New connection from 172.18.0.3 on port 1883. +1612463940: Sending CONNACK to 172.18.0.3 (0, 5) +1612463940: Socket error on client , disconnecting. +1612463960: New connection from 172.18.0.3 on port 1883. +1612463960: Sending CONNACK to 172.18.0.3 (0, 5) +1612463960: Socket error on client , disconnecting. +1612463980: New connection from 172.18.0.3 on port 1883. +1612463980: Sending CONNACK to 172.18.0.3 (0, 5) +1612463980: Socket error on client , disconnecting. +1612464000: New connection from 172.18.0.3 on port 1883. +1612464000: Sending CONNACK to 172.18.0.3 (0, 5) +1612464000: Socket error on client , disconnecting. +1612464020: New connection from 172.18.0.3 on port 1883. +1612464020: Sending CONNACK to 172.18.0.3 (0, 5) +1612464020: Socket error on client , disconnecting. +1612464040: New connection from 172.18.0.3 on port 1883. +1612464040: Sending CONNACK to 172.18.0.3 (0, 5) +1612464040: Socket error on client , disconnecting. +1612464060: New connection from 172.18.0.3 on port 1883. +1612464060: Sending CONNACK to 172.18.0.3 (0, 5) +1612464060: Socket error on client , disconnecting. +1612464080: New connection from 172.18.0.3 on port 1883. +1612464080: Sending CONNACK to 172.18.0.3 (0, 5) +1612464080: Socket error on client , disconnecting. +1612464100: New connection from 172.18.0.3 on port 1883. +1612464100: Sending CONNACK to 172.18.0.3 (0, 5) +1612464100: Socket error on client , disconnecting. +1612464120: New connection from 172.18.0.3 on port 1883. +1612464120: Sending CONNACK to 172.18.0.3 (0, 5) +1612464120: Socket error on client , disconnecting. +1612464140: New connection from 172.18.0.3 on port 1883. +1612464140: Sending CONNACK to 172.18.0.3 (0, 5) +1612464140: Socket error on client , disconnecting. +1612464160: New connection from 172.18.0.3 on port 1883. +1612464160: Sending CONNACK to 172.18.0.3 (0, 5) +1612464160: Socket error on client , disconnecting. +1612464180: New connection from 172.18.0.3 on port 1883. +1612464180: Sending CONNACK to 172.18.0.3 (0, 5) +1612464180: Socket error on client , disconnecting. +1612464200: New connection from 172.18.0.3 on port 1883. +1612464200: Sending CONNACK to 172.18.0.3 (0, 5) +1612464200: Socket error on client , disconnecting. +1612464220: New connection from 172.18.0.3 on port 1883. +1612464220: Sending CONNACK to 172.18.0.3 (0, 5) +1612464220: Socket error on client , disconnecting. +1612464240: New connection from 172.18.0.3 on port 1883. +1612464240: Sending CONNACK to 172.18.0.3 (0, 5) +1612464240: Socket error on client , disconnecting. +1612464260: New connection from 172.18.0.3 on port 1883. +1612464260: Sending CONNACK to 172.18.0.3 (0, 5) +1612464260: Socket error on client , disconnecting. +1612464280: New connection from 172.18.0.3 on port 1883. +1612464280: Sending CONNACK to 172.18.0.3 (0, 5) +1612464280: Socket error on client , disconnecting. +1612464300: New connection from 172.18.0.3 on port 1883. +1612464300: Sending CONNACK to 172.18.0.3 (0, 5) +1612464300: Socket error on client , disconnecting. +1612464320: New connection from 172.18.0.3 on port 1883. +1612464320: Sending CONNACK to 172.18.0.3 (0, 5) +1612464320: Socket error on client , disconnecting. +1612464340: New connection from 172.18.0.3 on port 1883. +1612464340: Sending CONNACK to 172.18.0.3 (0, 5) +1612464340: Socket error on client , disconnecting. +1612464360: New connection from 172.18.0.3 on port 1883. +1612464360: Sending CONNACK to 172.18.0.3 (0, 5) +1612464360: Socket error on client , disconnecting. +1612464380: New connection from 172.18.0.3 on port 1883. +1612464380: Sending CONNACK to 172.18.0.3 (0, 5) +1612464380: Socket error on client , disconnecting. +1612464400: New connection from 172.18.0.3 on port 1883. +1612464400: Sending CONNACK to 172.18.0.3 (0, 5) +1612464400: Socket error on client , disconnecting. +1612464420: New connection from 172.18.0.3 on port 1883. +1612464420: Sending CONNACK to 172.18.0.3 (0, 5) +1612464420: Socket error on client , disconnecting. +1612464427: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612464427: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612464427: Error: Permission denied. +1612464440: New connection from 172.18.0.3 on port 1883. +1612464440: Sending CONNACK to 172.18.0.3 (0, 5) +1612464440: Socket error on client , disconnecting. +1612464460: New connection from 172.18.0.3 on port 1883. +1612464460: Sending CONNACK to 172.18.0.3 (0, 5) +1612464460: Socket error on client , disconnecting. +1612464480: New connection from 172.18.0.3 on port 1883. +1612464480: Sending CONNACK to 172.18.0.3 (0, 5) +1612464480: Socket error on client , disconnecting. +1612464500: New connection from 172.18.0.3 on port 1883. +1612464500: Sending CONNACK to 172.18.0.3 (0, 5) +1612464500: Socket error on client , disconnecting. +1612464520: New connection from 172.18.0.3 on port 1883. +1612464520: Sending CONNACK to 172.18.0.3 (0, 5) +1612464520: Socket error on client , disconnecting. +1612464540: New connection from 172.18.0.3 on port 1883. +1612464540: Sending CONNACK to 172.18.0.3 (0, 5) +1612464540: Socket error on client , disconnecting. +1612464560: New connection from 172.18.0.3 on port 1883. +1612464560: Sending CONNACK to 172.18.0.3 (0, 5) +1612464560: Socket error on client , disconnecting. +1612464580: New connection from 172.18.0.3 on port 1883. +1612464580: Sending CONNACK to 172.18.0.3 (0, 5) +1612464580: Socket error on client , disconnecting. +1612464600: New connection from 172.18.0.3 on port 1883. +1612464600: Sending CONNACK to 172.18.0.3 (0, 5) +1612464600: Socket error on client , disconnecting. +1612464620: New connection from 172.18.0.3 on port 1883. +1612464620: Sending CONNACK to 172.18.0.3 (0, 5) +1612464620: Socket error on client , disconnecting. +1612464640: New connection from 172.18.0.3 on port 1883. +1612464640: Sending CONNACK to 172.18.0.3 (0, 5) +1612464640: Socket error on client , disconnecting. +1612464660: New connection from 172.18.0.3 on port 1883. +1612464660: Sending CONNACK to 172.18.0.3 (0, 5) +1612464660: Socket error on client , disconnecting. +1612464680: New connection from 172.18.0.3 on port 1883. +1612464680: Sending CONNACK to 172.18.0.3 (0, 5) +1612464680: Socket error on client , disconnecting. +1612464700: New connection from 172.18.0.3 on port 1883. +1612464700: Sending CONNACK to 172.18.0.3 (0, 5) +1612464700: Socket error on client , disconnecting. +1612464720: New connection from 172.18.0.3 on port 1883. +1612464720: Sending CONNACK to 172.18.0.3 (0, 5) +1612464720: Socket error on client , disconnecting. +1612464740: New connection from 172.18.0.3 on port 1883. +1612464740: Sending CONNACK to 172.18.0.3 (0, 5) +1612464740: Socket error on client , disconnecting. +1612464760: New connection from 172.18.0.3 on port 1883. +1612464760: Sending CONNACK to 172.18.0.3 (0, 5) +1612464760: Socket error on client , disconnecting. +1612464780: New connection from 172.18.0.3 on port 1883. +1612464780: Sending CONNACK to 172.18.0.3 (0, 5) +1612464780: Socket error on client , disconnecting. +1612464800: New connection from 172.18.0.3 on port 1883. +1612464800: Sending CONNACK to 172.18.0.3 (0, 5) +1612464800: Socket error on client , disconnecting. +1612464820: New connection from 172.18.0.3 on port 1883. +1612464820: Sending CONNACK to 172.18.0.3 (0, 5) +1612464820: Socket error on client , disconnecting. +1612464840: New connection from 172.18.0.3 on port 1883. +1612464840: Sending CONNACK to 172.18.0.3 (0, 5) +1612464840: Socket error on client , disconnecting. +1612464860: New connection from 172.18.0.3 on port 1883. +1612464860: Sending CONNACK to 172.18.0.3 (0, 5) +1612464860: Socket error on client , disconnecting. +1612464880: New connection from 172.18.0.3 on port 1883. +1612464880: Sending CONNACK to 172.18.0.3 (0, 5) +1612464880: Socket error on client , disconnecting. +1612464900: New connection from 172.18.0.3 on port 1883. +1612464900: Sending CONNACK to 172.18.0.3 (0, 5) +1612464900: Socket error on client , disconnecting. +1612464920: New connection from 172.18.0.3 on port 1883. +1612464920: Sending CONNACK to 172.18.0.3 (0, 5) +1612464920: Socket error on client , disconnecting. +1612464940: New connection from 172.18.0.3 on port 1883. +1612464940: Sending CONNACK to 172.18.0.3 (0, 5) +1612464940: Socket error on client , disconnecting. +1612464960: New connection from 172.18.0.3 on port 1883. +1612464960: Sending CONNACK to 172.18.0.3 (0, 5) +1612464960: Socket error on client , disconnecting. +1612464980: New connection from 172.18.0.3 on port 1883. +1612464980: Sending CONNACK to 172.18.0.3 (0, 5) +1612464980: Socket error on client , disconnecting. +1612465000: New connection from 172.18.0.3 on port 1883. +1612465000: Sending CONNACK to 172.18.0.3 (0, 5) +1612465000: Socket error on client , disconnecting. +1612465020: New connection from 172.18.0.3 on port 1883. +1612465020: Sending CONNACK to 172.18.0.3 (0, 5) +1612465020: Socket error on client , disconnecting. +1612465040: New connection from 172.18.0.3 on port 1883. +1612465040: Sending CONNACK to 172.18.0.3 (0, 5) +1612465040: Socket error on client , disconnecting. +1612465060: New connection from 172.18.0.3 on port 1883. +1612465060: Sending CONNACK to 172.18.0.3 (0, 5) +1612465060: Socket error on client , disconnecting. +1612465080: New connection from 172.18.0.3 on port 1883. +1612465080: Sending CONNACK to 172.18.0.3 (0, 5) +1612465080: Socket error on client , disconnecting. +1612465100: New connection from 172.18.0.3 on port 1883. +1612465100: Sending CONNACK to 172.18.0.3 (0, 5) +1612465100: Socket error on client , disconnecting. +1612465120: New connection from 172.18.0.3 on port 1883. +1612465120: Sending CONNACK to 172.18.0.3 (0, 5) +1612465120: Socket error on client , disconnecting. +1612465140: New connection from 172.18.0.3 on port 1883. +1612465140: Sending CONNACK to 172.18.0.3 (0, 5) +1612465140: Socket error on client , disconnecting. +1612465160: New connection from 172.18.0.3 on port 1883. +1612465160: Sending CONNACK to 172.18.0.3 (0, 5) +1612465160: Socket error on client , disconnecting. +1612465180: New connection from 172.18.0.3 on port 1883. +1612465180: Sending CONNACK to 172.18.0.3 (0, 5) +1612465180: Socket error on client , disconnecting. +1612465200: New connection from 172.18.0.3 on port 1883. +1612465200: Sending CONNACK to 172.18.0.3 (0, 5) +1612465200: Socket error on client , disconnecting. +1612465220: New connection from 172.18.0.3 on port 1883. +1612465220: Sending CONNACK to 172.18.0.3 (0, 5) +1612465220: Socket error on client , disconnecting. +1612465240: New connection from 172.18.0.3 on port 1883. +1612465240: Sending CONNACK to 172.18.0.3 (0, 5) +1612465240: Socket error on client , disconnecting. +1612465260: New connection from 172.18.0.3 on port 1883. +1612465260: Sending CONNACK to 172.18.0.3 (0, 5) +1612465260: Socket error on client , disconnecting. +1612465280: New connection from 172.18.0.3 on port 1883. +1612465280: Sending CONNACK to 172.18.0.3 (0, 5) +1612465280: Socket error on client , disconnecting. +1612465300: New connection from 172.18.0.3 on port 1883. +1612465300: Sending CONNACK to 172.18.0.3 (0, 5) +1612465300: Socket error on client , disconnecting. +1612465320: New connection from 172.18.0.3 on port 1883. +1612465320: Sending CONNACK to 172.18.0.3 (0, 5) +1612465320: Socket error on client , disconnecting. +1612465340: New connection from 172.18.0.3 on port 1883. +1612465340: Sending CONNACK to 172.18.0.3 (0, 5) +1612465340: Socket error on client , disconnecting. +1612465360: New connection from 172.18.0.3 on port 1883. +1612465360: Sending CONNACK to 172.18.0.3 (0, 5) +1612465360: Socket error on client , disconnecting. +1612465380: New connection from 172.18.0.3 on port 1883. +1612465380: Sending CONNACK to 172.18.0.3 (0, 5) +1612465380: Socket error on client , disconnecting. +1612465400: New connection from 172.18.0.3 on port 1883. +1612465400: Sending CONNACK to 172.18.0.3 (0, 5) +1612465400: Socket error on client , disconnecting. +1612465420: New connection from 172.18.0.3 on port 1883. +1612465420: Sending CONNACK to 172.18.0.3 (0, 5) +1612465420: Socket error on client , disconnecting. +1612465440: New connection from 172.18.0.3 on port 1883. +1612465440: Sending CONNACK to 172.18.0.3 (0, 5) +1612465440: Socket error on client , disconnecting. +1612465460: New connection from 172.18.0.3 on port 1883. +1612465460: Sending CONNACK to 172.18.0.3 (0, 5) +1612465460: Socket error on client , disconnecting. +1612465480: New connection from 172.18.0.3 on port 1883. +1612465480: Sending CONNACK to 172.18.0.3 (0, 5) +1612465480: Socket error on client , disconnecting. +1612465500: New connection from 172.18.0.3 on port 1883. +1612465500: Sending CONNACK to 172.18.0.3 (0, 5) +1612465500: Socket error on client , disconnecting. +1612465520: New connection from 172.18.0.3 on port 1883. +1612465520: Sending CONNACK to 172.18.0.3 (0, 5) +1612465520: Socket error on client , disconnecting. +1612465540: New connection from 172.18.0.3 on port 1883. +1612465540: Sending CONNACK to 172.18.0.3 (0, 5) +1612465540: Socket error on client , disconnecting. +1612465560: New connection from 172.18.0.3 on port 1883. +1612465560: Sending CONNACK to 172.18.0.3 (0, 5) +1612465560: Socket error on client , disconnecting. +1612465580: New connection from 172.18.0.3 on port 1883. +1612465580: Sending CONNACK to 172.18.0.3 (0, 5) +1612465580: Socket error on client , disconnecting. +1612465600: New connection from 172.18.0.3 on port 1883. +1612465600: Sending CONNACK to 172.18.0.3 (0, 5) +1612465600: Socket error on client , disconnecting. +1612465620: New connection from 172.18.0.3 on port 1883. +1612465620: Sending CONNACK to 172.18.0.3 (0, 5) +1612465620: Socket error on client , disconnecting. +1612465640: New connection from 172.18.0.3 on port 1883. +1612465640: Sending CONNACK to 172.18.0.3 (0, 5) +1612465640: Socket error on client , disconnecting. +1612465660: New connection from 172.18.0.3 on port 1883. +1612465660: Sending CONNACK to 172.18.0.3 (0, 5) +1612465660: Socket error on client , disconnecting. +1612465680: New connection from 172.18.0.3 on port 1883. +1612465680: Sending CONNACK to 172.18.0.3 (0, 5) +1612465680: Socket error on client , disconnecting. +1612465700: New connection from 172.18.0.3 on port 1883. +1612465700: Sending CONNACK to 172.18.0.3 (0, 5) +1612465700: Socket error on client , disconnecting. +1612465720: New connection from 172.18.0.3 on port 1883. +1612465720: Sending CONNACK to 172.18.0.3 (0, 5) +1612465720: Socket error on client , disconnecting. +1612465740: New connection from 172.18.0.3 on port 1883. +1612465740: Sending CONNACK to 172.18.0.3 (0, 5) +1612465740: Socket error on client , disconnecting. +1612465760: New connection from 172.18.0.3 on port 1883. +1612465760: Sending CONNACK to 172.18.0.3 (0, 5) +1612465760: Socket error on client , disconnecting. +1612465780: New connection from 172.18.0.3 on port 1883. +1612465780: Sending CONNACK to 172.18.0.3 (0, 5) +1612465780: Socket error on client , disconnecting. +1612465800: New connection from 172.18.0.3 on port 1883. +1612465800: Sending CONNACK to 172.18.0.3 (0, 5) +1612465800: Socket error on client , disconnecting. +1612465820: New connection from 172.18.0.3 on port 1883. +1612465820: Sending CONNACK to 172.18.0.3 (0, 5) +1612465820: Socket error on client , disconnecting. +1612465840: New connection from 172.18.0.3 on port 1883. +1612465840: Sending CONNACK to 172.18.0.3 (0, 5) +1612465840: Socket error on client , disconnecting. +1612465860: New connection from 172.18.0.3 on port 1883. +1612465860: Sending CONNACK to 172.18.0.3 (0, 5) +1612465860: Socket error on client , disconnecting. +1612465880: New connection from 172.18.0.3 on port 1883. +1612465880: Sending CONNACK to 172.18.0.3 (0, 5) +1612465880: Socket error on client , disconnecting. +1612465900: New connection from 172.18.0.3 on port 1883. +1612465900: Sending CONNACK to 172.18.0.3 (0, 5) +1612465900: Socket error on client , disconnecting. +1612465920: New connection from 172.18.0.3 on port 1883. +1612465920: Sending CONNACK to 172.18.0.3 (0, 5) +1612465920: Socket error on client , disconnecting. +1612465940: New connection from 172.18.0.3 on port 1883. +1612465940: Sending CONNACK to 172.18.0.3 (0, 5) +1612465940: Socket error on client , disconnecting. +1612465960: New connection from 172.18.0.3 on port 1883. +1612465960: Sending CONNACK to 172.18.0.3 (0, 5) +1612465960: Socket error on client , disconnecting. +1612465980: New connection from 172.18.0.3 on port 1883. +1612465980: Sending CONNACK to 172.18.0.3 (0, 5) +1612465980: Socket error on client , disconnecting. +1612466000: New connection from 172.18.0.3 on port 1883. +1612466000: Sending CONNACK to 172.18.0.3 (0, 5) +1612466000: Socket error on client , disconnecting. +1612466020: New connection from 172.18.0.3 on port 1883. +1612466020: Sending CONNACK to 172.18.0.3 (0, 5) +1612466020: Socket error on client , disconnecting. +1612466040: New connection from 172.18.0.3 on port 1883. +1612466040: Sending CONNACK to 172.18.0.3 (0, 5) +1612466040: Socket error on client , disconnecting. +1612466060: New connection from 172.18.0.3 on port 1883. +1612466060: Sending CONNACK to 172.18.0.3 (0, 5) +1612466060: Socket error on client , disconnecting. +1612466080: New connection from 172.18.0.3 on port 1883. +1612466080: Sending CONNACK to 172.18.0.3 (0, 5) +1612466080: Socket error on client , disconnecting. +1612466100: New connection from 172.18.0.3 on port 1883. +1612466100: Sending CONNACK to 172.18.0.3 (0, 5) +1612466100: Socket error on client , disconnecting. +1612466120: New connection from 172.18.0.3 on port 1883. +1612466120: Sending CONNACK to 172.18.0.3 (0, 5) +1612466120: Socket error on client , disconnecting. +1612466140: New connection from 172.18.0.3 on port 1883. +1612466140: Sending CONNACK to 172.18.0.3 (0, 5) +1612466140: Socket error on client , disconnecting. +1612466160: New connection from 172.18.0.3 on port 1883. +1612466160: Sending CONNACK to 172.18.0.3 (0, 5) +1612466160: Socket error on client , disconnecting. +1612466180: New connection from 172.18.0.3 on port 1883. +1612466180: Sending CONNACK to 172.18.0.3 (0, 5) +1612466180: Socket error on client , disconnecting. +1612466200: New connection from 172.18.0.3 on port 1883. +1612466200: Sending CONNACK to 172.18.0.3 (0, 5) +1612466200: Socket error on client , disconnecting. +1612466220: New connection from 172.18.0.3 on port 1883. +1612466220: Sending CONNACK to 172.18.0.3 (0, 5) +1612466220: Socket error on client , disconnecting. +1612466228: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612466228: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612466228: Error: Permission denied. +1612466240: New connection from 172.18.0.3 on port 1883. +1612466240: Sending CONNACK to 172.18.0.3 (0, 5) +1612466240: Socket error on client , disconnecting. +1612466260: New connection from 172.18.0.3 on port 1883. +1612466260: Sending CONNACK to 172.18.0.3 (0, 5) +1612466260: Socket error on client , disconnecting. +1612466280: New connection from 172.18.0.3 on port 1883. +1612466280: Sending CONNACK to 172.18.0.3 (0, 5) +1612466280: Socket error on client , disconnecting. +1612466300: New connection from 172.18.0.3 on port 1883. +1612466300: Sending CONNACK to 172.18.0.3 (0, 5) +1612466300: Socket error on client , disconnecting. +1612466320: New connection from 172.18.0.3 on port 1883. +1612466320: Sending CONNACK to 172.18.0.3 (0, 5) +1612466320: Socket error on client , disconnecting. +1612466340: New connection from 172.18.0.3 on port 1883. +1612466340: Sending CONNACK to 172.18.0.3 (0, 5) +1612466340: Socket error on client , disconnecting. +1612466360: New connection from 172.18.0.3 on port 1883. +1612466360: Sending CONNACK to 172.18.0.3 (0, 5) +1612466360: Socket error on client , disconnecting. +1612466380: New connection from 172.18.0.3 on port 1883. +1612466380: Sending CONNACK to 172.18.0.3 (0, 5) +1612466380: Socket error on client , disconnecting. +1612466400: New connection from 172.18.0.3 on port 1883. +1612466400: Sending CONNACK to 172.18.0.3 (0, 5) +1612466400: Socket error on client , disconnecting. +1612466420: New connection from 172.18.0.3 on port 1883. +1612466420: Sending CONNACK to 172.18.0.3 (0, 5) +1612466420: Socket error on client , disconnecting. +1612466440: New connection from 172.18.0.3 on port 1883. +1612466440: Sending CONNACK to 172.18.0.3 (0, 5) +1612466440: Socket error on client , disconnecting. +1612466460: New connection from 172.18.0.3 on port 1883. +1612466460: Sending CONNACK to 172.18.0.3 (0, 5) +1612466460: Socket error on client , disconnecting. +1612466480: New connection from 172.18.0.3 on port 1883. +1612466480: Sending CONNACK to 172.18.0.3 (0, 5) +1612466480: Socket error on client , disconnecting. +1612466500: New connection from 172.18.0.3 on port 1883. +1612466500: Sending CONNACK to 172.18.0.3 (0, 5) +1612466500: Socket error on client , disconnecting. +1612466520: New connection from 172.18.0.3 on port 1883. +1612466520: Sending CONNACK to 172.18.0.3 (0, 5) +1612466520: Socket error on client , disconnecting. +1612466540: New connection from 172.18.0.3 on port 1883. +1612466540: Sending CONNACK to 172.18.0.3 (0, 5) +1612466540: Socket error on client , disconnecting. +1612466560: New connection from 172.18.0.3 on port 1883. +1612466560: Sending CONNACK to 172.18.0.3 (0, 5) +1612466560: Socket error on client , disconnecting. +1612466580: New connection from 172.18.0.3 on port 1883. +1612466580: Sending CONNACK to 172.18.0.3 (0, 5) +1612466580: Socket error on client , disconnecting. +1612466600: New connection from 172.18.0.3 on port 1883. +1612466600: Sending CONNACK to 172.18.0.3 (0, 5) +1612466600: Socket error on client , disconnecting. +1612466620: New connection from 172.18.0.3 on port 1883. +1612466620: Sending CONNACK to 172.18.0.3 (0, 5) +1612466620: Socket error on client , disconnecting. +1612466640: New connection from 172.18.0.3 on port 1883. +1612466640: Sending CONNACK to 172.18.0.3 (0, 5) +1612466640: Socket error on client , disconnecting. +1612466660: New connection from 172.18.0.3 on port 1883. +1612466660: Sending CONNACK to 172.18.0.3 (0, 5) +1612466660: Socket error on client , disconnecting. +1612466680: New connection from 172.18.0.3 on port 1883. +1612466680: Sending CONNACK to 172.18.0.3 (0, 5) +1612466680: Socket error on client , disconnecting. +1612466700: New connection from 172.18.0.3 on port 1883. +1612466700: Sending CONNACK to 172.18.0.3 (0, 5) +1612466700: Socket error on client , disconnecting. +1612466720: New connection from 172.18.0.3 on port 1883. +1612466720: Sending CONNACK to 172.18.0.3 (0, 5) +1612466720: Socket error on client , disconnecting. +1612466740: New connection from 172.18.0.3 on port 1883. +1612466740: Sending CONNACK to 172.18.0.3 (0, 5) +1612466740: Socket error on client , disconnecting. +1612466760: New connection from 172.18.0.3 on port 1883. +1612466760: Sending CONNACK to 172.18.0.3 (0, 5) +1612466760: Socket error on client , disconnecting. +1612466780: New connection from 172.18.0.3 on port 1883. +1612466780: Sending CONNACK to 172.18.0.3 (0, 5) +1612466780: Socket error on client , disconnecting. +1612466800: New connection from 172.18.0.3 on port 1883. +1612466800: Sending CONNACK to 172.18.0.3 (0, 5) +1612466800: Socket error on client , disconnecting. +1612466820: New connection from 172.18.0.3 on port 1883. +1612466820: Sending CONNACK to 172.18.0.3 (0, 5) +1612466820: Socket error on client , disconnecting. +1612466840: New connection from 172.18.0.3 on port 1883. +1612466840: Sending CONNACK to 172.18.0.3 (0, 5) +1612466840: Socket error on client , disconnecting. +1612466860: New connection from 172.18.0.3 on port 1883. +1612466860: Sending CONNACK to 172.18.0.3 (0, 5) +1612466860: Socket error on client , disconnecting. +1612466880: New connection from 172.18.0.3 on port 1883. +1612466880: Sending CONNACK to 172.18.0.3 (0, 5) +1612466880: Socket error on client , disconnecting. +1612466900: New connection from 172.18.0.3 on port 1883. +1612466900: Sending CONNACK to 172.18.0.3 (0, 5) +1612466900: Socket error on client , disconnecting. +1612466920: New connection from 172.18.0.3 on port 1883. +1612466920: Sending CONNACK to 172.18.0.3 (0, 5) +1612466920: Socket error on client , disconnecting. +1612466940: New connection from 172.18.0.3 on port 1883. +1612466940: Sending CONNACK to 172.18.0.3 (0, 5) +1612466940: Socket error on client , disconnecting. +1612466960: New connection from 172.18.0.3 on port 1883. +1612466960: Sending CONNACK to 172.18.0.3 (0, 5) +1612466960: Socket error on client , disconnecting. +1612466980: New connection from 172.18.0.3 on port 1883. +1612466980: Sending CONNACK to 172.18.0.3 (0, 5) +1612466980: Socket error on client , disconnecting. +1612467000: New connection from 172.18.0.3 on port 1883. +1612467000: Sending CONNACK to 172.18.0.3 (0, 5) +1612467000: Socket error on client , disconnecting. +1612467020: New connection from 172.18.0.3 on port 1883. +1612467020: Sending CONNACK to 172.18.0.3 (0, 5) +1612467020: Socket error on client , disconnecting. +1612467040: New connection from 172.18.0.3 on port 1883. +1612467040: Sending CONNACK to 172.18.0.3 (0, 5) +1612467040: Socket error on client , disconnecting. +1612467060: New connection from 172.18.0.3 on port 1883. +1612467060: Sending CONNACK to 172.18.0.3 (0, 5) +1612467060: Socket error on client , disconnecting. +1612467080: New connection from 172.18.0.3 on port 1883. +1612467080: Sending CONNACK to 172.18.0.3 (0, 5) +1612467080: Socket error on client , disconnecting. +1612467100: New connection from 172.18.0.3 on port 1883. +1612467100: Sending CONNACK to 172.18.0.3 (0, 5) +1612467100: Socket error on client , disconnecting. +1612467120: New connection from 172.18.0.3 on port 1883. +1612467120: Sending CONNACK to 172.18.0.3 (0, 5) +1612467120: Socket error on client , disconnecting. +1612467140: New connection from 172.18.0.3 on port 1883. +1612467140: Sending CONNACK to 172.18.0.3 (0, 5) +1612467140: Socket error on client , disconnecting. +1612467160: New connection from 172.18.0.3 on port 1883. +1612467160: Sending CONNACK to 172.18.0.3 (0, 5) +1612467160: Socket error on client , disconnecting. +1612467180: New connection from 172.18.0.3 on port 1883. +1612467180: Sending CONNACK to 172.18.0.3 (0, 5) +1612467180: Socket error on client , disconnecting. +1612467200: New connection from 172.18.0.3 on port 1883. +1612467200: Sending CONNACK to 172.18.0.3 (0, 5) +1612467200: Socket error on client , disconnecting. +1612467220: New connection from 172.18.0.3 on port 1883. +1612467220: Sending CONNACK to 172.18.0.3 (0, 5) +1612467220: Socket error on client , disconnecting. +1612467240: New connection from 172.18.0.3 on port 1883. +1612467240: Sending CONNACK to 172.18.0.3 (0, 5) +1612467240: Socket error on client , disconnecting. +1612467260: New connection from 172.18.0.3 on port 1883. +1612467260: Sending CONNACK to 172.18.0.3 (0, 5) +1612467260: Socket error on client , disconnecting. +1612467280: New connection from 172.18.0.3 on port 1883. +1612467280: Sending CONNACK to 172.18.0.3 (0, 5) +1612467280: Socket error on client , disconnecting. +1612467300: New connection from 172.18.0.3 on port 1883. +1612467300: Sending CONNACK to 172.18.0.3 (0, 5) +1612467300: Socket error on client , disconnecting. +1612467320: New connection from 172.18.0.3 on port 1883. +1612467320: Sending CONNACK to 172.18.0.3 (0, 5) +1612467320: Socket error on client , disconnecting. +1612467340: New connection from 172.18.0.3 on port 1883. +1612467340: Sending CONNACK to 172.18.0.3 (0, 5) +1612467340: Socket error on client , disconnecting. +1612467360: New connection from 172.18.0.3 on port 1883. +1612467360: Sending CONNACK to 172.18.0.3 (0, 5) +1612467360: Socket error on client , disconnecting. +1612467380: New connection from 172.18.0.3 on port 1883. +1612467380: Sending CONNACK to 172.18.0.3 (0, 5) +1612467380: Socket error on client , disconnecting. +1612467400: New connection from 172.18.0.3 on port 1883. +1612467400: Sending CONNACK to 172.18.0.3 (0, 5) +1612467400: Socket error on client , disconnecting. +1612467420: New connection from 172.18.0.3 on port 1883. +1612467420: Sending CONNACK to 172.18.0.3 (0, 5) +1612467420: Socket error on client , disconnecting. +1612467440: New connection from 172.18.0.3 on port 1883. +1612467440: Sending CONNACK to 172.18.0.3 (0, 5) +1612467440: Socket error on client , disconnecting. +1612467460: New connection from 172.18.0.3 on port 1883. +1612467460: Sending CONNACK to 172.18.0.3 (0, 5) +1612467460: Socket error on client , disconnecting. +1612467480: New connection from 172.18.0.3 on port 1883. +1612467480: Sending CONNACK to 172.18.0.3 (0, 5) +1612467480: Socket error on client , disconnecting. +1612467500: New connection from 172.18.0.3 on port 1883. +1612467500: Sending CONNACK to 172.18.0.3 (0, 5) +1612467500: Socket error on client , disconnecting. +1612467520: New connection from 172.18.0.3 on port 1883. +1612467520: Sending CONNACK to 172.18.0.3 (0, 5) +1612467520: Socket error on client , disconnecting. +1612467540: New connection from 172.18.0.3 on port 1883. +1612467540: Sending CONNACK to 172.18.0.3 (0, 5) +1612467540: Socket error on client , disconnecting. +1612467560: New connection from 172.18.0.3 on port 1883. +1612467560: Sending CONNACK to 172.18.0.3 (0, 5) +1612467560: Socket error on client , disconnecting. +1612467580: New connection from 172.18.0.3 on port 1883. +1612467580: Sending CONNACK to 172.18.0.3 (0, 5) +1612467580: Socket error on client , disconnecting. +1612467600: New connection from 172.18.0.3 on port 1883. +1612467600: Sending CONNACK to 172.18.0.3 (0, 5) +1612467600: Socket error on client , disconnecting. +1612467620: New connection from 172.18.0.3 on port 1883. +1612467620: Sending CONNACK to 172.18.0.3 (0, 5) +1612467620: Socket error on client , disconnecting. +1612467640: New connection from 172.18.0.3 on port 1883. +1612467640: Sending CONNACK to 172.18.0.3 (0, 5) +1612467640: Socket error on client , disconnecting. +1612467660: New connection from 172.18.0.3 on port 1883. +1612467660: Sending CONNACK to 172.18.0.3 (0, 5) +1612467660: Socket error on client , disconnecting. +1612467680: New connection from 172.18.0.3 on port 1883. +1612467680: Sending CONNACK to 172.18.0.3 (0, 5) +1612467680: Socket error on client , disconnecting. +1612467700: New connection from 172.18.0.3 on port 1883. +1612467700: Sending CONNACK to 172.18.0.3 (0, 5) +1612467700: Socket error on client , disconnecting. +1612467720: New connection from 172.18.0.3 on port 1883. +1612467720: Sending CONNACK to 172.18.0.3 (0, 5) +1612467720: Socket error on client , disconnecting. +1612467740: New connection from 172.18.0.3 on port 1883. +1612467740: Sending CONNACK to 172.18.0.3 (0, 5) +1612467740: Socket error on client , disconnecting. +1612467760: New connection from 172.18.0.3 on port 1883. +1612467760: Sending CONNACK to 172.18.0.3 (0, 5) +1612467760: Socket error on client , disconnecting. +1612467780: New connection from 172.18.0.3 on port 1883. +1612467780: Sending CONNACK to 172.18.0.3 (0, 5) +1612467780: Socket error on client , disconnecting. +1612467800: New connection from 172.18.0.3 on port 1883. +1612467800: Sending CONNACK to 172.18.0.3 (0, 5) +1612467800: Socket error on client , disconnecting. +1612467820: New connection from 172.18.0.3 on port 1883. +1612467820: Sending CONNACK to 172.18.0.3 (0, 5) +1612467820: Socket error on client , disconnecting. +1612467840: New connection from 172.18.0.3 on port 1883. +1612467840: Sending CONNACK to 172.18.0.3 (0, 5) +1612467840: Socket error on client , disconnecting. +1612467860: New connection from 172.18.0.3 on port 1883. +1612467860: Sending CONNACK to 172.18.0.3 (0, 5) +1612467860: Socket error on client , disconnecting. +1612467880: New connection from 172.18.0.3 on port 1883. +1612467880: Sending CONNACK to 172.18.0.3 (0, 5) +1612467880: Socket error on client , disconnecting. +1612467900: New connection from 172.18.0.3 on port 1883. +1612467900: Sending CONNACK to 172.18.0.3 (0, 5) +1612467900: Socket error on client , disconnecting. +1612467920: New connection from 172.18.0.3 on port 1883. +1612467920: Sending CONNACK to 172.18.0.3 (0, 5) +1612467920: Socket error on client , disconnecting. +1612467940: New connection from 172.18.0.3 on port 1883. +1612467940: Sending CONNACK to 172.18.0.3 (0, 5) +1612467940: Socket error on client , disconnecting. +1612467960: New connection from 172.18.0.3 on port 1883. +1612467960: Sending CONNACK to 172.18.0.3 (0, 5) +1612467960: Socket error on client , disconnecting. +1612467980: New connection from 172.18.0.3 on port 1883. +1612467980: Sending CONNACK to 172.18.0.3 (0, 5) +1612467980: Socket error on client , disconnecting. +1612468000: New connection from 172.18.0.3 on port 1883. +1612468000: Sending CONNACK to 172.18.0.3 (0, 5) +1612468000: Socket error on client , disconnecting. +1612468020: New connection from 172.18.0.3 on port 1883. +1612468020: Sending CONNACK to 172.18.0.3 (0, 5) +1612468020: Socket error on client , disconnecting. +1612468029: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612468029: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612468029: Error: Permission denied. +1612468040: New connection from 172.18.0.3 on port 1883. +1612468040: Sending CONNACK to 172.18.0.3 (0, 5) +1612468040: Socket error on client , disconnecting. +1612468060: New connection from 172.18.0.3 on port 1883. +1612468060: Sending CONNACK to 172.18.0.3 (0, 5) +1612468060: Socket error on client , disconnecting. +1612468080: New connection from 172.18.0.3 on port 1883. +1612468080: Sending CONNACK to 172.18.0.3 (0, 5) +1612468080: Socket error on client , disconnecting. +1612468100: New connection from 172.18.0.3 on port 1883. +1612468100: Sending CONNACK to 172.18.0.3 (0, 5) +1612468100: Socket error on client , disconnecting. +1612468120: New connection from 172.18.0.3 on port 1883. +1612468120: Sending CONNACK to 172.18.0.3 (0, 5) +1612468120: Socket error on client , disconnecting. +1612468140: New connection from 172.18.0.3 on port 1883. +1612468140: Sending CONNACK to 172.18.0.3 (0, 5) +1612468140: Socket error on client , disconnecting. +1612468160: New connection from 172.18.0.3 on port 1883. +1612468160: Sending CONNACK to 172.18.0.3 (0, 5) +1612468160: Socket error on client , disconnecting. +1612468180: New connection from 172.18.0.3 on port 1883. +1612468180: Sending CONNACK to 172.18.0.3 (0, 5) +1612468180: Socket error on client , disconnecting. +1612468200: New connection from 172.18.0.3 on port 1883. +1612468200: Sending CONNACK to 172.18.0.3 (0, 5) +1612468200: Socket error on client , disconnecting. +1612468220: New connection from 172.18.0.3 on port 1883. +1612468220: Sending CONNACK to 172.18.0.3 (0, 5) +1612468220: Socket error on client , disconnecting. +1612468240: New connection from 172.18.0.3 on port 1883. +1612468240: Sending CONNACK to 172.18.0.3 (0, 5) +1612468240: Socket error on client , disconnecting. +1612468260: New connection from 172.18.0.3 on port 1883. +1612468260: Sending CONNACK to 172.18.0.3 (0, 5) +1612468260: Socket error on client , disconnecting. +1612468280: New connection from 172.18.0.3 on port 1883. +1612468280: Sending CONNACK to 172.18.0.3 (0, 5) +1612468280: Socket error on client , disconnecting. +1612468300: New connection from 172.18.0.3 on port 1883. +1612468300: Sending CONNACK to 172.18.0.3 (0, 5) +1612468300: Socket error on client , disconnecting. +1612468320: New connection from 172.18.0.3 on port 1883. +1612468320: Sending CONNACK to 172.18.0.3 (0, 5) +1612468320: Socket error on client , disconnecting. +1612468340: New connection from 172.18.0.3 on port 1883. +1612468340: Sending CONNACK to 172.18.0.3 (0, 5) +1612468340: Socket error on client , disconnecting. +1612468360: New connection from 172.18.0.3 on port 1883. +1612468360: Sending CONNACK to 172.18.0.3 (0, 5) +1612468360: Socket error on client , disconnecting. +1612468380: New connection from 172.18.0.3 on port 1883. +1612468380: Sending CONNACK to 172.18.0.3 (0, 5) +1612468380: Socket error on client , disconnecting. +1612468400: New connection from 172.18.0.3 on port 1883. +1612468400: Sending CONNACK to 172.18.0.3 (0, 5) +1612468400: Socket error on client , disconnecting. +1612468420: New connection from 172.18.0.3 on port 1883. +1612468420: Sending CONNACK to 172.18.0.3 (0, 5) +1612468420: Socket error on client , disconnecting. +1612468440: New connection from 172.18.0.3 on port 1883. +1612468440: Sending CONNACK to 172.18.0.3 (0, 5) +1612468440: Socket error on client , disconnecting. +1612468460: New connection from 172.18.0.3 on port 1883. +1612468460: Sending CONNACK to 172.18.0.3 (0, 5) +1612468460: Socket error on client , disconnecting. +1612468480: New connection from 172.18.0.3 on port 1883. +1612468480: Sending CONNACK to 172.18.0.3 (0, 5) +1612468480: Socket error on client , disconnecting. +1612468500: New connection from 172.18.0.3 on port 1883. +1612468500: Sending CONNACK to 172.18.0.3 (0, 5) +1612468500: Socket error on client , disconnecting. +1612468520: New connection from 172.18.0.3 on port 1883. +1612468520: Sending CONNACK to 172.18.0.3 (0, 5) +1612468520: Socket error on client , disconnecting. +1612468540: New connection from 172.18.0.3 on port 1883. +1612468540: Sending CONNACK to 172.18.0.3 (0, 5) +1612468540: Socket error on client , disconnecting. +1612468560: New connection from 172.18.0.3 on port 1883. +1612468560: Sending CONNACK to 172.18.0.3 (0, 5) +1612468560: Socket error on client , disconnecting. +1612468580: New connection from 172.18.0.3 on port 1883. +1612468580: Sending CONNACK to 172.18.0.3 (0, 5) +1612468580: Socket error on client , disconnecting. +1612468600: New connection from 172.18.0.3 on port 1883. +1612468600: Sending CONNACK to 172.18.0.3 (0, 5) +1612468600: Socket error on client , disconnecting. +1612468620: New connection from 172.18.0.3 on port 1883. +1612468620: Sending CONNACK to 172.18.0.3 (0, 5) +1612468620: Socket error on client , disconnecting. +1612468640: New connection from 172.18.0.3 on port 1883. +1612468640: Sending CONNACK to 172.18.0.3 (0, 5) +1612468640: Socket error on client , disconnecting. +1612468660: New connection from 172.18.0.3 on port 1883. +1612468660: Sending CONNACK to 172.18.0.3 (0, 5) +1612468660: Socket error on client , disconnecting. +1612468680: New connection from 172.18.0.3 on port 1883. +1612468680: Sending CONNACK to 172.18.0.3 (0, 5) +1612468680: Socket error on client , disconnecting. +1612468700: New connection from 172.18.0.3 on port 1883. +1612468700: Sending CONNACK to 172.18.0.3 (0, 5) +1612468700: Socket error on client , disconnecting. +1612468720: New connection from 172.18.0.3 on port 1883. +1612468720: Sending CONNACK to 172.18.0.3 (0, 5) +1612468720: Socket error on client , disconnecting. +1612468740: New connection from 172.18.0.3 on port 1883. +1612468740: Sending CONNACK to 172.18.0.3 (0, 5) +1612468740: Socket error on client , disconnecting. +1612468760: New connection from 172.18.0.3 on port 1883. +1612468760: Sending CONNACK to 172.18.0.3 (0, 5) +1612468760: Socket error on client , disconnecting. +1612468780: New connection from 172.18.0.3 on port 1883. +1612468780: Sending CONNACK to 172.18.0.3 (0, 5) +1612468780: Socket error on client , disconnecting. +1612468800: New connection from 172.18.0.3 on port 1883. +1612468800: Sending CONNACK to 172.18.0.3 (0, 5) +1612468800: Socket error on client , disconnecting. +1612468820: New connection from 172.18.0.3 on port 1883. +1612468820: Sending CONNACK to 172.18.0.3 (0, 5) +1612468820: Socket error on client , disconnecting. +1612468840: New connection from 172.18.0.3 on port 1883. +1612468840: Sending CONNACK to 172.18.0.3 (0, 5) +1612468840: Socket error on client , disconnecting. +1612468860: New connection from 172.18.0.3 on port 1883. +1612468860: Sending CONNACK to 172.18.0.3 (0, 5) +1612468860: Socket error on client , disconnecting. +1612468880: New connection from 172.18.0.3 on port 1883. +1612468880: Sending CONNACK to 172.18.0.3 (0, 5) +1612468880: Socket error on client , disconnecting. +1612468900: New connection from 172.18.0.3 on port 1883. +1612468900: Sending CONNACK to 172.18.0.3 (0, 5) +1612468900: Socket error on client , disconnecting. +1612468920: New connection from 172.18.0.3 on port 1883. +1612468920: Sending CONNACK to 172.18.0.3 (0, 5) +1612468920: Socket error on client , disconnecting. +1612468940: New connection from 172.18.0.3 on port 1883. +1612468940: Sending CONNACK to 172.18.0.3 (0, 5) +1612468940: Socket error on client , disconnecting. +1612468960: New connection from 172.18.0.3 on port 1883. +1612468960: Sending CONNACK to 172.18.0.3 (0, 5) +1612468960: Socket error on client , disconnecting. +1612468980: New connection from 172.18.0.3 on port 1883. +1612468980: Sending CONNACK to 172.18.0.3 (0, 5) +1612468980: Socket error on client , disconnecting. +1612469000: New connection from 172.18.0.3 on port 1883. +1612469000: Sending CONNACK to 172.18.0.3 (0, 5) +1612469000: Socket error on client , disconnecting. +1612469020: New connection from 172.18.0.3 on port 1883. +1612469020: Sending CONNACK to 172.18.0.3 (0, 5) +1612469020: Socket error on client , disconnecting. +1612469040: New connection from 172.18.0.3 on port 1883. +1612469040: Sending CONNACK to 172.18.0.3 (0, 5) +1612469040: Socket error on client , disconnecting. +1612469060: New connection from 172.18.0.3 on port 1883. +1612469060: Sending CONNACK to 172.18.0.3 (0, 5) +1612469060: Socket error on client , disconnecting. +1612469080: New connection from 172.18.0.3 on port 1883. +1612469080: Sending CONNACK to 172.18.0.3 (0, 5) +1612469080: Socket error on client , disconnecting. +1612469100: New connection from 172.18.0.3 on port 1883. +1612469100: Sending CONNACK to 172.18.0.3 (0, 5) +1612469100: Socket error on client , disconnecting. +1612469120: New connection from 172.18.0.3 on port 1883. +1612469120: Sending CONNACK to 172.18.0.3 (0, 5) +1612469120: Socket error on client , disconnecting. +1612469140: New connection from 172.18.0.3 on port 1883. +1612469140: Sending CONNACK to 172.18.0.3 (0, 5) +1612469140: Socket error on client , disconnecting. +1612469160: New connection from 172.18.0.3 on port 1883. +1612469160: Sending CONNACK to 172.18.0.3 (0, 5) +1612469160: Socket error on client , disconnecting. +1612469180: New connection from 172.18.0.3 on port 1883. +1612469180: Sending CONNACK to 172.18.0.3 (0, 5) +1612469180: Socket error on client , disconnecting. +1612469200: New connection from 172.18.0.3 on port 1883. +1612469200: Sending CONNACK to 172.18.0.3 (0, 5) +1612469200: Socket error on client , disconnecting. +1612469220: New connection from 172.18.0.3 on port 1883. +1612469220: Sending CONNACK to 172.18.0.3 (0, 5) +1612469220: Socket error on client , disconnecting. +1612469240: New connection from 172.18.0.3 on port 1883. +1612469240: Sending CONNACK to 172.18.0.3 (0, 5) +1612469240: Socket error on client , disconnecting. +1612469260: New connection from 172.18.0.3 on port 1883. +1612469260: Sending CONNACK to 172.18.0.3 (0, 5) +1612469260: Socket error on client , disconnecting. +1612469280: New connection from 172.18.0.3 on port 1883. +1612469280: Sending CONNACK to 172.18.0.3 (0, 5) +1612469280: Socket error on client , disconnecting. +1612469300: New connection from 172.18.0.3 on port 1883. +1612469300: Sending CONNACK to 172.18.0.3 (0, 5) +1612469300: Socket error on client , disconnecting. +1612469320: New connection from 172.18.0.3 on port 1883. +1612469320: Sending CONNACK to 172.18.0.3 (0, 5) +1612469320: Socket error on client , disconnecting. +1612469340: New connection from 172.18.0.3 on port 1883. +1612469340: Sending CONNACK to 172.18.0.3 (0, 5) +1612469340: Socket error on client , disconnecting. +1612469360: New connection from 172.18.0.3 on port 1883. +1612469360: Sending CONNACK to 172.18.0.3 (0, 5) +1612469360: Socket error on client , disconnecting. +1612469380: New connection from 172.18.0.3 on port 1883. +1612469380: Sending CONNACK to 172.18.0.3 (0, 5) +1612469380: Socket error on client , disconnecting. +1612469400: New connection from 172.18.0.3 on port 1883. +1612469400: Sending CONNACK to 172.18.0.3 (0, 5) +1612469400: Socket error on client , disconnecting. +1612469420: New connection from 172.18.0.3 on port 1883. +1612469420: Sending CONNACK to 172.18.0.3 (0, 5) +1612469420: Socket error on client , disconnecting. +1612469440: New connection from 172.18.0.3 on port 1883. +1612469440: Sending CONNACK to 172.18.0.3 (0, 5) +1612469440: Socket error on client , disconnecting. +1612469460: New connection from 172.18.0.3 on port 1883. +1612469460: Sending CONNACK to 172.18.0.3 (0, 5) +1612469460: Socket error on client , disconnecting. +1612469480: New connection from 172.18.0.3 on port 1883. +1612469480: Sending CONNACK to 172.18.0.3 (0, 5) +1612469480: Socket error on client , disconnecting. +1612469500: New connection from 172.18.0.3 on port 1883. +1612469500: Sending CONNACK to 172.18.0.3 (0, 5) +1612469500: Socket error on client , disconnecting. +1612469520: New connection from 172.18.0.3 on port 1883. +1612469520: Sending CONNACK to 172.18.0.3 (0, 5) +1612469520: Socket error on client , disconnecting. +1612469540: New connection from 172.18.0.3 on port 1883. +1612469540: Sending CONNACK to 172.18.0.3 (0, 5) +1612469540: Socket error on client , disconnecting. +1612469560: New connection from 172.18.0.3 on port 1883. +1612469560: Sending CONNACK to 172.18.0.3 (0, 5) +1612469560: Socket error on client , disconnecting. +1612469580: New connection from 172.18.0.3 on port 1883. +1612469580: Sending CONNACK to 172.18.0.3 (0, 5) +1612469580: Socket error on client , disconnecting. +1612469600: New connection from 172.18.0.3 on port 1883. +1612469600: Sending CONNACK to 172.18.0.3 (0, 5) +1612469600: Socket error on client , disconnecting. +1612469620: New connection from 172.18.0.3 on port 1883. +1612469620: Sending CONNACK to 172.18.0.3 (0, 5) +1612469620: Socket error on client , disconnecting. +1612469640: New connection from 172.18.0.3 on port 1883. +1612469640: Sending CONNACK to 172.18.0.3 (0, 5) +1612469640: Socket error on client , disconnecting. +1612469660: New connection from 172.18.0.3 on port 1883. +1612469660: Sending CONNACK to 172.18.0.3 (0, 5) +1612469660: Socket error on client , disconnecting. +1612469680: New connection from 172.18.0.3 on port 1883. +1612469680: Sending CONNACK to 172.18.0.3 (0, 5) +1612469680: Socket error on client , disconnecting. +1612469700: New connection from 172.18.0.3 on port 1883. +1612469700: Sending CONNACK to 172.18.0.3 (0, 5) +1612469700: Socket error on client , disconnecting. +1612469720: New connection from 172.18.0.3 on port 1883. +1612469720: Sending CONNACK to 172.18.0.3 (0, 5) +1612469720: Socket error on client , disconnecting. +1612469740: New connection from 172.18.0.3 on port 1883. +1612469740: Sending CONNACK to 172.18.0.3 (0, 5) +1612469740: Socket error on client , disconnecting. +1612469760: New connection from 172.18.0.3 on port 1883. +1612469760: Sending CONNACK to 172.18.0.3 (0, 5) +1612469760: Socket error on client , disconnecting. +1612469780: New connection from 172.18.0.3 on port 1883. +1612469780: Sending CONNACK to 172.18.0.3 (0, 5) +1612469780: Socket error on client , disconnecting. +1612469800: New connection from 172.18.0.3 on port 1883. +1612469800: Sending CONNACK to 172.18.0.3 (0, 5) +1612469800: Socket error on client , disconnecting. +1612469820: New connection from 172.18.0.3 on port 1883. +1612469820: Sending CONNACK to 172.18.0.3 (0, 5) +1612469820: Socket error on client , disconnecting. +1612469830: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612469830: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612469830: Error: Permission denied. +1612469840: New connection from 172.18.0.3 on port 1883. +1612469840: Sending CONNACK to 172.18.0.3 (0, 5) +1612469840: Socket error on client , disconnecting. +1612469860: New connection from 172.18.0.3 on port 1883. +1612469860: Sending CONNACK to 172.18.0.3 (0, 5) +1612469860: Socket error on client , disconnecting. +1612469880: New connection from 172.18.0.3 on port 1883. +1612469880: Sending CONNACK to 172.18.0.3 (0, 5) +1612469880: Socket error on client , disconnecting. +1612469900: New connection from 172.18.0.3 on port 1883. +1612469900: Sending CONNACK to 172.18.0.3 (0, 5) +1612469900: Socket error on client , disconnecting. +1612469920: New connection from 172.18.0.3 on port 1883. +1612469920: Sending CONNACK to 172.18.0.3 (0, 5) +1612469920: Socket error on client , disconnecting. +1612469940: New connection from 172.18.0.3 on port 1883. +1612469940: Sending CONNACK to 172.18.0.3 (0, 5) +1612469940: Socket error on client , disconnecting. +1612469960: New connection from 172.18.0.3 on port 1883. +1612469960: Sending CONNACK to 172.18.0.3 (0, 5) +1612469960: Socket error on client , disconnecting. +1612469980: New connection from 172.18.0.3 on port 1883. +1612469980: Sending CONNACK to 172.18.0.3 (0, 5) +1612469980: Socket error on client , disconnecting. +1612470000: New connection from 172.18.0.3 on port 1883. +1612470000: Sending CONNACK to 172.18.0.3 (0, 5) +1612470000: Socket error on client , disconnecting. +1612470020: New connection from 172.18.0.3 on port 1883. +1612470020: Sending CONNACK to 172.18.0.3 (0, 5) +1612470020: Socket error on client , disconnecting. +1612470040: New connection from 172.18.0.3 on port 1883. +1612470040: Sending CONNACK to 172.18.0.3 (0, 5) +1612470040: Socket error on client , disconnecting. +1612470060: New connection from 172.18.0.3 on port 1883. +1612470060: Sending CONNACK to 172.18.0.3 (0, 5) +1612470060: Socket error on client , disconnecting. +1612470080: New connection from 172.18.0.3 on port 1883. +1612470080: Sending CONNACK to 172.18.0.3 (0, 5) +1612470080: Socket error on client , disconnecting. +1612470100: New connection from 172.18.0.3 on port 1883. +1612470100: Sending CONNACK to 172.18.0.3 (0, 5) +1612470100: Socket error on client , disconnecting. +1612470120: New connection from 172.18.0.3 on port 1883. +1612470120: Sending CONNACK to 172.18.0.3 (0, 5) +1612470120: Socket error on client , disconnecting. +1612470140: New connection from 172.18.0.3 on port 1883. +1612470140: Sending CONNACK to 172.18.0.3 (0, 5) +1612470140: Socket error on client , disconnecting. +1612470160: New connection from 172.18.0.3 on port 1883. +1612470160: Sending CONNACK to 172.18.0.3 (0, 5) +1612470160: Socket error on client , disconnecting. +1612470180: New connection from 172.18.0.3 on port 1883. +1612470180: Sending CONNACK to 172.18.0.3 (0, 5) +1612470180: Socket error on client , disconnecting. +1612470200: New connection from 172.18.0.3 on port 1883. +1612470200: Sending CONNACK to 172.18.0.3 (0, 5) +1612470200: Socket error on client , disconnecting. +1612470220: New connection from 172.18.0.3 on port 1883. +1612470220: Sending CONNACK to 172.18.0.3 (0, 5) +1612470220: Socket error on client , disconnecting. +1612470240: New connection from 172.18.0.3 on port 1883. +1612470240: Sending CONNACK to 172.18.0.3 (0, 5) +1612470240: Socket error on client , disconnecting. +1612470260: New connection from 172.18.0.3 on port 1883. +1612470260: Sending CONNACK to 172.18.0.3 (0, 5) +1612470260: Socket error on client , disconnecting. +1612470280: New connection from 172.18.0.3 on port 1883. +1612470280: Sending CONNACK to 172.18.0.3 (0, 5) +1612470280: Socket error on client , disconnecting. +1612470300: New connection from 172.18.0.3 on port 1883. +1612470300: Sending CONNACK to 172.18.0.3 (0, 5) +1612470300: Socket error on client , disconnecting. +1612470320: New connection from 172.18.0.3 on port 1883. +1612470320: Sending CONNACK to 172.18.0.3 (0, 5) +1612470320: Socket error on client , disconnecting. +1612470340: New connection from 172.18.0.3 on port 1883. +1612470340: Sending CONNACK to 172.18.0.3 (0, 5) +1612470340: Socket error on client , disconnecting. +1612470360: New connection from 172.18.0.3 on port 1883. +1612470360: Sending CONNACK to 172.18.0.3 (0, 5) +1612470360: Socket error on client , disconnecting. +1612470380: New connection from 172.18.0.3 on port 1883. +1612470380: Sending CONNACK to 172.18.0.3 (0, 5) +1612470380: Socket error on client , disconnecting. +1612470400: New connection from 172.18.0.3 on port 1883. +1612470400: Sending CONNACK to 172.18.0.3 (0, 5) +1612470400: Socket error on client , disconnecting. +1612470420: New connection from 172.18.0.3 on port 1883. +1612470420: Sending CONNACK to 172.18.0.3 (0, 5) +1612470420: Socket error on client , disconnecting. +1612470440: New connection from 172.18.0.3 on port 1883. +1612470440: Sending CONNACK to 172.18.0.3 (0, 5) +1612470440: Socket error on client , disconnecting. +1612470460: New connection from 172.18.0.3 on port 1883. +1612470460: Sending CONNACK to 172.18.0.3 (0, 5) +1612470460: Socket error on client , disconnecting. +1612470480: New connection from 172.18.0.3 on port 1883. +1612470480: Sending CONNACK to 172.18.0.3 (0, 5) +1612470480: Socket error on client , disconnecting. +1612470500: New connection from 172.18.0.3 on port 1883. +1612470500: Sending CONNACK to 172.18.0.3 (0, 5) +1612470500: Socket error on client , disconnecting. +1612470520: New connection from 172.18.0.3 on port 1883. +1612470520: Sending CONNACK to 172.18.0.3 (0, 5) +1612470520: Socket error on client , disconnecting. +1612470540: New connection from 172.18.0.3 on port 1883. +1612470540: Sending CONNACK to 172.18.0.3 (0, 5) +1612470540: Socket error on client , disconnecting. +1612470560: New connection from 172.18.0.3 on port 1883. +1612470560: Sending CONNACK to 172.18.0.3 (0, 5) +1612470560: Socket error on client , disconnecting. +1612470580: New connection from 172.18.0.3 on port 1883. +1612470580: Sending CONNACK to 172.18.0.3 (0, 5) +1612470580: Socket error on client , disconnecting. +1612470600: New connection from 172.18.0.3 on port 1883. +1612470600: Sending CONNACK to 172.18.0.3 (0, 5) +1612470600: Socket error on client , disconnecting. +1612470620: New connection from 172.18.0.3 on port 1883. +1612470620: Sending CONNACK to 172.18.0.3 (0, 5) +1612470620: Socket error on client , disconnecting. +1612470640: New connection from 172.18.0.3 on port 1883. +1612470640: Sending CONNACK to 172.18.0.3 (0, 5) +1612470640: Socket error on client , disconnecting. +1612470660: New connection from 172.18.0.3 on port 1883. +1612470660: Sending CONNACK to 172.18.0.3 (0, 5) +1612470660: Socket error on client , disconnecting. +1612470680: New connection from 172.18.0.3 on port 1883. +1612470680: Sending CONNACK to 172.18.0.3 (0, 5) +1612470680: Socket error on client , disconnecting. +1612470700: New connection from 172.18.0.3 on port 1883. +1612470700: Sending CONNACK to 172.18.0.3 (0, 5) +1612470700: Socket error on client , disconnecting. +1612470720: New connection from 172.18.0.3 on port 1883. +1612470720: Sending CONNACK to 172.18.0.3 (0, 5) +1612470720: Socket error on client , disconnecting. +1612470740: New connection from 172.18.0.3 on port 1883. +1612470740: Sending CONNACK to 172.18.0.3 (0, 5) +1612470740: Socket error on client , disconnecting. +1612470760: New connection from 172.18.0.3 on port 1883. +1612470760: Sending CONNACK to 172.18.0.3 (0, 5) +1612470760: Socket error on client , disconnecting. +1612470780: New connection from 172.18.0.3 on port 1883. +1612470780: Sending CONNACK to 172.18.0.3 (0, 5) +1612470780: Socket error on client , disconnecting. +1612470800: New connection from 172.18.0.3 on port 1883. +1612470800: Sending CONNACK to 172.18.0.3 (0, 5) +1612470800: Socket error on client , disconnecting. +1612470820: New connection from 172.18.0.3 on port 1883. +1612470820: Sending CONNACK to 172.18.0.3 (0, 5) +1612470820: Socket error on client , disconnecting. +1612470840: New connection from 172.18.0.3 on port 1883. +1612470840: Sending CONNACK to 172.18.0.3 (0, 5) +1612470840: Socket error on client , disconnecting. +1612470860: New connection from 172.18.0.3 on port 1883. +1612470860: Sending CONNACK to 172.18.0.3 (0, 5) +1612470860: Socket error on client , disconnecting. +1612470880: New connection from 172.18.0.3 on port 1883. +1612470880: Sending CONNACK to 172.18.0.3 (0, 5) +1612470880: Socket error on client , disconnecting. +1612470900: New connection from 172.18.0.3 on port 1883. +1612470900: Sending CONNACK to 172.18.0.3 (0, 5) +1612470900: Socket error on client , disconnecting. +1612470920: New connection from 172.18.0.3 on port 1883. +1612470920: Sending CONNACK to 172.18.0.3 (0, 5) +1612470920: Socket error on client , disconnecting. +1612470940: New connection from 172.18.0.3 on port 1883. +1612470940: Sending CONNACK to 172.18.0.3 (0, 5) +1612470940: Socket error on client , disconnecting. +1612470960: New connection from 172.18.0.3 on port 1883. +1612470960: Sending CONNACK to 172.18.0.3 (0, 5) +1612470960: Socket error on client , disconnecting. +1612470980: New connection from 172.18.0.3 on port 1883. +1612470980: Sending CONNACK to 172.18.0.3 (0, 5) +1612470980: Socket error on client , disconnecting. +1612471000: New connection from 172.18.0.3 on port 1883. +1612471000: Sending CONNACK to 172.18.0.3 (0, 5) +1612471000: Socket error on client , disconnecting. +1612471020: New connection from 172.18.0.3 on port 1883. +1612471020: Sending CONNACK to 172.18.0.3 (0, 5) +1612471020: Socket error on client , disconnecting. +1612471040: New connection from 172.18.0.3 on port 1883. +1612471040: Sending CONNACK to 172.18.0.3 (0, 5) +1612471040: Socket error on client , disconnecting. +1612471060: New connection from 172.18.0.3 on port 1883. +1612471060: Sending CONNACK to 172.18.0.3 (0, 5) +1612471060: Socket error on client , disconnecting. +1612471080: New connection from 172.18.0.3 on port 1883. +1612471080: Sending CONNACK to 172.18.0.3 (0, 5) +1612471080: Socket error on client , disconnecting. +1612471100: New connection from 172.18.0.3 on port 1883. +1612471100: Sending CONNACK to 172.18.0.3 (0, 5) +1612471100: Socket error on client , disconnecting. +1612471120: New connection from 172.18.0.3 on port 1883. +1612471120: Sending CONNACK to 172.18.0.3 (0, 5) +1612471120: Socket error on client , disconnecting. +1612471140: New connection from 172.18.0.3 on port 1883. +1612471140: Sending CONNACK to 172.18.0.3 (0, 5) +1612471140: Socket error on client , disconnecting. +1612471160: New connection from 172.18.0.3 on port 1883. +1612471160: Sending CONNACK to 172.18.0.3 (0, 5) +1612471160: Socket error on client , disconnecting. +1612471180: New connection from 172.18.0.3 on port 1883. +1612471180: Sending CONNACK to 172.18.0.3 (0, 5) +1612471180: Socket error on client , disconnecting. +1612471200: New connection from 172.18.0.3 on port 1883. +1612471200: Sending CONNACK to 172.18.0.3 (0, 5) +1612471200: Socket error on client , disconnecting. +1612471220: New connection from 172.18.0.3 on port 1883. +1612471220: Sending CONNACK to 172.18.0.3 (0, 5) +1612471220: Socket error on client , disconnecting. +1612471240: New connection from 172.18.0.3 on port 1883. +1612471240: Sending CONNACK to 172.18.0.3 (0, 5) +1612471240: Socket error on client , disconnecting. +1612471260: New connection from 172.18.0.3 on port 1883. +1612471260: Sending CONNACK to 172.18.0.3 (0, 5) +1612471260: Socket error on client , disconnecting. +1612471280: New connection from 172.18.0.3 on port 1883. +1612471280: Sending CONNACK to 172.18.0.3 (0, 5) +1612471280: Socket error on client , disconnecting. +1612471300: New connection from 172.18.0.3 on port 1883. +1612471300: Sending CONNACK to 172.18.0.3 (0, 5) +1612471300: Socket error on client , disconnecting. +1612471320: New connection from 172.18.0.3 on port 1883. +1612471320: Sending CONNACK to 172.18.0.3 (0, 5) +1612471320: Socket error on client , disconnecting. +1612471340: New connection from 172.18.0.3 on port 1883. +1612471340: Sending CONNACK to 172.18.0.3 (0, 5) +1612471340: Socket error on client , disconnecting. +1612471360: New connection from 172.18.0.3 on port 1883. +1612471360: Sending CONNACK to 172.18.0.3 (0, 5) +1612471360: Socket error on client , disconnecting. +1612471380: New connection from 172.18.0.3 on port 1883. +1612471380: Sending CONNACK to 172.18.0.3 (0, 5) +1612471380: Socket error on client , disconnecting. +1612471400: New connection from 172.18.0.3 on port 1883. +1612471400: Sending CONNACK to 172.18.0.3 (0, 5) +1612471400: Socket error on client , disconnecting. +1612471420: New connection from 172.18.0.3 on port 1883. +1612471420: Sending CONNACK to 172.18.0.3 (0, 5) +1612471420: Socket error on client , disconnecting. +1612471440: New connection from 172.18.0.3 on port 1883. +1612471440: Sending CONNACK to 172.18.0.3 (0, 5) +1612471440: Socket error on client , disconnecting. +1612471460: New connection from 172.18.0.3 on port 1883. +1612471460: Sending CONNACK to 172.18.0.3 (0, 5) +1612471460: Socket error on client , disconnecting. +1612471480: New connection from 172.18.0.3 on port 1883. +1612471480: Sending CONNACK to 172.18.0.3 (0, 5) +1612471480: Socket error on client , disconnecting. +1612471500: New connection from 172.18.0.3 on port 1883. +1612471500: Sending CONNACK to 172.18.0.3 (0, 5) +1612471500: Socket error on client , disconnecting. +1612471520: New connection from 172.18.0.3 on port 1883. +1612471520: Sending CONNACK to 172.18.0.3 (0, 5) +1612471520: Socket error on client , disconnecting. +1612471540: New connection from 172.18.0.3 on port 1883. +1612471540: Sending CONNACK to 172.18.0.3 (0, 5) +1612471540: Socket error on client , disconnecting. +1612471560: New connection from 172.18.0.3 on port 1883. +1612471560: Sending CONNACK to 172.18.0.3 (0, 5) +1612471560: Socket error on client , disconnecting. +1612471580: New connection from 172.18.0.3 on port 1883. +1612471580: Sending CONNACK to 172.18.0.3 (0, 5) +1612471580: Socket error on client , disconnecting. +1612471600: New connection from 172.18.0.3 on port 1883. +1612471600: Sending CONNACK to 172.18.0.3 (0, 5) +1612471600: Socket error on client , disconnecting. +1612471620: New connection from 172.18.0.3 on port 1883. +1612471620: Sending CONNACK to 172.18.0.3 (0, 5) +1612471620: Socket error on client , disconnecting. +1612471631: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612471631: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612471631: Error: Permission denied. +1612471640: New connection from 172.18.0.3 on port 1883. +1612471640: Sending CONNACK to 172.18.0.3 (0, 5) +1612471640: Socket error on client , disconnecting. +1612471660: New connection from 172.18.0.3 on port 1883. +1612471660: Sending CONNACK to 172.18.0.3 (0, 5) +1612471660: Socket error on client , disconnecting. +1612471680: New connection from 172.18.0.3 on port 1883. +1612471680: Sending CONNACK to 172.18.0.3 (0, 5) +1612471680: Socket error on client , disconnecting. +1612471700: New connection from 172.18.0.3 on port 1883. +1612471700: Sending CONNACK to 172.18.0.3 (0, 5) +1612471700: Socket error on client , disconnecting. +1612471720: New connection from 172.18.0.3 on port 1883. +1612471720: Sending CONNACK to 172.18.0.3 (0, 5) +1612471720: Socket error on client , disconnecting. +1612471740: New connection from 172.18.0.3 on port 1883. +1612471740: Sending CONNACK to 172.18.0.3 (0, 5) +1612471740: Socket error on client , disconnecting. +1612471760: New connection from 172.18.0.3 on port 1883. +1612471760: Sending CONNACK to 172.18.0.3 (0, 5) +1612471760: Socket error on client , disconnecting. +1612471780: New connection from 172.18.0.3 on port 1883. +1612471780: Sending CONNACK to 172.18.0.3 (0, 5) +1612471780: Socket error on client , disconnecting. +1612471800: New connection from 172.18.0.3 on port 1883. +1612471800: Sending CONNACK to 172.18.0.3 (0, 5) +1612471800: Socket error on client , disconnecting. +1612471820: New connection from 172.18.0.3 on port 1883. +1612471820: Sending CONNACK to 172.18.0.3 (0, 5) +1612471820: Socket error on client , disconnecting. +1612471840: New connection from 172.18.0.3 on port 1883. +1612471840: Sending CONNACK to 172.18.0.3 (0, 5) +1612471840: Socket error on client , disconnecting. +1612471860: New connection from 172.18.0.3 on port 1883. +1612471860: Sending CONNACK to 172.18.0.3 (0, 5) +1612471860: Socket error on client , disconnecting. +1612471880: New connection from 172.18.0.3 on port 1883. +1612471880: Sending CONNACK to 172.18.0.3 (0, 5) +1612471880: Socket error on client , disconnecting. +1612471900: New connection from 172.18.0.3 on port 1883. +1612471900: Sending CONNACK to 172.18.0.3 (0, 5) +1612471900: Socket error on client , disconnecting. +1612471920: New connection from 172.18.0.3 on port 1883. +1612471920: Sending CONNACK to 172.18.0.3 (0, 5) +1612471920: Socket error on client , disconnecting. +1612471940: New connection from 172.18.0.3 on port 1883. +1612471940: Sending CONNACK to 172.18.0.3 (0, 5) +1612471940: Socket error on client , disconnecting. +1612471960: New connection from 172.18.0.3 on port 1883. +1612471960: Sending CONNACK to 172.18.0.3 (0, 5) +1612471960: Socket error on client , disconnecting. +1612471980: New connection from 172.18.0.3 on port 1883. +1612471980: Sending CONNACK to 172.18.0.3 (0, 5) +1612471980: Socket error on client , disconnecting. +1612472000: New connection from 172.18.0.3 on port 1883. +1612472000: Sending CONNACK to 172.18.0.3 (0, 5) +1612472000: Socket error on client , disconnecting. +1612472020: New connection from 172.18.0.3 on port 1883. +1612472020: Sending CONNACK to 172.18.0.3 (0, 5) +1612472020: Socket error on client , disconnecting. +1612472040: New connection from 172.18.0.3 on port 1883. +1612472040: Sending CONNACK to 172.18.0.3 (0, 5) +1612472040: Socket error on client , disconnecting. +1612472060: New connection from 172.18.0.3 on port 1883. +1612472060: Sending CONNACK to 172.18.0.3 (0, 5) +1612472060: Socket error on client , disconnecting. +1612472080: New connection from 172.18.0.3 on port 1883. +1612472080: Sending CONNACK to 172.18.0.3 (0, 5) +1612472080: Socket error on client , disconnecting. +1612472100: New connection from 172.18.0.3 on port 1883. +1612472100: Sending CONNACK to 172.18.0.3 (0, 5) +1612472100: Socket error on client , disconnecting. +1612472120: New connection from 172.18.0.3 on port 1883. +1612472120: Sending CONNACK to 172.18.0.3 (0, 5) +1612472120: Socket error on client , disconnecting. +1612472140: New connection from 172.18.0.3 on port 1883. +1612472140: Sending CONNACK to 172.18.0.3 (0, 5) +1612472140: Socket error on client , disconnecting. +1612472160: New connection from 172.18.0.3 on port 1883. +1612472160: Sending CONNACK to 172.18.0.3 (0, 5) +1612472160: Socket error on client , disconnecting. +1612472180: New connection from 172.18.0.3 on port 1883. +1612472180: Sending CONNACK to 172.18.0.3 (0, 5) +1612472180: Socket error on client , disconnecting. +1612472200: New connection from 172.18.0.3 on port 1883. +1612472200: Sending CONNACK to 172.18.0.3 (0, 5) +1612472200: Socket error on client , disconnecting. +1612472220: New connection from 172.18.0.3 on port 1883. +1612472220: Sending CONNACK to 172.18.0.3 (0, 5) +1612472220: Socket error on client , disconnecting. +1612472240: New connection from 172.18.0.3 on port 1883. +1612472240: Sending CONNACK to 172.18.0.3 (0, 5) +1612472240: Socket error on client , disconnecting. +1612472260: New connection from 172.18.0.3 on port 1883. +1612472260: Sending CONNACK to 172.18.0.3 (0, 5) +1612472260: Socket error on client , disconnecting. +1612472280: New connection from 172.18.0.3 on port 1883. +1612472280: Sending CONNACK to 172.18.0.3 (0, 5) +1612472280: Socket error on client , disconnecting. +1612472300: New connection from 172.18.0.3 on port 1883. +1612472300: Sending CONNACK to 172.18.0.3 (0, 5) +1612472300: Socket error on client , disconnecting. +1612472320: New connection from 172.18.0.3 on port 1883. +1612472320: Sending CONNACK to 172.18.0.3 (0, 5) +1612472320: Socket error on client , disconnecting. +1612472340: New connection from 172.18.0.3 on port 1883. +1612472340: Sending CONNACK to 172.18.0.3 (0, 5) +1612472340: Socket error on client , disconnecting. +1612472360: New connection from 172.18.0.3 on port 1883. +1612472360: Sending CONNACK to 172.18.0.3 (0, 5) +1612472360: Socket error on client , disconnecting. +1612472380: New connection from 172.18.0.3 on port 1883. +1612472380: Sending CONNACK to 172.18.0.3 (0, 5) +1612472380: Socket error on client , disconnecting. +1612472400: New connection from 172.18.0.3 on port 1883. +1612472400: Sending CONNACK to 172.18.0.3 (0, 5) +1612472400: Socket error on client , disconnecting. +1612472420: New connection from 172.18.0.3 on port 1883. +1612472420: Sending CONNACK to 172.18.0.3 (0, 5) +1612472420: Socket error on client , disconnecting. +1612472440: New connection from 172.18.0.3 on port 1883. +1612472440: Sending CONNACK to 172.18.0.3 (0, 5) +1612472440: Socket error on client , disconnecting. +1612472460: New connection from 172.18.0.3 on port 1883. +1612472460: Sending CONNACK to 172.18.0.3 (0, 5) +1612472460: Socket error on client , disconnecting. +1612472480: New connection from 172.18.0.3 on port 1883. +1612472480: Sending CONNACK to 172.18.0.3 (0, 5) +1612472480: Socket error on client , disconnecting. +1612472500: New connection from 172.18.0.3 on port 1883. +1612472500: Sending CONNACK to 172.18.0.3 (0, 5) +1612472500: Socket error on client , disconnecting. +1612472520: New connection from 172.18.0.3 on port 1883. +1612472520: Sending CONNACK to 172.18.0.3 (0, 5) +1612472520: Socket error on client , disconnecting. +1612472540: New connection from 172.18.0.3 on port 1883. +1612472540: Sending CONNACK to 172.18.0.3 (0, 5) +1612472540: Socket error on client , disconnecting. +1612472560: New connection from 172.18.0.3 on port 1883. +1612472560: Sending CONNACK to 172.18.0.3 (0, 5) +1612472560: Socket error on client , disconnecting. +1612472580: New connection from 172.18.0.3 on port 1883. +1612472580: Sending CONNACK to 172.18.0.3 (0, 5) +1612472580: Socket error on client , disconnecting. +1612472600: New connection from 172.18.0.3 on port 1883. +1612472600: Sending CONNACK to 172.18.0.3 (0, 5) +1612472600: Socket error on client , disconnecting. +1612472620: New connection from 172.18.0.3 on port 1883. +1612472620: Sending CONNACK to 172.18.0.3 (0, 5) +1612472620: Socket error on client , disconnecting. +1612472640: New connection from 172.18.0.3 on port 1883. +1612472640: Sending CONNACK to 172.18.0.3 (0, 5) +1612472640: Socket error on client , disconnecting. +1612472660: New connection from 172.18.0.3 on port 1883. +1612472660: Sending CONNACK to 172.18.0.3 (0, 5) +1612472660: Socket error on client , disconnecting. +1612472680: New connection from 172.18.0.3 on port 1883. +1612472680: Sending CONNACK to 172.18.0.3 (0, 5) +1612472680: Socket error on client , disconnecting. +1612472700: New connection from 172.18.0.3 on port 1883. +1612472700: Sending CONNACK to 172.18.0.3 (0, 5) +1612472700: Socket error on client , disconnecting. +1612472720: New connection from 172.18.0.3 on port 1883. +1612472720: Sending CONNACK to 172.18.0.3 (0, 5) +1612472720: Socket error on client , disconnecting. +1612472740: New connection from 172.18.0.3 on port 1883. +1612472740: Sending CONNACK to 172.18.0.3 (0, 5) +1612472740: Socket error on client , disconnecting. +1612472760: New connection from 172.18.0.3 on port 1883. +1612472760: Sending CONNACK to 172.18.0.3 (0, 5) +1612472760: Socket error on client , disconnecting. +1612472780: New connection from 172.18.0.3 on port 1883. +1612472780: Sending CONNACK to 172.18.0.3 (0, 5) +1612472780: Socket error on client , disconnecting. +1612472800: New connection from 172.18.0.3 on port 1883. +1612472800: Sending CONNACK to 172.18.0.3 (0, 5) +1612472800: Socket error on client , disconnecting. +1612472820: New connection from 172.18.0.3 on port 1883. +1612472820: Sending CONNACK to 172.18.0.3 (0, 5) +1612472820: Socket error on client , disconnecting. +1612472840: New connection from 172.18.0.3 on port 1883. +1612472840: Sending CONNACK to 172.18.0.3 (0, 5) +1612472840: Socket error on client , disconnecting. +1612472860: New connection from 172.18.0.3 on port 1883. +1612472860: Sending CONNACK to 172.18.0.3 (0, 5) +1612472860: Socket error on client , disconnecting. +1612472880: New connection from 172.18.0.3 on port 1883. +1612472880: Sending CONNACK to 172.18.0.3 (0, 5) +1612472880: Socket error on client , disconnecting. +1612472900: New connection from 172.18.0.3 on port 1883. +1612472900: Sending CONNACK to 172.18.0.3 (0, 5) +1612472900: Socket error on client , disconnecting. +1612472920: New connection from 172.18.0.3 on port 1883. +1612472920: Sending CONNACK to 172.18.0.3 (0, 5) +1612472920: Socket error on client , disconnecting. +1612472940: New connection from 172.18.0.3 on port 1883. +1612472940: Sending CONNACK to 172.18.0.3 (0, 5) +1612472940: Socket error on client , disconnecting. +1612472960: New connection from 172.18.0.3 on port 1883. +1612472960: Sending CONNACK to 172.18.0.3 (0, 5) +1612472960: Socket error on client , disconnecting. +1612472980: New connection from 172.18.0.3 on port 1883. +1612472980: Sending CONNACK to 172.18.0.3 (0, 5) +1612472980: Socket error on client , disconnecting. +1612473000: New connection from 172.18.0.3 on port 1883. +1612473000: Sending CONNACK to 172.18.0.3 (0, 5) +1612473000: Socket error on client , disconnecting. +1612473020: New connection from 172.18.0.3 on port 1883. +1612473020: Sending CONNACK to 172.18.0.3 (0, 5) +1612473020: Socket error on client , disconnecting. +1612473040: New connection from 172.18.0.3 on port 1883. +1612473040: Sending CONNACK to 172.18.0.3 (0, 5) +1612473040: Socket error on client , disconnecting. +1612473060: New connection from 172.18.0.3 on port 1883. +1612473060: Sending CONNACK to 172.18.0.3 (0, 5) +1612473060: Socket error on client , disconnecting. +1612473080: New connection from 172.18.0.3 on port 1883. +1612473080: Sending CONNACK to 172.18.0.3 (0, 5) +1612473080: Socket error on client , disconnecting. +1612473100: New connection from 172.18.0.3 on port 1883. +1612473100: Sending CONNACK to 172.18.0.3 (0, 5) +1612473100: Socket error on client , disconnecting. +1612473120: New connection from 172.18.0.3 on port 1883. +1612473120: Sending CONNACK to 172.18.0.3 (0, 5) +1612473120: Socket error on client , disconnecting. +1612473140: New connection from 172.18.0.3 on port 1883. +1612473140: Sending CONNACK to 172.18.0.3 (0, 5) +1612473140: Socket error on client , disconnecting. +1612473160: New connection from 172.18.0.3 on port 1883. +1612473160: Sending CONNACK to 172.18.0.3 (0, 5) +1612473160: Socket error on client , disconnecting. +1612473180: New connection from 172.18.0.3 on port 1883. +1612473180: Sending CONNACK to 172.18.0.3 (0, 5) +1612473180: Socket error on client , disconnecting. +1612473200: New connection from 172.18.0.3 on port 1883. +1612473200: Sending CONNACK to 172.18.0.3 (0, 5) +1612473200: Socket error on client , disconnecting. +1612473220: New connection from 172.18.0.3 on port 1883. +1612473220: Sending CONNACK to 172.18.0.3 (0, 5) +1612473220: Socket error on client , disconnecting. +1612473240: New connection from 172.18.0.3 on port 1883. +1612473240: Sending CONNACK to 172.18.0.3 (0, 5) +1612473240: Socket error on client , disconnecting. +1612473260: New connection from 172.18.0.3 on port 1883. +1612473260: Sending CONNACK to 172.18.0.3 (0, 5) +1612473260: Socket error on client , disconnecting. +1612473280: New connection from 172.18.0.3 on port 1883. +1612473280: Sending CONNACK to 172.18.0.3 (0, 5) +1612473280: Socket error on client , disconnecting. +1612473300: New connection from 172.18.0.3 on port 1883. +1612473300: Sending CONNACK to 172.18.0.3 (0, 5) +1612473300: Socket error on client , disconnecting. +1612473320: New connection from 172.18.0.3 on port 1883. +1612473320: Sending CONNACK to 172.18.0.3 (0, 5) +1612473320: Socket error on client , disconnecting. +1612473340: New connection from 172.18.0.3 on port 1883. +1612473340: Sending CONNACK to 172.18.0.3 (0, 5) +1612473340: Socket error on client , disconnecting. +1612473360: New connection from 172.18.0.3 on port 1883. +1612473360: Sending CONNACK to 172.18.0.3 (0, 5) +1612473360: Socket error on client , disconnecting. +1612473380: New connection from 172.18.0.3 on port 1883. +1612473380: Sending CONNACK to 172.18.0.3 (0, 5) +1612473380: Socket error on client , disconnecting. +1612473400: New connection from 172.18.0.3 on port 1883. +1612473400: Sending CONNACK to 172.18.0.3 (0, 5) +1612473400: Socket error on client , disconnecting. +1612473420: New connection from 172.18.0.3 on port 1883. +1612473420: Sending CONNACK to 172.18.0.3 (0, 5) +1612473420: Socket error on client , disconnecting. +1612473432: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612473432: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612473432: Error: Permission denied. +1612473440: New connection from 172.18.0.3 on port 1883. +1612473440: Sending CONNACK to 172.18.0.3 (0, 5) +1612473440: Socket error on client , disconnecting. +1612473460: New connection from 172.18.0.3 on port 1883. +1612473460: Sending CONNACK to 172.18.0.3 (0, 5) +1612473460: Socket error on client , disconnecting. +1612473480: New connection from 172.18.0.3 on port 1883. +1612473480: Sending CONNACK to 172.18.0.3 (0, 5) +1612473480: Socket error on client , disconnecting. +1612473500: New connection from 172.18.0.3 on port 1883. +1612473500: Sending CONNACK to 172.18.0.3 (0, 5) +1612473500: Socket error on client , disconnecting. +1612473520: New connection from 172.18.0.3 on port 1883. +1612473520: Sending CONNACK to 172.18.0.3 (0, 5) +1612473520: Socket error on client , disconnecting. +1612473540: New connection from 172.18.0.3 on port 1883. +1612473540: Sending CONNACK to 172.18.0.3 (0, 5) +1612473540: Socket error on client , disconnecting. +1612473560: New connection from 172.18.0.3 on port 1883. +1612473560: Sending CONNACK to 172.18.0.3 (0, 5) +1612473560: Socket error on client , disconnecting. +1612473580: New connection from 172.18.0.3 on port 1883. +1612473580: Sending CONNACK to 172.18.0.3 (0, 5) +1612473580: Socket error on client , disconnecting. +1612473600: New connection from 172.18.0.3 on port 1883. +1612473600: Sending CONNACK to 172.18.0.3 (0, 5) +1612473600: Socket error on client , disconnecting. +1612473620: New connection from 172.18.0.3 on port 1883. +1612473620: Sending CONNACK to 172.18.0.3 (0, 5) +1612473620: Socket error on client , disconnecting. +1612473640: New connection from 172.18.0.3 on port 1883. +1612473640: Sending CONNACK to 172.18.0.3 (0, 5) +1612473640: Socket error on client , disconnecting. +1612473660: New connection from 172.18.0.3 on port 1883. +1612473660: Sending CONNACK to 172.18.0.3 (0, 5) +1612473660: Socket error on client , disconnecting. +1612473680: New connection from 172.18.0.3 on port 1883. +1612473680: Sending CONNACK to 172.18.0.3 (0, 5) +1612473680: Socket error on client , disconnecting. +1612473700: New connection from 172.18.0.3 on port 1883. +1612473700: Sending CONNACK to 172.18.0.3 (0, 5) +1612473700: Socket error on client , disconnecting. +1612473720: New connection from 172.18.0.3 on port 1883. +1612473720: Sending CONNACK to 172.18.0.3 (0, 5) +1612473720: Socket error on client , disconnecting. +1612473740: New connection from 172.18.0.3 on port 1883. +1612473740: Sending CONNACK to 172.18.0.3 (0, 5) +1612473740: Socket error on client , disconnecting. +1612473760: New connection from 172.18.0.3 on port 1883. +1612473760: Sending CONNACK to 172.18.0.3 (0, 5) +1612473760: Socket error on client , disconnecting. +1612473780: New connection from 172.18.0.3 on port 1883. +1612473780: Sending CONNACK to 172.18.0.3 (0, 5) +1612473780: Socket error on client , disconnecting. +1612473800: New connection from 172.18.0.3 on port 1883. +1612473800: Sending CONNACK to 172.18.0.3 (0, 5) +1612473800: Socket error on client , disconnecting. +1612473820: New connection from 172.18.0.3 on port 1883. +1612473820: Sending CONNACK to 172.18.0.3 (0, 5) +1612473820: Socket error on client , disconnecting. +1612473840: New connection from 172.18.0.3 on port 1883. +1612473840: Sending CONNACK to 172.18.0.3 (0, 5) +1612473840: Socket error on client , disconnecting. +1612473860: New connection from 172.18.0.3 on port 1883. +1612473860: Sending CONNACK to 172.18.0.3 (0, 5) +1612473860: Socket error on client , disconnecting. +1612473880: New connection from 172.18.0.3 on port 1883. +1612473880: Sending CONNACK to 172.18.0.3 (0, 5) +1612473880: Socket error on client , disconnecting. +1612473900: New connection from 172.18.0.3 on port 1883. +1612473900: Sending CONNACK to 172.18.0.3 (0, 5) +1612473900: Socket error on client , disconnecting. +1612473920: New connection from 172.18.0.3 on port 1883. +1612473920: Sending CONNACK to 172.18.0.3 (0, 5) +1612473920: Socket error on client , disconnecting. +1612473940: New connection from 172.18.0.3 on port 1883. +1612473940: Sending CONNACK to 172.18.0.3 (0, 5) +1612473940: Socket error on client , disconnecting. +1612473960: New connection from 172.18.0.3 on port 1883. +1612473960: Sending CONNACK to 172.18.0.3 (0, 5) +1612473960: Socket error on client , disconnecting. +1612473980: New connection from 172.18.0.3 on port 1883. +1612473980: Sending CONNACK to 172.18.0.3 (0, 5) +1612473980: Socket error on client , disconnecting. +1612474000: New connection from 172.18.0.3 on port 1883. +1612474000: Sending CONNACK to 172.18.0.3 (0, 5) +1612474000: Socket error on client , disconnecting. +1612474020: New connection from 172.18.0.3 on port 1883. +1612474020: Sending CONNACK to 172.18.0.3 (0, 5) +1612474020: Socket error on client , disconnecting. +1612474040: New connection from 172.18.0.3 on port 1883. +1612474040: Sending CONNACK to 172.18.0.3 (0, 5) +1612474040: Socket error on client , disconnecting. +1612474060: New connection from 172.18.0.3 on port 1883. +1612474060: Sending CONNACK to 172.18.0.3 (0, 5) +1612474060: Socket error on client , disconnecting. +1612474080: New connection from 172.18.0.3 on port 1883. +1612474080: Sending CONNACK to 172.18.0.3 (0, 5) +1612474080: Socket error on client , disconnecting. +1612474100: New connection from 172.18.0.3 on port 1883. +1612474100: Sending CONNACK to 172.18.0.3 (0, 5) +1612474100: Socket error on client , disconnecting. +1612474120: New connection from 172.18.0.3 on port 1883. +1612474120: Sending CONNACK to 172.18.0.3 (0, 5) +1612474120: Socket error on client , disconnecting. +1612474140: New connection from 172.18.0.3 on port 1883. +1612474140: Sending CONNACK to 172.18.0.3 (0, 5) +1612474140: Socket error on client , disconnecting. +1612474160: New connection from 172.18.0.3 on port 1883. +1612474160: Sending CONNACK to 172.18.0.3 (0, 5) +1612474160: Socket error on client , disconnecting. +1612474180: New connection from 172.18.0.3 on port 1883. +1612474180: Sending CONNACK to 172.18.0.3 (0, 5) +1612474180: Socket error on client , disconnecting. +1612474200: New connection from 172.18.0.3 on port 1883. +1612474200: Sending CONNACK to 172.18.0.3 (0, 5) +1612474200: Socket error on client , disconnecting. +1612474220: New connection from 172.18.0.3 on port 1883. +1612474220: Sending CONNACK to 172.18.0.3 (0, 5) +1612474220: Socket error on client , disconnecting. +1612474240: New connection from 172.18.0.3 on port 1883. +1612474240: Sending CONNACK to 172.18.0.3 (0, 5) +1612474240: Socket error on client , disconnecting. +1612474260: New connection from 172.18.0.3 on port 1883. +1612474260: Sending CONNACK to 172.18.0.3 (0, 5) +1612474260: Socket error on client , disconnecting. +1612474280: New connection from 172.18.0.3 on port 1883. +1612474280: Sending CONNACK to 172.18.0.3 (0, 5) +1612474280: Socket error on client , disconnecting. +1612474300: New connection from 172.18.0.3 on port 1883. +1612474300: Sending CONNACK to 172.18.0.3 (0, 5) +1612474300: Socket error on client , disconnecting. +1612474320: New connection from 172.18.0.3 on port 1883. +1612474320: Sending CONNACK to 172.18.0.3 (0, 5) +1612474320: Socket error on client , disconnecting. +1612474340: New connection from 172.18.0.3 on port 1883. +1612474340: Sending CONNACK to 172.18.0.3 (0, 5) +1612474340: Socket error on client , disconnecting. +1612474360: New connection from 172.18.0.3 on port 1883. +1612474360: Sending CONNACK to 172.18.0.3 (0, 5) +1612474360: Socket error on client , disconnecting. +1612474380: New connection from 172.18.0.3 on port 1883. +1612474380: Sending CONNACK to 172.18.0.3 (0, 5) +1612474380: Socket error on client , disconnecting. +1612474400: New connection from 172.18.0.3 on port 1883. +1612474400: Sending CONNACK to 172.18.0.3 (0, 5) +1612474400: Socket error on client , disconnecting. +1612474420: New connection from 172.18.0.3 on port 1883. +1612474420: Sending CONNACK to 172.18.0.3 (0, 5) +1612474420: Socket error on client , disconnecting. +1612474440: New connection from 172.18.0.3 on port 1883. +1612474440: Sending CONNACK to 172.18.0.3 (0, 5) +1612474440: Socket error on client , disconnecting. +1612474460: New connection from 172.18.0.3 on port 1883. +1612474460: Sending CONNACK to 172.18.0.3 (0, 5) +1612474460: Socket error on client , disconnecting. +1612474480: New connection from 172.18.0.3 on port 1883. +1612474480: Sending CONNACK to 172.18.0.3 (0, 5) +1612474480: Socket error on client , disconnecting. +1612474500: New connection from 172.18.0.3 on port 1883. +1612474500: Sending CONNACK to 172.18.0.3 (0, 5) +1612474500: Socket error on client , disconnecting. +1612474520: New connection from 172.18.0.3 on port 1883. +1612474520: Sending CONNACK to 172.18.0.3 (0, 5) +1612474520: Socket error on client , disconnecting. +1612474540: New connection from 172.18.0.3 on port 1883. +1612474540: Sending CONNACK to 172.18.0.3 (0, 5) +1612474540: Socket error on client , disconnecting. +1612474560: New connection from 172.18.0.3 on port 1883. +1612474560: Sending CONNACK to 172.18.0.3 (0, 5) +1612474560: Socket error on client , disconnecting. +1612474580: New connection from 172.18.0.3 on port 1883. +1612474580: Sending CONNACK to 172.18.0.3 (0, 5) +1612474580: Socket error on client , disconnecting. +1612474600: New connection from 172.18.0.3 on port 1883. +1612474600: Sending CONNACK to 172.18.0.3 (0, 5) +1612474600: Socket error on client , disconnecting. +1612474620: New connection from 172.18.0.3 on port 1883. +1612474620: Sending CONNACK to 172.18.0.3 (0, 5) +1612474620: Socket error on client , disconnecting. +1612474640: New connection from 172.18.0.3 on port 1883. +1612474640: Sending CONNACK to 172.18.0.3 (0, 5) +1612474640: Socket error on client , disconnecting. +1612474660: New connection from 172.18.0.3 on port 1883. +1612474660: Sending CONNACK to 172.18.0.3 (0, 5) +1612474660: Socket error on client , disconnecting. +1612474680: New connection from 172.18.0.3 on port 1883. +1612474680: Sending CONNACK to 172.18.0.3 (0, 5) +1612474680: Socket error on client , disconnecting. +1612474700: New connection from 172.18.0.3 on port 1883. +1612474700: Sending CONNACK to 172.18.0.3 (0, 5) +1612474700: Socket error on client , disconnecting. +1612474720: New connection from 172.18.0.3 on port 1883. +1612474720: Sending CONNACK to 172.18.0.3 (0, 5) +1612474720: Socket error on client , disconnecting. +1612474740: New connection from 172.18.0.3 on port 1883. +1612474740: Sending CONNACK to 172.18.0.3 (0, 5) +1612474740: Socket error on client , disconnecting. +1612474760: New connection from 172.18.0.3 on port 1883. +1612474760: Sending CONNACK to 172.18.0.3 (0, 5) +1612474760: Socket error on client , disconnecting. +1612474780: New connection from 172.18.0.3 on port 1883. +1612474780: Sending CONNACK to 172.18.0.3 (0, 5) +1612474780: Socket error on client , disconnecting. +1612474800: New connection from 172.18.0.3 on port 1883. +1612474800: Sending CONNACK to 172.18.0.3 (0, 5) +1612474800: Socket error on client , disconnecting. +1612474820: New connection from 172.18.0.3 on port 1883. +1612474820: Sending CONNACK to 172.18.0.3 (0, 5) +1612474820: Socket error on client , disconnecting. +1612474840: New connection from 172.18.0.3 on port 1883. +1612474840: Sending CONNACK to 172.18.0.3 (0, 5) +1612474840: Socket error on client , disconnecting. +1612474860: New connection from 172.18.0.3 on port 1883. +1612474860: Sending CONNACK to 172.18.0.3 (0, 5) +1612474860: Socket error on client , disconnecting. +1612474880: New connection from 172.18.0.3 on port 1883. +1612474880: Sending CONNACK to 172.18.0.3 (0, 5) +1612474880: Socket error on client , disconnecting. +1612474900: New connection from 172.18.0.3 on port 1883. +1612474900: Sending CONNACK to 172.18.0.3 (0, 5) +1612474900: Socket error on client , disconnecting. +1612474920: New connection from 172.18.0.3 on port 1883. +1612474920: Sending CONNACK to 172.18.0.3 (0, 5) +1612474920: Socket error on client , disconnecting. +1612474940: New connection from 172.18.0.3 on port 1883. +1612474940: Sending CONNACK to 172.18.0.3 (0, 5) +1612474940: Socket error on client , disconnecting. +1612474960: New connection from 172.18.0.3 on port 1883. +1612474960: Sending CONNACK to 172.18.0.3 (0, 5) +1612474960: Socket error on client , disconnecting. +1612474980: New connection from 172.18.0.3 on port 1883. +1612474980: Sending CONNACK to 172.18.0.3 (0, 5) +1612474980: Socket error on client , disconnecting. +1612475000: New connection from 172.18.0.3 on port 1883. +1612475000: Sending CONNACK to 172.18.0.3 (0, 5) +1612475000: Socket error on client , disconnecting. +1612475020: New connection from 172.18.0.3 on port 1883. +1612475020: Sending CONNACK to 172.18.0.3 (0, 5) +1612475020: Socket error on client , disconnecting. +1612475040: New connection from 172.18.0.3 on port 1883. +1612475040: Sending CONNACK to 172.18.0.3 (0, 5) +1612475040: Socket error on client , disconnecting. +1612475060: New connection from 172.18.0.3 on port 1883. +1612475060: Sending CONNACK to 172.18.0.3 (0, 5) +1612475060: Socket error on client , disconnecting. +1612475080: New connection from 172.18.0.3 on port 1883. +1612475080: Sending CONNACK to 172.18.0.3 (0, 5) +1612475080: Socket error on client , disconnecting. +1612475100: New connection from 172.18.0.3 on port 1883. +1612475100: Sending CONNACK to 172.18.0.3 (0, 5) +1612475100: Socket error on client , disconnecting. +1612475120: New connection from 172.18.0.3 on port 1883. +1612475120: Sending CONNACK to 172.18.0.3 (0, 5) +1612475120: Socket error on client , disconnecting. +1612475140: New connection from 172.18.0.3 on port 1883. +1612475140: Sending CONNACK to 172.18.0.3 (0, 5) +1612475140: Socket error on client , disconnecting. +1612475160: New connection from 172.18.0.3 on port 1883. +1612475160: Sending CONNACK to 172.18.0.3 (0, 5) +1612475160: Socket error on client , disconnecting. +1612475180: New connection from 172.18.0.3 on port 1883. +1612475180: Sending CONNACK to 172.18.0.3 (0, 5) +1612475180: Socket error on client , disconnecting. +1612475200: New connection from 172.18.0.3 on port 1883. +1612475200: Sending CONNACK to 172.18.0.3 (0, 5) +1612475200: Socket error on client , disconnecting. +1612475220: New connection from 172.18.0.3 on port 1883. +1612475220: Sending CONNACK to 172.18.0.3 (0, 5) +1612475220: Socket error on client , disconnecting. +1612475233: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612475233: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612475233: Error: Permission denied. +1612475240: New connection from 172.18.0.3 on port 1883. +1612475240: Sending CONNACK to 172.18.0.3 (0, 5) +1612475240: Socket error on client , disconnecting. +1612475260: New connection from 172.18.0.3 on port 1883. +1612475260: Sending CONNACK to 172.18.0.3 (0, 5) +1612475260: Socket error on client , disconnecting. +1612475280: New connection from 172.18.0.3 on port 1883. +1612475280: Sending CONNACK to 172.18.0.3 (0, 5) +1612475280: Socket error on client , disconnecting. +1612475300: New connection from 172.18.0.3 on port 1883. +1612475300: Sending CONNACK to 172.18.0.3 (0, 5) +1612475300: Socket error on client , disconnecting. +1612475320: New connection from 172.18.0.3 on port 1883. +1612475320: Sending CONNACK to 172.18.0.3 (0, 5) +1612475320: Socket error on client , disconnecting. +1612475340: New connection from 172.18.0.3 on port 1883. +1612475340: Sending CONNACK to 172.18.0.3 (0, 5) +1612475340: Socket error on client , disconnecting. +1612475360: New connection from 172.18.0.3 on port 1883. +1612475360: Sending CONNACK to 172.18.0.3 (0, 5) +1612475360: Socket error on client , disconnecting. +1612475380: New connection from 172.18.0.3 on port 1883. +1612475380: Sending CONNACK to 172.18.0.3 (0, 5) +1612475380: Socket error on client , disconnecting. +1612475400: New connection from 172.18.0.3 on port 1883. +1612475400: Sending CONNACK to 172.18.0.3 (0, 5) +1612475400: Socket error on client , disconnecting. +1612475420: New connection from 172.18.0.3 on port 1883. +1612475420: Sending CONNACK to 172.18.0.3 (0, 5) +1612475420: Socket error on client , disconnecting. +1612475440: New connection from 172.18.0.3 on port 1883. +1612475440: Sending CONNACK to 172.18.0.3 (0, 5) +1612475440: Socket error on client , disconnecting. +1612475460: New connection from 172.18.0.3 on port 1883. +1612475460: Sending CONNACK to 172.18.0.3 (0, 5) +1612475460: Socket error on client , disconnecting. +1612475480: New connection from 172.18.0.3 on port 1883. +1612475480: Sending CONNACK to 172.18.0.3 (0, 5) +1612475480: Socket error on client , disconnecting. +1612475500: New connection from 172.18.0.3 on port 1883. +1612475500: Sending CONNACK to 172.18.0.3 (0, 5) +1612475500: Socket error on client , disconnecting. +1612475520: New connection from 172.18.0.3 on port 1883. +1612475520: Sending CONNACK to 172.18.0.3 (0, 5) +1612475520: Socket error on client , disconnecting. +1612475540: New connection from 172.18.0.3 on port 1883. +1612475540: Sending CONNACK to 172.18.0.3 (0, 5) +1612475540: Socket error on client , disconnecting. +1612475560: New connection from 172.18.0.3 on port 1883. +1612475560: Sending CONNACK to 172.18.0.3 (0, 5) +1612475560: Socket error on client , disconnecting. +1612475580: New connection from 172.18.0.3 on port 1883. +1612475580: Sending CONNACK to 172.18.0.3 (0, 5) +1612475580: Socket error on client , disconnecting. +1612475600: New connection from 172.18.0.3 on port 1883. +1612475600: Sending CONNACK to 172.18.0.3 (0, 5) +1612475600: Socket error on client , disconnecting. +1612475620: New connection from 172.18.0.3 on port 1883. +1612475620: Sending CONNACK to 172.18.0.3 (0, 5) +1612475620: Socket error on client , disconnecting. +1612475640: New connection from 172.18.0.3 on port 1883. +1612475640: Sending CONNACK to 172.18.0.3 (0, 5) +1612475640: Socket error on client , disconnecting. +1612475660: New connection from 172.18.0.3 on port 1883. +1612475660: Sending CONNACK to 172.18.0.3 (0, 5) +1612475660: Socket error on client , disconnecting. +1612475680: New connection from 172.18.0.3 on port 1883. +1612475680: Sending CONNACK to 172.18.0.3 (0, 5) +1612475680: Socket error on client , disconnecting. +1612475700: New connection from 172.18.0.3 on port 1883. +1612475700: Sending CONNACK to 172.18.0.3 (0, 5) +1612475700: Socket error on client , disconnecting. +1612475720: New connection from 172.18.0.3 on port 1883. +1612475720: Sending CONNACK to 172.18.0.3 (0, 5) +1612475720: Socket error on client , disconnecting. +1612475740: New connection from 172.18.0.3 on port 1883. +1612475740: Sending CONNACK to 172.18.0.3 (0, 5) +1612475740: Socket error on client , disconnecting. +1612475760: New connection from 172.18.0.3 on port 1883. +1612475760: Sending CONNACK to 172.18.0.3 (0, 5) +1612475760: Socket error on client , disconnecting. +1612475780: New connection from 172.18.0.3 on port 1883. +1612475780: Sending CONNACK to 172.18.0.3 (0, 5) +1612475780: Socket error on client , disconnecting. +1612475800: New connection from 172.18.0.3 on port 1883. +1612475800: Sending CONNACK to 172.18.0.3 (0, 5) +1612475800: Socket error on client , disconnecting. +1612475820: New connection from 172.18.0.3 on port 1883. +1612475820: Sending CONNACK to 172.18.0.3 (0, 5) +1612475820: Socket error on client , disconnecting. +1612475840: New connection from 172.18.0.3 on port 1883. +1612475840: Sending CONNACK to 172.18.0.3 (0, 5) +1612475840: Socket error on client , disconnecting. +1612475860: New connection from 172.18.0.3 on port 1883. +1612475860: Sending CONNACK to 172.18.0.3 (0, 5) +1612475860: Socket error on client , disconnecting. +1612475880: New connection from 172.18.0.3 on port 1883. +1612475880: Sending CONNACK to 172.18.0.3 (0, 5) +1612475880: Socket error on client , disconnecting. +1612475900: New connection from 172.18.0.3 on port 1883. +1612475900: Sending CONNACK to 172.18.0.3 (0, 5) +1612475900: Socket error on client , disconnecting. +1612475920: New connection from 172.18.0.3 on port 1883. +1612475920: Sending CONNACK to 172.18.0.3 (0, 5) +1612475920: Socket error on client , disconnecting. +1612475940: New connection from 172.18.0.3 on port 1883. +1612475940: Sending CONNACK to 172.18.0.3 (0, 5) +1612475940: Socket error on client , disconnecting. +1612475960: New connection from 172.18.0.3 on port 1883. +1612475960: Sending CONNACK to 172.18.0.3 (0, 5) +1612475960: Socket error on client , disconnecting. +1612475980: New connection from 172.18.0.3 on port 1883. +1612475980: Sending CONNACK to 172.18.0.3 (0, 5) +1612475980: Socket error on client , disconnecting. +1612476000: New connection from 172.18.0.3 on port 1883. +1612476000: Sending CONNACK to 172.18.0.3 (0, 5) +1612476000: Socket error on client , disconnecting. +1612476020: New connection from 172.18.0.3 on port 1883. +1612476020: Sending CONNACK to 172.18.0.3 (0, 5) +1612476020: Socket error on client , disconnecting. +1612476040: New connection from 172.18.0.3 on port 1883. +1612476040: Sending CONNACK to 172.18.0.3 (0, 5) +1612476040: Socket error on client , disconnecting. +1612476060: New connection from 172.18.0.3 on port 1883. +1612476060: Sending CONNACK to 172.18.0.3 (0, 5) +1612476060: Socket error on client , disconnecting. +1612476080: New connection from 172.18.0.3 on port 1883. +1612476080: Sending CONNACK to 172.18.0.3 (0, 5) +1612476080: Socket error on client , disconnecting. +1612476100: New connection from 172.18.0.3 on port 1883. +1612476100: Sending CONNACK to 172.18.0.3 (0, 5) +1612476100: Socket error on client , disconnecting. +1612476120: New connection from 172.18.0.3 on port 1883. +1612476120: Sending CONNACK to 172.18.0.3 (0, 5) +1612476120: Socket error on client , disconnecting. +1612476140: New connection from 172.18.0.3 on port 1883. +1612476140: Sending CONNACK to 172.18.0.3 (0, 5) +1612476140: Socket error on client , disconnecting. +1612476160: New connection from 172.18.0.3 on port 1883. +1612476160: Sending CONNACK to 172.18.0.3 (0, 5) +1612476160: Socket error on client , disconnecting. +1612476180: New connection from 172.18.0.3 on port 1883. +1612476180: Sending CONNACK to 172.18.0.3 (0, 5) +1612476180: Socket error on client , disconnecting. +1612476200: New connection from 172.18.0.3 on port 1883. +1612476200: Sending CONNACK to 172.18.0.3 (0, 5) +1612476200: Socket error on client , disconnecting. +1612476220: New connection from 172.18.0.3 on port 1883. +1612476220: Sending CONNACK to 172.18.0.3 (0, 5) +1612476220: Socket error on client , disconnecting. +1612476240: New connection from 172.18.0.3 on port 1883. +1612476240: Sending CONNACK to 172.18.0.3 (0, 5) +1612476240: Socket error on client , disconnecting. +1612476260: New connection from 172.18.0.3 on port 1883. +1612476260: Sending CONNACK to 172.18.0.3 (0, 5) +1612476260: Socket error on client , disconnecting. +1612476280: New connection from 172.18.0.3 on port 1883. +1612476280: Sending CONNACK to 172.18.0.3 (0, 5) +1612476280: Socket error on client , disconnecting. +1612476300: New connection from 172.18.0.3 on port 1883. +1612476300: Sending CONNACK to 172.18.0.3 (0, 5) +1612476300: Socket error on client , disconnecting. +1612476320: New connection from 172.18.0.3 on port 1883. +1612476320: Sending CONNACK to 172.18.0.3 (0, 5) +1612476320: Socket error on client , disconnecting. +1612476340: New connection from 172.18.0.3 on port 1883. +1612476340: Sending CONNACK to 172.18.0.3 (0, 5) +1612476340: Socket error on client , disconnecting. +1612476360: New connection from 172.18.0.3 on port 1883. +1612476360: Sending CONNACK to 172.18.0.3 (0, 5) +1612476360: Socket error on client , disconnecting. +1612476380: New connection from 172.18.0.3 on port 1883. +1612476380: Sending CONNACK to 172.18.0.3 (0, 5) +1612476380: Socket error on client , disconnecting. +1612476400: New connection from 172.18.0.3 on port 1883. +1612476400: Sending CONNACK to 172.18.0.3 (0, 5) +1612476400: Socket error on client , disconnecting. +1612476420: New connection from 172.18.0.3 on port 1883. +1612476420: Sending CONNACK to 172.18.0.3 (0, 5) +1612476420: Socket error on client , disconnecting. +1612476440: New connection from 172.18.0.3 on port 1883. +1612476440: Sending CONNACK to 172.18.0.3 (0, 5) +1612476440: Socket error on client , disconnecting. +1612476460: New connection from 172.18.0.3 on port 1883. +1612476460: Sending CONNACK to 172.18.0.3 (0, 5) +1612476460: Socket error on client , disconnecting. +1612476480: New connection from 172.18.0.3 on port 1883. +1612476480: Sending CONNACK to 172.18.0.3 (0, 5) +1612476480: Socket error on client , disconnecting. +1612476500: New connection from 172.18.0.3 on port 1883. +1612476500: Sending CONNACK to 172.18.0.3 (0, 5) +1612476500: Socket error on client , disconnecting. +1612476520: New connection from 172.18.0.3 on port 1883. +1612476520: Sending CONNACK to 172.18.0.3 (0, 5) +1612476520: Socket error on client , disconnecting. +1612476540: New connection from 172.18.0.3 on port 1883. +1612476540: Sending CONNACK to 172.18.0.3 (0, 5) +1612476540: Socket error on client , disconnecting. +1612476560: New connection from 172.18.0.3 on port 1883. +1612476560: Sending CONNACK to 172.18.0.3 (0, 5) +1612476560: Socket error on client , disconnecting. +1612476580: New connection from 172.18.0.3 on port 1883. +1612476580: Sending CONNACK to 172.18.0.3 (0, 5) +1612476580: Socket error on client , disconnecting. +1612476600: New connection from 172.18.0.3 on port 1883. +1612476600: Sending CONNACK to 172.18.0.3 (0, 5) +1612476600: Socket error on client , disconnecting. +1612476620: New connection from 172.18.0.3 on port 1883. +1612476620: Sending CONNACK to 172.18.0.3 (0, 5) +1612476620: Socket error on client , disconnecting. +1612476640: New connection from 172.18.0.3 on port 1883. +1612476640: Sending CONNACK to 172.18.0.3 (0, 5) +1612476640: Socket error on client , disconnecting. +1612476660: New connection from 172.18.0.3 on port 1883. +1612476660: Sending CONNACK to 172.18.0.3 (0, 5) +1612476660: Socket error on client , disconnecting. +1612476680: New connection from 172.18.0.3 on port 1883. +1612476680: Sending CONNACK to 172.18.0.3 (0, 5) +1612476680: Socket error on client , disconnecting. +1612476700: New connection from 172.18.0.3 on port 1883. +1612476700: Sending CONNACK to 172.18.0.3 (0, 5) +1612476700: Socket error on client , disconnecting. +1612476720: New connection from 172.18.0.3 on port 1883. +1612476720: Sending CONNACK to 172.18.0.3 (0, 5) +1612476720: Socket error on client , disconnecting. +1612476740: New connection from 172.18.0.3 on port 1883. +1612476740: Sending CONNACK to 172.18.0.3 (0, 5) +1612476740: Socket error on client , disconnecting. +1612476760: New connection from 172.18.0.3 on port 1883. +1612476760: Sending CONNACK to 172.18.0.3 (0, 5) +1612476760: Socket error on client , disconnecting. +1612476780: New connection from 172.18.0.3 on port 1883. +1612476780: Sending CONNACK to 172.18.0.3 (0, 5) +1612476780: Socket error on client , disconnecting. +1612476800: New connection from 172.18.0.3 on port 1883. +1612476800: Sending CONNACK to 172.18.0.3 (0, 5) +1612476800: Socket error on client , disconnecting. +1612476820: New connection from 172.18.0.3 on port 1883. +1612476820: Sending CONNACK to 172.18.0.3 (0, 5) +1612476820: Socket error on client , disconnecting. +1612476840: New connection from 172.18.0.3 on port 1883. +1612476840: Sending CONNACK to 172.18.0.3 (0, 5) +1612476840: Socket error on client , disconnecting. +1612476860: New connection from 172.18.0.3 on port 1883. +1612476860: Sending CONNACK to 172.18.0.3 (0, 5) +1612476860: Socket error on client , disconnecting. +1612476880: New connection from 172.18.0.3 on port 1883. +1612476880: Sending CONNACK to 172.18.0.3 (0, 5) +1612476880: Socket error on client , disconnecting. +1612476900: New connection from 172.18.0.3 on port 1883. +1612476900: Sending CONNACK to 172.18.0.3 (0, 5) +1612476900: Socket error on client , disconnecting. +1612476920: New connection from 172.18.0.3 on port 1883. +1612476920: Sending CONNACK to 172.18.0.3 (0, 5) +1612476920: Socket error on client , disconnecting. +1612476940: New connection from 172.18.0.3 on port 1883. +1612476940: Sending CONNACK to 172.18.0.3 (0, 5) +1612476940: Socket error on client , disconnecting. +1612476960: New connection from 172.18.0.3 on port 1883. +1612476960: Sending CONNACK to 172.18.0.3 (0, 5) +1612476960: Socket error on client , disconnecting. +1612476980: New connection from 172.18.0.3 on port 1883. +1612476980: Sending CONNACK to 172.18.0.3 (0, 5) +1612476980: Socket error on client , disconnecting. +1612477000: New connection from 172.18.0.3 on port 1883. +1612477000: Sending CONNACK to 172.18.0.3 (0, 5) +1612477000: Socket error on client , disconnecting. +1612477020: New connection from 172.18.0.3 on port 1883. +1612477020: Sending CONNACK to 172.18.0.3 (0, 5) +1612477020: Socket error on client , disconnecting. +1612477034: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612477034: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612477034: Error: Permission denied. +1612477040: New connection from 172.18.0.3 on port 1883. +1612477040: Sending CONNACK to 172.18.0.3 (0, 5) +1612477040: Socket error on client , disconnecting. +1612477060: New connection from 172.18.0.3 on port 1883. +1612477060: Sending CONNACK to 172.18.0.3 (0, 5) +1612477060: Socket error on client , disconnecting. +1612477080: New connection from 172.18.0.3 on port 1883. +1612477080: Sending CONNACK to 172.18.0.3 (0, 5) +1612477080: Socket error on client , disconnecting. +1612477100: New connection from 172.18.0.3 on port 1883. +1612477100: Sending CONNACK to 172.18.0.3 (0, 5) +1612477100: Socket error on client , disconnecting. +1612477120: New connection from 172.18.0.3 on port 1883. +1612477120: Sending CONNACK to 172.18.0.3 (0, 5) +1612477120: Socket error on client , disconnecting. +1612477140: New connection from 172.18.0.3 on port 1883. +1612477140: Sending CONNACK to 172.18.0.3 (0, 5) +1612477140: Socket error on client , disconnecting. +1612477160: New connection from 172.18.0.3 on port 1883. +1612477160: Sending CONNACK to 172.18.0.3 (0, 5) +1612477160: Socket error on client , disconnecting. +1612477180: New connection from 172.18.0.3 on port 1883. +1612477180: Sending CONNACK to 172.18.0.3 (0, 5) +1612477180: Socket error on client , disconnecting. +1612477200: New connection from 172.18.0.3 on port 1883. +1612477200: Sending CONNACK to 172.18.0.3 (0, 5) +1612477200: Socket error on client , disconnecting. +1612477220: New connection from 172.18.0.3 on port 1883. +1612477220: Sending CONNACK to 172.18.0.3 (0, 5) +1612477220: Socket error on client , disconnecting. +1612477240: New connection from 172.18.0.3 on port 1883. +1612477240: Sending CONNACK to 172.18.0.3 (0, 5) +1612477240: Socket error on client , disconnecting. +1612477260: New connection from 172.18.0.3 on port 1883. +1612477260: Sending CONNACK to 172.18.0.3 (0, 5) +1612477260: Socket error on client , disconnecting. +1612477280: New connection from 172.18.0.3 on port 1883. +1612477280: Sending CONNACK to 172.18.0.3 (0, 5) +1612477280: Socket error on client , disconnecting. +1612477300: New connection from 172.18.0.3 on port 1883. +1612477300: Sending CONNACK to 172.18.0.3 (0, 5) +1612477300: Socket error on client , disconnecting. +1612477320: New connection from 172.18.0.3 on port 1883. +1612477320: Sending CONNACK to 172.18.0.3 (0, 5) +1612477320: Socket error on client , disconnecting. +1612477340: New connection from 172.18.0.3 on port 1883. +1612477340: Sending CONNACK to 172.18.0.3 (0, 5) +1612477340: Socket error on client , disconnecting. +1612477360: New connection from 172.18.0.3 on port 1883. +1612477360: Sending CONNACK to 172.18.0.3 (0, 5) +1612477360: Socket error on client , disconnecting. +1612477380: New connection from 172.18.0.3 on port 1883. +1612477380: Sending CONNACK to 172.18.0.3 (0, 5) +1612477380: Socket error on client , disconnecting. +1612477400: New connection from 172.18.0.3 on port 1883. +1612477400: Sending CONNACK to 172.18.0.3 (0, 5) +1612477400: Socket error on client , disconnecting. +1612477420: New connection from 172.18.0.3 on port 1883. +1612477420: Sending CONNACK to 172.18.0.3 (0, 5) +1612477420: Socket error on client , disconnecting. +1612477440: New connection from 172.18.0.3 on port 1883. +1612477440: Sending CONNACK to 172.18.0.3 (0, 5) +1612477440: Socket error on client , disconnecting. +1612477460: New connection from 172.18.0.3 on port 1883. +1612477460: Sending CONNACK to 172.18.0.3 (0, 5) +1612477460: Socket error on client , disconnecting. +1612477480: New connection from 172.18.0.3 on port 1883. +1612477480: Sending CONNACK to 172.18.0.3 (0, 5) +1612477480: Socket error on client , disconnecting. +1612477500: New connection from 172.18.0.3 on port 1883. +1612477500: Sending CONNACK to 172.18.0.3 (0, 5) +1612477500: Socket error on client , disconnecting. +1612477520: New connection from 172.18.0.3 on port 1883. +1612477520: Sending CONNACK to 172.18.0.3 (0, 5) +1612477520: Socket error on client , disconnecting. +1612477540: New connection from 172.18.0.3 on port 1883. +1612477540: Sending CONNACK to 172.18.0.3 (0, 5) +1612477540: Socket error on client , disconnecting. +1612477560: New connection from 172.18.0.3 on port 1883. +1612477560: Sending CONNACK to 172.18.0.3 (0, 5) +1612477560: Socket error on client , disconnecting. +1612477580: New connection from 172.18.0.3 on port 1883. +1612477580: Sending CONNACK to 172.18.0.3 (0, 5) +1612477580: Socket error on client , disconnecting. +1612477600: New connection from 172.18.0.3 on port 1883. +1612477600: Sending CONNACK to 172.18.0.3 (0, 5) +1612477600: Socket error on client , disconnecting. +1612477620: New connection from 172.18.0.3 on port 1883. +1612477620: Sending CONNACK to 172.18.0.3 (0, 5) +1612477620: Socket error on client , disconnecting. +1612477640: New connection from 172.18.0.3 on port 1883. +1612477640: Sending CONNACK to 172.18.0.3 (0, 5) +1612477640: Socket error on client , disconnecting. +1612477660: New connection from 172.18.0.3 on port 1883. +1612477660: Sending CONNACK to 172.18.0.3 (0, 5) +1612477660: Socket error on client , disconnecting. +1612477680: New connection from 172.18.0.3 on port 1883. +1612477680: Sending CONNACK to 172.18.0.3 (0, 5) +1612477680: Socket error on client , disconnecting. +1612477700: New connection from 172.18.0.3 on port 1883. +1612477700: Sending CONNACK to 172.18.0.3 (0, 5) +1612477700: Socket error on client , disconnecting. +1612477720: New connection from 172.18.0.3 on port 1883. +1612477720: Sending CONNACK to 172.18.0.3 (0, 5) +1612477720: Socket error on client , disconnecting. +1612477740: New connection from 172.18.0.3 on port 1883. +1612477740: Sending CONNACK to 172.18.0.3 (0, 5) +1612477740: Socket error on client , disconnecting. +1612477760: New connection from 172.18.0.3 on port 1883. +1612477760: Sending CONNACK to 172.18.0.3 (0, 5) +1612477760: Socket error on client , disconnecting. +1612477780: New connection from 172.18.0.3 on port 1883. +1612477780: Sending CONNACK to 172.18.0.3 (0, 5) +1612477780: Socket error on client , disconnecting. +1612477800: New connection from 172.18.0.3 on port 1883. +1612477800: Sending CONNACK to 172.18.0.3 (0, 5) +1612477800: Socket error on client , disconnecting. +1612477820: New connection from 172.18.0.3 on port 1883. +1612477820: Sending CONNACK to 172.18.0.3 (0, 5) +1612477820: Socket error on client , disconnecting. +1612477840: New connection from 172.18.0.3 on port 1883. +1612477840: Sending CONNACK to 172.18.0.3 (0, 5) +1612477840: Socket error on client , disconnecting. +1612477860: New connection from 172.18.0.3 on port 1883. +1612477860: Sending CONNACK to 172.18.0.3 (0, 5) +1612477860: Socket error on client , disconnecting. +1612477880: New connection from 172.18.0.3 on port 1883. +1612477880: Sending CONNACK to 172.18.0.3 (0, 5) +1612477880: Socket error on client , disconnecting. +1612477900: New connection from 172.18.0.3 on port 1883. +1612477900: Sending CONNACK to 172.18.0.3 (0, 5) +1612477900: Socket error on client , disconnecting. +1612477920: New connection from 172.18.0.3 on port 1883. +1612477920: Sending CONNACK to 172.18.0.3 (0, 5) +1612477920: Socket error on client , disconnecting. +1612477940: New connection from 172.18.0.3 on port 1883. +1612477940: Sending CONNACK to 172.18.0.3 (0, 5) +1612477940: Socket error on client , disconnecting. +1612477960: New connection from 172.18.0.3 on port 1883. +1612477960: Sending CONNACK to 172.18.0.3 (0, 5) +1612477960: Socket error on client , disconnecting. +1612477980: New connection from 172.18.0.3 on port 1883. +1612477980: Sending CONNACK to 172.18.0.3 (0, 5) +1612477980: Socket error on client , disconnecting. +1612478000: New connection from 172.18.0.3 on port 1883. +1612478000: Sending CONNACK to 172.18.0.3 (0, 5) +1612478000: Socket error on client , disconnecting. +1612478020: New connection from 172.18.0.3 on port 1883. +1612478020: Sending CONNACK to 172.18.0.3 (0, 5) +1612478020: Socket error on client , disconnecting. +1612478040: New connection from 172.18.0.3 on port 1883. +1612478040: Sending CONNACK to 172.18.0.3 (0, 5) +1612478040: Socket error on client , disconnecting. +1612478060: New connection from 172.18.0.3 on port 1883. +1612478060: Sending CONNACK to 172.18.0.3 (0, 5) +1612478060: Socket error on client , disconnecting. +1612478080: New connection from 172.18.0.3 on port 1883. +1612478080: Sending CONNACK to 172.18.0.3 (0, 5) +1612478080: Socket error on client , disconnecting. +1612478100: New connection from 172.18.0.3 on port 1883. +1612478100: Sending CONNACK to 172.18.0.3 (0, 5) +1612478100: Socket error on client , disconnecting. +1612478120: New connection from 172.18.0.3 on port 1883. +1612478120: Sending CONNACK to 172.18.0.3 (0, 5) +1612478120: Socket error on client , disconnecting. +1612478140: New connection from 172.18.0.3 on port 1883. +1612478140: Sending CONNACK to 172.18.0.3 (0, 5) +1612478140: Socket error on client , disconnecting. +1612478160: New connection from 172.18.0.3 on port 1883. +1612478160: Sending CONNACK to 172.18.0.3 (0, 5) +1612478160: Socket error on client , disconnecting. +1612478180: New connection from 172.18.0.3 on port 1883. +1612478180: Sending CONNACK to 172.18.0.3 (0, 5) +1612478180: Socket error on client , disconnecting. +1612478200: New connection from 172.18.0.3 on port 1883. +1612478200: Sending CONNACK to 172.18.0.3 (0, 5) +1612478200: Socket error on client , disconnecting. +1612478220: New connection from 172.18.0.3 on port 1883. +1612478220: Sending CONNACK to 172.18.0.3 (0, 5) +1612478220: Socket error on client , disconnecting. +1612478240: New connection from 172.18.0.3 on port 1883. +1612478240: Sending CONNACK to 172.18.0.3 (0, 5) +1612478240: Socket error on client , disconnecting. +1612478260: New connection from 172.18.0.3 on port 1883. +1612478260: Sending CONNACK to 172.18.0.3 (0, 5) +1612478260: Socket error on client , disconnecting. +1612478280: New connection from 172.18.0.3 on port 1883. +1612478280: Sending CONNACK to 172.18.0.3 (0, 5) +1612478280: Socket error on client , disconnecting. +1612478300: New connection from 172.18.0.3 on port 1883. +1612478300: Sending CONNACK to 172.18.0.3 (0, 5) +1612478300: Socket error on client , disconnecting. +1612478320: New connection from 172.18.0.3 on port 1883. +1612478320: Sending CONNACK to 172.18.0.3 (0, 5) +1612478320: Socket error on client , disconnecting. +1612478340: New connection from 172.18.0.3 on port 1883. +1612478340: Sending CONNACK to 172.18.0.3 (0, 5) +1612478340: Socket error on client , disconnecting. +1612478360: New connection from 172.18.0.3 on port 1883. +1612478360: Sending CONNACK to 172.18.0.3 (0, 5) +1612478360: Socket error on client , disconnecting. +1612478380: New connection from 172.18.0.3 on port 1883. +1612478380: Sending CONNACK to 172.18.0.3 (0, 5) +1612478380: Socket error on client , disconnecting. +1612478400: New connection from 172.18.0.3 on port 1883. +1612478400: Sending CONNACK to 172.18.0.3 (0, 5) +1612478400: Socket error on client , disconnecting. +1612478420: New connection from 172.18.0.3 on port 1883. +1612478420: Sending CONNACK to 172.18.0.3 (0, 5) +1612478420: Socket error on client , disconnecting. +1612478440: New connection from 172.18.0.3 on port 1883. +1612478440: Sending CONNACK to 172.18.0.3 (0, 5) +1612478440: Socket error on client , disconnecting. +1612478460: New connection from 172.18.0.3 on port 1883. +1612478460: Sending CONNACK to 172.18.0.3 (0, 5) +1612478460: Socket error on client , disconnecting. +1612478480: New connection from 172.18.0.3 on port 1883. +1612478480: Sending CONNACK to 172.18.0.3 (0, 5) +1612478480: Socket error on client , disconnecting. +1612478500: New connection from 172.18.0.3 on port 1883. +1612478500: Sending CONNACK to 172.18.0.3 (0, 5) +1612478500: Socket error on client , disconnecting. +1612478520: New connection from 172.18.0.3 on port 1883. +1612478520: Sending CONNACK to 172.18.0.3 (0, 5) +1612478520: Socket error on client , disconnecting. +1612478540: New connection from 172.18.0.3 on port 1883. +1612478540: Sending CONNACK to 172.18.0.3 (0, 5) +1612478540: Socket error on client , disconnecting. +1612478560: New connection from 172.18.0.3 on port 1883. +1612478560: Sending CONNACK to 172.18.0.3 (0, 5) +1612478560: Socket error on client , disconnecting. +1612478580: New connection from 172.18.0.3 on port 1883. +1612478580: Sending CONNACK to 172.18.0.3 (0, 5) +1612478580: Socket error on client , disconnecting. +1612478600: New connection from 172.18.0.3 on port 1883. +1612478600: Sending CONNACK to 172.18.0.3 (0, 5) +1612478600: Socket error on client , disconnecting. +1612478620: New connection from 172.18.0.3 on port 1883. +1612478620: Sending CONNACK to 172.18.0.3 (0, 5) +1612478620: Socket error on client , disconnecting. +1612478640: New connection from 172.18.0.3 on port 1883. +1612478640: Sending CONNACK to 172.18.0.3 (0, 5) +1612478640: Socket error on client , disconnecting. +1612478660: New connection from 172.18.0.3 on port 1883. +1612478660: Sending CONNACK to 172.18.0.3 (0, 5) +1612478660: Socket error on client , disconnecting. +1612478680: New connection from 172.18.0.3 on port 1883. +1612478680: Sending CONNACK to 172.18.0.3 (0, 5) +1612478680: Socket error on client , disconnecting. +1612478700: New connection from 172.18.0.3 on port 1883. +1612478700: Sending CONNACK to 172.18.0.3 (0, 5) +1612478700: Socket error on client , disconnecting. +1612478720: New connection from 172.18.0.3 on port 1883. +1612478720: Sending CONNACK to 172.18.0.3 (0, 5) +1612478720: Socket error on client , disconnecting. +1612478740: New connection from 172.18.0.3 on port 1883. +1612478740: Sending CONNACK to 172.18.0.3 (0, 5) +1612478740: Socket error on client , disconnecting. +1612478760: New connection from 172.18.0.3 on port 1883. +1612478760: Sending CONNACK to 172.18.0.3 (0, 5) +1612478760: Socket error on client , disconnecting. +1612478780: New connection from 172.18.0.3 on port 1883. +1612478780: Sending CONNACK to 172.18.0.3 (0, 5) +1612478780: Socket error on client , disconnecting. +1612478800: New connection from 172.18.0.3 on port 1883. +1612478800: Sending CONNACK to 172.18.0.3 (0, 5) +1612478800: Socket error on client , disconnecting. +1612478820: New connection from 172.18.0.3 on port 1883. +1612478820: Sending CONNACK to 172.18.0.3 (0, 5) +1612478820: Socket error on client , disconnecting. +1612478835: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612478835: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612478835: Error: Permission denied. +1612478840: New connection from 172.18.0.3 on port 1883. +1612478840: Sending CONNACK to 172.18.0.3 (0, 5) +1612478840: Socket error on client , disconnecting. +1612478860: New connection from 172.18.0.3 on port 1883. +1612478860: Sending CONNACK to 172.18.0.3 (0, 5) +1612478860: Socket error on client , disconnecting. +1612478880: New connection from 172.18.0.3 on port 1883. +1612478880: Sending CONNACK to 172.18.0.3 (0, 5) +1612478880: Socket error on client , disconnecting. +1612478900: New connection from 172.18.0.3 on port 1883. +1612478900: Sending CONNACK to 172.18.0.3 (0, 5) +1612478900: Socket error on client , disconnecting. +1612478920: New connection from 172.18.0.3 on port 1883. +1612478920: Sending CONNACK to 172.18.0.3 (0, 5) +1612478920: Socket error on client , disconnecting. +1612478940: New connection from 172.18.0.3 on port 1883. +1612478940: Sending CONNACK to 172.18.0.3 (0, 5) +1612478940: Socket error on client , disconnecting. +1612478960: New connection from 172.18.0.3 on port 1883. +1612478960: Sending CONNACK to 172.18.0.3 (0, 5) +1612478960: Socket error on client , disconnecting. +1612478980: New connection from 172.18.0.3 on port 1883. +1612478980: Sending CONNACK to 172.18.0.3 (0, 5) +1612478980: Socket error on client , disconnecting. +1612479000: New connection from 172.18.0.3 on port 1883. +1612479000: Sending CONNACK to 172.18.0.3 (0, 5) +1612479000: Socket error on client , disconnecting. +1612479020: New connection from 172.18.0.3 on port 1883. +1612479020: Sending CONNACK to 172.18.0.3 (0, 5) +1612479020: Socket error on client , disconnecting. +1612479040: New connection from 172.18.0.3 on port 1883. +1612479040: Sending CONNACK to 172.18.0.3 (0, 5) +1612479040: Socket error on client , disconnecting. +1612479060: New connection from 172.18.0.3 on port 1883. +1612479060: Sending CONNACK to 172.18.0.3 (0, 5) +1612479060: Socket error on client , disconnecting. +1612479080: New connection from 172.18.0.3 on port 1883. +1612479080: Sending CONNACK to 172.18.0.3 (0, 5) +1612479080: Socket error on client , disconnecting. +1612479100: New connection from 172.18.0.3 on port 1883. +1612479100: Sending CONNACK to 172.18.0.3 (0, 5) +1612479100: Socket error on client , disconnecting. +1612479120: New connection from 172.18.0.3 on port 1883. +1612479120: Sending CONNACK to 172.18.0.3 (0, 5) +1612479120: Socket error on client , disconnecting. +1612479140: New connection from 172.18.0.3 on port 1883. +1612479140: Sending CONNACK to 172.18.0.3 (0, 5) +1612479140: Socket error on client , disconnecting. +1612479160: New connection from 172.18.0.3 on port 1883. +1612479160: Sending CONNACK to 172.18.0.3 (0, 5) +1612479160: Socket error on client , disconnecting. +1612479180: New connection from 172.18.0.3 on port 1883. +1612479180: Sending CONNACK to 172.18.0.3 (0, 5) +1612479180: Socket error on client , disconnecting. +1612479200: New connection from 172.18.0.3 on port 1883. +1612479200: Sending CONNACK to 172.18.0.3 (0, 5) +1612479200: Socket error on client , disconnecting. +1612479220: New connection from 172.18.0.3 on port 1883. +1612479220: Sending CONNACK to 172.18.0.3 (0, 5) +1612479220: Socket error on client , disconnecting. +1612479240: New connection from 172.18.0.3 on port 1883. +1612479240: Sending CONNACK to 172.18.0.3 (0, 5) +1612479240: Socket error on client , disconnecting. +1612479260: New connection from 172.18.0.3 on port 1883. +1612479260: Sending CONNACK to 172.18.0.3 (0, 5) +1612479260: Socket error on client , disconnecting. +1612479280: New connection from 172.18.0.3 on port 1883. +1612479280: Sending CONNACK to 172.18.0.3 (0, 5) +1612479280: Socket error on client , disconnecting. +1612479300: New connection from 172.18.0.3 on port 1883. +1612479300: Sending CONNACK to 172.18.0.3 (0, 5) +1612479300: Socket error on client , disconnecting. +1612479320: New connection from 172.18.0.3 on port 1883. +1612479320: Sending CONNACK to 172.18.0.3 (0, 5) +1612479320: Socket error on client , disconnecting. +1612479340: New connection from 172.18.0.3 on port 1883. +1612479340: Sending CONNACK to 172.18.0.3 (0, 5) +1612479340: Socket error on client , disconnecting. +1612479360: New connection from 172.18.0.3 on port 1883. +1612479360: Sending CONNACK to 172.18.0.3 (0, 5) +1612479360: Socket error on client , disconnecting. +1612479380: New connection from 172.18.0.3 on port 1883. +1612479380: Sending CONNACK to 172.18.0.3 (0, 5) +1612479380: Socket error on client , disconnecting. +1612479400: New connection from 172.18.0.3 on port 1883. +1612479400: Sending CONNACK to 172.18.0.3 (0, 5) +1612479400: Socket error on client , disconnecting. +1612479420: New connection from 172.18.0.3 on port 1883. +1612479420: Sending CONNACK to 172.18.0.3 (0, 5) +1612479420: Socket error on client , disconnecting. +1612479440: New connection from 172.18.0.3 on port 1883. +1612479440: Sending CONNACK to 172.18.0.3 (0, 5) +1612479440: Socket error on client , disconnecting. +1612479460: New connection from 172.18.0.3 on port 1883. +1612479460: Sending CONNACK to 172.18.0.3 (0, 5) +1612479460: Socket error on client , disconnecting. +1612479480: New connection from 172.18.0.3 on port 1883. +1612479480: Sending CONNACK to 172.18.0.3 (0, 5) +1612479480: Socket error on client , disconnecting. +1612479500: New connection from 172.18.0.3 on port 1883. +1612479500: Sending CONNACK to 172.18.0.3 (0, 5) +1612479500: Socket error on client , disconnecting. +1612479520: New connection from 172.18.0.3 on port 1883. +1612479520: Sending CONNACK to 172.18.0.3 (0, 5) +1612479520: Socket error on client , disconnecting. +1612479540: New connection from 172.18.0.3 on port 1883. +1612479540: Sending CONNACK to 172.18.0.3 (0, 5) +1612479540: Socket error on client , disconnecting. +1612479560: New connection from 172.18.0.3 on port 1883. +1612479560: Sending CONNACK to 172.18.0.3 (0, 5) +1612479560: Socket error on client , disconnecting. +1612479580: New connection from 172.18.0.3 on port 1883. +1612479580: Sending CONNACK to 172.18.0.3 (0, 5) +1612479580: Socket error on client , disconnecting. +1612479600: New connection from 172.18.0.3 on port 1883. +1612479600: Sending CONNACK to 172.18.0.3 (0, 5) +1612479600: Socket error on client , disconnecting. +1612479620: New connection from 172.18.0.3 on port 1883. +1612479620: Sending CONNACK to 172.18.0.3 (0, 5) +1612479620: Socket error on client , disconnecting. +1612479640: New connection from 172.18.0.3 on port 1883. +1612479640: Sending CONNACK to 172.18.0.3 (0, 5) +1612479640: Socket error on client , disconnecting. +1612479660: New connection from 172.18.0.3 on port 1883. +1612479660: Sending CONNACK to 172.18.0.3 (0, 5) +1612479660: Socket error on client , disconnecting. +1612479680: New connection from 172.18.0.3 on port 1883. +1612479680: Sending CONNACK to 172.18.0.3 (0, 5) +1612479680: Socket error on client , disconnecting. +1612479700: New connection from 172.18.0.3 on port 1883. +1612479700: Sending CONNACK to 172.18.0.3 (0, 5) +1612479700: Socket error on client , disconnecting. +1612479720: New connection from 172.18.0.3 on port 1883. +1612479720: Sending CONNACK to 172.18.0.3 (0, 5) +1612479720: Socket error on client , disconnecting. +1612479740: New connection from 172.18.0.3 on port 1883. +1612479740: Sending CONNACK to 172.18.0.3 (0, 5) +1612479740: Socket error on client , disconnecting. +1612479760: New connection from 172.18.0.3 on port 1883. +1612479760: Sending CONNACK to 172.18.0.3 (0, 5) +1612479760: Socket error on client , disconnecting. +1612479780: New connection from 172.18.0.3 on port 1883. +1612479780: Sending CONNACK to 172.18.0.3 (0, 5) +1612479780: Socket error on client , disconnecting. +1612479800: New connection from 172.18.0.3 on port 1883. +1612479800: Sending CONNACK to 172.18.0.3 (0, 5) +1612479800: Socket error on client , disconnecting. +1612479820: New connection from 172.18.0.3 on port 1883. +1612479820: Sending CONNACK to 172.18.0.3 (0, 5) +1612479820: Socket error on client , disconnecting. +1612479840: New connection from 172.18.0.3 on port 1883. +1612479840: Sending CONNACK to 172.18.0.3 (0, 5) +1612479840: Socket error on client , disconnecting. +1612479860: New connection from 172.18.0.3 on port 1883. +1612479860: Sending CONNACK to 172.18.0.3 (0, 5) +1612479860: Socket error on client , disconnecting. +1612479880: New connection from 172.18.0.3 on port 1883. +1612479880: Sending CONNACK to 172.18.0.3 (0, 5) +1612479880: Socket error on client , disconnecting. +1612479900: New connection from 172.18.0.3 on port 1883. +1612479900: Sending CONNACK to 172.18.0.3 (0, 5) +1612479900: Socket error on client , disconnecting. +1612479920: New connection from 172.18.0.3 on port 1883. +1612479920: Sending CONNACK to 172.18.0.3 (0, 5) +1612479920: Socket error on client , disconnecting. +1612479940: New connection from 172.18.0.3 on port 1883. +1612479940: Sending CONNACK to 172.18.0.3 (0, 5) +1612479940: Socket error on client , disconnecting. +1612479960: New connection from 172.18.0.3 on port 1883. +1612479960: Sending CONNACK to 172.18.0.3 (0, 5) +1612479960: Socket error on client , disconnecting. +1612479980: New connection from 172.18.0.3 on port 1883. +1612479980: Sending CONNACK to 172.18.0.3 (0, 5) +1612479980: Socket error on client , disconnecting. +1612480000: New connection from 172.18.0.3 on port 1883. +1612480000: Sending CONNACK to 172.18.0.3 (0, 5) +1612480000: Socket error on client , disconnecting. +1612480020: New connection from 172.18.0.3 on port 1883. +1612480020: Sending CONNACK to 172.18.0.3 (0, 5) +1612480020: Socket error on client , disconnecting. +1612480040: New connection from 172.18.0.3 on port 1883. +1612480040: Sending CONNACK to 172.18.0.3 (0, 5) +1612480040: Socket error on client , disconnecting. +1612480060: New connection from 172.18.0.3 on port 1883. +1612480060: Sending CONNACK to 172.18.0.3 (0, 5) +1612480060: Socket error on client , disconnecting. +1612480080: New connection from 172.18.0.3 on port 1883. +1612480080: Sending CONNACK to 172.18.0.3 (0, 5) +1612480080: Socket error on client , disconnecting. +1612480100: New connection from 172.18.0.3 on port 1883. +1612480100: Sending CONNACK to 172.18.0.3 (0, 5) +1612480100: Socket error on client , disconnecting. +1612480120: New connection from 172.18.0.3 on port 1883. +1612480120: Sending CONNACK to 172.18.0.3 (0, 5) +1612480120: Socket error on client , disconnecting. +1612480140: New connection from 172.18.0.3 on port 1883. +1612480140: Sending CONNACK to 172.18.0.3 (0, 5) +1612480140: Socket error on client , disconnecting. +1612480160: New connection from 172.18.0.3 on port 1883. +1612480160: Sending CONNACK to 172.18.0.3 (0, 5) +1612480160: Socket error on client , disconnecting. +1612480180: New connection from 172.18.0.3 on port 1883. +1612480180: Sending CONNACK to 172.18.0.3 (0, 5) +1612480180: Socket error on client , disconnecting. +1612480200: New connection from 172.18.0.3 on port 1883. +1612480200: Sending CONNACK to 172.18.0.3 (0, 5) +1612480200: Socket error on client , disconnecting. +1612480220: New connection from 172.18.0.3 on port 1883. +1612480220: Sending CONNACK to 172.18.0.3 (0, 5) +1612480220: Socket error on client , disconnecting. +1612480240: New connection from 172.18.0.3 on port 1883. +1612480240: Sending CONNACK to 172.18.0.3 (0, 5) +1612480240: Socket error on client , disconnecting. +1612480260: New connection from 172.18.0.3 on port 1883. +1612480260: Sending CONNACK to 172.18.0.3 (0, 5) +1612480260: Socket error on client , disconnecting. +1612480280: New connection from 172.18.0.3 on port 1883. +1612480280: Sending CONNACK to 172.18.0.3 (0, 5) +1612480280: Socket error on client , disconnecting. +1612480300: New connection from 172.18.0.3 on port 1883. +1612480300: Sending CONNACK to 172.18.0.3 (0, 5) +1612480300: Socket error on client , disconnecting. +1612480320: New connection from 172.18.0.3 on port 1883. +1612480320: Sending CONNACK to 172.18.0.3 (0, 5) +1612480320: Socket error on client , disconnecting. +1612480340: New connection from 172.18.0.3 on port 1883. +1612480340: Sending CONNACK to 172.18.0.3 (0, 5) +1612480340: Socket error on client , disconnecting. +1612480360: New connection from 172.18.0.3 on port 1883. +1612480360: Sending CONNACK to 172.18.0.3 (0, 5) +1612480360: Socket error on client , disconnecting. +1612480380: New connection from 172.18.0.3 on port 1883. +1612480380: Sending CONNACK to 172.18.0.3 (0, 5) +1612480380: Socket error on client , disconnecting. +1612480400: New connection from 172.18.0.3 on port 1883. +1612480400: Sending CONNACK to 172.18.0.3 (0, 5) +1612480400: Socket error on client , disconnecting. +1612480420: New connection from 172.18.0.3 on port 1883. +1612480420: Sending CONNACK to 172.18.0.3 (0, 5) +1612480420: Socket error on client , disconnecting. +1612480440: New connection from 172.18.0.3 on port 1883. +1612480440: Sending CONNACK to 172.18.0.3 (0, 5) +1612480440: Socket error on client , disconnecting. +1612480460: New connection from 172.18.0.3 on port 1883. +1612480460: Sending CONNACK to 172.18.0.3 (0, 5) +1612480460: Socket error on client , disconnecting. +1612480480: New connection from 172.18.0.3 on port 1883. +1612480480: Sending CONNACK to 172.18.0.3 (0, 5) +1612480480: Socket error on client , disconnecting. +1612480500: New connection from 172.18.0.3 on port 1883. +1612480500: Sending CONNACK to 172.18.0.3 (0, 5) +1612480500: Socket error on client , disconnecting. +1612480520: New connection from 172.18.0.3 on port 1883. +1612480520: Sending CONNACK to 172.18.0.3 (0, 5) +1612480520: Socket error on client , disconnecting. +1612480540: New connection from 172.18.0.3 on port 1883. +1612480540: Sending CONNACK to 172.18.0.3 (0, 5) +1612480540: Socket error on client , disconnecting. +1612480560: New connection from 172.18.0.3 on port 1883. +1612480560: Sending CONNACK to 172.18.0.3 (0, 5) +1612480560: Socket error on client , disconnecting. +1612480580: New connection from 172.18.0.3 on port 1883. +1612480580: Sending CONNACK to 172.18.0.3 (0, 5) +1612480580: Socket error on client , disconnecting. +1612480600: New connection from 172.18.0.3 on port 1883. +1612480600: Sending CONNACK to 172.18.0.3 (0, 5) +1612480600: Socket error on client , disconnecting. +1612480620: New connection from 172.18.0.3 on port 1883. +1612480620: Sending CONNACK to 172.18.0.3 (0, 5) +1612480620: Socket error on client , disconnecting. +1612480636: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612480636: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612480636: Error: Permission denied. +1612480640: New connection from 172.18.0.3 on port 1883. +1612480640: Sending CONNACK to 172.18.0.3 (0, 5) +1612480640: Socket error on client , disconnecting. +1612480660: New connection from 172.18.0.3 on port 1883. +1612480660: Sending CONNACK to 172.18.0.3 (0, 5) +1612480660: Socket error on client , disconnecting. +1612480680: New connection from 172.18.0.3 on port 1883. +1612480680: Sending CONNACK to 172.18.0.3 (0, 5) +1612480680: Socket error on client , disconnecting. +1612480700: New connection from 172.18.0.3 on port 1883. +1612480700: Sending CONNACK to 172.18.0.3 (0, 5) +1612480700: Socket error on client , disconnecting. +1612480720: New connection from 172.18.0.3 on port 1883. +1612480720: Sending CONNACK to 172.18.0.3 (0, 5) +1612480720: Socket error on client , disconnecting. +1612480740: New connection from 172.18.0.3 on port 1883. +1612480740: Sending CONNACK to 172.18.0.3 (0, 5) +1612480740: Socket error on client , disconnecting. +1612480760: New connection from 172.18.0.3 on port 1883. +1612480760: Sending CONNACK to 172.18.0.3 (0, 5) +1612480760: Socket error on client , disconnecting. +1612480780: New connection from 172.18.0.3 on port 1883. +1612480780: Sending CONNACK to 172.18.0.3 (0, 5) +1612480780: Socket error on client , disconnecting. +1612480800: New connection from 172.18.0.3 on port 1883. +1612480800: Sending CONNACK to 172.18.0.3 (0, 5) +1612480800: Socket error on client , disconnecting. +1612480820: New connection from 172.18.0.3 on port 1883. +1612480820: Sending CONNACK to 172.18.0.3 (0, 5) +1612480820: Socket error on client , disconnecting. +1612480840: New connection from 172.18.0.3 on port 1883. +1612480840: Sending CONNACK to 172.18.0.3 (0, 5) +1612480840: Socket error on client , disconnecting. +1612480860: New connection from 172.18.0.3 on port 1883. +1612480860: Sending CONNACK to 172.18.0.3 (0, 5) +1612480860: Socket error on client , disconnecting. +1612480880: New connection from 172.18.0.3 on port 1883. +1612480880: Sending CONNACK to 172.18.0.3 (0, 5) +1612480880: Socket error on client , disconnecting. +1612480900: New connection from 172.18.0.3 on port 1883. +1612480900: Sending CONNACK to 172.18.0.3 (0, 5) +1612480900: Socket error on client , disconnecting. +1612480920: New connection from 172.18.0.3 on port 1883. +1612480920: Sending CONNACK to 172.18.0.3 (0, 5) +1612480920: Socket error on client , disconnecting. +1612480940: New connection from 172.18.0.3 on port 1883. +1612480940: Sending CONNACK to 172.18.0.3 (0, 5) +1612480940: Socket error on client , disconnecting. +1612480960: New connection from 172.18.0.3 on port 1883. +1612480960: Sending CONNACK to 172.18.0.3 (0, 5) +1612480960: Socket error on client , disconnecting. +1612480980: New connection from 172.18.0.3 on port 1883. +1612480980: Sending CONNACK to 172.18.0.3 (0, 5) +1612480980: Socket error on client , disconnecting. +1612481000: New connection from 172.18.0.3 on port 1883. +1612481000: Sending CONNACK to 172.18.0.3 (0, 5) +1612481000: Socket error on client , disconnecting. +1612481020: New connection from 172.18.0.3 on port 1883. +1612481020: Sending CONNACK to 172.18.0.3 (0, 5) +1612481020: Socket error on client , disconnecting. +1612481040: New connection from 172.18.0.3 on port 1883. +1612481040: Sending CONNACK to 172.18.0.3 (0, 5) +1612481040: Socket error on client , disconnecting. +1612481060: New connection from 172.18.0.3 on port 1883. +1612481060: Sending CONNACK to 172.18.0.3 (0, 5) +1612481060: Socket error on client , disconnecting. +1612481080: New connection from 172.18.0.3 on port 1883. +1612481080: Sending CONNACK to 172.18.0.3 (0, 5) +1612481080: Socket error on client , disconnecting. +1612481100: New connection from 172.18.0.3 on port 1883. +1612481100: Sending CONNACK to 172.18.0.3 (0, 5) +1612481100: Socket error on client , disconnecting. +1612481120: New connection from 172.18.0.3 on port 1883. +1612481120: Sending CONNACK to 172.18.0.3 (0, 5) +1612481120: Socket error on client , disconnecting. +1612481140: New connection from 172.18.0.3 on port 1883. +1612481140: Sending CONNACK to 172.18.0.3 (0, 5) +1612481140: Socket error on client , disconnecting. +1612481160: New connection from 172.18.0.3 on port 1883. +1612481160: Sending CONNACK to 172.18.0.3 (0, 5) +1612481160: Socket error on client , disconnecting. +1612481180: New connection from 172.18.0.3 on port 1883. +1612481180: Sending CONNACK to 172.18.0.3 (0, 5) +1612481180: Socket error on client , disconnecting. +1612481200: New connection from 172.18.0.3 on port 1883. +1612481200: Sending CONNACK to 172.18.0.3 (0, 5) +1612481200: Socket error on client , disconnecting. +1612481220: New connection from 172.18.0.3 on port 1883. +1612481220: Sending CONNACK to 172.18.0.3 (0, 5) +1612481220: Socket error on client , disconnecting. +1612481240: New connection from 172.18.0.3 on port 1883. +1612481240: Sending CONNACK to 172.18.0.3 (0, 5) +1612481240: Socket error on client , disconnecting. +1612481260: New connection from 172.18.0.3 on port 1883. +1612481260: Sending CONNACK to 172.18.0.3 (0, 5) +1612481260: Socket error on client , disconnecting. +1612481280: New connection from 172.18.0.3 on port 1883. +1612481280: Sending CONNACK to 172.18.0.3 (0, 5) +1612481280: Socket error on client , disconnecting. +1612481300: New connection from 172.18.0.3 on port 1883. +1612481300: Sending CONNACK to 172.18.0.3 (0, 5) +1612481300: Socket error on client , disconnecting. +1612481320: New connection from 172.18.0.3 on port 1883. +1612481320: Sending CONNACK to 172.18.0.3 (0, 5) +1612481320: Socket error on client , disconnecting. +1612481340: New connection from 172.18.0.3 on port 1883. +1612481340: Sending CONNACK to 172.18.0.3 (0, 5) +1612481340: Socket error on client , disconnecting. +1612481360: New connection from 172.18.0.3 on port 1883. +1612481360: Sending CONNACK to 172.18.0.3 (0, 5) +1612481360: Socket error on client , disconnecting. +1612481380: New connection from 172.18.0.3 on port 1883. +1612481380: Sending CONNACK to 172.18.0.3 (0, 5) +1612481380: Socket error on client , disconnecting. +1612481400: New connection from 172.18.0.3 on port 1883. +1612481400: Sending CONNACK to 172.18.0.3 (0, 5) +1612481400: Socket error on client , disconnecting. +1612481420: New connection from 172.18.0.3 on port 1883. +1612481420: Sending CONNACK to 172.18.0.3 (0, 5) +1612481420: Socket error on client , disconnecting. +1612481440: New connection from 172.18.0.3 on port 1883. +1612481440: Sending CONNACK to 172.18.0.3 (0, 5) +1612481440: Socket error on client , disconnecting. +1612481460: New connection from 172.18.0.3 on port 1883. +1612481460: Sending CONNACK to 172.18.0.3 (0, 5) +1612481460: Socket error on client , disconnecting. +1612481480: New connection from 172.18.0.3 on port 1883. +1612481480: Sending CONNACK to 172.18.0.3 (0, 5) +1612481480: Socket error on client , disconnecting. +1612481500: New connection from 172.18.0.3 on port 1883. +1612481500: Sending CONNACK to 172.18.0.3 (0, 5) +1612481500: Socket error on client , disconnecting. +1612481520: New connection from 172.18.0.3 on port 1883. +1612481520: Sending CONNACK to 172.18.0.3 (0, 5) +1612481520: Socket error on client , disconnecting. +1612481540: New connection from 172.18.0.3 on port 1883. +1612481540: Sending CONNACK to 172.18.0.3 (0, 5) +1612481540: Socket error on client , disconnecting. +1612481560: New connection from 172.18.0.3 on port 1883. +1612481560: Sending CONNACK to 172.18.0.3 (0, 5) +1612481560: Socket error on client , disconnecting. +1612481580: New connection from 172.18.0.3 on port 1883. +1612481580: Sending CONNACK to 172.18.0.3 (0, 5) +1612481580: Socket error on client , disconnecting. +1612481600: New connection from 172.18.0.3 on port 1883. +1612481600: Sending CONNACK to 172.18.0.3 (0, 5) +1612481600: Socket error on client , disconnecting. +1612481620: New connection from 172.18.0.3 on port 1883. +1612481620: Sending CONNACK to 172.18.0.3 (0, 5) +1612481620: Socket error on client , disconnecting. +1612481640: New connection from 172.18.0.3 on port 1883. +1612481640: Sending CONNACK to 172.18.0.3 (0, 5) +1612481640: Socket error on client , disconnecting. +1612481660: New connection from 172.18.0.3 on port 1883. +1612481660: Sending CONNACK to 172.18.0.3 (0, 5) +1612481660: Socket error on client , disconnecting. +1612481680: New connection from 172.18.0.3 on port 1883. +1612481680: Sending CONNACK to 172.18.0.3 (0, 5) +1612481680: Socket error on client , disconnecting. +1612481700: New connection from 172.18.0.3 on port 1883. +1612481700: Sending CONNACK to 172.18.0.3 (0, 5) +1612481700: Socket error on client , disconnecting. +1612481720: New connection from 172.18.0.3 on port 1883. +1612481720: Sending CONNACK to 172.18.0.3 (0, 5) +1612481720: Socket error on client , disconnecting. +1612481740: New connection from 172.18.0.3 on port 1883. +1612481740: Sending CONNACK to 172.18.0.3 (0, 5) +1612481740: Socket error on client , disconnecting. +1612481760: New connection from 172.18.0.3 on port 1883. +1612481760: Sending CONNACK to 172.18.0.3 (0, 5) +1612481760: Socket error on client , disconnecting. +1612481780: New connection from 172.18.0.3 on port 1883. +1612481780: Sending CONNACK to 172.18.0.3 (0, 5) +1612481780: Socket error on client , disconnecting. +1612481800: New connection from 172.18.0.3 on port 1883. +1612481800: Sending CONNACK to 172.18.0.3 (0, 5) +1612481800: Socket error on client , disconnecting. +1612481820: New connection from 172.18.0.3 on port 1883. +1612481820: Sending CONNACK to 172.18.0.3 (0, 5) +1612481820: Socket error on client , disconnecting. +1612481840: New connection from 172.18.0.3 on port 1883. +1612481840: Sending CONNACK to 172.18.0.3 (0, 5) +1612481840: Socket error on client , disconnecting. +1612481860: New connection from 172.18.0.3 on port 1883. +1612481860: Sending CONNACK to 172.18.0.3 (0, 5) +1612481860: Socket error on client , disconnecting. +1612481880: New connection from 172.18.0.3 on port 1883. +1612481880: Sending CONNACK to 172.18.0.3 (0, 5) +1612481880: Socket error on client , disconnecting. +1612481900: New connection from 172.18.0.3 on port 1883. +1612481900: Sending CONNACK to 172.18.0.3 (0, 5) +1612481900: Socket error on client , disconnecting. +1612481920: New connection from 172.18.0.3 on port 1883. +1612481920: Sending CONNACK to 172.18.0.3 (0, 5) +1612481920: Socket error on client , disconnecting. +1612481940: New connection from 172.18.0.3 on port 1883. +1612481940: Sending CONNACK to 172.18.0.3 (0, 5) +1612481940: Socket error on client , disconnecting. +1612481960: New connection from 172.18.0.3 on port 1883. +1612481960: Sending CONNACK to 172.18.0.3 (0, 5) +1612481960: Socket error on client , disconnecting. +1612481980: New connection from 172.18.0.3 on port 1883. +1612481980: Sending CONNACK to 172.18.0.3 (0, 5) +1612481980: Socket error on client , disconnecting. +1612482000: New connection from 172.18.0.3 on port 1883. +1612482000: Sending CONNACK to 172.18.0.3 (0, 5) +1612482000: Socket error on client , disconnecting. +1612482020: New connection from 172.18.0.3 on port 1883. +1612482020: Sending CONNACK to 172.18.0.3 (0, 5) +1612482020: Socket error on client , disconnecting. +1612482040: New connection from 172.18.0.3 on port 1883. +1612482040: Sending CONNACK to 172.18.0.3 (0, 5) +1612482040: Socket error on client , disconnecting. +1612482060: New connection from 172.18.0.3 on port 1883. +1612482060: Sending CONNACK to 172.18.0.3 (0, 5) +1612482060: Socket error on client , disconnecting. +1612482080: New connection from 172.18.0.3 on port 1883. +1612482080: Sending CONNACK to 172.18.0.3 (0, 5) +1612482080: Socket error on client , disconnecting. +1612482100: New connection from 172.18.0.3 on port 1883. +1612482100: Sending CONNACK to 172.18.0.3 (0, 5) +1612482100: Socket error on client , disconnecting. +1612482120: New connection from 172.18.0.3 on port 1883. +1612482120: Sending CONNACK to 172.18.0.3 (0, 5) +1612482120: Socket error on client , disconnecting. +1612482140: New connection from 172.18.0.3 on port 1883. +1612482140: Sending CONNACK to 172.18.0.3 (0, 5) +1612482140: Socket error on client , disconnecting. +1612482160: New connection from 172.18.0.3 on port 1883. +1612482160: Sending CONNACK to 172.18.0.3 (0, 5) +1612482160: Socket error on client , disconnecting. +1612482180: New connection from 172.18.0.3 on port 1883. +1612482180: Sending CONNACK to 172.18.0.3 (0, 5) +1612482180: Socket error on client , disconnecting. +1612482200: New connection from 172.18.0.3 on port 1883. +1612482200: Sending CONNACK to 172.18.0.3 (0, 5) +1612482200: Socket error on client , disconnecting. +1612482220: New connection from 172.18.0.3 on port 1883. +1612482220: Sending CONNACK to 172.18.0.3 (0, 5) +1612482220: Socket error on client , disconnecting. +1612482240: New connection from 172.18.0.3 on port 1883. +1612482240: Sending CONNACK to 172.18.0.3 (0, 5) +1612482240: Socket error on client , disconnecting. +1612482260: New connection from 172.18.0.3 on port 1883. +1612482260: Sending CONNACK to 172.18.0.3 (0, 5) +1612482260: Socket error on client , disconnecting. +1612482280: New connection from 172.18.0.3 on port 1883. +1612482280: Sending CONNACK to 172.18.0.3 (0, 5) +1612482280: Socket error on client , disconnecting. +1612482300: New connection from 172.18.0.3 on port 1883. +1612482300: Sending CONNACK to 172.18.0.3 (0, 5) +1612482300: Socket error on client , disconnecting. +1612482320: New connection from 172.18.0.3 on port 1883. +1612482320: Sending CONNACK to 172.18.0.3 (0, 5) +1612482320: Socket error on client , disconnecting. +1612482340: New connection from 172.18.0.3 on port 1883. +1612482340: Sending CONNACK to 172.18.0.3 (0, 5) +1612482340: Socket error on client , disconnecting. +1612482360: New connection from 172.18.0.3 on port 1883. +1612482360: Sending CONNACK to 172.18.0.3 (0, 5) +1612482360: Socket error on client , disconnecting. +1612482380: New connection from 172.18.0.3 on port 1883. +1612482380: Sending CONNACK to 172.18.0.3 (0, 5) +1612482380: Socket error on client , disconnecting. +1612482400: New connection from 172.18.0.3 on port 1883. +1612482400: Sending CONNACK to 172.18.0.3 (0, 5) +1612482400: Socket error on client , disconnecting. +1612482420: New connection from 172.18.0.3 on port 1883. +1612482420: Sending CONNACK to 172.18.0.3 (0, 5) +1612482420: Socket error on client , disconnecting. +1612482437: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612482437: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612482437: Error: Permission denied. +1612482440: New connection from 172.18.0.3 on port 1883. +1612482440: Sending CONNACK to 172.18.0.3 (0, 5) +1612482440: Socket error on client , disconnecting. +1612482460: New connection from 172.18.0.3 on port 1883. +1612482460: Sending CONNACK to 172.18.0.3 (0, 5) +1612482460: Socket error on client , disconnecting. +1612482480: New connection from 172.18.0.3 on port 1883. +1612482480: Sending CONNACK to 172.18.0.3 (0, 5) +1612482480: Socket error on client , disconnecting. +1612482500: New connection from 172.18.0.3 on port 1883. +1612482500: Sending CONNACK to 172.18.0.3 (0, 5) +1612482500: Socket error on client , disconnecting. +1612482520: New connection from 172.18.0.3 on port 1883. +1612482520: Sending CONNACK to 172.18.0.3 (0, 5) +1612482520: Socket error on client , disconnecting. +1612482540: New connection from 172.18.0.3 on port 1883. +1612482540: Sending CONNACK to 172.18.0.3 (0, 5) +1612482540: Socket error on client , disconnecting. +1612482560: New connection from 172.18.0.3 on port 1883. +1612482560: Sending CONNACK to 172.18.0.3 (0, 5) +1612482560: Socket error on client , disconnecting. +1612482580: New connection from 172.18.0.3 on port 1883. +1612482580: Sending CONNACK to 172.18.0.3 (0, 5) +1612482580: Socket error on client , disconnecting. +1612482600: New connection from 172.18.0.3 on port 1883. +1612482600: Sending CONNACK to 172.18.0.3 (0, 5) +1612482600: Socket error on client , disconnecting. +1612482620: New connection from 172.18.0.3 on port 1883. +1612482620: Sending CONNACK to 172.18.0.3 (0, 5) +1612482620: Socket error on client , disconnecting. +1612482640: New connection from 172.18.0.3 on port 1883. +1612482640: Sending CONNACK to 172.18.0.3 (0, 5) +1612482640: Socket error on client , disconnecting. +1612482660: New connection from 172.18.0.3 on port 1883. +1612482660: Sending CONNACK to 172.18.0.3 (0, 5) +1612482660: Socket error on client , disconnecting. +1612482680: New connection from 172.18.0.3 on port 1883. +1612482680: Sending CONNACK to 172.18.0.3 (0, 5) +1612482680: Socket error on client , disconnecting. +1612482700: New connection from 172.18.0.3 on port 1883. +1612482700: Sending CONNACK to 172.18.0.3 (0, 5) +1612482700: Socket error on client , disconnecting. +1612482720: New connection from 172.18.0.3 on port 1883. +1612482720: Sending CONNACK to 172.18.0.3 (0, 5) +1612482720: Socket error on client , disconnecting. +1612482740: New connection from 172.18.0.3 on port 1883. +1612482740: Sending CONNACK to 172.18.0.3 (0, 5) +1612482740: Socket error on client , disconnecting. +1612482760: New connection from 172.18.0.3 on port 1883. +1612482760: Sending CONNACK to 172.18.0.3 (0, 5) +1612482760: Socket error on client , disconnecting. +1612482780: New connection from 172.18.0.3 on port 1883. +1612482780: Sending CONNACK to 172.18.0.3 (0, 5) +1612482780: Socket error on client , disconnecting. +1612482800: New connection from 172.18.0.3 on port 1883. +1612482800: Sending CONNACK to 172.18.0.3 (0, 5) +1612482800: Socket error on client , disconnecting. +1612482820: New connection from 172.18.0.3 on port 1883. +1612482820: Sending CONNACK to 172.18.0.3 (0, 5) +1612482820: Socket error on client , disconnecting. +1612482840: New connection from 172.18.0.3 on port 1883. +1612482840: Sending CONNACK to 172.18.0.3 (0, 5) +1612482840: Socket error on client , disconnecting. +1612482860: New connection from 172.18.0.3 on port 1883. +1612482860: Sending CONNACK to 172.18.0.3 (0, 5) +1612482860: Socket error on client , disconnecting. +1612482880: New connection from 172.18.0.3 on port 1883. +1612482880: Sending CONNACK to 172.18.0.3 (0, 5) +1612482880: Socket error on client , disconnecting. +1612482900: New connection from 172.18.0.3 on port 1883. +1612482900: Sending CONNACK to 172.18.0.3 (0, 5) +1612482900: Socket error on client , disconnecting. +1612482920: New connection from 172.18.0.3 on port 1883. +1612482920: Sending CONNACK to 172.18.0.3 (0, 5) +1612482920: Socket error on client , disconnecting. +1612482940: New connection from 172.18.0.3 on port 1883. +1612482940: Sending CONNACK to 172.18.0.3 (0, 5) +1612482940: Socket error on client , disconnecting. +1612482960: New connection from 172.18.0.3 on port 1883. +1612482960: Sending CONNACK to 172.18.0.3 (0, 5) +1612482960: Socket error on client , disconnecting. +1612482980: New connection from 172.18.0.3 on port 1883. +1612482980: Sending CONNACK to 172.18.0.3 (0, 5) +1612482980: Socket error on client , disconnecting. +1612483000: New connection from 172.18.0.3 on port 1883. +1612483000: Sending CONNACK to 172.18.0.3 (0, 5) +1612483000: Socket error on client , disconnecting. +1612483020: New connection from 172.18.0.3 on port 1883. +1612483020: Sending CONNACK to 172.18.0.3 (0, 5) +1612483020: Socket error on client , disconnecting. +1612483040: New connection from 172.18.0.3 on port 1883. +1612483040: Sending CONNACK to 172.18.0.3 (0, 5) +1612483040: Socket error on client , disconnecting. +1612483060: New connection from 172.18.0.3 on port 1883. +1612483060: Sending CONNACK to 172.18.0.3 (0, 5) +1612483060: Socket error on client , disconnecting. +1612483080: New connection from 172.18.0.3 on port 1883. +1612483080: Sending CONNACK to 172.18.0.3 (0, 5) +1612483080: Socket error on client , disconnecting. +1612483100: New connection from 172.18.0.3 on port 1883. +1612483100: Sending CONNACK to 172.18.0.3 (0, 5) +1612483100: Socket error on client , disconnecting. +1612483120: New connection from 172.18.0.3 on port 1883. +1612483120: Sending CONNACK to 172.18.0.3 (0, 5) +1612483120: Socket error on client , disconnecting. +1612483140: New connection from 172.18.0.3 on port 1883. +1612483140: Sending CONNACK to 172.18.0.3 (0, 5) +1612483140: Socket error on client , disconnecting. +1612483160: New connection from 172.18.0.3 on port 1883. +1612483160: Sending CONNACK to 172.18.0.3 (0, 5) +1612483160: Socket error on client , disconnecting. +1612483180: New connection from 172.18.0.3 on port 1883. +1612483180: Sending CONNACK to 172.18.0.3 (0, 5) +1612483180: Socket error on client , disconnecting. +1612483200: New connection from 172.18.0.3 on port 1883. +1612483200: Sending CONNACK to 172.18.0.3 (0, 5) +1612483200: Socket error on client , disconnecting. +1612483220: New connection from 172.18.0.3 on port 1883. +1612483220: Sending CONNACK to 172.18.0.3 (0, 5) +1612483220: Socket error on client , disconnecting. +1612483240: New connection from 172.18.0.3 on port 1883. +1612483240: Sending CONNACK to 172.18.0.3 (0, 5) +1612483240: Socket error on client , disconnecting. +1612483260: New connection from 172.18.0.3 on port 1883. +1612483260: Sending CONNACK to 172.18.0.3 (0, 5) +1612483260: Socket error on client , disconnecting. +1612483280: New connection from 172.18.0.3 on port 1883. +1612483280: Sending CONNACK to 172.18.0.3 (0, 5) +1612483280: Socket error on client , disconnecting. +1612483300: New connection from 172.18.0.3 on port 1883. +1612483300: Sending CONNACK to 172.18.0.3 (0, 5) +1612483300: Socket error on client , disconnecting. +1612483320: New connection from 172.18.0.3 on port 1883. +1612483320: Sending CONNACK to 172.18.0.3 (0, 5) +1612483320: Socket error on client , disconnecting. +1612483340: New connection from 172.18.0.3 on port 1883. +1612483340: Sending CONNACK to 172.18.0.3 (0, 5) +1612483340: Socket error on client , disconnecting. +1612483360: New connection from 172.18.0.3 on port 1883. +1612483360: Sending CONNACK to 172.18.0.3 (0, 5) +1612483360: Socket error on client , disconnecting. +1612483380: New connection from 172.18.0.3 on port 1883. +1612483380: Sending CONNACK to 172.18.0.3 (0, 5) +1612483380: Socket error on client , disconnecting. +1612483400: New connection from 172.18.0.3 on port 1883. +1612483400: Sending CONNACK to 172.18.0.3 (0, 5) +1612483400: Socket error on client , disconnecting. +1612483420: New connection from 172.18.0.3 on port 1883. +1612483420: Sending CONNACK to 172.18.0.3 (0, 5) +1612483420: Socket error on client , disconnecting. +1612483440: New connection from 172.18.0.3 on port 1883. +1612483440: Sending CONNACK to 172.18.0.3 (0, 5) +1612483440: Socket error on client , disconnecting. +1612483460: New connection from 172.18.0.3 on port 1883. +1612483460: Sending CONNACK to 172.18.0.3 (0, 5) +1612483460: Socket error on client , disconnecting. +1612483480: New connection from 172.18.0.3 on port 1883. +1612483480: Sending CONNACK to 172.18.0.3 (0, 5) +1612483480: Socket error on client , disconnecting. +1612483500: New connection from 172.18.0.3 on port 1883. +1612483500: Sending CONNACK to 172.18.0.3 (0, 5) +1612483500: Socket error on client , disconnecting. +1612483520: New connection from 172.18.0.3 on port 1883. +1612483520: Sending CONNACK to 172.18.0.3 (0, 5) +1612483520: Socket error on client , disconnecting. +1612483540: New connection from 172.18.0.3 on port 1883. +1612483540: Sending CONNACK to 172.18.0.3 (0, 5) +1612483540: Socket error on client , disconnecting. +1612483560: New connection from 172.18.0.3 on port 1883. +1612483560: Sending CONNACK to 172.18.0.3 (0, 5) +1612483560: Socket error on client , disconnecting. +1612483580: New connection from 172.18.0.3 on port 1883. +1612483580: Sending CONNACK to 172.18.0.3 (0, 5) +1612483580: Socket error on client , disconnecting. +1612483600: New connection from 172.18.0.3 on port 1883. +1612483600: Sending CONNACK to 172.18.0.3 (0, 5) +1612483600: Socket error on client , disconnecting. +1612483620: New connection from 172.18.0.3 on port 1883. +1612483620: Sending CONNACK to 172.18.0.3 (0, 5) +1612483620: Socket error on client , disconnecting. +1612483640: New connection from 172.18.0.3 on port 1883. +1612483640: Sending CONNACK to 172.18.0.3 (0, 5) +1612483640: Socket error on client , disconnecting. +1612483660: New connection from 172.18.0.3 on port 1883. +1612483660: Sending CONNACK to 172.18.0.3 (0, 5) +1612483660: Socket error on client , disconnecting. +1612483680: New connection from 172.18.0.3 on port 1883. +1612483680: Sending CONNACK to 172.18.0.3 (0, 5) +1612483680: Socket error on client , disconnecting. +1612483700: New connection from 172.18.0.3 on port 1883. +1612483700: Sending CONNACK to 172.18.0.3 (0, 5) +1612483700: Socket error on client , disconnecting. +1612483720: New connection from 172.18.0.3 on port 1883. +1612483720: Sending CONNACK to 172.18.0.3 (0, 5) +1612483720: Socket error on client , disconnecting. +1612483740: New connection from 172.18.0.3 on port 1883. +1612483740: Sending CONNACK to 172.18.0.3 (0, 5) +1612483740: Socket error on client , disconnecting. +1612483760: New connection from 172.18.0.3 on port 1883. +1612483760: Sending CONNACK to 172.18.0.3 (0, 5) +1612483760: Socket error on client , disconnecting. +1612483780: New connection from 172.18.0.3 on port 1883. +1612483780: Sending CONNACK to 172.18.0.3 (0, 5) +1612483780: Socket error on client , disconnecting. +1612483800: New connection from 172.18.0.3 on port 1883. +1612483800: Sending CONNACK to 172.18.0.3 (0, 5) +1612483800: Socket error on client , disconnecting. +1612483820: New connection from 172.18.0.3 on port 1883. +1612483820: Sending CONNACK to 172.18.0.3 (0, 5) +1612483820: Socket error on client , disconnecting. +1612483840: New connection from 172.18.0.3 on port 1883. +1612483840: Sending CONNACK to 172.18.0.3 (0, 5) +1612483840: Socket error on client , disconnecting. +1612483860: New connection from 172.18.0.3 on port 1883. +1612483860: Sending CONNACK to 172.18.0.3 (0, 5) +1612483860: Socket error on client , disconnecting. +1612483880: New connection from 172.18.0.3 on port 1883. +1612483880: Sending CONNACK to 172.18.0.3 (0, 5) +1612483880: Socket error on client , disconnecting. +1612483900: New connection from 172.18.0.3 on port 1883. +1612483900: Sending CONNACK to 172.18.0.3 (0, 5) +1612483900: Socket error on client , disconnecting. +1612483920: New connection from 172.18.0.3 on port 1883. +1612483920: Sending CONNACK to 172.18.0.3 (0, 5) +1612483920: Socket error on client , disconnecting. +1612483940: New connection from 172.18.0.3 on port 1883. +1612483940: Sending CONNACK to 172.18.0.3 (0, 5) +1612483940: Socket error on client , disconnecting. +1612483960: New connection from 172.18.0.3 on port 1883. +1612483960: Sending CONNACK to 172.18.0.3 (0, 5) +1612483960: Socket error on client , disconnecting. +1612483980: New connection from 172.18.0.3 on port 1883. +1612483980: Sending CONNACK to 172.18.0.3 (0, 5) +1612483980: Socket error on client , disconnecting. +1612484000: New connection from 172.18.0.3 on port 1883. +1612484000: Sending CONNACK to 172.18.0.3 (0, 5) +1612484000: Socket error on client , disconnecting. +1612484020: New connection from 172.18.0.3 on port 1883. +1612484020: Sending CONNACK to 172.18.0.3 (0, 5) +1612484020: Socket error on client , disconnecting. +1612484040: New connection from 172.18.0.3 on port 1883. +1612484040: Sending CONNACK to 172.18.0.3 (0, 5) +1612484040: Socket error on client , disconnecting. +1612484060: New connection from 172.18.0.3 on port 1883. +1612484060: Sending CONNACK to 172.18.0.3 (0, 5) +1612484060: Socket error on client , disconnecting. +1612484080: New connection from 172.18.0.3 on port 1883. +1612484080: Sending CONNACK to 172.18.0.3 (0, 5) +1612484080: Socket error on client , disconnecting. +1612484100: New connection from 172.18.0.3 on port 1883. +1612484100: Sending CONNACK to 172.18.0.3 (0, 5) +1612484100: Socket error on client , disconnecting. +1612484120: New connection from 172.18.0.3 on port 1883. +1612484120: Sending CONNACK to 172.18.0.3 (0, 5) +1612484120: Socket error on client , disconnecting. +1612484140: New connection from 172.18.0.3 on port 1883. +1612484140: Sending CONNACK to 172.18.0.3 (0, 5) +1612484140: Socket error on client , disconnecting. +1612484160: New connection from 172.18.0.3 on port 1883. +1612484160: Sending CONNACK to 172.18.0.3 (0, 5) +1612484160: Socket error on client , disconnecting. +1612484180: New connection from 172.18.0.3 on port 1883. +1612484180: Sending CONNACK to 172.18.0.3 (0, 5) +1612484180: Socket error on client , disconnecting. +1612484200: New connection from 172.18.0.3 on port 1883. +1612484200: Sending CONNACK to 172.18.0.3 (0, 5) +1612484200: Socket error on client , disconnecting. +1612484220: New connection from 172.18.0.3 on port 1883. +1612484220: Sending CONNACK to 172.18.0.3 (0, 5) +1612484220: Socket error on client , disconnecting. +1612484238: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612484238: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612484238: Error: Permission denied. +1612484240: New connection from 172.18.0.3 on port 1883. +1612484240: Sending CONNACK to 172.18.0.3 (0, 5) +1612484240: Socket error on client , disconnecting. +1612484260: New connection from 172.18.0.3 on port 1883. +1612484260: Sending CONNACK to 172.18.0.3 (0, 5) +1612484260: Socket error on client , disconnecting. +1612484280: New connection from 172.18.0.3 on port 1883. +1612484280: Sending CONNACK to 172.18.0.3 (0, 5) +1612484280: Socket error on client , disconnecting. +1612484300: New connection from 172.18.0.3 on port 1883. +1612484300: Sending CONNACK to 172.18.0.3 (0, 5) +1612484300: Socket error on client , disconnecting. +1612484320: New connection from 172.18.0.3 on port 1883. +1612484320: Sending CONNACK to 172.18.0.3 (0, 5) +1612484320: Socket error on client , disconnecting. +1612484340: New connection from 172.18.0.3 on port 1883. +1612484340: Sending CONNACK to 172.18.0.3 (0, 5) +1612484340: Socket error on client , disconnecting. +1612484360: New connection from 172.18.0.3 on port 1883. +1612484360: Sending CONNACK to 172.18.0.3 (0, 5) +1612484360: Socket error on client , disconnecting. +1612484380: New connection from 172.18.0.3 on port 1883. +1612484380: Sending CONNACK to 172.18.0.3 (0, 5) +1612484380: Socket error on client , disconnecting. +1612484400: New connection from 172.18.0.3 on port 1883. +1612484400: Sending CONNACK to 172.18.0.3 (0, 5) +1612484400: Socket error on client , disconnecting. +1612484420: New connection from 172.18.0.3 on port 1883. +1612484420: Sending CONNACK to 172.18.0.3 (0, 5) +1612484420: Socket error on client , disconnecting. +1612484440: New connection from 172.18.0.3 on port 1883. +1612484440: Sending CONNACK to 172.18.0.3 (0, 5) +1612484440: Socket error on client , disconnecting. +1612484460: New connection from 172.18.0.3 on port 1883. +1612484460: Sending CONNACK to 172.18.0.3 (0, 5) +1612484460: Socket error on client , disconnecting. +1612484480: New connection from 172.18.0.3 on port 1883. +1612484480: Sending CONNACK to 172.18.0.3 (0, 5) +1612484480: Socket error on client , disconnecting. +1612484500: New connection from 172.18.0.3 on port 1883. +1612484500: Sending CONNACK to 172.18.0.3 (0, 5) +1612484500: Socket error on client , disconnecting. +1612484520: New connection from 172.18.0.3 on port 1883. +1612484520: Sending CONNACK to 172.18.0.3 (0, 5) +1612484520: Socket error on client , disconnecting. +1612484540: New connection from 172.18.0.3 on port 1883. +1612484540: Sending CONNACK to 172.18.0.3 (0, 5) +1612484540: Socket error on client , disconnecting. +1612484560: New connection from 172.18.0.3 on port 1883. +1612484560: Sending CONNACK to 172.18.0.3 (0, 5) +1612484560: Socket error on client , disconnecting. +1612484580: New connection from 172.18.0.3 on port 1883. +1612484580: Sending CONNACK to 172.18.0.3 (0, 5) +1612484580: Socket error on client , disconnecting. +1612484600: New connection from 172.18.0.3 on port 1883. +1612484600: Sending CONNACK to 172.18.0.3 (0, 5) +1612484600: Socket error on client , disconnecting. +1612484620: New connection from 172.18.0.3 on port 1883. +1612484620: Sending CONNACK to 172.18.0.3 (0, 5) +1612484620: Socket error on client , disconnecting. +1612484640: New connection from 172.18.0.3 on port 1883. +1612484640: Sending CONNACK to 172.18.0.3 (0, 5) +1612484640: Socket error on client , disconnecting. +1612484660: New connection from 172.18.0.3 on port 1883. +1612484660: Sending CONNACK to 172.18.0.3 (0, 5) +1612484660: Socket error on client , disconnecting. +1612484680: New connection from 172.18.0.3 on port 1883. +1612484680: Sending CONNACK to 172.18.0.3 (0, 5) +1612484680: Socket error on client , disconnecting. +1612484700: New connection from 172.18.0.3 on port 1883. +1612484700: Sending CONNACK to 172.18.0.3 (0, 5) +1612484700: Socket error on client , disconnecting. +1612484720: New connection from 172.18.0.3 on port 1883. +1612484720: Sending CONNACK to 172.18.0.3 (0, 5) +1612484720: Socket error on client , disconnecting. +1612484740: New connection from 172.18.0.3 on port 1883. +1612484740: Sending CONNACK to 172.18.0.3 (0, 5) +1612484740: Socket error on client , disconnecting. +1612484760: New connection from 172.18.0.3 on port 1883. +1612484760: Sending CONNACK to 172.18.0.3 (0, 5) +1612484760: Socket error on client , disconnecting. +1612484780: New connection from 172.18.0.3 on port 1883. +1612484780: Sending CONNACK to 172.18.0.3 (0, 5) +1612484780: Socket error on client , disconnecting. +1612484800: New connection from 172.18.0.3 on port 1883. +1612484800: Sending CONNACK to 172.18.0.3 (0, 5) +1612484800: Socket error on client , disconnecting. +1612484820: New connection from 172.18.0.3 on port 1883. +1612484820: Sending CONNACK to 172.18.0.3 (0, 5) +1612484820: Socket error on client , disconnecting. +1612484840: New connection from 172.18.0.3 on port 1883. +1612484840: Sending CONNACK to 172.18.0.3 (0, 5) +1612484840: Socket error on client , disconnecting. +1612484860: New connection from 172.18.0.3 on port 1883. +1612484860: Sending CONNACK to 172.18.0.3 (0, 5) +1612484860: Socket error on client , disconnecting. +1612484880: New connection from 172.18.0.3 on port 1883. +1612484880: Sending CONNACK to 172.18.0.3 (0, 5) +1612484880: Socket error on client , disconnecting. +1612484900: New connection from 172.18.0.3 on port 1883. +1612484900: Sending CONNACK to 172.18.0.3 (0, 5) +1612484900: Socket error on client , disconnecting. +1612484920: New connection from 172.18.0.3 on port 1883. +1612484920: Sending CONNACK to 172.18.0.3 (0, 5) +1612484920: Socket error on client , disconnecting. +1612484940: New connection from 172.18.0.3 on port 1883. +1612484940: Sending CONNACK to 172.18.0.3 (0, 5) +1612484940: Socket error on client , disconnecting. +1612484960: New connection from 172.18.0.3 on port 1883. +1612484960: Sending CONNACK to 172.18.0.3 (0, 5) +1612484960: Socket error on client , disconnecting. +1612484980: New connection from 172.18.0.3 on port 1883. +1612484980: Sending CONNACK to 172.18.0.3 (0, 5) +1612484980: Socket error on client , disconnecting. +1612485000: New connection from 172.18.0.3 on port 1883. +1612485000: Sending CONNACK to 172.18.0.3 (0, 5) +1612485000: Socket error on client , disconnecting. +1612485020: New connection from 172.18.0.3 on port 1883. +1612485020: Sending CONNACK to 172.18.0.3 (0, 5) +1612485020: Socket error on client , disconnecting. +1612485040: New connection from 172.18.0.3 on port 1883. +1612485040: Sending CONNACK to 172.18.0.3 (0, 5) +1612485040: Socket error on client , disconnecting. +1612485060: New connection from 172.18.0.3 on port 1883. +1612485060: Sending CONNACK to 172.18.0.3 (0, 5) +1612485060: Socket error on client , disconnecting. +1612485080: New connection from 172.18.0.3 on port 1883. +1612485080: Sending CONNACK to 172.18.0.3 (0, 5) +1612485080: Socket error on client , disconnecting. +1612485100: New connection from 172.18.0.3 on port 1883. +1612485100: Sending CONNACK to 172.18.0.3 (0, 5) +1612485100: Socket error on client , disconnecting. +1612485120: New connection from 172.18.0.3 on port 1883. +1612485120: Sending CONNACK to 172.18.0.3 (0, 5) +1612485120: Socket error on client , disconnecting. +1612485140: New connection from 172.18.0.3 on port 1883. +1612485140: Sending CONNACK to 172.18.0.3 (0, 5) +1612485140: Socket error on client , disconnecting. +1612485160: New connection from 172.18.0.3 on port 1883. +1612485160: Sending CONNACK to 172.18.0.3 (0, 5) +1612485160: Socket error on client , disconnecting. +1612485180: New connection from 172.18.0.3 on port 1883. +1612485180: Sending CONNACK to 172.18.0.3 (0, 5) +1612485180: Socket error on client , disconnecting. +1612485200: New connection from 172.18.0.3 on port 1883. +1612485200: Sending CONNACK to 172.18.0.3 (0, 5) +1612485200: Socket error on client , disconnecting. +1612485220: New connection from 172.18.0.3 on port 1883. +1612485220: Sending CONNACK to 172.18.0.3 (0, 5) +1612485220: Socket error on client , disconnecting. +1612485240: New connection from 172.18.0.3 on port 1883. +1612485240: Sending CONNACK to 172.18.0.3 (0, 5) +1612485240: Socket error on client , disconnecting. +1612485260: New connection from 172.18.0.3 on port 1883. +1612485260: Sending CONNACK to 172.18.0.3 (0, 5) +1612485260: Socket error on client , disconnecting. +1612485280: New connection from 172.18.0.3 on port 1883. +1612485280: Sending CONNACK to 172.18.0.3 (0, 5) +1612485280: Socket error on client , disconnecting. +1612485300: New connection from 172.18.0.3 on port 1883. +1612485300: Sending CONNACK to 172.18.0.3 (0, 5) +1612485300: Socket error on client , disconnecting. +1612485320: New connection from 172.18.0.3 on port 1883. +1612485320: Sending CONNACK to 172.18.0.3 (0, 5) +1612485320: Socket error on client , disconnecting. +1612485340: New connection from 172.18.0.3 on port 1883. +1612485340: Sending CONNACK to 172.18.0.3 (0, 5) +1612485340: Socket error on client , disconnecting. +1612485360: New connection from 172.18.0.3 on port 1883. +1612485360: Sending CONNACK to 172.18.0.3 (0, 5) +1612485360: Socket error on client , disconnecting. +1612485380: New connection from 172.18.0.3 on port 1883. +1612485380: Sending CONNACK to 172.18.0.3 (0, 5) +1612485380: Socket error on client , disconnecting. +1612485400: New connection from 172.18.0.3 on port 1883. +1612485400: Sending CONNACK to 172.18.0.3 (0, 5) +1612485400: Socket error on client , disconnecting. +1612485420: New connection from 172.18.0.3 on port 1883. +1612485420: Sending CONNACK to 172.18.0.3 (0, 5) +1612485420: Socket error on client , disconnecting. +1612485440: New connection from 172.18.0.3 on port 1883. +1612485440: Sending CONNACK to 172.18.0.3 (0, 5) +1612485440: Socket error on client , disconnecting. +1612485460: New connection from 172.18.0.3 on port 1883. +1612485460: Sending CONNACK to 172.18.0.3 (0, 5) +1612485460: Socket error on client , disconnecting. +1612485480: New connection from 172.18.0.3 on port 1883. +1612485480: Sending CONNACK to 172.18.0.3 (0, 5) +1612485480: Socket error on client , disconnecting. +1612485500: New connection from 172.18.0.3 on port 1883. +1612485500: Sending CONNACK to 172.18.0.3 (0, 5) +1612485500: Socket error on client , disconnecting. +1612485520: New connection from 172.18.0.3 on port 1883. +1612485520: Sending CONNACK to 172.18.0.3 (0, 5) +1612485520: Socket error on client , disconnecting. +1612485540: New connection from 172.18.0.3 on port 1883. +1612485540: Sending CONNACK to 172.18.0.3 (0, 5) +1612485540: Socket error on client , disconnecting. +1612485560: New connection from 172.18.0.3 on port 1883. +1612485560: Sending CONNACK to 172.18.0.3 (0, 5) +1612485560: Socket error on client , disconnecting. +1612485580: New connection from 172.18.0.3 on port 1883. +1612485580: Sending CONNACK to 172.18.0.3 (0, 5) +1612485580: Socket error on client , disconnecting. +1612485600: New connection from 172.18.0.3 on port 1883. +1612485600: Sending CONNACK to 172.18.0.3 (0, 5) +1612485600: Socket error on client , disconnecting. +1612485620: New connection from 172.18.0.3 on port 1883. +1612485620: Sending CONNACK to 172.18.0.3 (0, 5) +1612485620: Socket error on client , disconnecting. +1612485640: New connection from 172.18.0.3 on port 1883. +1612485640: Sending CONNACK to 172.18.0.3 (0, 5) +1612485640: Socket error on client , disconnecting. +1612485660: New connection from 172.18.0.3 on port 1883. +1612485660: Sending CONNACK to 172.18.0.3 (0, 5) +1612485660: Socket error on client , disconnecting. +1612485680: New connection from 172.18.0.3 on port 1883. +1612485680: Sending CONNACK to 172.18.0.3 (0, 5) +1612485680: Socket error on client , disconnecting. +1612485700: New connection from 172.18.0.3 on port 1883. +1612485700: Sending CONNACK to 172.18.0.3 (0, 5) +1612485700: Socket error on client , disconnecting. +1612485720: New connection from 172.18.0.3 on port 1883. +1612485720: Sending CONNACK to 172.18.0.3 (0, 5) +1612485720: Socket error on client , disconnecting. +1612485740: New connection from 172.18.0.3 on port 1883. +1612485740: Sending CONNACK to 172.18.0.3 (0, 5) +1612485740: Socket error on client , disconnecting. +1612485760: New connection from 172.18.0.3 on port 1883. +1612485760: Sending CONNACK to 172.18.0.3 (0, 5) +1612485760: Socket error on client , disconnecting. +1612485780: New connection from 172.18.0.3 on port 1883. +1612485780: Sending CONNACK to 172.18.0.3 (0, 5) +1612485780: Socket error on client , disconnecting. +1612485800: New connection from 172.18.0.3 on port 1883. +1612485800: Sending CONNACK to 172.18.0.3 (0, 5) +1612485800: Socket error on client , disconnecting. +1612485820: New connection from 172.18.0.3 on port 1883. +1612485820: Sending CONNACK to 172.18.0.3 (0, 5) +1612485820: Socket error on client , disconnecting. +1612485840: New connection from 172.18.0.3 on port 1883. +1612485840: Sending CONNACK to 172.18.0.3 (0, 5) +1612485840: Socket error on client , disconnecting. +1612485860: New connection from 172.18.0.3 on port 1883. +1612485860: Sending CONNACK to 172.18.0.3 (0, 5) +1612485860: Socket error on client , disconnecting. +1612485880: New connection from 172.18.0.3 on port 1883. +1612485880: Sending CONNACK to 172.18.0.3 (0, 5) +1612485880: Socket error on client , disconnecting. +1612485900: New connection from 172.18.0.3 on port 1883. +1612485900: Sending CONNACK to 172.18.0.3 (0, 5) +1612485900: Socket error on client , disconnecting. +1612485920: New connection from 172.18.0.3 on port 1883. +1612485920: Sending CONNACK to 172.18.0.3 (0, 5) +1612485920: Socket error on client , disconnecting. +1612485940: New connection from 172.18.0.3 on port 1883. +1612485940: Sending CONNACK to 172.18.0.3 (0, 5) +1612485940: Socket error on client , disconnecting. +1612485960: New connection from 172.18.0.3 on port 1883. +1612485960: Sending CONNACK to 172.18.0.3 (0, 5) +1612485960: Socket error on client , disconnecting. +1612485980: New connection from 172.18.0.3 on port 1883. +1612485980: Sending CONNACK to 172.18.0.3 (0, 5) +1612485980: Socket error on client , disconnecting. +1612486000: New connection from 172.18.0.3 on port 1883. +1612486000: Sending CONNACK to 172.18.0.3 (0, 5) +1612486000: Socket error on client , disconnecting. +1612486020: New connection from 172.18.0.3 on port 1883. +1612486020: Sending CONNACK to 172.18.0.3 (0, 5) +1612486020: Socket error on client , disconnecting. +1612486039: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612486039: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612486039: Error: Permission denied. +1612486040: New connection from 172.18.0.3 on port 1883. +1612486040: Sending CONNACK to 172.18.0.3 (0, 5) +1612486040: Socket error on client , disconnecting. +1612486060: New connection from 172.18.0.3 on port 1883. +1612486060: Sending CONNACK to 172.18.0.3 (0, 5) +1612486060: Socket error on client , disconnecting. +1612486080: New connection from 172.18.0.3 on port 1883. +1612486080: Sending CONNACK to 172.18.0.3 (0, 5) +1612486080: Socket error on client , disconnecting. +1612486100: New connection from 172.18.0.3 on port 1883. +1612486100: Sending CONNACK to 172.18.0.3 (0, 5) +1612486100: Socket error on client , disconnecting. +1612486120: New connection from 172.18.0.3 on port 1883. +1612486120: Sending CONNACK to 172.18.0.3 (0, 5) +1612486120: Socket error on client , disconnecting. +1612486140: New connection from 172.18.0.3 on port 1883. +1612486140: Sending CONNACK to 172.18.0.3 (0, 5) +1612486140: Socket error on client , disconnecting. +1612486160: New connection from 172.18.0.3 on port 1883. +1612486160: Sending CONNACK to 172.18.0.3 (0, 5) +1612486160: Socket error on client , disconnecting. +1612486180: New connection from 172.18.0.3 on port 1883. +1612486180: Sending CONNACK to 172.18.0.3 (0, 5) +1612486180: Socket error on client , disconnecting. +1612486200: New connection from 172.18.0.3 on port 1883. +1612486200: Sending CONNACK to 172.18.0.3 (0, 5) +1612486200: Socket error on client , disconnecting. +1612486220: New connection from 172.18.0.3 on port 1883. +1612486220: Sending CONNACK to 172.18.0.3 (0, 5) +1612486220: Socket error on client , disconnecting. +1612486240: New connection from 172.18.0.3 on port 1883. +1612486240: Sending CONNACK to 172.18.0.3 (0, 5) +1612486240: Socket error on client , disconnecting. +1612486260: New connection from 172.18.0.3 on port 1883. +1612486260: Sending CONNACK to 172.18.0.3 (0, 5) +1612486260: Socket error on client , disconnecting. +1612486280: New connection from 172.18.0.3 on port 1883. +1612486280: Sending CONNACK to 172.18.0.3 (0, 5) +1612486280: Socket error on client , disconnecting. +1612486300: New connection from 172.18.0.3 on port 1883. +1612486300: Sending CONNACK to 172.18.0.3 (0, 5) +1612486300: Socket error on client , disconnecting. +1612486320: New connection from 172.18.0.3 on port 1883. +1612486320: Sending CONNACK to 172.18.0.3 (0, 5) +1612486320: Socket error on client , disconnecting. +1612486340: New connection from 172.18.0.3 on port 1883. +1612486340: Sending CONNACK to 172.18.0.3 (0, 5) +1612486340: Socket error on client , disconnecting. +1612486360: New connection from 172.18.0.3 on port 1883. +1612486360: Sending CONNACK to 172.18.0.3 (0, 5) +1612486360: Socket error on client , disconnecting. +1612486380: New connection from 172.18.0.3 on port 1883. +1612486380: Sending CONNACK to 172.18.0.3 (0, 5) +1612486380: Socket error on client , disconnecting. +1612486400: New connection from 172.18.0.3 on port 1883. +1612486400: Sending CONNACK to 172.18.0.3 (0, 5) +1612486400: Socket error on client , disconnecting. +1612486420: New connection from 172.18.0.3 on port 1883. +1612486420: Sending CONNACK to 172.18.0.3 (0, 5) +1612486420: Socket error on client , disconnecting. +1612486440: New connection from 172.18.0.3 on port 1883. +1612486440: Sending CONNACK to 172.18.0.3 (0, 5) +1612486440: Socket error on client , disconnecting. +1612486460: New connection from 172.18.0.3 on port 1883. +1612486460: Sending CONNACK to 172.18.0.3 (0, 5) +1612486460: Socket error on client , disconnecting. +1612486480: New connection from 172.18.0.3 on port 1883. +1612486480: Sending CONNACK to 172.18.0.3 (0, 5) +1612486480: Socket error on client , disconnecting. +1612486500: New connection from 172.18.0.3 on port 1883. +1612486500: Sending CONNACK to 172.18.0.3 (0, 5) +1612486500: Socket error on client , disconnecting. +1612486520: New connection from 172.18.0.3 on port 1883. +1612486520: Sending CONNACK to 172.18.0.3 (0, 5) +1612486520: Socket error on client , disconnecting. +1612486540: New connection from 172.18.0.3 on port 1883. +1612486540: Sending CONNACK to 172.18.0.3 (0, 5) +1612486540: Socket error on client , disconnecting. +1612486560: New connection from 172.18.0.3 on port 1883. +1612486560: Sending CONNACK to 172.18.0.3 (0, 5) +1612486560: Socket error on client , disconnecting. +1612486580: New connection from 172.18.0.3 on port 1883. +1612486580: Sending CONNACK to 172.18.0.3 (0, 5) +1612486580: Socket error on client , disconnecting. +1612486600: New connection from 172.18.0.3 on port 1883. +1612486600: Sending CONNACK to 172.18.0.3 (0, 5) +1612486600: Socket error on client , disconnecting. +1612486620: New connection from 172.18.0.3 on port 1883. +1612486620: Sending CONNACK to 172.18.0.3 (0, 5) +1612486620: Socket error on client , disconnecting. +1612486640: New connection from 172.18.0.3 on port 1883. +1612486640: Sending CONNACK to 172.18.0.3 (0, 5) +1612486640: Socket error on client , disconnecting. +1612486660: New connection from 172.18.0.3 on port 1883. +1612486660: Sending CONNACK to 172.18.0.3 (0, 5) +1612486660: Socket error on client , disconnecting. +1612486680: New connection from 172.18.0.3 on port 1883. +1612486680: Sending CONNACK to 172.18.0.3 (0, 5) +1612486680: Socket error on client , disconnecting. +1612486700: New connection from 172.18.0.3 on port 1883. +1612486700: Sending CONNACK to 172.18.0.3 (0, 5) +1612486700: Socket error on client , disconnecting. +1612486720: New connection from 172.18.0.3 on port 1883. +1612486720: Sending CONNACK to 172.18.0.3 (0, 5) +1612486720: Socket error on client , disconnecting. +1612486740: New connection from 172.18.0.3 on port 1883. +1612486740: Sending CONNACK to 172.18.0.3 (0, 5) +1612486740: Socket error on client , disconnecting. +1612486760: New connection from 172.18.0.3 on port 1883. +1612486760: Sending CONNACK to 172.18.0.3 (0, 5) +1612486760: Socket error on client , disconnecting. +1612486780: New connection from 172.18.0.3 on port 1883. +1612486780: Sending CONNACK to 172.18.0.3 (0, 5) +1612486780: Socket error on client , disconnecting. +1612486800: New connection from 172.18.0.3 on port 1883. +1612486800: Sending CONNACK to 172.18.0.3 (0, 5) +1612486800: Socket error on client , disconnecting. +1612486820: New connection from 172.18.0.3 on port 1883. +1612486820: Sending CONNACK to 172.18.0.3 (0, 5) +1612486820: Socket error on client , disconnecting. +1612486840: New connection from 172.18.0.3 on port 1883. +1612486840: Sending CONNACK to 172.18.0.3 (0, 5) +1612486840: Socket error on client , disconnecting. +1612486860: New connection from 172.18.0.3 on port 1883. +1612486860: Sending CONNACK to 172.18.0.3 (0, 5) +1612486860: Socket error on client , disconnecting. +1612486880: New connection from 172.18.0.3 on port 1883. +1612486880: Sending CONNACK to 172.18.0.3 (0, 5) +1612486880: Socket error on client , disconnecting. +1612486900: New connection from 172.18.0.3 on port 1883. +1612486900: Sending CONNACK to 172.18.0.3 (0, 5) +1612486900: Socket error on client , disconnecting. +1612486920: New connection from 172.18.0.3 on port 1883. +1612486920: Sending CONNACK to 172.18.0.3 (0, 5) +1612486920: Socket error on client , disconnecting. +1612486940: New connection from 172.18.0.3 on port 1883. +1612486940: Sending CONNACK to 172.18.0.3 (0, 5) +1612486940: Socket error on client , disconnecting. +1612486960: New connection from 172.18.0.3 on port 1883. +1612486960: Sending CONNACK to 172.18.0.3 (0, 5) +1612486960: Socket error on client , disconnecting. +1612486980: New connection from 172.18.0.3 on port 1883. +1612486980: Sending CONNACK to 172.18.0.3 (0, 5) +1612486980: Socket error on client , disconnecting. +1612487000: New connection from 172.18.0.3 on port 1883. +1612487000: Sending CONNACK to 172.18.0.3 (0, 5) +1612487000: Socket error on client , disconnecting. +1612487020: New connection from 172.18.0.3 on port 1883. +1612487020: Sending CONNACK to 172.18.0.3 (0, 5) +1612487020: Socket error on client , disconnecting. +1612487040: New connection from 172.18.0.3 on port 1883. +1612487040: Sending CONNACK to 172.18.0.3 (0, 5) +1612487040: Socket error on client , disconnecting. +1612487060: New connection from 172.18.0.3 on port 1883. +1612487060: Sending CONNACK to 172.18.0.3 (0, 5) +1612487060: Socket error on client , disconnecting. +1612487080: New connection from 172.18.0.3 on port 1883. +1612487080: Sending CONNACK to 172.18.0.3 (0, 5) +1612487080: Socket error on client , disconnecting. +1612487100: New connection from 172.18.0.3 on port 1883. +1612487100: Sending CONNACK to 172.18.0.3 (0, 5) +1612487100: Socket error on client , disconnecting. +1612487120: New connection from 172.18.0.3 on port 1883. +1612487120: Sending CONNACK to 172.18.0.3 (0, 5) +1612487120: Socket error on client , disconnecting. +1612487140: New connection from 172.18.0.3 on port 1883. +1612487140: Sending CONNACK to 172.18.0.3 (0, 5) +1612487140: Socket error on client , disconnecting. +1612487160: New connection from 172.18.0.3 on port 1883. +1612487160: Sending CONNACK to 172.18.0.3 (0, 5) +1612487160: Socket error on client , disconnecting. +1612487180: New connection from 172.18.0.3 on port 1883. +1612487180: Sending CONNACK to 172.18.0.3 (0, 5) +1612487180: Socket error on client , disconnecting. +1612487200: New connection from 172.18.0.3 on port 1883. +1612487200: Sending CONNACK to 172.18.0.3 (0, 5) +1612487200: Socket error on client , disconnecting. +1612487220: New connection from 172.18.0.3 on port 1883. +1612487220: Sending CONNACK to 172.18.0.3 (0, 5) +1612487220: Socket error on client , disconnecting. +1612487240: New connection from 172.18.0.3 on port 1883. +1612487240: Sending CONNACK to 172.18.0.3 (0, 5) +1612487240: Socket error on client , disconnecting. +1612487260: New connection from 172.18.0.3 on port 1883. +1612487260: Sending CONNACK to 172.18.0.3 (0, 5) +1612487260: Socket error on client , disconnecting. +1612487280: New connection from 172.18.0.3 on port 1883. +1612487280: Sending CONNACK to 172.18.0.3 (0, 5) +1612487280: Socket error on client , disconnecting. +1612487300: New connection from 172.18.0.3 on port 1883. +1612487300: Sending CONNACK to 172.18.0.3 (0, 5) +1612487300: Socket error on client , disconnecting. +1612487320: New connection from 172.18.0.3 on port 1883. +1612487320: Sending CONNACK to 172.18.0.3 (0, 5) +1612487320: Socket error on client , disconnecting. +1612487340: New connection from 172.18.0.3 on port 1883. +1612487340: Sending CONNACK to 172.18.0.3 (0, 5) +1612487340: Socket error on client , disconnecting. +1612487360: New connection from 172.18.0.3 on port 1883. +1612487360: Sending CONNACK to 172.18.0.3 (0, 5) +1612487360: Socket error on client , disconnecting. +1612487380: New connection from 172.18.0.3 on port 1883. +1612487380: Sending CONNACK to 172.18.0.3 (0, 5) +1612487380: Socket error on client , disconnecting. +1612487400: New connection from 172.18.0.3 on port 1883. +1612487400: Sending CONNACK to 172.18.0.3 (0, 5) +1612487400: Socket error on client , disconnecting. +1612487420: New connection from 172.18.0.3 on port 1883. +1612487420: Sending CONNACK to 172.18.0.3 (0, 5) +1612487420: Socket error on client , disconnecting. +1612487440: New connection from 172.18.0.3 on port 1883. +1612487440: Sending CONNACK to 172.18.0.3 (0, 5) +1612487440: Socket error on client , disconnecting. +1612487460: New connection from 172.18.0.3 on port 1883. +1612487460: Sending CONNACK to 172.18.0.3 (0, 5) +1612487460: Socket error on client , disconnecting. +1612487480: New connection from 172.18.0.3 on port 1883. +1612487480: Sending CONNACK to 172.18.0.3 (0, 5) +1612487480: Socket error on client , disconnecting. +1612487500: New connection from 172.18.0.3 on port 1883. +1612487500: Sending CONNACK to 172.18.0.3 (0, 5) +1612487500: Socket error on client , disconnecting. +1612487520: New connection from 172.18.0.3 on port 1883. +1612487520: Sending CONNACK to 172.18.0.3 (0, 5) +1612487520: Socket error on client , disconnecting. +1612487540: New connection from 172.18.0.3 on port 1883. +1612487540: Sending CONNACK to 172.18.0.3 (0, 5) +1612487540: Socket error on client , disconnecting. +1612487560: New connection from 172.18.0.3 on port 1883. +1612487560: Sending CONNACK to 172.18.0.3 (0, 5) +1612487560: Socket error on client , disconnecting. +1612487580: New connection from 172.18.0.3 on port 1883. +1612487580: Sending CONNACK to 172.18.0.3 (0, 5) +1612487580: Socket error on client , disconnecting. +1612487600: New connection from 172.18.0.3 on port 1883. +1612487600: Sending CONNACK to 172.18.0.3 (0, 5) +1612487600: Socket error on client , disconnecting. +1612487620: New connection from 172.18.0.3 on port 1883. +1612487620: Sending CONNACK to 172.18.0.3 (0, 5) +1612487620: Socket error on client , disconnecting. +1612487640: New connection from 172.18.0.3 on port 1883. +1612487640: Sending CONNACK to 172.18.0.3 (0, 5) +1612487640: Socket error on client , disconnecting. +1612487660: New connection from 172.18.0.3 on port 1883. +1612487660: Sending CONNACK to 172.18.0.3 (0, 5) +1612487660: Socket error on client , disconnecting. +1612487680: New connection from 172.18.0.3 on port 1883. +1612487680: Sending CONNACK to 172.18.0.3 (0, 5) +1612487680: Socket error on client , disconnecting. +1612487700: New connection from 172.18.0.3 on port 1883. +1612487700: Sending CONNACK to 172.18.0.3 (0, 5) +1612487700: Socket error on client , disconnecting. +1612487720: New connection from 172.18.0.3 on port 1883. +1612487720: Sending CONNACK to 172.18.0.3 (0, 5) +1612487720: Socket error on client , disconnecting. +1612487740: New connection from 172.18.0.3 on port 1883. +1612487740: Sending CONNACK to 172.18.0.3 (0, 5) +1612487740: Socket error on client , disconnecting. +1612487760: New connection from 172.18.0.3 on port 1883. +1612487760: Sending CONNACK to 172.18.0.3 (0, 5) +1612487760: Socket error on client , disconnecting. +1612487780: New connection from 172.18.0.3 on port 1883. +1612487780: Sending CONNACK to 172.18.0.3 (0, 5) +1612487780: Socket error on client , disconnecting. +1612487800: New connection from 172.18.0.3 on port 1883. +1612487800: Sending CONNACK to 172.18.0.3 (0, 5) +1612487800: Socket error on client , disconnecting. +1612487820: New connection from 172.18.0.3 on port 1883. +1612487820: Sending CONNACK to 172.18.0.3 (0, 5) +1612487820: Socket error on client , disconnecting. +1612487840: New connection from 172.18.0.3 on port 1883. +1612487840: Sending CONNACK to 172.18.0.3 (0, 5) +1612487840: Socket error on client , disconnecting. +1612487840: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612487840: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612487840: Error: Permission denied. +1612487860: New connection from 172.18.0.3 on port 1883. +1612487860: Sending CONNACK to 172.18.0.3 (0, 5) +1612487860: Socket error on client , disconnecting. +1612487880: New connection from 172.18.0.3 on port 1883. +1612487880: Sending CONNACK to 172.18.0.3 (0, 5) +1612487880: Socket error on client , disconnecting. +1612487900: New connection from 172.18.0.3 on port 1883. +1612487900: Sending CONNACK to 172.18.0.3 (0, 5) +1612487900: Socket error on client , disconnecting. +1612487920: New connection from 172.18.0.3 on port 1883. +1612487920: Sending CONNACK to 172.18.0.3 (0, 5) +1612487920: Socket error on client , disconnecting. +1612487940: New connection from 172.18.0.3 on port 1883. +1612487940: Sending CONNACK to 172.18.0.3 (0, 5) +1612487940: Socket error on client , disconnecting. +1612487960: New connection from 172.18.0.3 on port 1883. +1612487960: Sending CONNACK to 172.18.0.3 (0, 5) +1612487960: Socket error on client , disconnecting. +1612487980: New connection from 172.18.0.3 on port 1883. +1612487980: Sending CONNACK to 172.18.0.3 (0, 5) +1612487980: Socket error on client , disconnecting. +1612488000: New connection from 172.18.0.3 on port 1883. +1612488000: Sending CONNACK to 172.18.0.3 (0, 5) +1612488000: Socket error on client , disconnecting. +1612488020: New connection from 172.18.0.3 on port 1883. +1612488020: Sending CONNACK to 172.18.0.3 (0, 5) +1612488020: Socket error on client , disconnecting. +1612488040: New connection from 172.18.0.3 on port 1883. +1612488040: Sending CONNACK to 172.18.0.3 (0, 5) +1612488040: Socket error on client , disconnecting. +1612488060: New connection from 172.18.0.3 on port 1883. +1612488060: Sending CONNACK to 172.18.0.3 (0, 5) +1612488060: Socket error on client , disconnecting. +1612488080: New connection from 172.18.0.3 on port 1883. +1612488080: Sending CONNACK to 172.18.0.3 (0, 5) +1612488080: Socket error on client , disconnecting. +1612488100: New connection from 172.18.0.3 on port 1883. +1612488100: Sending CONNACK to 172.18.0.3 (0, 5) +1612488100: Socket error on client , disconnecting. +1612488120: New connection from 172.18.0.3 on port 1883. +1612488120: Sending CONNACK to 172.18.0.3 (0, 5) +1612488120: Socket error on client , disconnecting. +1612488140: New connection from 172.18.0.3 on port 1883. +1612488140: Sending CONNACK to 172.18.0.3 (0, 5) +1612488140: Socket error on client , disconnecting. +1612488160: New connection from 172.18.0.3 on port 1883. +1612488160: Sending CONNACK to 172.18.0.3 (0, 5) +1612488160: Socket error on client , disconnecting. +1612488180: New connection from 172.18.0.3 on port 1883. +1612488180: Sending CONNACK to 172.18.0.3 (0, 5) +1612488180: Socket error on client , disconnecting. +1612488200: New connection from 172.18.0.3 on port 1883. +1612488200: Sending CONNACK to 172.18.0.3 (0, 5) +1612488200: Socket error on client , disconnecting. +1612488220: New connection from 172.18.0.3 on port 1883. +1612488220: Sending CONNACK to 172.18.0.3 (0, 5) +1612488220: Socket error on client , disconnecting. +1612488240: New connection from 172.18.0.3 on port 1883. +1612488240: Sending CONNACK to 172.18.0.3 (0, 5) +1612488240: Socket error on client , disconnecting. +1612488260: New connection from 172.18.0.3 on port 1883. +1612488260: Sending CONNACK to 172.18.0.3 (0, 5) +1612488260: Socket error on client , disconnecting. +1612488280: New connection from 172.18.0.3 on port 1883. +1612488280: Sending CONNACK to 172.18.0.3 (0, 5) +1612488280: Socket error on client , disconnecting. +1612488300: New connection from 172.18.0.3 on port 1883. +1612488300: Sending CONNACK to 172.18.0.3 (0, 5) +1612488300: Socket error on client , disconnecting. +1612488320: New connection from 172.18.0.3 on port 1883. +1612488320: Sending CONNACK to 172.18.0.3 (0, 5) +1612488320: Socket error on client , disconnecting. +1612488340: New connection from 172.18.0.3 on port 1883. +1612488340: Sending CONNACK to 172.18.0.3 (0, 5) +1612488340: Socket error on client , disconnecting. +1612488360: New connection from 172.18.0.3 on port 1883. +1612488360: Sending CONNACK to 172.18.0.3 (0, 5) +1612488360: Socket error on client , disconnecting. +1612488380: New connection from 172.18.0.3 on port 1883. +1612488380: Sending CONNACK to 172.18.0.3 (0, 5) +1612488380: Socket error on client , disconnecting. +1612488400: New connection from 172.18.0.3 on port 1883. +1612488400: Sending CONNACK to 172.18.0.3 (0, 5) +1612488400: Socket error on client , disconnecting. +1612488420: New connection from 172.18.0.3 on port 1883. +1612488420: Sending CONNACK to 172.18.0.3 (0, 5) +1612488420: Socket error on client , disconnecting. +1612488440: New connection from 172.18.0.3 on port 1883. +1612488440: Sending CONNACK to 172.18.0.3 (0, 5) +1612488440: Socket error on client , disconnecting. +1612488460: New connection from 172.18.0.3 on port 1883. +1612488460: Sending CONNACK to 172.18.0.3 (0, 5) +1612488460: Socket error on client , disconnecting. +1612488480: New connection from 172.18.0.3 on port 1883. +1612488480: Sending CONNACK to 172.18.0.3 (0, 5) +1612488480: Socket error on client , disconnecting. +1612488500: New connection from 172.18.0.3 on port 1883. +1612488500: Sending CONNACK to 172.18.0.3 (0, 5) +1612488500: Socket error on client , disconnecting. +1612488520: New connection from 172.18.0.3 on port 1883. +1612488520: Sending CONNACK to 172.18.0.3 (0, 5) +1612488520: Socket error on client , disconnecting. +1612488540: New connection from 172.18.0.3 on port 1883. +1612488540: Sending CONNACK to 172.18.0.3 (0, 5) +1612488540: Socket error on client , disconnecting. +1612488560: New connection from 172.18.0.3 on port 1883. +1612488560: Sending CONNACK to 172.18.0.3 (0, 5) +1612488560: Socket error on client , disconnecting. +1612488580: New connection from 172.18.0.3 on port 1883. +1612488580: Sending CONNACK to 172.18.0.3 (0, 5) +1612488580: Socket error on client , disconnecting. +1612488600: New connection from 172.18.0.3 on port 1883. +1612488600: Sending CONNACK to 172.18.0.3 (0, 5) +1612488600: Socket error on client , disconnecting. +1612488620: New connection from 172.18.0.3 on port 1883. +1612488620: Sending CONNACK to 172.18.0.3 (0, 5) +1612488620: Socket error on client , disconnecting. +1612488640: New connection from 172.18.0.3 on port 1883. +1612488640: Sending CONNACK to 172.18.0.3 (0, 5) +1612488640: Socket error on client , disconnecting. +1612488660: New connection from 172.18.0.3 on port 1883. +1612488660: Sending CONNACK to 172.18.0.3 (0, 5) +1612488660: Socket error on client , disconnecting. +1612488680: New connection from 172.18.0.3 on port 1883. +1612488680: Sending CONNACK to 172.18.0.3 (0, 5) +1612488680: Socket error on client , disconnecting. +1612488700: New connection from 172.18.0.3 on port 1883. +1612488700: Sending CONNACK to 172.18.0.3 (0, 5) +1612488700: Socket error on client , disconnecting. +1612488720: New connection from 172.18.0.3 on port 1883. +1612488720: Sending CONNACK to 172.18.0.3 (0, 5) +1612488720: Socket error on client , disconnecting. +1612488740: New connection from 172.18.0.3 on port 1883. +1612488740: Sending CONNACK to 172.18.0.3 (0, 5) +1612488740: Socket error on client , disconnecting. +1612488760: New connection from 172.18.0.3 on port 1883. +1612488760: Sending CONNACK to 172.18.0.3 (0, 5) +1612488760: Socket error on client , disconnecting. +1612488780: New connection from 172.18.0.3 on port 1883. +1612488780: Sending CONNACK to 172.18.0.3 (0, 5) +1612488780: Socket error on client , disconnecting. +1612488800: New connection from 172.18.0.3 on port 1883. +1612488800: Sending CONNACK to 172.18.0.3 (0, 5) +1612488800: Socket error on client , disconnecting. +1612488820: New connection from 172.18.0.3 on port 1883. +1612488820: Sending CONNACK to 172.18.0.3 (0, 5) +1612488820: Socket error on client , disconnecting. +1612488840: New connection from 172.18.0.3 on port 1883. +1612488840: Sending CONNACK to 172.18.0.3 (0, 5) +1612488840: Socket error on client , disconnecting. +1612488860: New connection from 172.18.0.3 on port 1883. +1612488860: Sending CONNACK to 172.18.0.3 (0, 5) +1612488860: Socket error on client , disconnecting. +1612488880: New connection from 172.18.0.3 on port 1883. +1612488880: Sending CONNACK to 172.18.0.3 (0, 5) +1612488880: Socket error on client , disconnecting. +1612488900: New connection from 172.18.0.3 on port 1883. +1612488900: Sending CONNACK to 172.18.0.3 (0, 5) +1612488900: Socket error on client , disconnecting. +1612488920: New connection from 172.18.0.3 on port 1883. +1612488920: Sending CONNACK to 172.18.0.3 (0, 5) +1612488920: Socket error on client , disconnecting. +1612488940: New connection from 172.18.0.3 on port 1883. +1612488940: Sending CONNACK to 172.18.0.3 (0, 5) +1612488940: Socket error on client , disconnecting. +1612488960: New connection from 172.18.0.3 on port 1883. +1612488960: Sending CONNACK to 172.18.0.3 (0, 5) +1612488960: Socket error on client , disconnecting. +1612488980: New connection from 172.18.0.3 on port 1883. +1612488980: Sending CONNACK to 172.18.0.3 (0, 5) +1612488980: Socket error on client , disconnecting. +1612489000: New connection from 172.18.0.3 on port 1883. +1612489000: Sending CONNACK to 172.18.0.3 (0, 5) +1612489000: Socket error on client , disconnecting. +1612489020: New connection from 172.18.0.3 on port 1883. +1612489020: Sending CONNACK to 172.18.0.3 (0, 5) +1612489020: Socket error on client , disconnecting. +1612489040: New connection from 172.18.0.3 on port 1883. +1612489040: Sending CONNACK to 172.18.0.3 (0, 5) +1612489040: Socket error on client , disconnecting. +1612489060: New connection from 172.18.0.3 on port 1883. +1612489060: Sending CONNACK to 172.18.0.3 (0, 5) +1612489060: Socket error on client , disconnecting. +1612489080: New connection from 172.18.0.3 on port 1883. +1612489080: Sending CONNACK to 172.18.0.3 (0, 5) +1612489080: Socket error on client , disconnecting. +1612489100: New connection from 172.18.0.3 on port 1883. +1612489100: Sending CONNACK to 172.18.0.3 (0, 5) +1612489100: Socket error on client , disconnecting. +1612489120: New connection from 172.18.0.3 on port 1883. +1612489120: Sending CONNACK to 172.18.0.3 (0, 5) +1612489120: Socket error on client , disconnecting. +1612489140: New connection from 172.18.0.3 on port 1883. +1612489140: Sending CONNACK to 172.18.0.3 (0, 5) +1612489140: Socket error on client , disconnecting. +1612489160: New connection from 172.18.0.3 on port 1883. +1612489160: Sending CONNACK to 172.18.0.3 (0, 5) +1612489160: Socket error on client , disconnecting. +1612489180: New connection from 172.18.0.3 on port 1883. +1612489180: Sending CONNACK to 172.18.0.3 (0, 5) +1612489180: Socket error on client , disconnecting. +1612489200: New connection from 172.18.0.3 on port 1883. +1612489200: Sending CONNACK to 172.18.0.3 (0, 5) +1612489200: Socket error on client , disconnecting. +1612489220: New connection from 172.18.0.3 on port 1883. +1612489220: Sending CONNACK to 172.18.0.3 (0, 5) +1612489220: Socket error on client , disconnecting. +1612489240: New connection from 172.18.0.3 on port 1883. +1612489240: Sending CONNACK to 172.18.0.3 (0, 5) +1612489240: Socket error on client , disconnecting. +1612489260: New connection from 172.18.0.3 on port 1883. +1612489260: Sending CONNACK to 172.18.0.3 (0, 5) +1612489260: Socket error on client , disconnecting. +1612489280: New connection from 172.18.0.3 on port 1883. +1612489280: Sending CONNACK to 172.18.0.3 (0, 5) +1612489280: Socket error on client , disconnecting. +1612489300: New connection from 172.18.0.3 on port 1883. +1612489300: Sending CONNACK to 172.18.0.3 (0, 5) +1612489300: Socket error on client , disconnecting. +1612489320: New connection from 172.18.0.3 on port 1883. +1612489320: Sending CONNACK to 172.18.0.3 (0, 5) +1612489320: Socket error on client , disconnecting. +1612489340: New connection from 172.18.0.3 on port 1883. +1612489340: Sending CONNACK to 172.18.0.3 (0, 5) +1612489340: Socket error on client , disconnecting. +1612489360: New connection from 172.18.0.3 on port 1883. +1612489360: Sending CONNACK to 172.18.0.3 (0, 5) +1612489360: Socket error on client , disconnecting. +1612489380: New connection from 172.18.0.3 on port 1883. +1612489380: Sending CONNACK to 172.18.0.3 (0, 5) +1612489380: Socket error on client , disconnecting. +1612489400: New connection from 172.18.0.3 on port 1883. +1612489400: Sending CONNACK to 172.18.0.3 (0, 5) +1612489400: Socket error on client , disconnecting. +1612489420: New connection from 172.18.0.3 on port 1883. +1612489420: Sending CONNACK to 172.18.0.3 (0, 5) +1612489420: Socket error on client , disconnecting. +1612489440: New connection from 172.18.0.3 on port 1883. +1612489440: Sending CONNACK to 172.18.0.3 (0, 5) +1612489440: Socket error on client , disconnecting. +1612489460: New connection from 172.18.0.3 on port 1883. +1612489460: Sending CONNACK to 172.18.0.3 (0, 5) +1612489460: Socket error on client , disconnecting. +1612489480: New connection from 172.18.0.3 on port 1883. +1612489480: Sending CONNACK to 172.18.0.3 (0, 5) +1612489480: Socket error on client , disconnecting. +1612489500: New connection from 172.18.0.3 on port 1883. +1612489500: Sending CONNACK to 172.18.0.3 (0, 5) +1612489500: Socket error on client , disconnecting. +1612489520: New connection from 172.18.0.3 on port 1883. +1612489520: Sending CONNACK to 172.18.0.3 (0, 5) +1612489520: Socket error on client , disconnecting. +1612489540: New connection from 172.18.0.3 on port 1883. +1612489540: Sending CONNACK to 172.18.0.3 (0, 5) +1612489540: Socket error on client , disconnecting. +1612489560: New connection from 172.18.0.3 on port 1883. +1612489560: Sending CONNACK to 172.18.0.3 (0, 5) +1612489560: Socket error on client , disconnecting. +1612489580: New connection from 172.18.0.3 on port 1883. +1612489580: Sending CONNACK to 172.18.0.3 (0, 5) +1612489580: Socket error on client , disconnecting. +1612489600: New connection from 172.18.0.3 on port 1883. +1612489600: Sending CONNACK to 172.18.0.3 (0, 5) +1612489600: Socket error on client , disconnecting. +1612489620: New connection from 172.18.0.3 on port 1883. +1612489620: Sending CONNACK to 172.18.0.3 (0, 5) +1612489620: Socket error on client , disconnecting. +1612489640: New connection from 172.18.0.3 on port 1883. +1612489640: Sending CONNACK to 172.18.0.3 (0, 5) +1612489640: Socket error on client , disconnecting. +1612489641: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612489641: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612489641: Error: Permission denied. +1612489660: New connection from 172.18.0.3 on port 1883. +1612489660: Sending CONNACK to 172.18.0.3 (0, 5) +1612489660: Socket error on client , disconnecting. +1612489680: New connection from 172.18.0.3 on port 1883. +1612489680: Sending CONNACK to 172.18.0.3 (0, 5) +1612489680: Socket error on client , disconnecting. +1612489700: New connection from 172.18.0.3 on port 1883. +1612489700: Sending CONNACK to 172.18.0.3 (0, 5) +1612489700: Socket error on client , disconnecting. +1612489720: New connection from 172.18.0.3 on port 1883. +1612489720: Sending CONNACK to 172.18.0.3 (0, 5) +1612489720: Socket error on client , disconnecting. +1612489740: New connection from 172.18.0.3 on port 1883. +1612489740: Sending CONNACK to 172.18.0.3 (0, 5) +1612489740: Socket error on client , disconnecting. +1612489760: New connection from 172.18.0.3 on port 1883. +1612489760: Sending CONNACK to 172.18.0.3 (0, 5) +1612489760: Socket error on client , disconnecting. +1612489780: New connection from 172.18.0.3 on port 1883. +1612489780: Sending CONNACK to 172.18.0.3 (0, 5) +1612489780: Socket error on client , disconnecting. +1612489800: New connection from 172.18.0.3 on port 1883. +1612489800: Sending CONNACK to 172.18.0.3 (0, 5) +1612489800: Socket error on client , disconnecting. +1612489820: New connection from 172.18.0.3 on port 1883. +1612489820: Sending CONNACK to 172.18.0.3 (0, 5) +1612489820: Socket error on client , disconnecting. +1612489840: New connection from 172.18.0.3 on port 1883. +1612489840: Sending CONNACK to 172.18.0.3 (0, 5) +1612489840: Socket error on client , disconnecting. +1612489860: New connection from 172.18.0.3 on port 1883. +1612489860: Sending CONNACK to 172.18.0.3 (0, 5) +1612489860: Socket error on client , disconnecting. +1612489880: New connection from 172.18.0.3 on port 1883. +1612489880: Sending CONNACK to 172.18.0.3 (0, 5) +1612489880: Socket error on client , disconnecting. +1612489900: New connection from 172.18.0.3 on port 1883. +1612489900: Sending CONNACK to 172.18.0.3 (0, 5) +1612489900: Socket error on client , disconnecting. +1612489920: New connection from 172.18.0.3 on port 1883. +1612489920: Sending CONNACK to 172.18.0.3 (0, 5) +1612489920: Socket error on client , disconnecting. +1612489940: New connection from 172.18.0.3 on port 1883. +1612489940: Sending CONNACK to 172.18.0.3 (0, 5) +1612489940: Socket error on client , disconnecting. +1612489960: New connection from 172.18.0.3 on port 1883. +1612489960: Sending CONNACK to 172.18.0.3 (0, 5) +1612489960: Socket error on client , disconnecting. +1612489980: New connection from 172.18.0.3 on port 1883. +1612489980: Sending CONNACK to 172.18.0.3 (0, 5) +1612489980: Socket error on client , disconnecting. +1612490000: New connection from 172.18.0.3 on port 1883. +1612490000: Sending CONNACK to 172.18.0.3 (0, 5) +1612490000: Socket error on client , disconnecting. +1612490020: New connection from 172.18.0.3 on port 1883. +1612490020: Sending CONNACK to 172.18.0.3 (0, 5) +1612490020: Socket error on client , disconnecting. +1612490040: New connection from 172.18.0.3 on port 1883. +1612490040: Sending CONNACK to 172.18.0.3 (0, 5) +1612490040: Socket error on client , disconnecting. +1612490060: New connection from 172.18.0.3 on port 1883. +1612490060: Sending CONNACK to 172.18.0.3 (0, 5) +1612490060: Socket error on client , disconnecting. +1612490080: New connection from 172.18.0.3 on port 1883. +1612490080: Sending CONNACK to 172.18.0.3 (0, 5) +1612490080: Socket error on client , disconnecting. +1612490100: New connection from 172.18.0.3 on port 1883. +1612490100: Sending CONNACK to 172.18.0.3 (0, 5) +1612490100: Socket error on client , disconnecting. +1612490120: New connection from 172.18.0.3 on port 1883. +1612490120: Sending CONNACK to 172.18.0.3 (0, 5) +1612490120: Socket error on client , disconnecting. +1612490140: New connection from 172.18.0.3 on port 1883. +1612490140: Sending CONNACK to 172.18.0.3 (0, 5) +1612490140: Socket error on client , disconnecting. +1612490160: New connection from 172.18.0.3 on port 1883. +1612490160: Sending CONNACK to 172.18.0.3 (0, 5) +1612490160: Socket error on client , disconnecting. +1612490180: New connection from 172.18.0.3 on port 1883. +1612490180: Sending CONNACK to 172.18.0.3 (0, 5) +1612490180: Socket error on client , disconnecting. +1612490200: New connection from 172.18.0.3 on port 1883. +1612490200: Sending CONNACK to 172.18.0.3 (0, 5) +1612490200: Socket error on client , disconnecting. +1612490220: New connection from 172.18.0.3 on port 1883. +1612490220: Sending CONNACK to 172.18.0.3 (0, 5) +1612490220: Socket error on client , disconnecting. +1612490240: New connection from 172.18.0.3 on port 1883. +1612490240: Sending CONNACK to 172.18.0.3 (0, 5) +1612490240: Socket error on client , disconnecting. +1612490260: New connection from 172.18.0.3 on port 1883. +1612490260: Sending CONNACK to 172.18.0.3 (0, 5) +1612490260: Socket error on client , disconnecting. +1612490280: New connection from 172.18.0.3 on port 1883. +1612490280: Sending CONNACK to 172.18.0.3 (0, 5) +1612490280: Socket error on client , disconnecting. +1612490300: New connection from 172.18.0.3 on port 1883. +1612490300: Sending CONNACK to 172.18.0.3 (0, 5) +1612490300: Socket error on client , disconnecting. +1612490320: New connection from 172.18.0.3 on port 1883. +1612490320: Sending CONNACK to 172.18.0.3 (0, 5) +1612490320: Socket error on client , disconnecting. +1612490340: New connection from 172.18.0.3 on port 1883. +1612490340: Sending CONNACK to 172.18.0.3 (0, 5) +1612490340: Socket error on client , disconnecting. +1612490360: New connection from 172.18.0.3 on port 1883. +1612490360: Sending CONNACK to 172.18.0.3 (0, 5) +1612490360: Socket error on client , disconnecting. +1612490380: New connection from 172.18.0.3 on port 1883. +1612490380: Sending CONNACK to 172.18.0.3 (0, 5) +1612490380: Socket error on client , disconnecting. +1612490400: New connection from 172.18.0.3 on port 1883. +1612490400: Sending CONNACK to 172.18.0.3 (0, 5) +1612490400: Socket error on client , disconnecting. +1612490420: New connection from 172.18.0.3 on port 1883. +1612490420: Sending CONNACK to 172.18.0.3 (0, 5) +1612490420: Socket error on client , disconnecting. +1612490440: New connection from 172.18.0.3 on port 1883. +1612490440: Sending CONNACK to 172.18.0.3 (0, 5) +1612490440: Socket error on client , disconnecting. +1612490460: New connection from 172.18.0.3 on port 1883. +1612490460: Sending CONNACK to 172.18.0.3 (0, 5) +1612490460: Socket error on client , disconnecting. +1612490480: New connection from 172.18.0.3 on port 1883. +1612490480: Sending CONNACK to 172.18.0.3 (0, 5) +1612490480: Socket error on client , disconnecting. +1612490500: New connection from 172.18.0.3 on port 1883. +1612490500: Sending CONNACK to 172.18.0.3 (0, 5) +1612490500: Socket error on client , disconnecting. +1612490520: New connection from 172.18.0.3 on port 1883. +1612490520: Sending CONNACK to 172.18.0.3 (0, 5) +1612490520: Socket error on client , disconnecting. +1612490540: New connection from 172.18.0.3 on port 1883. +1612490540: Sending CONNACK to 172.18.0.3 (0, 5) +1612490540: Socket error on client , disconnecting. +1612490560: New connection from 172.18.0.3 on port 1883. +1612490560: Sending CONNACK to 172.18.0.3 (0, 5) +1612490560: Socket error on client , disconnecting. +1612490580: New connection from 172.18.0.3 on port 1883. +1612490580: Sending CONNACK to 172.18.0.3 (0, 5) +1612490580: Socket error on client , disconnecting. +1612490600: New connection from 172.18.0.3 on port 1883. +1612490600: Sending CONNACK to 172.18.0.3 (0, 5) +1612490600: Socket error on client , disconnecting. +1612490620: New connection from 172.18.0.3 on port 1883. +1612490620: Sending CONNACK to 172.18.0.3 (0, 5) +1612490620: Socket error on client , disconnecting. +1612490640: New connection from 172.18.0.3 on port 1883. +1612490640: Sending CONNACK to 172.18.0.3 (0, 5) +1612490640: Socket error on client , disconnecting. +1612490660: New connection from 172.18.0.3 on port 1883. +1612490660: Sending CONNACK to 172.18.0.3 (0, 5) +1612490660: Socket error on client , disconnecting. +1612490680: New connection from 172.18.0.3 on port 1883. +1612490680: Sending CONNACK to 172.18.0.3 (0, 5) +1612490680: Socket error on client , disconnecting. +1612490700: New connection from 172.18.0.3 on port 1883. +1612490700: Sending CONNACK to 172.18.0.3 (0, 5) +1612490700: Socket error on client , disconnecting. +1612490720: New connection from 172.18.0.3 on port 1883. +1612490720: Sending CONNACK to 172.18.0.3 (0, 5) +1612490720: Socket error on client , disconnecting. +1612490740: New connection from 172.18.0.3 on port 1883. +1612490740: Sending CONNACK to 172.18.0.3 (0, 5) +1612490740: Socket error on client , disconnecting. +1612490760: New connection from 172.18.0.3 on port 1883. +1612490760: Sending CONNACK to 172.18.0.3 (0, 5) +1612490760: Socket error on client , disconnecting. +1612490780: New connection from 172.18.0.3 on port 1883. +1612490780: Sending CONNACK to 172.18.0.3 (0, 5) +1612490780: Socket error on client , disconnecting. +1612490800: New connection from 172.18.0.3 on port 1883. +1612490800: Sending CONNACK to 172.18.0.3 (0, 5) +1612490800: Socket error on client , disconnecting. +1612490820: New connection from 172.18.0.3 on port 1883. +1612490820: Sending CONNACK to 172.18.0.3 (0, 5) +1612490820: Socket error on client , disconnecting. +1612490840: New connection from 172.18.0.3 on port 1883. +1612490840: Sending CONNACK to 172.18.0.3 (0, 5) +1612490840: Socket error on client , disconnecting. +1612490860: New connection from 172.18.0.3 on port 1883. +1612490860: Sending CONNACK to 172.18.0.3 (0, 5) +1612490860: Socket error on client , disconnecting. +1612490880: New connection from 172.18.0.3 on port 1883. +1612490880: Sending CONNACK to 172.18.0.3 (0, 5) +1612490880: Socket error on client , disconnecting. +1612490900: New connection from 172.18.0.3 on port 1883. +1612490900: Sending CONNACK to 172.18.0.3 (0, 5) +1612490900: Socket error on client , disconnecting. +1612490920: New connection from 172.18.0.3 on port 1883. +1612490920: Sending CONNACK to 172.18.0.3 (0, 5) +1612490920: Socket error on client , disconnecting. +1612490940: New connection from 172.18.0.3 on port 1883. +1612490940: Sending CONNACK to 172.18.0.3 (0, 5) +1612490940: Socket error on client , disconnecting. +1612490960: New connection from 172.18.0.3 on port 1883. +1612490960: Sending CONNACK to 172.18.0.3 (0, 5) +1612490960: Socket error on client , disconnecting. +1612490980: New connection from 172.18.0.3 on port 1883. +1612490980: Sending CONNACK to 172.18.0.3 (0, 5) +1612490980: Socket error on client , disconnecting. +1612491000: New connection from 172.18.0.3 on port 1883. +1612491000: Sending CONNACK to 172.18.0.3 (0, 5) +1612491000: Socket error on client , disconnecting. +1612491020: New connection from 172.18.0.3 on port 1883. +1612491020: Sending CONNACK to 172.18.0.3 (0, 5) +1612491020: Socket error on client , disconnecting. +1612491040: New connection from 172.18.0.3 on port 1883. +1612491040: Sending CONNACK to 172.18.0.3 (0, 5) +1612491040: Socket error on client , disconnecting. +1612491060: New connection from 172.18.0.3 on port 1883. +1612491060: Sending CONNACK to 172.18.0.3 (0, 5) +1612491060: Socket error on client , disconnecting. +1612491080: New connection from 172.18.0.3 on port 1883. +1612491080: Sending CONNACK to 172.18.0.3 (0, 5) +1612491080: Socket error on client , disconnecting. +1612491100: New connection from 172.18.0.3 on port 1883. +1612491100: Sending CONNACK to 172.18.0.3 (0, 5) +1612491100: Socket error on client , disconnecting. +1612491120: New connection from 172.18.0.3 on port 1883. +1612491120: Sending CONNACK to 172.18.0.3 (0, 5) +1612491120: Socket error on client , disconnecting. +1612491140: New connection from 172.18.0.3 on port 1883. +1612491140: Sending CONNACK to 172.18.0.3 (0, 5) +1612491140: Socket error on client , disconnecting. +1612491160: New connection from 172.18.0.3 on port 1883. +1612491160: Sending CONNACK to 172.18.0.3 (0, 5) +1612491160: Socket error on client , disconnecting. +1612491180: New connection from 172.18.0.3 on port 1883. +1612491180: Sending CONNACK to 172.18.0.3 (0, 5) +1612491180: Socket error on client , disconnecting. +1612491200: New connection from 172.18.0.3 on port 1883. +1612491200: Sending CONNACK to 172.18.0.3 (0, 5) +1612491200: Socket error on client , disconnecting. +1612491220: New connection from 172.18.0.3 on port 1883. +1612491220: Sending CONNACK to 172.18.0.3 (0, 5) +1612491220: Socket error on client , disconnecting. +1612491240: New connection from 172.18.0.3 on port 1883. +1612491240: Sending CONNACK to 172.18.0.3 (0, 5) +1612491240: Socket error on client , disconnecting. +1612491260: New connection from 172.18.0.3 on port 1883. +1612491260: Sending CONNACK to 172.18.0.3 (0, 5) +1612491260: Socket error on client , disconnecting. +1612491280: New connection from 172.18.0.3 on port 1883. +1612491280: Sending CONNACK to 172.18.0.3 (0, 5) +1612491280: Socket error on client , disconnecting. +1612491300: New connection from 172.18.0.3 on port 1883. +1612491300: Sending CONNACK to 172.18.0.3 (0, 5) +1612491300: Socket error on client , disconnecting. +1612491320: New connection from 172.18.0.3 on port 1883. +1612491320: Sending CONNACK to 172.18.0.3 (0, 5) +1612491320: Socket error on client , disconnecting. +1612491340: New connection from 172.18.0.3 on port 1883. +1612491340: Sending CONNACK to 172.18.0.3 (0, 5) +1612491340: Socket error on client , disconnecting. +1612491360: New connection from 172.18.0.3 on port 1883. +1612491360: Sending CONNACK to 172.18.0.3 (0, 5) +1612491360: Socket error on client , disconnecting. +1612491380: New connection from 172.18.0.3 on port 1883. +1612491380: Sending CONNACK to 172.18.0.3 (0, 5) +1612491380: Socket error on client , disconnecting. +1612491400: New connection from 172.18.0.3 on port 1883. +1612491400: Sending CONNACK to 172.18.0.3 (0, 5) +1612491400: Socket error on client , disconnecting. +1612491420: New connection from 172.18.0.3 on port 1883. +1612491420: Sending CONNACK to 172.18.0.3 (0, 5) +1612491420: Socket error on client , disconnecting. +1612491440: New connection from 172.18.0.3 on port 1883. +1612491440: Sending CONNACK to 172.18.0.3 (0, 5) +1612491440: Socket error on client , disconnecting. +1612491442: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612491442: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612491442: Error: Permission denied. +1612491460: New connection from 172.18.0.3 on port 1883. +1612491460: Sending CONNACK to 172.18.0.3 (0, 5) +1612491460: Socket error on client , disconnecting. +1612491480: New connection from 172.18.0.3 on port 1883. +1612491480: Sending CONNACK to 172.18.0.3 (0, 5) +1612491480: Socket error on client , disconnecting. +1612491500: New connection from 172.18.0.3 on port 1883. +1612491500: Sending CONNACK to 172.18.0.3 (0, 5) +1612491500: Socket error on client , disconnecting. +1612491520: New connection from 172.18.0.3 on port 1883. +1612491520: Sending CONNACK to 172.18.0.3 (0, 5) +1612491520: Socket error on client , disconnecting. +1612491540: New connection from 172.18.0.3 on port 1883. +1612491540: Sending CONNACK to 172.18.0.3 (0, 5) +1612491540: Socket error on client , disconnecting. +1612491560: New connection from 172.18.0.3 on port 1883. +1612491560: Sending CONNACK to 172.18.0.3 (0, 5) +1612491560: Socket error on client , disconnecting. +1612491580: New connection from 172.18.0.3 on port 1883. +1612491580: Sending CONNACK to 172.18.0.3 (0, 5) +1612491580: Socket error on client , disconnecting. +1612491600: New connection from 172.18.0.3 on port 1883. +1612491600: Sending CONNACK to 172.18.0.3 (0, 5) +1612491600: Socket error on client , disconnecting. +1612491620: New connection from 172.18.0.3 on port 1883. +1612491620: Sending CONNACK to 172.18.0.3 (0, 5) +1612491620: Socket error on client , disconnecting. +1612491640: New connection from 172.18.0.3 on port 1883. +1612491640: Sending CONNACK to 172.18.0.3 (0, 5) +1612491640: Socket error on client , disconnecting. +1612491660: New connection from 172.18.0.3 on port 1883. +1612491660: Sending CONNACK to 172.18.0.3 (0, 5) +1612491660: Socket error on client , disconnecting. +1612491680: New connection from 172.18.0.3 on port 1883. +1612491680: Sending CONNACK to 172.18.0.3 (0, 5) +1612491680: Socket error on client , disconnecting. +1612491700: New connection from 172.18.0.3 on port 1883. +1612491700: Sending CONNACK to 172.18.0.3 (0, 5) +1612491700: Socket error on client , disconnecting. +1612491720: New connection from 172.18.0.3 on port 1883. +1612491720: Sending CONNACK to 172.18.0.3 (0, 5) +1612491720: Socket error on client , disconnecting. +1612491740: New connection from 172.18.0.3 on port 1883. +1612491740: Sending CONNACK to 172.18.0.3 (0, 5) +1612491740: Socket error on client , disconnecting. +1612491760: New connection from 172.18.0.3 on port 1883. +1612491760: Sending CONNACK to 172.18.0.3 (0, 5) +1612491760: Socket error on client , disconnecting. +1612491780: New connection from 172.18.0.3 on port 1883. +1612491780: Sending CONNACK to 172.18.0.3 (0, 5) +1612491780: Socket error on client , disconnecting. +1612491800: New connection from 172.18.0.3 on port 1883. +1612491800: Sending CONNACK to 172.18.0.3 (0, 5) +1612491800: Socket error on client , disconnecting. +1612491820: New connection from 172.18.0.3 on port 1883. +1612491820: Sending CONNACK to 172.18.0.3 (0, 5) +1612491820: Socket error on client , disconnecting. +1612491840: New connection from 172.18.0.3 on port 1883. +1612491840: Sending CONNACK to 172.18.0.3 (0, 5) +1612491840: Socket error on client , disconnecting. +1612491860: New connection from 172.18.0.3 on port 1883. +1612491860: Sending CONNACK to 172.18.0.3 (0, 5) +1612491860: Socket error on client , disconnecting. +1612491880: New connection from 172.18.0.3 on port 1883. +1612491880: Sending CONNACK to 172.18.0.3 (0, 5) +1612491880: Socket error on client , disconnecting. +1612491900: New connection from 172.18.0.3 on port 1883. +1612491900: Sending CONNACK to 172.18.0.3 (0, 5) +1612491900: Socket error on client , disconnecting. +1612491920: New connection from 172.18.0.3 on port 1883. +1612491920: Sending CONNACK to 172.18.0.3 (0, 5) +1612491920: Socket error on client , disconnecting. +1612491940: New connection from 172.18.0.3 on port 1883. +1612491940: Sending CONNACK to 172.18.0.3 (0, 5) +1612491940: Socket error on client , disconnecting. +1612491960: New connection from 172.18.0.3 on port 1883. +1612491960: Sending CONNACK to 172.18.0.3 (0, 5) +1612491960: Socket error on client , disconnecting. +1612491980: New connection from 172.18.0.3 on port 1883. +1612491980: Sending CONNACK to 172.18.0.3 (0, 5) +1612491980: Socket error on client , disconnecting. +1612492000: New connection from 172.18.0.3 on port 1883. +1612492000: Sending CONNACK to 172.18.0.3 (0, 5) +1612492000: Socket error on client , disconnecting. +1612492020: New connection from 172.18.0.3 on port 1883. +1612492020: Sending CONNACK to 172.18.0.3 (0, 5) +1612492020: Socket error on client , disconnecting. +1612492040: New connection from 172.18.0.3 on port 1883. +1612492040: Sending CONNACK to 172.18.0.3 (0, 5) +1612492040: Socket error on client , disconnecting. +1612492060: New connection from 172.18.0.3 on port 1883. +1612492060: Sending CONNACK to 172.18.0.3 (0, 5) +1612492060: Socket error on client , disconnecting. +1612492080: New connection from 172.18.0.3 on port 1883. +1612492080: Sending CONNACK to 172.18.0.3 (0, 5) +1612492080: Socket error on client , disconnecting. +1612492100: New connection from 172.18.0.3 on port 1883. +1612492100: Sending CONNACK to 172.18.0.3 (0, 5) +1612492100: Socket error on client , disconnecting. +1612492120: New connection from 172.18.0.3 on port 1883. +1612492120: Sending CONNACK to 172.18.0.3 (0, 5) +1612492120: Socket error on client , disconnecting. +1612492140: New connection from 172.18.0.3 on port 1883. +1612492140: Sending CONNACK to 172.18.0.3 (0, 5) +1612492140: Socket error on client , disconnecting. +1612492160: New connection from 172.18.0.3 on port 1883. +1612492160: Sending CONNACK to 172.18.0.3 (0, 5) +1612492160: Socket error on client , disconnecting. +1612492180: New connection from 172.18.0.3 on port 1883. +1612492180: Sending CONNACK to 172.18.0.3 (0, 5) +1612492180: Socket error on client , disconnecting. +1612492200: New connection from 172.18.0.3 on port 1883. +1612492200: Sending CONNACK to 172.18.0.3 (0, 5) +1612492200: Socket error on client , disconnecting. +1612492220: New connection from 172.18.0.3 on port 1883. +1612492220: Sending CONNACK to 172.18.0.3 (0, 5) +1612492220: Socket error on client , disconnecting. +1612492240: New connection from 172.18.0.3 on port 1883. +1612492240: Sending CONNACK to 172.18.0.3 (0, 5) +1612492240: Socket error on client , disconnecting. +1612492260: New connection from 172.18.0.3 on port 1883. +1612492260: Sending CONNACK to 172.18.0.3 (0, 5) +1612492260: Socket error on client , disconnecting. +1612492280: New connection from 172.18.0.3 on port 1883. +1612492280: Sending CONNACK to 172.18.0.3 (0, 5) +1612492280: Socket error on client , disconnecting. +1612492300: New connection from 172.18.0.3 on port 1883. +1612492300: Sending CONNACK to 172.18.0.3 (0, 5) +1612492300: Socket error on client , disconnecting. +1612492320: New connection from 172.18.0.3 on port 1883. +1612492320: Sending CONNACK to 172.18.0.3 (0, 5) +1612492320: Socket error on client , disconnecting. +1612492340: New connection from 172.18.0.3 on port 1883. +1612492340: Sending CONNACK to 172.18.0.3 (0, 5) +1612492340: Socket error on client , disconnecting. +1612492360: New connection from 172.18.0.3 on port 1883. +1612492360: Sending CONNACK to 172.18.0.3 (0, 5) +1612492360: Socket error on client , disconnecting. +1612492380: New connection from 172.18.0.3 on port 1883. +1612492380: Sending CONNACK to 172.18.0.3 (0, 5) +1612492380: Socket error on client , disconnecting. +1612492400: New connection from 172.18.0.3 on port 1883. +1612492400: Sending CONNACK to 172.18.0.3 (0, 5) +1612492400: Socket error on client , disconnecting. +1612492420: New connection from 172.18.0.3 on port 1883. +1612492420: Sending CONNACK to 172.18.0.3 (0, 5) +1612492420: Socket error on client , disconnecting. +1612492440: New connection from 172.18.0.3 on port 1883. +1612492440: Sending CONNACK to 172.18.0.3 (0, 5) +1612492440: Socket error on client , disconnecting. +1612492460: New connection from 172.18.0.3 on port 1883. +1612492460: Sending CONNACK to 172.18.0.3 (0, 5) +1612492460: Socket error on client , disconnecting. +1612492480: New connection from 172.18.0.3 on port 1883. +1612492480: Sending CONNACK to 172.18.0.3 (0, 5) +1612492480: Socket error on client , disconnecting. +1612492500: New connection from 172.18.0.3 on port 1883. +1612492500: Sending CONNACK to 172.18.0.3 (0, 5) +1612492500: Socket error on client , disconnecting. +1612492520: New connection from 172.18.0.3 on port 1883. +1612492520: Sending CONNACK to 172.18.0.3 (0, 5) +1612492520: Socket error on client , disconnecting. +1612492540: New connection from 172.18.0.3 on port 1883. +1612492540: Sending CONNACK to 172.18.0.3 (0, 5) +1612492540: Socket error on client , disconnecting. +1612492560: New connection from 172.18.0.3 on port 1883. +1612492560: Sending CONNACK to 172.18.0.3 (0, 5) +1612492560: Socket error on client , disconnecting. +1612492580: New connection from 172.18.0.3 on port 1883. +1612492580: Sending CONNACK to 172.18.0.3 (0, 5) +1612492580: Socket error on client , disconnecting. +1612492600: New connection from 172.18.0.3 on port 1883. +1612492600: Sending CONNACK to 172.18.0.3 (0, 5) +1612492600: Socket error on client , disconnecting. +1612492620: New connection from 172.18.0.3 on port 1883. +1612492620: Sending CONNACK to 172.18.0.3 (0, 5) +1612492620: Socket error on client , disconnecting. +1612492640: New connection from 172.18.0.3 on port 1883. +1612492640: Sending CONNACK to 172.18.0.3 (0, 5) +1612492640: Socket error on client , disconnecting. +1612492660: New connection from 172.18.0.3 on port 1883. +1612492660: Sending CONNACK to 172.18.0.3 (0, 5) +1612492660: Socket error on client , disconnecting. +1612492680: New connection from 172.18.0.3 on port 1883. +1612492680: Sending CONNACK to 172.18.0.3 (0, 5) +1612492680: Socket error on client , disconnecting. +1612492700: New connection from 172.18.0.3 on port 1883. +1612492700: Sending CONNACK to 172.18.0.3 (0, 5) +1612492700: Socket error on client , disconnecting. +1612492720: New connection from 172.18.0.3 on port 1883. +1612492720: Sending CONNACK to 172.18.0.3 (0, 5) +1612492720: Socket error on client , disconnecting. +1612492740: New connection from 172.18.0.3 on port 1883. +1612492740: Sending CONNACK to 172.18.0.3 (0, 5) +1612492740: Socket error on client , disconnecting. +1612492760: New connection from 172.18.0.3 on port 1883. +1612492760: Sending CONNACK to 172.18.0.3 (0, 5) +1612492760: Socket error on client , disconnecting. +1612492780: New connection from 172.18.0.3 on port 1883. +1612492780: Sending CONNACK to 172.18.0.3 (0, 5) +1612492780: Socket error on client , disconnecting. +1612492800: New connection from 172.18.0.3 on port 1883. +1612492800: Sending CONNACK to 172.18.0.3 (0, 5) +1612492800: Socket error on client , disconnecting. +1612492820: New connection from 172.18.0.3 on port 1883. +1612492820: Sending CONNACK to 172.18.0.3 (0, 5) +1612492820: Socket error on client , disconnecting. +1612492840: New connection from 172.18.0.3 on port 1883. +1612492840: Sending CONNACK to 172.18.0.3 (0, 5) +1612492840: Socket error on client , disconnecting. +1612492860: New connection from 172.18.0.3 on port 1883. +1612492860: Sending CONNACK to 172.18.0.3 (0, 5) +1612492860: Socket error on client , disconnecting. +1612492880: New connection from 172.18.0.3 on port 1883. +1612492880: Sending CONNACK to 172.18.0.3 (0, 5) +1612492880: Socket error on client , disconnecting. +1612492900: New connection from 172.18.0.3 on port 1883. +1612492900: Sending CONNACK to 172.18.0.3 (0, 5) +1612492900: Socket error on client , disconnecting. +1612492920: New connection from 172.18.0.3 on port 1883. +1612492920: Sending CONNACK to 172.18.0.3 (0, 5) +1612492920: Socket error on client , disconnecting. +1612492940: New connection from 172.18.0.3 on port 1883. +1612492940: Sending CONNACK to 172.18.0.3 (0, 5) +1612492940: Socket error on client , disconnecting. +1612492960: New connection from 172.18.0.3 on port 1883. +1612492960: Sending CONNACK to 172.18.0.3 (0, 5) +1612492960: Socket error on client , disconnecting. +1612492980: New connection from 172.18.0.3 on port 1883. +1612492980: Sending CONNACK to 172.18.0.3 (0, 5) +1612492980: Socket error on client , disconnecting. +1612493000: New connection from 172.18.0.3 on port 1883. +1612493000: Sending CONNACK to 172.18.0.3 (0, 5) +1612493000: Socket error on client , disconnecting. +1612493020: New connection from 172.18.0.3 on port 1883. +1612493020: Sending CONNACK to 172.18.0.3 (0, 5) +1612493020: Socket error on client , disconnecting. +1612493040: New connection from 172.18.0.3 on port 1883. +1612493040: Sending CONNACK to 172.18.0.3 (0, 5) +1612493040: Socket error on client , disconnecting. +1612493060: New connection from 172.18.0.3 on port 1883. +1612493060: Sending CONNACK to 172.18.0.3 (0, 5) +1612493060: Socket error on client , disconnecting. +1612493080: New connection from 172.18.0.3 on port 1883. +1612493080: Sending CONNACK to 172.18.0.3 (0, 5) +1612493080: Socket error on client , disconnecting. +1612493100: New connection from 172.18.0.3 on port 1883. +1612493100: Sending CONNACK to 172.18.0.3 (0, 5) +1612493100: Socket error on client , disconnecting. +1612493120: New connection from 172.18.0.3 on port 1883. +1612493120: Sending CONNACK to 172.18.0.3 (0, 5) +1612493120: Socket error on client , disconnecting. +1612493140: New connection from 172.18.0.3 on port 1883. +1612493140: Sending CONNACK to 172.18.0.3 (0, 5) +1612493140: Socket error on client , disconnecting. +1612493160: New connection from 172.18.0.3 on port 1883. +1612493160: Sending CONNACK to 172.18.0.3 (0, 5) +1612493160: Socket error on client , disconnecting. +1612493180: New connection from 172.18.0.3 on port 1883. +1612493180: Sending CONNACK to 172.18.0.3 (0, 5) +1612493180: Socket error on client , disconnecting. +1612493200: New connection from 172.18.0.3 on port 1883. +1612493200: Sending CONNACK to 172.18.0.3 (0, 5) +1612493200: Socket error on client , disconnecting. +1612493220: New connection from 172.18.0.3 on port 1883. +1612493220: Sending CONNACK to 172.18.0.3 (0, 5) +1612493220: Socket error on client , disconnecting. +1612493240: New connection from 172.18.0.3 on port 1883. +1612493240: Sending CONNACK to 172.18.0.3 (0, 5) +1612493240: Socket error on client , disconnecting. +1612493243: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612493243: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612493243: Error: Permission denied. +1612493260: New connection from 172.18.0.3 on port 1883. +1612493260: Sending CONNACK to 172.18.0.3 (0, 5) +1612493260: Socket error on client , disconnecting. +1612493280: New connection from 172.18.0.3 on port 1883. +1612493280: Sending CONNACK to 172.18.0.3 (0, 5) +1612493280: Socket error on client , disconnecting. +1612493300: New connection from 172.18.0.3 on port 1883. +1612493300: Sending CONNACK to 172.18.0.3 (0, 5) +1612493300: Socket error on client , disconnecting. +1612493320: New connection from 172.18.0.3 on port 1883. +1612493320: Sending CONNACK to 172.18.0.3 (0, 5) +1612493320: Socket error on client , disconnecting. +1612493340: New connection from 172.18.0.3 on port 1883. +1612493340: Sending CONNACK to 172.18.0.3 (0, 5) +1612493340: Socket error on client , disconnecting. +1612493360: New connection from 172.18.0.3 on port 1883. +1612493360: Sending CONNACK to 172.18.0.3 (0, 5) +1612493360: Socket error on client , disconnecting. +1612493380: New connection from 172.18.0.3 on port 1883. +1612493380: Sending CONNACK to 172.18.0.3 (0, 5) +1612493380: Socket error on client , disconnecting. +1612493400: New connection from 172.18.0.3 on port 1883. +1612493400: Sending CONNACK to 172.18.0.3 (0, 5) +1612493400: Socket error on client , disconnecting. +1612493420: New connection from 172.18.0.3 on port 1883. +1612493420: Sending CONNACK to 172.18.0.3 (0, 5) +1612493420: Socket error on client , disconnecting. +1612493440: New connection from 172.18.0.3 on port 1883. +1612493440: Sending CONNACK to 172.18.0.3 (0, 5) +1612493440: Socket error on client , disconnecting. +1612493460: New connection from 172.18.0.3 on port 1883. +1612493460: Sending CONNACK to 172.18.0.3 (0, 5) +1612493460: Socket error on client , disconnecting. +1612493480: New connection from 172.18.0.3 on port 1883. +1612493480: Sending CONNACK to 172.18.0.3 (0, 5) +1612493480: Socket error on client , disconnecting. +1612493500: New connection from 172.18.0.3 on port 1883. +1612493500: Sending CONNACK to 172.18.0.3 (0, 5) +1612493500: Socket error on client , disconnecting. +1612493520: New connection from 172.18.0.3 on port 1883. +1612493520: Sending CONNACK to 172.18.0.3 (0, 5) +1612493520: Socket error on client , disconnecting. +1612493540: New connection from 172.18.0.3 on port 1883. +1612493540: Sending CONNACK to 172.18.0.3 (0, 5) +1612493540: Socket error on client , disconnecting. +1612493560: New connection from 172.18.0.3 on port 1883. +1612493560: Sending CONNACK to 172.18.0.3 (0, 5) +1612493560: Socket error on client , disconnecting. +1612493580: New connection from 172.18.0.3 on port 1883. +1612493580: Sending CONNACK to 172.18.0.3 (0, 5) +1612493580: Socket error on client , disconnecting. +1612493600: New connection from 172.18.0.3 on port 1883. +1612493600: Sending CONNACK to 172.18.0.3 (0, 5) +1612493600: Socket error on client , disconnecting. +1612493620: New connection from 172.18.0.3 on port 1883. +1612493620: Sending CONNACK to 172.18.0.3 (0, 5) +1612493620: Socket error on client , disconnecting. +1612493640: New connection from 172.18.0.3 on port 1883. +1612493640: Sending CONNACK to 172.18.0.3 (0, 5) +1612493640: Socket error on client , disconnecting. +1612493660: New connection from 172.18.0.3 on port 1883. +1612493660: Sending CONNACK to 172.18.0.3 (0, 5) +1612493660: Socket error on client , disconnecting. +1612493680: New connection from 172.18.0.3 on port 1883. +1612493680: Sending CONNACK to 172.18.0.3 (0, 5) +1612493680: Socket error on client , disconnecting. +1612493700: New connection from 172.18.0.3 on port 1883. +1612493700: Sending CONNACK to 172.18.0.3 (0, 5) +1612493700: Socket error on client , disconnecting. +1612493720: New connection from 172.18.0.3 on port 1883. +1612493720: Sending CONNACK to 172.18.0.3 (0, 5) +1612493720: Socket error on client , disconnecting. +1612493740: New connection from 172.18.0.3 on port 1883. +1612493740: Sending CONNACK to 172.18.0.3 (0, 5) +1612493740: Socket error on client , disconnecting. +1612493760: New connection from 172.18.0.3 on port 1883. +1612493760: Sending CONNACK to 172.18.0.3 (0, 5) +1612493760: Socket error on client , disconnecting. +1612493780: New connection from 172.18.0.3 on port 1883. +1612493780: Sending CONNACK to 172.18.0.3 (0, 5) +1612493780: Socket error on client , disconnecting. +1612493800: New connection from 172.18.0.3 on port 1883. +1612493800: Sending CONNACK to 172.18.0.3 (0, 5) +1612493800: Socket error on client , disconnecting. +1612493820: New connection from 172.18.0.3 on port 1883. +1612493820: Sending CONNACK to 172.18.0.3 (0, 5) +1612493820: Socket error on client , disconnecting. +1612493840: New connection from 172.18.0.3 on port 1883. +1612493840: Sending CONNACK to 172.18.0.3 (0, 5) +1612493840: Socket error on client , disconnecting. +1612493860: New connection from 172.18.0.3 on port 1883. +1612493860: Sending CONNACK to 172.18.0.3 (0, 5) +1612493860: Socket error on client , disconnecting. +1612493880: New connection from 172.18.0.3 on port 1883. +1612493880: Sending CONNACK to 172.18.0.3 (0, 5) +1612493880: Socket error on client , disconnecting. +1612493900: New connection from 172.18.0.3 on port 1883. +1612493900: Sending CONNACK to 172.18.0.3 (0, 5) +1612493900: Socket error on client , disconnecting. +1612493920: New connection from 172.18.0.3 on port 1883. +1612493920: Sending CONNACK to 172.18.0.3 (0, 5) +1612493920: Socket error on client , disconnecting. +1612493940: New connection from 172.18.0.3 on port 1883. +1612493940: Sending CONNACK to 172.18.0.3 (0, 5) +1612493940: Socket error on client , disconnecting. +1612493960: New connection from 172.18.0.3 on port 1883. +1612493960: Sending CONNACK to 172.18.0.3 (0, 5) +1612493960: Socket error on client , disconnecting. +1612493980: New connection from 172.18.0.3 on port 1883. +1612493980: Sending CONNACK to 172.18.0.3 (0, 5) +1612493980: Socket error on client , disconnecting. +1612494000: New connection from 172.18.0.3 on port 1883. +1612494000: Sending CONNACK to 172.18.0.3 (0, 5) +1612494000: Socket error on client , disconnecting. +1612494020: New connection from 172.18.0.3 on port 1883. +1612494020: Sending CONNACK to 172.18.0.3 (0, 5) +1612494020: Socket error on client , disconnecting. +1612494040: New connection from 172.18.0.3 on port 1883. +1612494040: Sending CONNACK to 172.18.0.3 (0, 5) +1612494040: Socket error on client , disconnecting. +1612494060: New connection from 172.18.0.3 on port 1883. +1612494060: Sending CONNACK to 172.18.0.3 (0, 5) +1612494060: Socket error on client , disconnecting. +1612494080: New connection from 172.18.0.3 on port 1883. +1612494080: Sending CONNACK to 172.18.0.3 (0, 5) +1612494080: Socket error on client , disconnecting. +1612494100: New connection from 172.18.0.3 on port 1883. +1612494100: Sending CONNACK to 172.18.0.3 (0, 5) +1612494100: Socket error on client , disconnecting. +1612494120: New connection from 172.18.0.3 on port 1883. +1612494120: Sending CONNACK to 172.18.0.3 (0, 5) +1612494120: Socket error on client , disconnecting. +1612494140: New connection from 172.18.0.3 on port 1883. +1612494140: Sending CONNACK to 172.18.0.3 (0, 5) +1612494140: Socket error on client , disconnecting. +1612494160: New connection from 172.18.0.3 on port 1883. +1612494160: Sending CONNACK to 172.18.0.3 (0, 5) +1612494160: Socket error on client , disconnecting. +1612494180: New connection from 172.18.0.3 on port 1883. +1612494180: Sending CONNACK to 172.18.0.3 (0, 5) +1612494180: Socket error on client , disconnecting. +1612494200: New connection from 172.18.0.3 on port 1883. +1612494200: Sending CONNACK to 172.18.0.3 (0, 5) +1612494200: Socket error on client , disconnecting. +1612494220: New connection from 172.18.0.3 on port 1883. +1612494220: Sending CONNACK to 172.18.0.3 (0, 5) +1612494220: Socket error on client , disconnecting. +1612494240: New connection from 172.18.0.3 on port 1883. +1612494240: Sending CONNACK to 172.18.0.3 (0, 5) +1612494240: Socket error on client , disconnecting. +1612494260: New connection from 172.18.0.3 on port 1883. +1612494260: Sending CONNACK to 172.18.0.3 (0, 5) +1612494260: Socket error on client , disconnecting. +1612494280: New connection from 172.18.0.3 on port 1883. +1612494280: Sending CONNACK to 172.18.0.3 (0, 5) +1612494280: Socket error on client , disconnecting. +1612494300: New connection from 172.18.0.3 on port 1883. +1612494300: Sending CONNACK to 172.18.0.3 (0, 5) +1612494300: Socket error on client , disconnecting. +1612494320: New connection from 172.18.0.3 on port 1883. +1612494320: Sending CONNACK to 172.18.0.3 (0, 5) +1612494320: Socket error on client , disconnecting. +1612494340: New connection from 172.18.0.3 on port 1883. +1612494340: Sending CONNACK to 172.18.0.3 (0, 5) +1612494340: Socket error on client , disconnecting. +1612494360: New connection from 172.18.0.3 on port 1883. +1612494360: Sending CONNACK to 172.18.0.3 (0, 5) +1612494360: Socket error on client , disconnecting. +1612494380: New connection from 172.18.0.3 on port 1883. +1612494380: Sending CONNACK to 172.18.0.3 (0, 5) +1612494380: Socket error on client , disconnecting. +1612494400: New connection from 172.18.0.3 on port 1883. +1612494400: Sending CONNACK to 172.18.0.3 (0, 5) +1612494400: Socket error on client , disconnecting. +1612494420: New connection from 172.18.0.3 on port 1883. +1612494420: Sending CONNACK to 172.18.0.3 (0, 5) +1612494420: Socket error on client , disconnecting. +1612494440: New connection from 172.18.0.3 on port 1883. +1612494440: Sending CONNACK to 172.18.0.3 (0, 5) +1612494440: Socket error on client , disconnecting. +1612494460: New connection from 172.18.0.3 on port 1883. +1612494460: Sending CONNACK to 172.18.0.3 (0, 5) +1612494460: Socket error on client , disconnecting. +1612494480: New connection from 172.18.0.3 on port 1883. +1612494480: Sending CONNACK to 172.18.0.3 (0, 5) +1612494480: Socket error on client , disconnecting. +1612494500: New connection from 172.18.0.3 on port 1883. +1612494500: Sending CONNACK to 172.18.0.3 (0, 5) +1612494500: Socket error on client , disconnecting. +1612494520: New connection from 172.18.0.3 on port 1883. +1612494520: Sending CONNACK to 172.18.0.3 (0, 5) +1612494520: Socket error on client , disconnecting. +1612494540: New connection from 172.18.0.3 on port 1883. +1612494540: Sending CONNACK to 172.18.0.3 (0, 5) +1612494540: Socket error on client , disconnecting. +1612494560: New connection from 172.18.0.3 on port 1883. +1612494560: Sending CONNACK to 172.18.0.3 (0, 5) +1612494560: Socket error on client , disconnecting. +1612494580: New connection from 172.18.0.3 on port 1883. +1612494580: Sending CONNACK to 172.18.0.3 (0, 5) +1612494580: Socket error on client , disconnecting. +1612494600: New connection from 172.18.0.3 on port 1883. +1612494600: Sending CONNACK to 172.18.0.3 (0, 5) +1612494600: Socket error on client , disconnecting. +1612494620: New connection from 172.18.0.3 on port 1883. +1612494620: Sending CONNACK to 172.18.0.3 (0, 5) +1612494620: Socket error on client , disconnecting. +1612494640: New connection from 172.18.0.3 on port 1883. +1612494640: Sending CONNACK to 172.18.0.3 (0, 5) +1612494640: Socket error on client , disconnecting. +1612494660: New connection from 172.18.0.3 on port 1883. +1612494660: Sending CONNACK to 172.18.0.3 (0, 5) +1612494660: Socket error on client , disconnecting. +1612494680: New connection from 172.18.0.3 on port 1883. +1612494680: Sending CONNACK to 172.18.0.3 (0, 5) +1612494680: Socket error on client , disconnecting. +1612494700: New connection from 172.18.0.3 on port 1883. +1612494700: Sending CONNACK to 172.18.0.3 (0, 5) +1612494700: Socket error on client , disconnecting. +1612494720: New connection from 172.18.0.3 on port 1883. +1612494720: Sending CONNACK to 172.18.0.3 (0, 5) +1612494720: Socket error on client , disconnecting. +1612494740: New connection from 172.18.0.3 on port 1883. +1612494740: Sending CONNACK to 172.18.0.3 (0, 5) +1612494740: Socket error on client , disconnecting. +1612494760: New connection from 172.18.0.3 on port 1883. +1612494760: Sending CONNACK to 172.18.0.3 (0, 5) +1612494760: Socket error on client , disconnecting. +1612494780: New connection from 172.18.0.3 on port 1883. +1612494780: Sending CONNACK to 172.18.0.3 (0, 5) +1612494780: Socket error on client , disconnecting. +1612494800: New connection from 172.18.0.3 on port 1883. +1612494800: Sending CONNACK to 172.18.0.3 (0, 5) +1612494800: Socket error on client , disconnecting. +1612494820: New connection from 172.18.0.3 on port 1883. +1612494820: Sending CONNACK to 172.18.0.3 (0, 5) +1612494820: Socket error on client , disconnecting. +1612494840: New connection from 172.18.0.3 on port 1883. +1612494840: Sending CONNACK to 172.18.0.3 (0, 5) +1612494840: Socket error on client , disconnecting. +1612494860: New connection from 172.18.0.3 on port 1883. +1612494860: Sending CONNACK to 172.18.0.3 (0, 5) +1612494860: Socket error on client , disconnecting. +1612494880: New connection from 172.18.0.3 on port 1883. +1612494880: Sending CONNACK to 172.18.0.3 (0, 5) +1612494880: Socket error on client , disconnecting. +1612494900: New connection from 172.18.0.3 on port 1883. +1612494900: Sending CONNACK to 172.18.0.3 (0, 5) +1612494900: Socket error on client , disconnecting. +1612494920: New connection from 172.18.0.3 on port 1883. +1612494920: Sending CONNACK to 172.18.0.3 (0, 5) +1612494920: Socket error on client , disconnecting. +1612494940: New connection from 172.18.0.3 on port 1883. +1612494940: Sending CONNACK to 172.18.0.3 (0, 5) +1612494940: Socket error on client , disconnecting. +1612494960: New connection from 172.18.0.3 on port 1883. +1612494960: Sending CONNACK to 172.18.0.3 (0, 5) +1612494960: Socket error on client , disconnecting. +1612494980: New connection from 172.18.0.3 on port 1883. +1612494980: Sending CONNACK to 172.18.0.3 (0, 5) +1612494980: Socket error on client , disconnecting. +1612495000: New connection from 172.18.0.3 on port 1883. +1612495000: Sending CONNACK to 172.18.0.3 (0, 5) +1612495000: Socket error on client , disconnecting. +1612495020: New connection from 172.18.0.3 on port 1883. +1612495020: Sending CONNACK to 172.18.0.3 (0, 5) +1612495020: Socket error on client , disconnecting. +1612495040: New connection from 172.18.0.3 on port 1883. +1612495040: Sending CONNACK to 172.18.0.3 (0, 5) +1612495040: Socket error on client , disconnecting. +1612495044: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612495044: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612495044: Error: Permission denied. +1612495060: New connection from 172.18.0.3 on port 1883. +1612495060: Sending CONNACK to 172.18.0.3 (0, 5) +1612495060: Socket error on client , disconnecting. +1612495080: New connection from 172.18.0.3 on port 1883. +1612495080: Sending CONNACK to 172.18.0.3 (0, 5) +1612495080: Socket error on client , disconnecting. +1612495100: New connection from 172.18.0.3 on port 1883. +1612495100: Sending CONNACK to 172.18.0.3 (0, 5) +1612495100: Socket error on client , disconnecting. +1612495120: New connection from 172.18.0.3 on port 1883. +1612495120: Sending CONNACK to 172.18.0.3 (0, 5) +1612495120: Socket error on client , disconnecting. +1612495140: New connection from 172.18.0.3 on port 1883. +1612495140: Sending CONNACK to 172.18.0.3 (0, 5) +1612495140: Socket error on client , disconnecting. +1612495160: New connection from 172.18.0.3 on port 1883. +1612495160: Sending CONNACK to 172.18.0.3 (0, 5) +1612495160: Socket error on client , disconnecting. +1612495180: New connection from 172.18.0.3 on port 1883. +1612495180: Sending CONNACK to 172.18.0.3 (0, 5) +1612495180: Socket error on client , disconnecting. +1612495200: New connection from 172.18.0.3 on port 1883. +1612495200: Sending CONNACK to 172.18.0.3 (0, 5) +1612495200: Socket error on client , disconnecting. +1612495220: New connection from 172.18.0.3 on port 1883. +1612495220: Sending CONNACK to 172.18.0.3 (0, 5) +1612495220: Socket error on client , disconnecting. +1612495240: New connection from 172.18.0.3 on port 1883. +1612495240: Sending CONNACK to 172.18.0.3 (0, 5) +1612495240: Socket error on client , disconnecting. +1612495260: New connection from 172.18.0.3 on port 1883. +1612495260: Sending CONNACK to 172.18.0.3 (0, 5) +1612495260: Socket error on client , disconnecting. +1612495280: New connection from 172.18.0.3 on port 1883. +1612495280: Sending CONNACK to 172.18.0.3 (0, 5) +1612495280: Socket error on client , disconnecting. +1612495300: New connection from 172.18.0.3 on port 1883. +1612495300: Sending CONNACK to 172.18.0.3 (0, 5) +1612495300: Socket error on client , disconnecting. +1612495320: New connection from 172.18.0.3 on port 1883. +1612495320: Sending CONNACK to 172.18.0.3 (0, 5) +1612495320: Socket error on client , disconnecting. +1612495340: New connection from 172.18.0.3 on port 1883. +1612495340: Sending CONNACK to 172.18.0.3 (0, 5) +1612495340: Socket error on client , disconnecting. +1612495360: New connection from 172.18.0.3 on port 1883. +1612495360: Sending CONNACK to 172.18.0.3 (0, 5) +1612495360: Socket error on client , disconnecting. +1612495380: New connection from 172.18.0.3 on port 1883. +1612495380: Sending CONNACK to 172.18.0.3 (0, 5) +1612495380: Socket error on client , disconnecting. +1612495400: New connection from 172.18.0.3 on port 1883. +1612495400: Sending CONNACK to 172.18.0.3 (0, 5) +1612495400: Socket error on client , disconnecting. +1612495420: New connection from 172.18.0.3 on port 1883. +1612495420: Sending CONNACK to 172.18.0.3 (0, 5) +1612495420: Socket error on client , disconnecting. +1612495440: New connection from 172.18.0.3 on port 1883. +1612495440: Sending CONNACK to 172.18.0.3 (0, 5) +1612495440: Socket error on client , disconnecting. +1612495460: New connection from 172.18.0.3 on port 1883. +1612495460: Sending CONNACK to 172.18.0.3 (0, 5) +1612495460: Socket error on client , disconnecting. +1612495480: New connection from 172.18.0.3 on port 1883. +1612495480: Sending CONNACK to 172.18.0.3 (0, 5) +1612495480: Socket error on client , disconnecting. +1612495500: New connection from 172.18.0.3 on port 1883. +1612495500: Sending CONNACK to 172.18.0.3 (0, 5) +1612495500: Socket error on client , disconnecting. +1612495520: New connection from 172.18.0.3 on port 1883. +1612495520: Sending CONNACK to 172.18.0.3 (0, 5) +1612495520: Socket error on client , disconnecting. +1612495540: New connection from 172.18.0.3 on port 1883. +1612495540: Sending CONNACK to 172.18.0.3 (0, 5) +1612495540: Socket error on client , disconnecting. +1612495560: New connection from 172.18.0.3 on port 1883. +1612495560: Sending CONNACK to 172.18.0.3 (0, 5) +1612495560: Socket error on client , disconnecting. +1612495580: New connection from 172.18.0.3 on port 1883. +1612495580: Sending CONNACK to 172.18.0.3 (0, 5) +1612495580: Socket error on client , disconnecting. +1612495600: New connection from 172.18.0.3 on port 1883. +1612495600: Sending CONNACK to 172.18.0.3 (0, 5) +1612495600: Socket error on client , disconnecting. +1612495620: New connection from 172.18.0.3 on port 1883. +1612495620: Sending CONNACK to 172.18.0.3 (0, 5) +1612495620: Socket error on client , disconnecting. +1612495640: New connection from 172.18.0.3 on port 1883. +1612495640: Sending CONNACK to 172.18.0.3 (0, 5) +1612495640: Socket error on client , disconnecting. +1612495660: New connection from 172.18.0.3 on port 1883. +1612495660: Sending CONNACK to 172.18.0.3 (0, 5) +1612495660: Socket error on client , disconnecting. +1612495680: New connection from 172.18.0.3 on port 1883. +1612495680: Sending CONNACK to 172.18.0.3 (0, 5) +1612495680: Socket error on client , disconnecting. +1612495700: New connection from 172.18.0.3 on port 1883. +1612495700: Sending CONNACK to 172.18.0.3 (0, 5) +1612495700: Socket error on client , disconnecting. +1612495720: New connection from 172.18.0.3 on port 1883. +1612495720: Sending CONNACK to 172.18.0.3 (0, 5) +1612495720: Socket error on client , disconnecting. +1612495740: New connection from 172.18.0.3 on port 1883. +1612495740: Sending CONNACK to 172.18.0.3 (0, 5) +1612495740: Socket error on client , disconnecting. +1612495760: New connection from 172.18.0.3 on port 1883. +1612495760: Sending CONNACK to 172.18.0.3 (0, 5) +1612495760: Socket error on client , disconnecting. +1612495780: New connection from 172.18.0.3 on port 1883. +1612495780: Sending CONNACK to 172.18.0.3 (0, 5) +1612495780: Socket error on client , disconnecting. +1612495800: New connection from 172.18.0.3 on port 1883. +1612495800: Sending CONNACK to 172.18.0.3 (0, 5) +1612495800: Socket error on client , disconnecting. +1612495820: New connection from 172.18.0.3 on port 1883. +1612495820: Sending CONNACK to 172.18.0.3 (0, 5) +1612495820: Socket error on client , disconnecting. +1612495840: New connection from 172.18.0.3 on port 1883. +1612495840: Sending CONNACK to 172.18.0.3 (0, 5) +1612495840: Socket error on client , disconnecting. +1612495860: New connection from 172.18.0.3 on port 1883. +1612495860: Sending CONNACK to 172.18.0.3 (0, 5) +1612495860: Socket error on client , disconnecting. +1612495880: New connection from 172.18.0.3 on port 1883. +1612495880: Sending CONNACK to 172.18.0.3 (0, 5) +1612495880: Socket error on client , disconnecting. +1612495900: New connection from 172.18.0.3 on port 1883. +1612495900: Sending CONNACK to 172.18.0.3 (0, 5) +1612495900: Socket error on client , disconnecting. +1612495920: New connection from 172.18.0.3 on port 1883. +1612495920: Sending CONNACK to 172.18.0.3 (0, 5) +1612495920: Socket error on client , disconnecting. +1612495940: New connection from 172.18.0.3 on port 1883. +1612495940: Sending CONNACK to 172.18.0.3 (0, 5) +1612495940: Socket error on client , disconnecting. +1612495960: New connection from 172.18.0.3 on port 1883. +1612495960: Sending CONNACK to 172.18.0.3 (0, 5) +1612495960: Socket error on client , disconnecting. +1612495980: New connection from 172.18.0.3 on port 1883. +1612495980: Sending CONNACK to 172.18.0.3 (0, 5) +1612495980: Socket error on client , disconnecting. +1612496000: New connection from 172.18.0.3 on port 1883. +1612496000: Sending CONNACK to 172.18.0.3 (0, 5) +1612496000: Socket error on client , disconnecting. +1612496020: New connection from 172.18.0.3 on port 1883. +1612496020: Sending CONNACK to 172.18.0.3 (0, 5) +1612496020: Socket error on client , disconnecting. +1612496040: New connection from 172.18.0.3 on port 1883. +1612496040: Sending CONNACK to 172.18.0.3 (0, 5) +1612496040: Socket error on client , disconnecting. +1612496060: New connection from 172.18.0.3 on port 1883. +1612496060: Sending CONNACK to 172.18.0.3 (0, 5) +1612496060: Socket error on client , disconnecting. +1612496080: New connection from 172.18.0.3 on port 1883. +1612496080: Sending CONNACK to 172.18.0.3 (0, 5) +1612496080: Socket error on client , disconnecting. +1612496100: New connection from 172.18.0.3 on port 1883. +1612496100: Sending CONNACK to 172.18.0.3 (0, 5) +1612496100: Socket error on client , disconnecting. +1612496120: New connection from 172.18.0.3 on port 1883. +1612496120: Sending CONNACK to 172.18.0.3 (0, 5) +1612496120: Socket error on client , disconnecting. +1612496140: New connection from 172.18.0.3 on port 1883. +1612496140: Sending CONNACK to 172.18.0.3 (0, 5) +1612496140: Socket error on client , disconnecting. +1612496160: New connection from 172.18.0.3 on port 1883. +1612496160: Sending CONNACK to 172.18.0.3 (0, 5) +1612496160: Socket error on client , disconnecting. +1612496180: New connection from 172.18.0.3 on port 1883. +1612496180: Sending CONNACK to 172.18.0.3 (0, 5) +1612496180: Socket error on client , disconnecting. +1612496200: New connection from 172.18.0.3 on port 1883. +1612496200: Sending CONNACK to 172.18.0.3 (0, 5) +1612496200: Socket error on client , disconnecting. +1612496220: New connection from 172.18.0.3 on port 1883. +1612496220: Sending CONNACK to 172.18.0.3 (0, 5) +1612496220: Socket error on client , disconnecting. +1612496240: New connection from 172.18.0.3 on port 1883. +1612496240: Sending CONNACK to 172.18.0.3 (0, 5) +1612496240: Socket error on client , disconnecting. +1612496260: New connection from 172.18.0.3 on port 1883. +1612496260: Sending CONNACK to 172.18.0.3 (0, 5) +1612496260: Socket error on client , disconnecting. +1612496280: New connection from 172.18.0.3 on port 1883. +1612496280: Sending CONNACK to 172.18.0.3 (0, 5) +1612496280: Socket error on client , disconnecting. +1612496300: New connection from 172.18.0.3 on port 1883. +1612496300: Sending CONNACK to 172.18.0.3 (0, 5) +1612496300: Socket error on client , disconnecting. +1612496320: New connection from 172.18.0.3 on port 1883. +1612496320: Sending CONNACK to 172.18.0.3 (0, 5) +1612496320: Socket error on client , disconnecting. +1612496340: New connection from 172.18.0.3 on port 1883. +1612496340: Sending CONNACK to 172.18.0.3 (0, 5) +1612496340: Socket error on client , disconnecting. +1612496360: New connection from 172.18.0.3 on port 1883. +1612496360: Sending CONNACK to 172.18.0.3 (0, 5) +1612496360: Socket error on client , disconnecting. +1612496380: New connection from 172.18.0.3 on port 1883. +1612496380: Sending CONNACK to 172.18.0.3 (0, 5) +1612496380: Socket error on client , disconnecting. +1612496400: New connection from 172.18.0.3 on port 1883. +1612496400: Sending CONNACK to 172.18.0.3 (0, 5) +1612496400: Socket error on client , disconnecting. +1612496420: New connection from 172.18.0.3 on port 1883. +1612496420: Sending CONNACK to 172.18.0.3 (0, 5) +1612496420: Socket error on client , disconnecting. +1612496440: New connection from 172.18.0.3 on port 1883. +1612496440: Sending CONNACK to 172.18.0.3 (0, 5) +1612496440: Socket error on client , disconnecting. +1612496460: New connection from 172.18.0.3 on port 1883. +1612496460: Sending CONNACK to 172.18.0.3 (0, 5) +1612496460: Socket error on client , disconnecting. +1612496480: New connection from 172.18.0.3 on port 1883. +1612496480: Sending CONNACK to 172.18.0.3 (0, 5) +1612496480: Socket error on client , disconnecting. +1612496500: New connection from 172.18.0.3 on port 1883. +1612496500: Sending CONNACK to 172.18.0.3 (0, 5) +1612496500: Socket error on client , disconnecting. +1612496520: New connection from 172.18.0.3 on port 1883. +1612496520: Sending CONNACK to 172.18.0.3 (0, 5) +1612496520: Socket error on client , disconnecting. +1612496540: New connection from 172.18.0.3 on port 1883. +1612496540: Sending CONNACK to 172.18.0.3 (0, 5) +1612496540: Socket error on client , disconnecting. +1612496560: New connection from 172.18.0.3 on port 1883. +1612496560: Sending CONNACK to 172.18.0.3 (0, 5) +1612496560: Socket error on client , disconnecting. +1612496580: New connection from 172.18.0.3 on port 1883. +1612496580: Sending CONNACK to 172.18.0.3 (0, 5) +1612496580: Socket error on client , disconnecting. +1612496600: New connection from 172.18.0.3 on port 1883. +1612496600: Sending CONNACK to 172.18.0.3 (0, 5) +1612496600: Socket error on client , disconnecting. +1612496620: New connection from 172.18.0.3 on port 1883. +1612496620: Sending CONNACK to 172.18.0.3 (0, 5) +1612496620: Socket error on client , disconnecting. +1612496640: New connection from 172.18.0.3 on port 1883. +1612496640: Sending CONNACK to 172.18.0.3 (0, 5) +1612496640: Socket error on client , disconnecting. +1612496660: New connection from 172.18.0.3 on port 1883. +1612496660: Sending CONNACK to 172.18.0.3 (0, 5) +1612496660: Socket error on client , disconnecting. +1612496680: New connection from 172.18.0.3 on port 1883. +1612496680: Sending CONNACK to 172.18.0.3 (0, 5) +1612496680: Socket error on client , disconnecting. +1612496700: New connection from 172.18.0.3 on port 1883. +1612496700: Sending CONNACK to 172.18.0.3 (0, 5) +1612496700: Socket error on client , disconnecting. +1612496720: New connection from 172.18.0.3 on port 1883. +1612496720: Sending CONNACK to 172.18.0.3 (0, 5) +1612496720: Socket error on client , disconnecting. +1612496740: New connection from 172.18.0.3 on port 1883. +1612496740: Sending CONNACK to 172.18.0.3 (0, 5) +1612496740: Socket error on client , disconnecting. +1612496760: New connection from 172.18.0.3 on port 1883. +1612496760: Sending CONNACK to 172.18.0.3 (0, 5) +1612496760: Socket error on client , disconnecting. +1612496780: New connection from 172.18.0.3 on port 1883. +1612496780: Sending CONNACK to 172.18.0.3 (0, 5) +1612496780: Socket error on client , disconnecting. +1612496800: New connection from 172.18.0.3 on port 1883. +1612496800: Sending CONNACK to 172.18.0.3 (0, 5) +1612496800: Socket error on client , disconnecting. +1612496820: New connection from 172.18.0.3 on port 1883. +1612496820: Sending CONNACK to 172.18.0.3 (0, 5) +1612496820: Socket error on client , disconnecting. +1612496840: New connection from 172.18.0.3 on port 1883. +1612496840: Sending CONNACK to 172.18.0.3 (0, 5) +1612496840: Socket error on client , disconnecting. +1612496845: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612496845: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612496845: Error: Permission denied. +1612496860: New connection from 172.18.0.3 on port 1883. +1612496860: Sending CONNACK to 172.18.0.3 (0, 5) +1612496860: Socket error on client , disconnecting. +1612496880: New connection from 172.18.0.3 on port 1883. +1612496880: Sending CONNACK to 172.18.0.3 (0, 5) +1612496880: Socket error on client , disconnecting. +1612496900: New connection from 172.18.0.3 on port 1883. +1612496900: Sending CONNACK to 172.18.0.3 (0, 5) +1612496900: Socket error on client , disconnecting. +1612496920: New connection from 172.18.0.3 on port 1883. +1612496920: Sending CONNACK to 172.18.0.3 (0, 5) +1612496920: Socket error on client , disconnecting. +1612496940: New connection from 172.18.0.3 on port 1883. +1612496940: Sending CONNACK to 172.18.0.3 (0, 5) +1612496940: Socket error on client , disconnecting. +1612496960: New connection from 172.18.0.3 on port 1883. +1612496960: Sending CONNACK to 172.18.0.3 (0, 5) +1612496960: Socket error on client , disconnecting. +1612496980: New connection from 172.18.0.3 on port 1883. +1612496980: Sending CONNACK to 172.18.0.3 (0, 5) +1612496980: Socket error on client , disconnecting. +1612497000: New connection from 172.18.0.3 on port 1883. +1612497000: Sending CONNACK to 172.18.0.3 (0, 5) +1612497000: Socket error on client , disconnecting. +1612497020: New connection from 172.18.0.3 on port 1883. +1612497020: Sending CONNACK to 172.18.0.3 (0, 5) +1612497020: Socket error on client , disconnecting. +1612497040: New connection from 172.18.0.3 on port 1883. +1612497040: Sending CONNACK to 172.18.0.3 (0, 5) +1612497040: Socket error on client , disconnecting. +1612497060: New connection from 172.18.0.3 on port 1883. +1612497060: Sending CONNACK to 172.18.0.3 (0, 5) +1612497060: Socket error on client , disconnecting. +1612497080: New connection from 172.18.0.3 on port 1883. +1612497080: Sending CONNACK to 172.18.0.3 (0, 5) +1612497080: Socket error on client , disconnecting. +1612497100: New connection from 172.18.0.3 on port 1883. +1612497100: Sending CONNACK to 172.18.0.3 (0, 5) +1612497100: Socket error on client , disconnecting. +1612497120: New connection from 172.18.0.3 on port 1883. +1612497120: Sending CONNACK to 172.18.0.3 (0, 5) +1612497120: Socket error on client , disconnecting. +1612497140: New connection from 172.18.0.3 on port 1883. +1612497140: Sending CONNACK to 172.18.0.3 (0, 5) +1612497140: Socket error on client , disconnecting. +1612497160: New connection from 172.18.0.3 on port 1883. +1612497160: Sending CONNACK to 172.18.0.3 (0, 5) +1612497160: Socket error on client , disconnecting. +1612497180: New connection from 172.18.0.3 on port 1883. +1612497180: Sending CONNACK to 172.18.0.3 (0, 5) +1612497180: Socket error on client , disconnecting. +1612497200: New connection from 172.18.0.3 on port 1883. +1612497200: Sending CONNACK to 172.18.0.3 (0, 5) +1612497200: Socket error on client , disconnecting. +1612497220: New connection from 172.18.0.3 on port 1883. +1612497220: Sending CONNACK to 172.18.0.3 (0, 5) +1612497220: Socket error on client , disconnecting. +1612497240: New connection from 172.18.0.3 on port 1883. +1612497240: Sending CONNACK to 172.18.0.3 (0, 5) +1612497240: Socket error on client , disconnecting. +1612497260: New connection from 172.18.0.3 on port 1883. +1612497260: Sending CONNACK to 172.18.0.3 (0, 5) +1612497260: Socket error on client , disconnecting. +1612497280: New connection from 172.18.0.3 on port 1883. +1612497280: Sending CONNACK to 172.18.0.3 (0, 5) +1612497280: Socket error on client , disconnecting. +1612497300: New connection from 172.18.0.3 on port 1883. +1612497300: Sending CONNACK to 172.18.0.3 (0, 5) +1612497300: Socket error on client , disconnecting. +1612497320: New connection from 172.18.0.3 on port 1883. +1612497320: Sending CONNACK to 172.18.0.3 (0, 5) +1612497320: Socket error on client , disconnecting. +1612497340: New connection from 172.18.0.3 on port 1883. +1612497340: Sending CONNACK to 172.18.0.3 (0, 5) +1612497340: Socket error on client , disconnecting. +1612497360: New connection from 172.18.0.3 on port 1883. +1612497360: Sending CONNACK to 172.18.0.3 (0, 5) +1612497360: Socket error on client , disconnecting. +1612497380: New connection from 172.18.0.3 on port 1883. +1612497380: Sending CONNACK to 172.18.0.3 (0, 5) +1612497380: Socket error on client , disconnecting. +1612497400: New connection from 172.18.0.3 on port 1883. +1612497400: Sending CONNACK to 172.18.0.3 (0, 5) +1612497400: Socket error on client , disconnecting. +1612497420: New connection from 172.18.0.3 on port 1883. +1612497420: Sending CONNACK to 172.18.0.3 (0, 5) +1612497420: Socket error on client , disconnecting. +1612497440: New connection from 172.18.0.3 on port 1883. +1612497440: Sending CONNACK to 172.18.0.3 (0, 5) +1612497440: Socket error on client , disconnecting. +1612497460: New connection from 172.18.0.3 on port 1883. +1612497460: Sending CONNACK to 172.18.0.3 (0, 5) +1612497460: Socket error on client , disconnecting. +1612497480: New connection from 172.18.0.3 on port 1883. +1612497480: Sending CONNACK to 172.18.0.3 (0, 5) +1612497480: Socket error on client , disconnecting. +1612497500: New connection from 172.18.0.3 on port 1883. +1612497500: Sending CONNACK to 172.18.0.3 (0, 5) +1612497500: Socket error on client , disconnecting. +1612497520: New connection from 172.18.0.3 on port 1883. +1612497520: Sending CONNACK to 172.18.0.3 (0, 5) +1612497520: Socket error on client , disconnecting. +1612497540: New connection from 172.18.0.3 on port 1883. +1612497540: Sending CONNACK to 172.18.0.3 (0, 5) +1612497540: Socket error on client , disconnecting. +1612497560: New connection from 172.18.0.3 on port 1883. +1612497560: Sending CONNACK to 172.18.0.3 (0, 5) +1612497560: Socket error on client , disconnecting. +1612497580: New connection from 172.18.0.3 on port 1883. +1612497580: Sending CONNACK to 172.18.0.3 (0, 5) +1612497580: Socket error on client , disconnecting. +1612497600: New connection from 172.18.0.3 on port 1883. +1612497600: Sending CONNACK to 172.18.0.3 (0, 5) +1612497600: Socket error on client , disconnecting. +1612497620: New connection from 172.18.0.3 on port 1883. +1612497620: Sending CONNACK to 172.18.0.3 (0, 5) +1612497620: Socket error on client , disconnecting. +1612497640: New connection from 172.18.0.3 on port 1883. +1612497640: Sending CONNACK to 172.18.0.3 (0, 5) +1612497640: Socket error on client , disconnecting. +1612497660: New connection from 172.18.0.3 on port 1883. +1612497660: Sending CONNACK to 172.18.0.3 (0, 5) +1612497660: Socket error on client , disconnecting. +1612497680: New connection from 172.18.0.3 on port 1883. +1612497680: Sending CONNACK to 172.18.0.3 (0, 5) +1612497680: Socket error on client , disconnecting. +1612497700: New connection from 172.18.0.3 on port 1883. +1612497700: Sending CONNACK to 172.18.0.3 (0, 5) +1612497700: Socket error on client , disconnecting. +1612497720: New connection from 172.18.0.3 on port 1883. +1612497720: Sending CONNACK to 172.18.0.3 (0, 5) +1612497720: Socket error on client , disconnecting. +1612497740: New connection from 172.18.0.3 on port 1883. +1612497740: Sending CONNACK to 172.18.0.3 (0, 5) +1612497740: Socket error on client , disconnecting. +1612497760: New connection from 172.18.0.3 on port 1883. +1612497760: Sending CONNACK to 172.18.0.3 (0, 5) +1612497760: Socket error on client , disconnecting. +1612497780: New connection from 172.18.0.3 on port 1883. +1612497780: Sending CONNACK to 172.18.0.3 (0, 5) +1612497780: Socket error on client , disconnecting. +1612497800: New connection from 172.18.0.3 on port 1883. +1612497800: Sending CONNACK to 172.18.0.3 (0, 5) +1612497800: Socket error on client , disconnecting. +1612497820: New connection from 172.18.0.3 on port 1883. +1612497820: Sending CONNACK to 172.18.0.3 (0, 5) +1612497820: Socket error on client , disconnecting. +1612497840: New connection from 172.18.0.3 on port 1883. +1612497840: Sending CONNACK to 172.18.0.3 (0, 5) +1612497840: Socket error on client , disconnecting. +1612497860: New connection from 172.18.0.3 on port 1883. +1612497860: Sending CONNACK to 172.18.0.3 (0, 5) +1612497860: Socket error on client , disconnecting. +1612497880: New connection from 172.18.0.3 on port 1883. +1612497880: Sending CONNACK to 172.18.0.3 (0, 5) +1612497880: Socket error on client , disconnecting. +1612497900: New connection from 172.18.0.3 on port 1883. +1612497900: Sending CONNACK to 172.18.0.3 (0, 5) +1612497900: Socket error on client , disconnecting. +1612497920: New connection from 172.18.0.3 on port 1883. +1612497920: Sending CONNACK to 172.18.0.3 (0, 5) +1612497920: Socket error on client , disconnecting. +1612497940: New connection from 172.18.0.3 on port 1883. +1612497940: Sending CONNACK to 172.18.0.3 (0, 5) +1612497940: Socket error on client , disconnecting. +1612497960: New connection from 172.18.0.3 on port 1883. +1612497960: Sending CONNACK to 172.18.0.3 (0, 5) +1612497960: Socket error on client , disconnecting. +1612497980: New connection from 172.18.0.3 on port 1883. +1612497980: Sending CONNACK to 172.18.0.3 (0, 5) +1612497980: Socket error on client , disconnecting. +1612498000: New connection from 172.18.0.3 on port 1883. +1612498000: Sending CONNACK to 172.18.0.3 (0, 5) +1612498000: Socket error on client , disconnecting. +1612498020: New connection from 172.18.0.3 on port 1883. +1612498020: Sending CONNACK to 172.18.0.3 (0, 5) +1612498020: Socket error on client , disconnecting. +1612498040: New connection from 172.18.0.3 on port 1883. +1612498040: Sending CONNACK to 172.18.0.3 (0, 5) +1612498040: Socket error on client , disconnecting. +1612498060: New connection from 172.18.0.3 on port 1883. +1612498060: Sending CONNACK to 172.18.0.3 (0, 5) +1612498060: Socket error on client , disconnecting. +1612498080: New connection from 172.18.0.3 on port 1883. +1612498080: Sending CONNACK to 172.18.0.3 (0, 5) +1612498080: Socket error on client , disconnecting. +1612498100: New connection from 172.18.0.3 on port 1883. +1612498100: Sending CONNACK to 172.18.0.3 (0, 5) +1612498100: Socket error on client , disconnecting. +1612498120: New connection from 172.18.0.3 on port 1883. +1612498120: Sending CONNACK to 172.18.0.3 (0, 5) +1612498120: Socket error on client , disconnecting. +1612498140: New connection from 172.18.0.3 on port 1883. +1612498140: Sending CONNACK to 172.18.0.3 (0, 5) +1612498140: Socket error on client , disconnecting. +1612498160: New connection from 172.18.0.3 on port 1883. +1612498160: Sending CONNACK to 172.18.0.3 (0, 5) +1612498160: Socket error on client , disconnecting. +1612498180: New connection from 172.18.0.3 on port 1883. +1612498180: Sending CONNACK to 172.18.0.3 (0, 5) +1612498180: Socket error on client , disconnecting. +1612498200: New connection from 172.18.0.3 on port 1883. +1612498200: Sending CONNACK to 172.18.0.3 (0, 5) +1612498200: Socket error on client , disconnecting. +1612498220: New connection from 172.18.0.3 on port 1883. +1612498220: Sending CONNACK to 172.18.0.3 (0, 5) +1612498220: Socket error on client , disconnecting. +1612498240: New connection from 172.18.0.3 on port 1883. +1612498240: Sending CONNACK to 172.18.0.3 (0, 5) +1612498240: Socket error on client , disconnecting. +1612498260: New connection from 172.18.0.3 on port 1883. +1612498260: Sending CONNACK to 172.18.0.3 (0, 5) +1612498260: Socket error on client , disconnecting. +1612498280: New connection from 172.18.0.3 on port 1883. +1612498280: Sending CONNACK to 172.18.0.3 (0, 5) +1612498280: Socket error on client , disconnecting. +1612498300: New connection from 172.18.0.3 on port 1883. +1612498300: Sending CONNACK to 172.18.0.3 (0, 5) +1612498300: Socket error on client , disconnecting. +1612498320: New connection from 172.18.0.3 on port 1883. +1612498320: Sending CONNACK to 172.18.0.3 (0, 5) +1612498320: Socket error on client , disconnecting. +1612498340: New connection from 172.18.0.3 on port 1883. +1612498340: Sending CONNACK to 172.18.0.3 (0, 5) +1612498340: Socket error on client , disconnecting. +1612498360: New connection from 172.18.0.3 on port 1883. +1612498360: Sending CONNACK to 172.18.0.3 (0, 5) +1612498360: Socket error on client , disconnecting. +1612498380: New connection from 172.18.0.3 on port 1883. +1612498380: Sending CONNACK to 172.18.0.3 (0, 5) +1612498380: Socket error on client , disconnecting. +1612498400: New connection from 172.18.0.3 on port 1883. +1612498400: Sending CONNACK to 172.18.0.3 (0, 5) +1612498400: Socket error on client , disconnecting. +1612498420: New connection from 172.18.0.3 on port 1883. +1612498420: Sending CONNACK to 172.18.0.3 (0, 5) +1612498420: Socket error on client , disconnecting. +1612498440: New connection from 172.18.0.3 on port 1883. +1612498440: Sending CONNACK to 172.18.0.3 (0, 5) +1612498440: Socket error on client , disconnecting. +1612498460: New connection from 172.18.0.3 on port 1883. +1612498460: Sending CONNACK to 172.18.0.3 (0, 5) +1612498460: Socket error on client , disconnecting. +1612498480: New connection from 172.18.0.3 on port 1883. +1612498480: Sending CONNACK to 172.18.0.3 (0, 5) +1612498480: Socket error on client , disconnecting. +1612498500: New connection from 172.18.0.3 on port 1883. +1612498500: Sending CONNACK to 172.18.0.3 (0, 5) +1612498500: Socket error on client , disconnecting. +1612498520: New connection from 172.18.0.3 on port 1883. +1612498520: Sending CONNACK to 172.18.0.3 (0, 5) +1612498520: Socket error on client , disconnecting. +1612498540: New connection from 172.18.0.3 on port 1883. +1612498540: Sending CONNACK to 172.18.0.3 (0, 5) +1612498540: Socket error on client , disconnecting. +1612498560: New connection from 172.18.0.3 on port 1883. +1612498560: Sending CONNACK to 172.18.0.3 (0, 5) +1612498560: Socket error on client , disconnecting. +1612498580: New connection from 172.18.0.3 on port 1883. +1612498580: Sending CONNACK to 172.18.0.3 (0, 5) +1612498580: Socket error on client , disconnecting. +1612498600: New connection from 172.18.0.3 on port 1883. +1612498600: Sending CONNACK to 172.18.0.3 (0, 5) +1612498600: Socket error on client , disconnecting. +1612498620: New connection from 172.18.0.3 on port 1883. +1612498620: Sending CONNACK to 172.18.0.3 (0, 5) +1612498620: Socket error on client , disconnecting. +1612498640: New connection from 172.18.0.3 on port 1883. +1612498640: Sending CONNACK to 172.18.0.3 (0, 5) +1612498640: Socket error on client , disconnecting. +1612498646: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612498646: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612498646: Error: Permission denied. +1612498660: New connection from 172.18.0.3 on port 1883. +1612498660: Sending CONNACK to 172.18.0.3 (0, 5) +1612498660: Socket error on client , disconnecting. +1612498680: New connection from 172.18.0.3 on port 1883. +1612498680: Sending CONNACK to 172.18.0.3 (0, 5) +1612498680: Socket error on client , disconnecting. +1612498700: New connection from 172.18.0.3 on port 1883. +1612498700: Sending CONNACK to 172.18.0.3 (0, 5) +1612498700: Socket error on client , disconnecting. +1612498720: New connection from 172.18.0.3 on port 1883. +1612498720: Sending CONNACK to 172.18.0.3 (0, 5) +1612498720: Socket error on client , disconnecting. +1612498740: New connection from 172.18.0.3 on port 1883. +1612498740: Sending CONNACK to 172.18.0.3 (0, 5) +1612498740: Socket error on client , disconnecting. +1612498760: New connection from 172.18.0.3 on port 1883. +1612498760: Sending CONNACK to 172.18.0.3 (0, 5) +1612498760: Socket error on client , disconnecting. +1612498780: New connection from 172.18.0.3 on port 1883. +1612498780: Sending CONNACK to 172.18.0.3 (0, 5) +1612498780: Socket error on client , disconnecting. +1612498800: New connection from 172.18.0.3 on port 1883. +1612498800: Sending CONNACK to 172.18.0.3 (0, 5) +1612498800: Socket error on client , disconnecting. +1612498820: New connection from 172.18.0.3 on port 1883. +1612498820: Sending CONNACK to 172.18.0.3 (0, 5) +1612498820: Socket error on client , disconnecting. +1612498840: New connection from 172.18.0.3 on port 1883. +1612498840: Sending CONNACK to 172.18.0.3 (0, 5) +1612498840: Socket error on client , disconnecting. +1612498860: New connection from 172.18.0.3 on port 1883. +1612498860: Sending CONNACK to 172.18.0.3 (0, 5) +1612498860: Socket error on client , disconnecting. +1612498880: New connection from 172.18.0.3 on port 1883. +1612498880: Sending CONNACK to 172.18.0.3 (0, 5) +1612498880: Socket error on client , disconnecting. +1612498900: New connection from 172.18.0.3 on port 1883. +1612498900: Sending CONNACK to 172.18.0.3 (0, 5) +1612498900: Socket error on client , disconnecting. +1612498920: New connection from 172.18.0.3 on port 1883. +1612498920: Sending CONNACK to 172.18.0.3 (0, 5) +1612498920: Socket error on client , disconnecting. +1612498940: New connection from 172.18.0.3 on port 1883. +1612498940: Sending CONNACK to 172.18.0.3 (0, 5) +1612498940: Socket error on client , disconnecting. +1612498960: New connection from 172.18.0.3 on port 1883. +1612498960: Sending CONNACK to 172.18.0.3 (0, 5) +1612498960: Socket error on client , disconnecting. +1612498980: New connection from 172.18.0.3 on port 1883. +1612498980: Sending CONNACK to 172.18.0.3 (0, 5) +1612498980: Socket error on client , disconnecting. +1612499000: New connection from 172.18.0.3 on port 1883. +1612499000: Sending CONNACK to 172.18.0.3 (0, 5) +1612499000: Socket error on client , disconnecting. +1612499020: New connection from 172.18.0.3 on port 1883. +1612499020: Sending CONNACK to 172.18.0.3 (0, 5) +1612499020: Socket error on client , disconnecting. +1612499040: New connection from 172.18.0.3 on port 1883. +1612499040: Sending CONNACK to 172.18.0.3 (0, 5) +1612499040: Socket error on client , disconnecting. +1612499060: New connection from 172.18.0.3 on port 1883. +1612499060: Sending CONNACK to 172.18.0.3 (0, 5) +1612499060: Socket error on client , disconnecting. +1612499080: New connection from 172.18.0.3 on port 1883. +1612499080: Sending CONNACK to 172.18.0.3 (0, 5) +1612499080: Socket error on client , disconnecting. +1612499100: New connection from 172.18.0.3 on port 1883. +1612499100: Sending CONNACK to 172.18.0.3 (0, 5) +1612499100: Socket error on client , disconnecting. +1612499120: New connection from 172.18.0.3 on port 1883. +1612499120: Sending CONNACK to 172.18.0.3 (0, 5) +1612499120: Socket error on client , disconnecting. +1612499140: New connection from 172.18.0.3 on port 1883. +1612499140: Sending CONNACK to 172.18.0.3 (0, 5) +1612499140: Socket error on client , disconnecting. +1612499160: New connection from 172.18.0.3 on port 1883. +1612499160: Sending CONNACK to 172.18.0.3 (0, 5) +1612499160: Socket error on client , disconnecting. +1612499180: New connection from 172.18.0.3 on port 1883. +1612499180: Sending CONNACK to 172.18.0.3 (0, 5) +1612499180: Socket error on client , disconnecting. +1612499200: New connection from 172.18.0.3 on port 1883. +1612499200: Sending CONNACK to 172.18.0.3 (0, 5) +1612499200: Socket error on client , disconnecting. +1612499220: New connection from 172.18.0.3 on port 1883. +1612499220: Sending CONNACK to 172.18.0.3 (0, 5) +1612499220: Socket error on client , disconnecting. +1612499240: New connection from 172.18.0.3 on port 1883. +1612499240: Sending CONNACK to 172.18.0.3 (0, 5) +1612499240: Socket error on client , disconnecting. +1612499260: New connection from 172.18.0.3 on port 1883. +1612499260: Sending CONNACK to 172.18.0.3 (0, 5) +1612499260: Socket error on client , disconnecting. +1612499280: New connection from 172.18.0.3 on port 1883. +1612499280: Sending CONNACK to 172.18.0.3 (0, 5) +1612499280: Socket error on client , disconnecting. +1612499300: New connection from 172.18.0.3 on port 1883. +1612499300: Sending CONNACK to 172.18.0.3 (0, 5) +1612499300: Socket error on client , disconnecting. +1612499320: New connection from 172.18.0.3 on port 1883. +1612499320: Sending CONNACK to 172.18.0.3 (0, 5) +1612499320: Socket error on client , disconnecting. +1612499340: New connection from 172.18.0.3 on port 1883. +1612499340: Sending CONNACK to 172.18.0.3 (0, 5) +1612499340: Socket error on client , disconnecting. +1612499360: New connection from 172.18.0.3 on port 1883. +1612499360: Sending CONNACK to 172.18.0.3 (0, 5) +1612499360: Socket error on client , disconnecting. +1612499380: New connection from 172.18.0.3 on port 1883. +1612499380: Sending CONNACK to 172.18.0.3 (0, 5) +1612499380: Socket error on client , disconnecting. +1612499400: New connection from 172.18.0.3 on port 1883. +1612499400: Sending CONNACK to 172.18.0.3 (0, 5) +1612499400: Socket error on client , disconnecting. +1612499420: New connection from 172.18.0.3 on port 1883. +1612499420: Sending CONNACK to 172.18.0.3 (0, 5) +1612499420: Socket error on client , disconnecting. +1612499440: New connection from 172.18.0.3 on port 1883. +1612499440: Sending CONNACK to 172.18.0.3 (0, 5) +1612499440: Socket error on client , disconnecting. +1612499460: New connection from 172.18.0.3 on port 1883. +1612499460: Sending CONNACK to 172.18.0.3 (0, 5) +1612499460: Socket error on client , disconnecting. +1612499480: New connection from 172.18.0.3 on port 1883. +1612499480: Sending CONNACK to 172.18.0.3 (0, 5) +1612499480: Socket error on client , disconnecting. +1612499500: New connection from 172.18.0.3 on port 1883. +1612499500: Sending CONNACK to 172.18.0.3 (0, 5) +1612499500: Socket error on client , disconnecting. +1612499520: New connection from 172.18.0.3 on port 1883. +1612499520: Sending CONNACK to 172.18.0.3 (0, 5) +1612499520: Socket error on client , disconnecting. +1612499540: New connection from 172.18.0.3 on port 1883. +1612499540: Sending CONNACK to 172.18.0.3 (0, 5) +1612499540: Socket error on client , disconnecting. +1612499560: New connection from 172.18.0.3 on port 1883. +1612499560: Sending CONNACK to 172.18.0.3 (0, 5) +1612499560: Socket error on client , disconnecting. +1612499580: New connection from 172.18.0.3 on port 1883. +1612499580: Sending CONNACK to 172.18.0.3 (0, 5) +1612499580: Socket error on client , disconnecting. +1612499600: New connection from 172.18.0.3 on port 1883. +1612499600: Sending CONNACK to 172.18.0.3 (0, 5) +1612499600: Socket error on client , disconnecting. +1612499620: New connection from 172.18.0.3 on port 1883. +1612499620: Sending CONNACK to 172.18.0.3 (0, 5) +1612499620: Socket error on client , disconnecting. +1612499640: New connection from 172.18.0.3 on port 1883. +1612499640: Sending CONNACK to 172.18.0.3 (0, 5) +1612499640: Socket error on client , disconnecting. +1612499660: New connection from 172.18.0.3 on port 1883. +1612499660: Sending CONNACK to 172.18.0.3 (0, 5) +1612499660: Socket error on client , disconnecting. +1612499680: New connection from 172.18.0.3 on port 1883. +1612499680: Sending CONNACK to 172.18.0.3 (0, 5) +1612499680: Socket error on client , disconnecting. +1612499700: New connection from 172.18.0.3 on port 1883. +1612499700: Sending CONNACK to 172.18.0.3 (0, 5) +1612499700: Socket error on client , disconnecting. +1612499720: New connection from 172.18.0.3 on port 1883. +1612499720: Sending CONNACK to 172.18.0.3 (0, 5) +1612499720: Socket error on client , disconnecting. +1612499740: New connection from 172.18.0.3 on port 1883. +1612499740: Sending CONNACK to 172.18.0.3 (0, 5) +1612499740: Socket error on client , disconnecting. +1612499760: New connection from 172.18.0.3 on port 1883. +1612499760: Sending CONNACK to 172.18.0.3 (0, 5) +1612499760: Socket error on client , disconnecting. +1612499780: New connection from 172.18.0.3 on port 1883. +1612499780: Sending CONNACK to 172.18.0.3 (0, 5) +1612499780: Socket error on client , disconnecting. +1612499800: New connection from 172.18.0.3 on port 1883. +1612499800: Sending CONNACK to 172.18.0.3 (0, 5) +1612499800: Socket error on client , disconnecting. +1612499820: New connection from 172.18.0.3 on port 1883. +1612499820: Sending CONNACK to 172.18.0.3 (0, 5) +1612499820: Socket error on client , disconnecting. +1612499840: New connection from 172.18.0.3 on port 1883. +1612499840: Sending CONNACK to 172.18.0.3 (0, 5) +1612499840: Socket error on client , disconnecting. +1612499860: New connection from 172.18.0.3 on port 1883. +1612499860: Sending CONNACK to 172.18.0.3 (0, 5) +1612499860: Socket error on client , disconnecting. +1612499880: New connection from 172.18.0.3 on port 1883. +1612499880: Sending CONNACK to 172.18.0.3 (0, 5) +1612499880: Socket error on client , disconnecting. +1612499900: New connection from 172.18.0.3 on port 1883. +1612499900: Sending CONNACK to 172.18.0.3 (0, 5) +1612499900: Socket error on client , disconnecting. +1612499920: New connection from 172.18.0.3 on port 1883. +1612499920: Sending CONNACK to 172.18.0.3 (0, 5) +1612499920: Socket error on client , disconnecting. +1612499940: New connection from 172.18.0.3 on port 1883. +1612499940: Sending CONNACK to 172.18.0.3 (0, 5) +1612499940: Socket error on client , disconnecting. +1612499960: New connection from 172.18.0.3 on port 1883. +1612499960: Sending CONNACK to 172.18.0.3 (0, 5) +1612499960: Socket error on client , disconnecting. +1612499980: New connection from 172.18.0.3 on port 1883. +1612499980: Sending CONNACK to 172.18.0.3 (0, 5) +1612499980: Socket error on client , disconnecting. +1612500000: New connection from 172.18.0.3 on port 1883. +1612500000: Sending CONNACK to 172.18.0.3 (0, 5) +1612500000: Socket error on client , disconnecting. +1612500020: New connection from 172.18.0.3 on port 1883. +1612500020: Sending CONNACK to 172.18.0.3 (0, 5) +1612500020: Socket error on client , disconnecting. +1612500040: New connection from 172.18.0.3 on port 1883. +1612500040: Sending CONNACK to 172.18.0.3 (0, 5) +1612500040: Socket error on client , disconnecting. +1612500060: New connection from 172.18.0.3 on port 1883. +1612500060: Sending CONNACK to 172.18.0.3 (0, 5) +1612500060: Socket error on client , disconnecting. +1612500080: New connection from 172.18.0.3 on port 1883. +1612500080: Sending CONNACK to 172.18.0.3 (0, 5) +1612500080: Socket error on client , disconnecting. +1612500100: New connection from 172.18.0.3 on port 1883. +1612500100: Sending CONNACK to 172.18.0.3 (0, 5) +1612500100: Socket error on client , disconnecting. +1612500120: New connection from 172.18.0.3 on port 1883. +1612500120: Sending CONNACK to 172.18.0.3 (0, 5) +1612500120: Socket error on client , disconnecting. +1612500140: New connection from 172.18.0.3 on port 1883. +1612500140: Sending CONNACK to 172.18.0.3 (0, 5) +1612500140: Socket error on client , disconnecting. +1612500160: New connection from 172.18.0.3 on port 1883. +1612500160: Sending CONNACK to 172.18.0.3 (0, 5) +1612500160: Socket error on client , disconnecting. +1612500180: New connection from 172.18.0.3 on port 1883. +1612500180: Sending CONNACK to 172.18.0.3 (0, 5) +1612500180: Socket error on client , disconnecting. +1612500200: New connection from 172.18.0.3 on port 1883. +1612500200: Sending CONNACK to 172.18.0.3 (0, 5) +1612500200: Socket error on client , disconnecting. +1612500220: New connection from 172.18.0.3 on port 1883. +1612500220: Sending CONNACK to 172.18.0.3 (0, 5) +1612500220: Socket error on client , disconnecting. +1612500240: New connection from 172.18.0.3 on port 1883. +1612500240: Sending CONNACK to 172.18.0.3 (0, 5) +1612500240: Socket error on client , disconnecting. +1612500260: New connection from 172.18.0.3 on port 1883. +1612500260: Sending CONNACK to 172.18.0.3 (0, 5) +1612500260: Socket error on client , disconnecting. +1612500280: New connection from 172.18.0.3 on port 1883. +1612500280: Sending CONNACK to 172.18.0.3 (0, 5) +1612500280: Socket error on client , disconnecting. +1612500300: New connection from 172.18.0.3 on port 1883. +1612500300: Sending CONNACK to 172.18.0.3 (0, 5) +1612500300: Socket error on client , disconnecting. +1612500320: New connection from 172.18.0.3 on port 1883. +1612500320: Sending CONNACK to 172.18.0.3 (0, 5) +1612500320: Socket error on client , disconnecting. +1612500340: New connection from 172.18.0.3 on port 1883. +1612500340: Sending CONNACK to 172.18.0.3 (0, 5) +1612500340: Socket error on client , disconnecting. +1612500360: New connection from 172.18.0.3 on port 1883. +1612500360: Sending CONNACK to 172.18.0.3 (0, 5) +1612500360: Socket error on client , disconnecting. +1612500380: New connection from 172.18.0.3 on port 1883. +1612500380: Sending CONNACK to 172.18.0.3 (0, 5) +1612500380: Socket error on client , disconnecting. +1612500400: New connection from 172.18.0.3 on port 1883. +1612500400: Sending CONNACK to 172.18.0.3 (0, 5) +1612500400: Socket error on client , disconnecting. +1612500420: New connection from 172.18.0.3 on port 1883. +1612500420: Sending CONNACK to 172.18.0.3 (0, 5) +1612500420: Socket error on client , disconnecting. +1612500440: New connection from 172.18.0.3 on port 1883. +1612500440: Sending CONNACK to 172.18.0.3 (0, 5) +1612500440: Socket error on client , disconnecting. +1612500447: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612500447: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612500447: Error: Permission denied. +1612500460: New connection from 172.18.0.3 on port 1883. +1612500460: Sending CONNACK to 172.18.0.3 (0, 5) +1612500460: Socket error on client , disconnecting. +1612500480: New connection from 172.18.0.3 on port 1883. +1612500480: Sending CONNACK to 172.18.0.3 (0, 5) +1612500480: Socket error on client , disconnecting. +1612500500: New connection from 172.18.0.3 on port 1883. +1612500500: Sending CONNACK to 172.18.0.3 (0, 5) +1612500500: Socket error on client , disconnecting. +1612500520: New connection from 172.18.0.3 on port 1883. +1612500520: Sending CONNACK to 172.18.0.3 (0, 5) +1612500520: Socket error on client , disconnecting. +1612500540: New connection from 172.18.0.3 on port 1883. +1612500540: Sending CONNACK to 172.18.0.3 (0, 5) +1612500540: Socket error on client , disconnecting. +1612500560: New connection from 172.18.0.3 on port 1883. +1612500560: Sending CONNACK to 172.18.0.3 (0, 5) +1612500560: Socket error on client , disconnecting. +1612500580: New connection from 172.18.0.3 on port 1883. +1612500580: Sending CONNACK to 172.18.0.3 (0, 5) +1612500580: Socket error on client , disconnecting. +1612500600: New connection from 172.18.0.3 on port 1883. +1612500600: Sending CONNACK to 172.18.0.3 (0, 5) +1612500600: Socket error on client , disconnecting. +1612500620: New connection from 172.18.0.3 on port 1883. +1612500620: Sending CONNACK to 172.18.0.3 (0, 5) +1612500620: Socket error on client , disconnecting. +1612500640: New connection from 172.18.0.3 on port 1883. +1612500640: Sending CONNACK to 172.18.0.3 (0, 5) +1612500640: Socket error on client , disconnecting. +1612500660: New connection from 172.18.0.3 on port 1883. +1612500660: Sending CONNACK to 172.18.0.3 (0, 5) +1612500660: Socket error on client , disconnecting. +1612500680: New connection from 172.18.0.3 on port 1883. +1612500680: Sending CONNACK to 172.18.0.3 (0, 5) +1612500680: Socket error on client , disconnecting. +1612500700: New connection from 172.18.0.3 on port 1883. +1612500700: Sending CONNACK to 172.18.0.3 (0, 5) +1612500700: Socket error on client , disconnecting. +1612500720: New connection from 172.18.0.3 on port 1883. +1612500720: Sending CONNACK to 172.18.0.3 (0, 5) +1612500720: Socket error on client , disconnecting. +1612500740: New connection from 172.18.0.3 on port 1883. +1612500740: Sending CONNACK to 172.18.0.3 (0, 5) +1612500740: Socket error on client , disconnecting. +1612500760: New connection from 172.18.0.3 on port 1883. +1612500760: Sending CONNACK to 172.18.0.3 (0, 5) +1612500760: Socket error on client , disconnecting. +1612500780: New connection from 172.18.0.3 on port 1883. +1612500780: Sending CONNACK to 172.18.0.3 (0, 5) +1612500780: Socket error on client , disconnecting. +1612500800: New connection from 172.18.0.3 on port 1883. +1612500800: Sending CONNACK to 172.18.0.3 (0, 5) +1612500800: Socket error on client , disconnecting. +1612500820: New connection from 172.18.0.3 on port 1883. +1612500820: Sending CONNACK to 172.18.0.3 (0, 5) +1612500820: Socket error on client , disconnecting. +1612500840: New connection from 172.18.0.3 on port 1883. +1612500840: Sending CONNACK to 172.18.0.3 (0, 5) +1612500840: Socket error on client , disconnecting. +1612500860: New connection from 172.18.0.3 on port 1883. +1612500860: Sending CONNACK to 172.18.0.3 (0, 5) +1612500860: Socket error on client , disconnecting. +1612500880: New connection from 172.18.0.3 on port 1883. +1612500880: Sending CONNACK to 172.18.0.3 (0, 5) +1612500880: Socket error on client , disconnecting. +1612500900: New connection from 172.18.0.3 on port 1883. +1612500900: Sending CONNACK to 172.18.0.3 (0, 5) +1612500900: Socket error on client , disconnecting. +1612500920: New connection from 172.18.0.3 on port 1883. +1612500920: Sending CONNACK to 172.18.0.3 (0, 5) +1612500920: Socket error on client , disconnecting. +1612500940: New connection from 172.18.0.3 on port 1883. +1612500940: Sending CONNACK to 172.18.0.3 (0, 5) +1612500940: Socket error on client , disconnecting. +1612500960: New connection from 172.18.0.3 on port 1883. +1612500960: Sending CONNACK to 172.18.0.3 (0, 5) +1612500960: Socket error on client , disconnecting. +1612500980: New connection from 172.18.0.3 on port 1883. +1612500980: Sending CONNACK to 172.18.0.3 (0, 5) +1612500980: Socket error on client , disconnecting. +1612501000: New connection from 172.18.0.3 on port 1883. +1612501000: Sending CONNACK to 172.18.0.3 (0, 5) +1612501000: Socket error on client , disconnecting. +1612501020: New connection from 172.18.0.3 on port 1883. +1612501020: Sending CONNACK to 172.18.0.3 (0, 5) +1612501020: Socket error on client , disconnecting. +1612501040: New connection from 172.18.0.3 on port 1883. +1612501040: Sending CONNACK to 172.18.0.3 (0, 5) +1612501040: Socket error on client , disconnecting. +1612501060: New connection from 172.18.0.3 on port 1883. +1612501060: Sending CONNACK to 172.18.0.3 (0, 5) +1612501060: Socket error on client , disconnecting. +1612501080: New connection from 172.18.0.3 on port 1883. +1612501080: Sending CONNACK to 172.18.0.3 (0, 5) +1612501080: Socket error on client , disconnecting. +1612501100: New connection from 172.18.0.3 on port 1883. +1612501100: Sending CONNACK to 172.18.0.3 (0, 5) +1612501100: Socket error on client , disconnecting. +1612501120: New connection from 172.18.0.3 on port 1883. +1612501120: Sending CONNACK to 172.18.0.3 (0, 5) +1612501120: Socket error on client , disconnecting. +1612501140: New connection from 172.18.0.3 on port 1883. +1612501140: Sending CONNACK to 172.18.0.3 (0, 5) +1612501140: Socket error on client , disconnecting. +1612501160: New connection from 172.18.0.3 on port 1883. +1612501160: Sending CONNACK to 172.18.0.3 (0, 5) +1612501160: Socket error on client , disconnecting. +1612501180: New connection from 172.18.0.3 on port 1883. +1612501180: Sending CONNACK to 172.18.0.3 (0, 5) +1612501180: Socket error on client , disconnecting. +1612501200: New connection from 172.18.0.3 on port 1883. +1612501200: Sending CONNACK to 172.18.0.3 (0, 5) +1612501200: Socket error on client , disconnecting. +1612501220: New connection from 172.18.0.3 on port 1883. +1612501220: Sending CONNACK to 172.18.0.3 (0, 5) +1612501220: Socket error on client , disconnecting. +1612501240: New connection from 172.18.0.3 on port 1883. +1612501240: Sending CONNACK to 172.18.0.3 (0, 5) +1612501240: Socket error on client , disconnecting. +1612501260: New connection from 172.18.0.3 on port 1883. +1612501260: Sending CONNACK to 172.18.0.3 (0, 5) +1612501260: Socket error on client , disconnecting. +1612501280: New connection from 172.18.0.3 on port 1883. +1612501280: Sending CONNACK to 172.18.0.3 (0, 5) +1612501280: Socket error on client , disconnecting. +1612501300: New connection from 172.18.0.3 on port 1883. +1612501300: Sending CONNACK to 172.18.0.3 (0, 5) +1612501300: Socket error on client , disconnecting. +1612501320: New connection from 172.18.0.3 on port 1883. +1612501320: Sending CONNACK to 172.18.0.3 (0, 5) +1612501320: Socket error on client , disconnecting. +1612501340: New connection from 172.18.0.3 on port 1883. +1612501340: Sending CONNACK to 172.18.0.3 (0, 5) +1612501340: Socket error on client , disconnecting. +1612501360: New connection from 172.18.0.3 on port 1883. +1612501360: Sending CONNACK to 172.18.0.3 (0, 5) +1612501360: Socket error on client , disconnecting. +1612501380: New connection from 172.18.0.3 on port 1883. +1612501380: Sending CONNACK to 172.18.0.3 (0, 5) +1612501380: Socket error on client , disconnecting. +1612501400: New connection from 172.18.0.3 on port 1883. +1612501400: Sending CONNACK to 172.18.0.3 (0, 5) +1612501400: Socket error on client , disconnecting. +1612501420: New connection from 172.18.0.3 on port 1883. +1612501420: Sending CONNACK to 172.18.0.3 (0, 5) +1612501420: Socket error on client , disconnecting. +1612501440: New connection from 172.18.0.3 on port 1883. +1612501440: Sending CONNACK to 172.18.0.3 (0, 5) +1612501440: Socket error on client , disconnecting. +1612501460: New connection from 172.18.0.3 on port 1883. +1612501460: Sending CONNACK to 172.18.0.3 (0, 5) +1612501460: Socket error on client , disconnecting. +1612501480: New connection from 172.18.0.3 on port 1883. +1612501480: Sending CONNACK to 172.18.0.3 (0, 5) +1612501480: Socket error on client , disconnecting. +1612501500: New connection from 172.18.0.3 on port 1883. +1612501500: Sending CONNACK to 172.18.0.3 (0, 5) +1612501500: Socket error on client , disconnecting. +1612501520: New connection from 172.18.0.3 on port 1883. +1612501520: Sending CONNACK to 172.18.0.3 (0, 5) +1612501520: Socket error on client , disconnecting. +1612501540: New connection from 172.18.0.3 on port 1883. +1612501540: Sending CONNACK to 172.18.0.3 (0, 5) +1612501540: Socket error on client , disconnecting. +1612501560: New connection from 172.18.0.3 on port 1883. +1612501560: Sending CONNACK to 172.18.0.3 (0, 5) +1612501560: Socket error on client , disconnecting. +1612501580: New connection from 172.18.0.3 on port 1883. +1612501580: Sending CONNACK to 172.18.0.3 (0, 5) +1612501580: Socket error on client , disconnecting. +1612501600: New connection from 172.18.0.3 on port 1883. +1612501600: Sending CONNACK to 172.18.0.3 (0, 5) +1612501600: Socket error on client , disconnecting. +1612501620: New connection from 172.18.0.3 on port 1883. +1612501620: Sending CONNACK to 172.18.0.3 (0, 5) +1612501620: Socket error on client , disconnecting. +1612501640: New connection from 172.18.0.3 on port 1883. +1612501640: Sending CONNACK to 172.18.0.3 (0, 5) +1612501640: Socket error on client , disconnecting. +1612501660: New connection from 172.18.0.3 on port 1883. +1612501660: Sending CONNACK to 172.18.0.3 (0, 5) +1612501660: Socket error on client , disconnecting. +1612501680: New connection from 172.18.0.3 on port 1883. +1612501680: Sending CONNACK to 172.18.0.3 (0, 5) +1612501680: Socket error on client , disconnecting. +1612501700: New connection from 172.18.0.3 on port 1883. +1612501700: Sending CONNACK to 172.18.0.3 (0, 5) +1612501700: Socket error on client , disconnecting. +1612501720: New connection from 172.18.0.3 on port 1883. +1612501720: Sending CONNACK to 172.18.0.3 (0, 5) +1612501720: Socket error on client , disconnecting. +1612501740: New connection from 172.18.0.3 on port 1883. +1612501740: Sending CONNACK to 172.18.0.3 (0, 5) +1612501740: Socket error on client , disconnecting. +1612501760: New connection from 172.18.0.3 on port 1883. +1612501760: Sending CONNACK to 172.18.0.3 (0, 5) +1612501760: Socket error on client , disconnecting. +1612501780: New connection from 172.18.0.3 on port 1883. +1612501780: Sending CONNACK to 172.18.0.3 (0, 5) +1612501780: Socket error on client , disconnecting. +1612501800: New connection from 172.18.0.3 on port 1883. +1612501800: Sending CONNACK to 172.18.0.3 (0, 5) +1612501800: Socket error on client , disconnecting. +1612501820: New connection from 172.18.0.3 on port 1883. +1612501820: Sending CONNACK to 172.18.0.3 (0, 5) +1612501820: Socket error on client , disconnecting. +1612501840: New connection from 172.18.0.3 on port 1883. +1612501840: Sending CONNACK to 172.18.0.3 (0, 5) +1612501840: Socket error on client , disconnecting. +1612501860: New connection from 172.18.0.3 on port 1883. +1612501860: Sending CONNACK to 172.18.0.3 (0, 5) +1612501860: Socket error on client , disconnecting. +1612501880: New connection from 172.18.0.3 on port 1883. +1612501880: Sending CONNACK to 172.18.0.3 (0, 5) +1612501880: Socket error on client , disconnecting. +1612501900: New connection from 172.18.0.3 on port 1883. +1612501900: Sending CONNACK to 172.18.0.3 (0, 5) +1612501900: Socket error on client , disconnecting. +1612501920: New connection from 172.18.0.3 on port 1883. +1612501920: Sending CONNACK to 172.18.0.3 (0, 5) +1612501920: Socket error on client , disconnecting. +1612501940: New connection from 172.18.0.3 on port 1883. +1612501940: Sending CONNACK to 172.18.0.3 (0, 5) +1612501940: Socket error on client , disconnecting. +1612501960: New connection from 172.18.0.3 on port 1883. +1612501960: Sending CONNACK to 172.18.0.3 (0, 5) +1612501960: Socket error on client , disconnecting. +1612501980: New connection from 172.18.0.3 on port 1883. +1612501980: Sending CONNACK to 172.18.0.3 (0, 5) +1612501980: Socket error on client , disconnecting. +1612502000: New connection from 172.18.0.3 on port 1883. +1612502000: Sending CONNACK to 172.18.0.3 (0, 5) +1612502000: Socket error on client , disconnecting. +1612502020: New connection from 172.18.0.3 on port 1883. +1612502020: Sending CONNACK to 172.18.0.3 (0, 5) +1612502020: Socket error on client , disconnecting. +1612502040: New connection from 172.18.0.3 on port 1883. +1612502040: Sending CONNACK to 172.18.0.3 (0, 5) +1612502040: Socket error on client , disconnecting. +1612502060: New connection from 172.18.0.3 on port 1883. +1612502060: Sending CONNACK to 172.18.0.3 (0, 5) +1612502060: Socket error on client , disconnecting. +1612502080: New connection from 172.18.0.3 on port 1883. +1612502080: Sending CONNACK to 172.18.0.3 (0, 5) +1612502080: Socket error on client , disconnecting. +1612502100: New connection from 172.18.0.3 on port 1883. +1612502100: Sending CONNACK to 172.18.0.3 (0, 5) +1612502100: Socket error on client , disconnecting. +1612502120: New connection from 172.18.0.3 on port 1883. +1612502120: Sending CONNACK to 172.18.0.3 (0, 5) +1612502120: Socket error on client , disconnecting. +1612502140: New connection from 172.18.0.3 on port 1883. +1612502140: Sending CONNACK to 172.18.0.3 (0, 5) +1612502140: Socket error on client , disconnecting. +1612502160: New connection from 172.18.0.3 on port 1883. +1612502160: Sending CONNACK to 172.18.0.3 (0, 5) +1612502160: Socket error on client , disconnecting. +1612502180: New connection from 172.18.0.3 on port 1883. +1612502180: Sending CONNACK to 172.18.0.3 (0, 5) +1612502180: Socket error on client , disconnecting. +1612502200: New connection from 172.18.0.3 on port 1883. +1612502200: Sending CONNACK to 172.18.0.3 (0, 5) +1612502200: Socket error on client , disconnecting. +1612502220: New connection from 172.18.0.3 on port 1883. +1612502220: Sending CONNACK to 172.18.0.3 (0, 5) +1612502220: Socket error on client , disconnecting. +1612502240: New connection from 172.18.0.3 on port 1883. +1612502240: Sending CONNACK to 172.18.0.3 (0, 5) +1612502240: Socket error on client , disconnecting. +1612502248: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612502248: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612502248: Error: Permission denied. +1612502260: New connection from 172.18.0.3 on port 1883. +1612502260: Sending CONNACK to 172.18.0.3 (0, 5) +1612502260: Socket error on client , disconnecting. +1612502280: New connection from 172.18.0.3 on port 1883. +1612502280: Sending CONNACK to 172.18.0.3 (0, 5) +1612502280: Socket error on client , disconnecting. +1612502300: New connection from 172.18.0.3 on port 1883. +1612502300: Sending CONNACK to 172.18.0.3 (0, 5) +1612502300: Socket error on client , disconnecting. +1612502320: New connection from 172.18.0.3 on port 1883. +1612502320: Sending CONNACK to 172.18.0.3 (0, 5) +1612502320: Socket error on client , disconnecting. +1612502340: New connection from 172.18.0.3 on port 1883. +1612502340: Sending CONNACK to 172.18.0.3 (0, 5) +1612502340: Socket error on client , disconnecting. +1612502360: New connection from 172.18.0.3 on port 1883. +1612502360: Sending CONNACK to 172.18.0.3 (0, 5) +1612502360: Socket error on client , disconnecting. +1612502380: New connection from 172.18.0.3 on port 1883. +1612502380: Sending CONNACK to 172.18.0.3 (0, 5) +1612502380: Socket error on client , disconnecting. +1612502400: New connection from 172.18.0.3 on port 1883. +1612502400: Sending CONNACK to 172.18.0.3 (0, 5) +1612502400: Socket error on client , disconnecting. +1612502420: New connection from 172.18.0.3 on port 1883. +1612502420: Sending CONNACK to 172.18.0.3 (0, 5) +1612502420: Socket error on client , disconnecting. +1612502440: New connection from 172.18.0.3 on port 1883. +1612502440: Sending CONNACK to 172.18.0.3 (0, 5) +1612502440: Socket error on client , disconnecting. +1612502460: New connection from 172.18.0.3 on port 1883. +1612502460: Sending CONNACK to 172.18.0.3 (0, 5) +1612502460: Socket error on client , disconnecting. +1612502480: New connection from 172.18.0.3 on port 1883. +1612502480: Sending CONNACK to 172.18.0.3 (0, 5) +1612502480: Socket error on client , disconnecting. +1612502500: New connection from 172.18.0.3 on port 1883. +1612502500: Sending CONNACK to 172.18.0.3 (0, 5) +1612502500: Socket error on client , disconnecting. +1612502520: New connection from 172.18.0.3 on port 1883. +1612502520: Sending CONNACK to 172.18.0.3 (0, 5) +1612502520: Socket error on client , disconnecting. +1612502540: New connection from 172.18.0.3 on port 1883. +1612502540: Sending CONNACK to 172.18.0.3 (0, 5) +1612502540: Socket error on client , disconnecting. +1612502560: New connection from 172.18.0.3 on port 1883. +1612502560: Sending CONNACK to 172.18.0.3 (0, 5) +1612502560: Socket error on client , disconnecting. +1612502580: New connection from 172.18.0.3 on port 1883. +1612502580: Sending CONNACK to 172.18.0.3 (0, 5) +1612502580: Socket error on client , disconnecting. +1612502600: New connection from 172.18.0.3 on port 1883. +1612502600: Sending CONNACK to 172.18.0.3 (0, 5) +1612502600: Socket error on client , disconnecting. +1612502620: New connection from 172.18.0.3 on port 1883. +1612502620: Sending CONNACK to 172.18.0.3 (0, 5) +1612502620: Socket error on client , disconnecting. +1612502640: New connection from 172.18.0.3 on port 1883. +1612502640: Sending CONNACK to 172.18.0.3 (0, 5) +1612502640: Socket error on client , disconnecting. +1612502660: New connection from 172.18.0.3 on port 1883. +1612502660: Sending CONNACK to 172.18.0.3 (0, 5) +1612502660: Socket error on client , disconnecting. +1612502680: New connection from 172.18.0.3 on port 1883. +1612502680: Sending CONNACK to 172.18.0.3 (0, 5) +1612502680: Socket error on client , disconnecting. +1612502700: New connection from 172.18.0.3 on port 1883. +1612502700: Sending CONNACK to 172.18.0.3 (0, 5) +1612502700: Socket error on client , disconnecting. +1612502720: New connection from 172.18.0.3 on port 1883. +1612502720: Sending CONNACK to 172.18.0.3 (0, 5) +1612502720: Socket error on client , disconnecting. +1612502740: New connection from 172.18.0.3 on port 1883. +1612502740: Sending CONNACK to 172.18.0.3 (0, 5) +1612502740: Socket error on client , disconnecting. +1612502760: New connection from 172.18.0.3 on port 1883. +1612502760: Sending CONNACK to 172.18.0.3 (0, 5) +1612502760: Socket error on client , disconnecting. +1612502780: New connection from 172.18.0.3 on port 1883. +1612502780: Sending CONNACK to 172.18.0.3 (0, 5) +1612502780: Socket error on client , disconnecting. +1612502800: New connection from 172.18.0.3 on port 1883. +1612502800: Sending CONNACK to 172.18.0.3 (0, 5) +1612502800: Socket error on client , disconnecting. +1612502820: New connection from 172.18.0.3 on port 1883. +1612502820: Sending CONNACK to 172.18.0.3 (0, 5) +1612502820: Socket error on client , disconnecting. +1612502840: New connection from 172.18.0.3 on port 1883. +1612502840: Sending CONNACK to 172.18.0.3 (0, 5) +1612502840: Socket error on client , disconnecting. +1612502860: New connection from 172.18.0.3 on port 1883. +1612502860: Sending CONNACK to 172.18.0.3 (0, 5) +1612502860: Socket error on client , disconnecting. +1612502880: New connection from 172.18.0.3 on port 1883. +1612502880: Sending CONNACK to 172.18.0.3 (0, 5) +1612502880: Socket error on client , disconnecting. +1612502900: New connection from 172.18.0.3 on port 1883. +1612502900: Sending CONNACK to 172.18.0.3 (0, 5) +1612502900: Socket error on client , disconnecting. +1612502920: New connection from 172.18.0.3 on port 1883. +1612502920: Sending CONNACK to 172.18.0.3 (0, 5) +1612502920: Socket error on client , disconnecting. +1612502940: New connection from 172.18.0.3 on port 1883. +1612502940: Sending CONNACK to 172.18.0.3 (0, 5) +1612502940: Socket error on client , disconnecting. +1612502960: New connection from 172.18.0.3 on port 1883. +1612502960: Sending CONNACK to 172.18.0.3 (0, 5) +1612502960: Socket error on client , disconnecting. +1612502980: New connection from 172.18.0.3 on port 1883. +1612502980: Sending CONNACK to 172.18.0.3 (0, 5) +1612502980: Socket error on client , disconnecting. +1612503000: New connection from 172.18.0.3 on port 1883. +1612503000: Sending CONNACK to 172.18.0.3 (0, 5) +1612503000: Socket error on client , disconnecting. +1612503020: New connection from 172.18.0.3 on port 1883. +1612503020: Sending CONNACK to 172.18.0.3 (0, 5) +1612503020: Socket error on client , disconnecting. +1612503040: New connection from 172.18.0.3 on port 1883. +1612503040: Sending CONNACK to 172.18.0.3 (0, 5) +1612503040: Socket error on client , disconnecting. +1612503060: New connection from 172.18.0.3 on port 1883. +1612503060: Sending CONNACK to 172.18.0.3 (0, 5) +1612503060: Socket error on client , disconnecting. +1612503080: New connection from 172.18.0.3 on port 1883. +1612503080: Sending CONNACK to 172.18.0.3 (0, 5) +1612503080: Socket error on client , disconnecting. +1612503100: New connection from 172.18.0.3 on port 1883. +1612503100: Sending CONNACK to 172.18.0.3 (0, 5) +1612503100: Socket error on client , disconnecting. +1612503120: New connection from 172.18.0.3 on port 1883. +1612503120: Sending CONNACK to 172.18.0.3 (0, 5) +1612503120: Socket error on client , disconnecting. +1612503140: New connection from 172.18.0.3 on port 1883. +1612503140: Sending CONNACK to 172.18.0.3 (0, 5) +1612503140: Socket error on client , disconnecting. +1612503160: New connection from 172.18.0.3 on port 1883. +1612503160: Sending CONNACK to 172.18.0.3 (0, 5) +1612503160: Socket error on client , disconnecting. +1612503180: New connection from 172.18.0.3 on port 1883. +1612503180: Sending CONNACK to 172.18.0.3 (0, 5) +1612503180: Socket error on client , disconnecting. +1612503200: New connection from 172.18.0.3 on port 1883. +1612503200: Sending CONNACK to 172.18.0.3 (0, 5) +1612503200: Socket error on client , disconnecting. +1612503220: New connection from 172.18.0.3 on port 1883. +1612503220: Sending CONNACK to 172.18.0.3 (0, 5) +1612503220: Socket error on client , disconnecting. +1612503240: New connection from 172.18.0.3 on port 1883. +1612503240: Sending CONNACK to 172.18.0.3 (0, 5) +1612503240: Socket error on client , disconnecting. +1612503260: New connection from 172.18.0.3 on port 1883. +1612503260: Sending CONNACK to 172.18.0.3 (0, 5) +1612503260: Socket error on client , disconnecting. +1612503280: New connection from 172.18.0.3 on port 1883. +1612503280: Sending CONNACK to 172.18.0.3 (0, 5) +1612503280: Socket error on client , disconnecting. +1612503300: New connection from 172.18.0.3 on port 1883. +1612503300: Sending CONNACK to 172.18.0.3 (0, 5) +1612503300: Socket error on client , disconnecting. +1612503320: New connection from 172.18.0.3 on port 1883. +1612503320: Sending CONNACK to 172.18.0.3 (0, 5) +1612503320: Socket error on client , disconnecting. +1612503340: New connection from 172.18.0.3 on port 1883. +1612503340: Sending CONNACK to 172.18.0.3 (0, 5) +1612503340: Socket error on client , disconnecting. +1612503360: New connection from 172.18.0.3 on port 1883. +1612503360: Sending CONNACK to 172.18.0.3 (0, 5) +1612503360: Socket error on client , disconnecting. +1612503380: New connection from 172.18.0.3 on port 1883. +1612503380: Sending CONNACK to 172.18.0.3 (0, 5) +1612503380: Socket error on client , disconnecting. +1612503400: New connection from 172.18.0.3 on port 1883. +1612503400: Sending CONNACK to 172.18.0.3 (0, 5) +1612503400: Socket error on client , disconnecting. +1612503420: New connection from 172.18.0.3 on port 1883. +1612503420: Sending CONNACK to 172.18.0.3 (0, 5) +1612503420: Socket error on client , disconnecting. +1612503440: New connection from 172.18.0.3 on port 1883. +1612503440: Sending CONNACK to 172.18.0.3 (0, 5) +1612503440: Socket error on client , disconnecting. +1612503460: New connection from 172.18.0.3 on port 1883. +1612503460: Sending CONNACK to 172.18.0.3 (0, 5) +1612503460: Socket error on client , disconnecting. +1612503480: New connection from 172.18.0.3 on port 1883. +1612503480: Sending CONNACK to 172.18.0.3 (0, 5) +1612503480: Socket error on client , disconnecting. +1612503500: New connection from 172.18.0.3 on port 1883. +1612503500: Sending CONNACK to 172.18.0.3 (0, 5) +1612503500: Socket error on client , disconnecting. +1612503520: New connection from 172.18.0.3 on port 1883. +1612503520: Sending CONNACK to 172.18.0.3 (0, 5) +1612503520: Socket error on client , disconnecting. +1612503540: New connection from 172.18.0.3 on port 1883. +1612503540: Sending CONNACK to 172.18.0.3 (0, 5) +1612503540: Socket error on client , disconnecting. +1612503560: New connection from 172.18.0.3 on port 1883. +1612503560: Sending CONNACK to 172.18.0.3 (0, 5) +1612503560: Socket error on client , disconnecting. +1612503580: New connection from 172.18.0.3 on port 1883. +1612503580: Sending CONNACK to 172.18.0.3 (0, 5) +1612503580: Socket error on client , disconnecting. +1612503600: New connection from 172.18.0.3 on port 1883. +1612503600: Sending CONNACK to 172.18.0.3 (0, 5) +1612503600: Socket error on client , disconnecting. +1612503620: New connection from 172.18.0.3 on port 1883. +1612503620: Sending CONNACK to 172.18.0.3 (0, 5) +1612503620: Socket error on client , disconnecting. +1612503640: New connection from 172.18.0.3 on port 1883. +1612503640: Sending CONNACK to 172.18.0.3 (0, 5) +1612503640: Socket error on client , disconnecting. +1612503660: New connection from 172.18.0.3 on port 1883. +1612503660: Sending CONNACK to 172.18.0.3 (0, 5) +1612503660: Socket error on client , disconnecting. +1612503680: New connection from 172.18.0.3 on port 1883. +1612503680: Sending CONNACK to 172.18.0.3 (0, 5) +1612503680: Socket error on client , disconnecting. +1612503700: New connection from 172.18.0.3 on port 1883. +1612503700: Sending CONNACK to 172.18.0.3 (0, 5) +1612503700: Socket error on client , disconnecting. +1612503720: New connection from 172.18.0.3 on port 1883. +1612503720: Sending CONNACK to 172.18.0.3 (0, 5) +1612503720: Socket error on client , disconnecting. +1612503740: New connection from 172.18.0.3 on port 1883. +1612503740: Sending CONNACK to 172.18.0.3 (0, 5) +1612503740: Socket error on client , disconnecting. +1612503760: New connection from 172.18.0.3 on port 1883. +1612503760: Sending CONNACK to 172.18.0.3 (0, 5) +1612503760: Socket error on client , disconnecting. +1612503780: New connection from 172.18.0.3 on port 1883. +1612503780: Sending CONNACK to 172.18.0.3 (0, 5) +1612503780: Socket error on client , disconnecting. +1612503800: New connection from 172.18.0.3 on port 1883. +1612503800: Sending CONNACK to 172.18.0.3 (0, 5) +1612503800: Socket error on client , disconnecting. +1612503820: New connection from 172.18.0.3 on port 1883. +1612503820: Sending CONNACK to 172.18.0.3 (0, 5) +1612503820: Socket error on client , disconnecting. +1612503840: New connection from 172.18.0.3 on port 1883. +1612503840: Sending CONNACK to 172.18.0.3 (0, 5) +1612503840: Socket error on client , disconnecting. +1612503860: New connection from 172.18.0.3 on port 1883. +1612503860: Sending CONNACK to 172.18.0.3 (0, 5) +1612503860: Socket error on client , disconnecting. +1612503880: New connection from 172.18.0.3 on port 1883. +1612503880: Sending CONNACK to 172.18.0.3 (0, 5) +1612503880: Socket error on client , disconnecting. +1612503900: New connection from 172.18.0.3 on port 1883. +1612503900: Sending CONNACK to 172.18.0.3 (0, 5) +1612503900: Socket error on client , disconnecting. +1612503920: New connection from 172.18.0.3 on port 1883. +1612503920: Sending CONNACK to 172.18.0.3 (0, 5) +1612503920: Socket error on client , disconnecting. +1612503940: New connection from 172.18.0.3 on port 1883. +1612503940: Sending CONNACK to 172.18.0.3 (0, 5) +1612503940: Socket error on client , disconnecting. +1612503960: New connection from 172.18.0.3 on port 1883. +1612503960: Sending CONNACK to 172.18.0.3 (0, 5) +1612503960: Socket error on client , disconnecting. +1612503980: New connection from 172.18.0.3 on port 1883. +1612503980: Sending CONNACK to 172.18.0.3 (0, 5) +1612503980: Socket error on client , disconnecting. +1612504000: New connection from 172.18.0.3 on port 1883. +1612504000: Sending CONNACK to 172.18.0.3 (0, 5) +1612504000: Socket error on client , disconnecting. +1612504020: New connection from 172.18.0.3 on port 1883. +1612504020: Sending CONNACK to 172.18.0.3 (0, 5) +1612504020: Socket error on client , disconnecting. +1612504040: New connection from 172.18.0.3 on port 1883. +1612504040: Sending CONNACK to 172.18.0.3 (0, 5) +1612504040: Socket error on client , disconnecting. +1612504049: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612504049: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612504049: Error: Permission denied. +1612504060: New connection from 172.18.0.3 on port 1883. +1612504060: Sending CONNACK to 172.18.0.3 (0, 5) +1612504060: Socket error on client , disconnecting. +1612504080: New connection from 172.18.0.3 on port 1883. +1612504080: Sending CONNACK to 172.18.0.3 (0, 5) +1612504080: Socket error on client , disconnecting. +1612504100: New connection from 172.18.0.3 on port 1883. +1612504100: Sending CONNACK to 172.18.0.3 (0, 5) +1612504100: Socket error on client , disconnecting. +1612504120: New connection from 172.18.0.3 on port 1883. +1612504120: Sending CONNACK to 172.18.0.3 (0, 5) +1612504120: Socket error on client , disconnecting. +1612504140: New connection from 172.18.0.3 on port 1883. +1612504140: Sending CONNACK to 172.18.0.3 (0, 5) +1612504140: Socket error on client , disconnecting. +1612504160: New connection from 172.18.0.3 on port 1883. +1612504160: Sending CONNACK to 172.18.0.3 (0, 5) +1612504160: Socket error on client , disconnecting. +1612504180: New connection from 172.18.0.3 on port 1883. +1612504180: Sending CONNACK to 172.18.0.3 (0, 5) +1612504180: Socket error on client , disconnecting. +1612504200: New connection from 172.18.0.3 on port 1883. +1612504200: Sending CONNACK to 172.18.0.3 (0, 5) +1612504200: Socket error on client , disconnecting. +1612504220: New connection from 172.18.0.3 on port 1883. +1612504220: Sending CONNACK to 172.18.0.3 (0, 5) +1612504220: Socket error on client , disconnecting. +1612504240: New connection from 172.18.0.3 on port 1883. +1612504240: Sending CONNACK to 172.18.0.3 (0, 5) +1612504240: Socket error on client , disconnecting. +1612504260: New connection from 172.18.0.3 on port 1883. +1612504260: Sending CONNACK to 172.18.0.3 (0, 5) +1612504260: Socket error on client , disconnecting. +1612504280: New connection from 172.18.0.3 on port 1883. +1612504280: Sending CONNACK to 172.18.0.3 (0, 5) +1612504280: Socket error on client , disconnecting. +1612504300: New connection from 172.18.0.3 on port 1883. +1612504300: Sending CONNACK to 172.18.0.3 (0, 5) +1612504300: Socket error on client , disconnecting. +1612504320: New connection from 172.18.0.3 on port 1883. +1612504320: Sending CONNACK to 172.18.0.3 (0, 5) +1612504320: Socket error on client , disconnecting. +1612504340: New connection from 172.18.0.3 on port 1883. +1612504340: Sending CONNACK to 172.18.0.3 (0, 5) +1612504340: Socket error on client , disconnecting. +1612504360: New connection from 172.18.0.3 on port 1883. +1612504360: Sending CONNACK to 172.18.0.3 (0, 5) +1612504360: Socket error on client , disconnecting. +1612504380: New connection from 172.18.0.3 on port 1883. +1612504380: Sending CONNACK to 172.18.0.3 (0, 5) +1612504380: Socket error on client , disconnecting. +1612504400: New connection from 172.18.0.3 on port 1883. +1612504400: Sending CONNACK to 172.18.0.3 (0, 5) +1612504400: Socket error on client , disconnecting. +1612504420: New connection from 172.18.0.3 on port 1883. +1612504420: Sending CONNACK to 172.18.0.3 (0, 5) +1612504420: Socket error on client , disconnecting. +1612504440: New connection from 172.18.0.3 on port 1883. +1612504440: Sending CONNACK to 172.18.0.3 (0, 5) +1612504440: Socket error on client , disconnecting. +1612504460: New connection from 172.18.0.3 on port 1883. +1612504460: Sending CONNACK to 172.18.0.3 (0, 5) +1612504460: Socket error on client , disconnecting. +1612504480: New connection from 172.18.0.3 on port 1883. +1612504480: Sending CONNACK to 172.18.0.3 (0, 5) +1612504480: Socket error on client , disconnecting. +1612504500: New connection from 172.18.0.3 on port 1883. +1612504500: Sending CONNACK to 172.18.0.3 (0, 5) +1612504500: Socket error on client , disconnecting. +1612504520: New connection from 172.18.0.3 on port 1883. +1612504520: Sending CONNACK to 172.18.0.3 (0, 5) +1612504520: Socket error on client , disconnecting. +1612504540: New connection from 172.18.0.3 on port 1883. +1612504540: Sending CONNACK to 172.18.0.3 (0, 5) +1612504540: Socket error on client , disconnecting. +1612504560: New connection from 172.18.0.3 on port 1883. +1612504560: Sending CONNACK to 172.18.0.3 (0, 5) +1612504560: Socket error on client , disconnecting. +1612504580: New connection from 172.18.0.3 on port 1883. +1612504580: Sending CONNACK to 172.18.0.3 (0, 5) +1612504580: Socket error on client , disconnecting. +1612504600: New connection from 172.18.0.3 on port 1883. +1612504600: Sending CONNACK to 172.18.0.3 (0, 5) +1612504600: Socket error on client , disconnecting. +1612504620: New connection from 172.18.0.3 on port 1883. +1612504620: Sending CONNACK to 172.18.0.3 (0, 5) +1612504620: Socket error on client , disconnecting. +1612504640: New connection from 172.18.0.3 on port 1883. +1612504640: Sending CONNACK to 172.18.0.3 (0, 5) +1612504640: Socket error on client , disconnecting. +1612504660: New connection from 172.18.0.3 on port 1883. +1612504660: Sending CONNACK to 172.18.0.3 (0, 5) +1612504660: Socket error on client , disconnecting. +1612504680: New connection from 172.18.0.3 on port 1883. +1612504680: Sending CONNACK to 172.18.0.3 (0, 5) +1612504680: Socket error on client , disconnecting. +1612504700: New connection from 172.18.0.3 on port 1883. +1612504700: Sending CONNACK to 172.18.0.3 (0, 5) +1612504700: Socket error on client , disconnecting. +1612504720: New connection from 172.18.0.3 on port 1883. +1612504720: Sending CONNACK to 172.18.0.3 (0, 5) +1612504720: Socket error on client , disconnecting. +1612504740: New connection from 172.18.0.3 on port 1883. +1612504740: Sending CONNACK to 172.18.0.3 (0, 5) +1612504740: Socket error on client , disconnecting. +1612504760: New connection from 172.18.0.3 on port 1883. +1612504760: Sending CONNACK to 172.18.0.3 (0, 5) +1612504760: Socket error on client , disconnecting. +1612504780: New connection from 172.18.0.3 on port 1883. +1612504780: Sending CONNACK to 172.18.0.3 (0, 5) +1612504780: Socket error on client , disconnecting. +1612504800: New connection from 172.18.0.3 on port 1883. +1612504800: Sending CONNACK to 172.18.0.3 (0, 5) +1612504800: Socket error on client , disconnecting. +1612504820: New connection from 172.18.0.3 on port 1883. +1612504820: Sending CONNACK to 172.18.0.3 (0, 5) +1612504820: Socket error on client , disconnecting. +1612504840: New connection from 172.18.0.3 on port 1883. +1612504840: Sending CONNACK to 172.18.0.3 (0, 5) +1612504840: Socket error on client , disconnecting. +1612504860: New connection from 172.18.0.3 on port 1883. +1612504860: Sending CONNACK to 172.18.0.3 (0, 5) +1612504860: Socket error on client , disconnecting. +1612504880: New connection from 172.18.0.3 on port 1883. +1612504880: Sending CONNACK to 172.18.0.3 (0, 5) +1612504880: Socket error on client , disconnecting. +1612504900: New connection from 172.18.0.3 on port 1883. +1612504900: Sending CONNACK to 172.18.0.3 (0, 5) +1612504900: Socket error on client , disconnecting. +1612504920: New connection from 172.18.0.3 on port 1883. +1612504920: Sending CONNACK to 172.18.0.3 (0, 5) +1612504920: Socket error on client , disconnecting. +1612504940: New connection from 172.18.0.3 on port 1883. +1612504940: Sending CONNACK to 172.18.0.3 (0, 5) +1612504940: Socket error on client , disconnecting. +1612504960: New connection from 172.18.0.3 on port 1883. +1612504960: Sending CONNACK to 172.18.0.3 (0, 5) +1612504960: Socket error on client , disconnecting. +1612504980: New connection from 172.18.0.3 on port 1883. +1612504980: Sending CONNACK to 172.18.0.3 (0, 5) +1612504980: Socket error on client , disconnecting. +1612505000: New connection from 172.18.0.3 on port 1883. +1612505000: Sending CONNACK to 172.18.0.3 (0, 5) +1612505000: Socket error on client , disconnecting. +1612505020: New connection from 172.18.0.3 on port 1883. +1612505020: Sending CONNACK to 172.18.0.3 (0, 5) +1612505020: Socket error on client , disconnecting. +1612505040: New connection from 172.18.0.3 on port 1883. +1612505040: Sending CONNACK to 172.18.0.3 (0, 5) +1612505040: Socket error on client , disconnecting. +1612505060: New connection from 172.18.0.3 on port 1883. +1612505060: Sending CONNACK to 172.18.0.3 (0, 5) +1612505060: Socket error on client , disconnecting. +1612505080: New connection from 172.18.0.3 on port 1883. +1612505080: Sending CONNACK to 172.18.0.3 (0, 5) +1612505080: Socket error on client , disconnecting. +1612505100: New connection from 172.18.0.3 on port 1883. +1612505100: Sending CONNACK to 172.18.0.3 (0, 5) +1612505100: Socket error on client , disconnecting. +1612505120: New connection from 172.18.0.3 on port 1883. +1612505120: Sending CONNACK to 172.18.0.3 (0, 5) +1612505120: Socket error on client , disconnecting. +1612505140: New connection from 172.18.0.3 on port 1883. +1612505140: Sending CONNACK to 172.18.0.3 (0, 5) +1612505140: Socket error on client , disconnecting. +1612505160: New connection from 172.18.0.3 on port 1883. +1612505160: Sending CONNACK to 172.18.0.3 (0, 5) +1612505160: Socket error on client , disconnecting. +1612505180: New connection from 172.18.0.3 on port 1883. +1612505180: Sending CONNACK to 172.18.0.3 (0, 5) +1612505180: Socket error on client , disconnecting. +1612505200: New connection from 172.18.0.3 on port 1883. +1612505200: Sending CONNACK to 172.18.0.3 (0, 5) +1612505200: Socket error on client , disconnecting. +1612505220: New connection from 172.18.0.3 on port 1883. +1612505220: Sending CONNACK to 172.18.0.3 (0, 5) +1612505220: Socket error on client , disconnecting. +1612505240: New connection from 172.18.0.3 on port 1883. +1612505240: Sending CONNACK to 172.18.0.3 (0, 5) +1612505240: Socket error on client , disconnecting. +1612505260: New connection from 172.18.0.3 on port 1883. +1612505260: Sending CONNACK to 172.18.0.3 (0, 5) +1612505260: Socket error on client , disconnecting. +1612505280: New connection from 172.18.0.3 on port 1883. +1612505280: Sending CONNACK to 172.18.0.3 (0, 5) +1612505280: Socket error on client , disconnecting. +1612505300: New connection from 172.18.0.3 on port 1883. +1612505300: Sending CONNACK to 172.18.0.3 (0, 5) +1612505300: Socket error on client , disconnecting. +1612505320: New connection from 172.18.0.3 on port 1883. +1612505320: Sending CONNACK to 172.18.0.3 (0, 5) +1612505320: Socket error on client , disconnecting. +1612505340: New connection from 172.18.0.3 on port 1883. +1612505340: Sending CONNACK to 172.18.0.3 (0, 5) +1612505340: Socket error on client , disconnecting. +1612505360: New connection from 172.18.0.3 on port 1883. +1612505360: Sending CONNACK to 172.18.0.3 (0, 5) +1612505360: Socket error on client , disconnecting. +1612505380: New connection from 172.18.0.3 on port 1883. +1612505380: Sending CONNACK to 172.18.0.3 (0, 5) +1612505380: Socket error on client , disconnecting. +1612505400: New connection from 172.18.0.3 on port 1883. +1612505400: Sending CONNACK to 172.18.0.3 (0, 5) +1612505400: Socket error on client , disconnecting. +1612505420: New connection from 172.18.0.3 on port 1883. +1612505420: Sending CONNACK to 172.18.0.3 (0, 5) +1612505420: Socket error on client , disconnecting. +1612505440: New connection from 172.18.0.3 on port 1883. +1612505440: Sending CONNACK to 172.18.0.3 (0, 5) +1612505440: Socket error on client , disconnecting. +1612505460: New connection from 172.18.0.3 on port 1883. +1612505460: Sending CONNACK to 172.18.0.3 (0, 5) +1612505460: Socket error on client , disconnecting. +1612505480: New connection from 172.18.0.3 on port 1883. +1612505480: Sending CONNACK to 172.18.0.3 (0, 5) +1612505480: Socket error on client , disconnecting. +1612505500: New connection from 172.18.0.3 on port 1883. +1612505500: Sending CONNACK to 172.18.0.3 (0, 5) +1612505500: Socket error on client , disconnecting. +1612505520: New connection from 172.18.0.3 on port 1883. +1612505520: Sending CONNACK to 172.18.0.3 (0, 5) +1612505520: Socket error on client , disconnecting. +1612505540: New connection from 172.18.0.3 on port 1883. +1612505540: Sending CONNACK to 172.18.0.3 (0, 5) +1612505540: Socket error on client , disconnecting. +1612505560: New connection from 172.18.0.3 on port 1883. +1612505560: Sending CONNACK to 172.18.0.3 (0, 5) +1612505560: Socket error on client , disconnecting. +1612505580: New connection from 172.18.0.3 on port 1883. +1612505580: Sending CONNACK to 172.18.0.3 (0, 5) +1612505580: Socket error on client , disconnecting. +1612505600: New connection from 172.18.0.3 on port 1883. +1612505600: Sending CONNACK to 172.18.0.3 (0, 5) +1612505600: Socket error on client , disconnecting. +1612505620: New connection from 172.18.0.3 on port 1883. +1612505620: Sending CONNACK to 172.18.0.3 (0, 5) +1612505620: Socket error on client , disconnecting. +1612505640: New connection from 172.18.0.3 on port 1883. +1612505640: Sending CONNACK to 172.18.0.3 (0, 5) +1612505640: Socket error on client , disconnecting. +1612505660: New connection from 172.18.0.3 on port 1883. +1612505660: Sending CONNACK to 172.18.0.3 (0, 5) +1612505660: Socket error on client , disconnecting. +1612505680: New connection from 172.18.0.3 on port 1883. +1612505680: Sending CONNACK to 172.18.0.3 (0, 5) +1612505680: Socket error on client , disconnecting. +1612505700: New connection from 172.18.0.3 on port 1883. +1612505700: Sending CONNACK to 172.18.0.3 (0, 5) +1612505700: Socket error on client , disconnecting. +1612505720: New connection from 172.18.0.3 on port 1883. +1612505720: Sending CONNACK to 172.18.0.3 (0, 5) +1612505720: Socket error on client , disconnecting. +1612505740: New connection from 172.18.0.3 on port 1883. +1612505740: Sending CONNACK to 172.18.0.3 (0, 5) +1612505740: Socket error on client , disconnecting. +1612505760: New connection from 172.18.0.3 on port 1883. +1612505760: Sending CONNACK to 172.18.0.3 (0, 5) +1612505760: Socket error on client , disconnecting. +1612505780: New connection from 172.18.0.3 on port 1883. +1612505780: Sending CONNACK to 172.18.0.3 (0, 5) +1612505780: Socket error on client , disconnecting. +1612505800: New connection from 172.18.0.3 on port 1883. +1612505800: Sending CONNACK to 172.18.0.3 (0, 5) +1612505800: Socket error on client , disconnecting. +1612505820: New connection from 172.18.0.3 on port 1883. +1612505820: Sending CONNACK to 172.18.0.3 (0, 5) +1612505820: Socket error on client , disconnecting. +1612505840: New connection from 172.18.0.3 on port 1883. +1612505840: Sending CONNACK to 172.18.0.3 (0, 5) +1612505840: Socket error on client , disconnecting. +1612505850: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612505850: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612505850: Error: Permission denied. +1612505860: New connection from 172.18.0.3 on port 1883. +1612505860: Sending CONNACK to 172.18.0.3 (0, 5) +1612505860: Socket error on client , disconnecting. +1612505880: New connection from 172.18.0.3 on port 1883. +1612505880: Sending CONNACK to 172.18.0.3 (0, 5) +1612505880: Socket error on client , disconnecting. +1612505900: New connection from 172.18.0.3 on port 1883. +1612505900: Sending CONNACK to 172.18.0.3 (0, 5) +1612505900: Socket error on client , disconnecting. +1612505920: New connection from 172.18.0.3 on port 1883. +1612505920: Sending CONNACK to 172.18.0.3 (0, 5) +1612505920: Socket error on client , disconnecting. +1612505940: New connection from 172.18.0.3 on port 1883. +1612505940: Sending CONNACK to 172.18.0.3 (0, 5) +1612505940: Socket error on client , disconnecting. +1612505960: New connection from 172.18.0.3 on port 1883. +1612505960: Sending CONNACK to 172.18.0.3 (0, 5) +1612505960: Socket error on client , disconnecting. +1612505980: New connection from 172.18.0.3 on port 1883. +1612505980: Sending CONNACK to 172.18.0.3 (0, 5) +1612505980: Socket error on client , disconnecting. +1612506000: New connection from 172.18.0.3 on port 1883. +1612506000: Sending CONNACK to 172.18.0.3 (0, 5) +1612506000: Socket error on client , disconnecting. +1612506020: New connection from 172.18.0.3 on port 1883. +1612506020: Sending CONNACK to 172.18.0.3 (0, 5) +1612506020: Socket error on client , disconnecting. +1612506040: New connection from 172.18.0.3 on port 1883. +1612506040: Sending CONNACK to 172.18.0.3 (0, 5) +1612506040: Socket error on client , disconnecting. +1612506060: New connection from 172.18.0.3 on port 1883. +1612506060: Sending CONNACK to 172.18.0.3 (0, 5) +1612506060: Socket error on client , disconnecting. +1612506080: New connection from 172.18.0.3 on port 1883. +1612506080: Sending CONNACK to 172.18.0.3 (0, 5) +1612506080: Socket error on client , disconnecting. +1612506100: New connection from 172.18.0.3 on port 1883. +1612506100: Sending CONNACK to 172.18.0.3 (0, 5) +1612506100: Socket error on client , disconnecting. +1612506120: New connection from 172.18.0.3 on port 1883. +1612506120: Sending CONNACK to 172.18.0.3 (0, 5) +1612506120: Socket error on client , disconnecting. +1612506140: New connection from 172.18.0.3 on port 1883. +1612506140: Sending CONNACK to 172.18.0.3 (0, 5) +1612506140: Socket error on client , disconnecting. +1612506160: New connection from 172.18.0.3 on port 1883. +1612506160: Sending CONNACK to 172.18.0.3 (0, 5) +1612506160: Socket error on client , disconnecting. +1612506180: New connection from 172.18.0.3 on port 1883. +1612506180: Sending CONNACK to 172.18.0.3 (0, 5) +1612506180: Socket error on client , disconnecting. +1612506200: New connection from 172.18.0.3 on port 1883. +1612506200: Sending CONNACK to 172.18.0.3 (0, 5) +1612506200: Socket error on client , disconnecting. +1612506220: New connection from 172.18.0.3 on port 1883. +1612506220: Sending CONNACK to 172.18.0.3 (0, 5) +1612506220: Socket error on client , disconnecting. +1612506240: New connection from 172.18.0.3 on port 1883. +1612506240: Sending CONNACK to 172.18.0.3 (0, 5) +1612506240: Socket error on client , disconnecting. +1612506260: New connection from 172.18.0.3 on port 1883. +1612506260: Sending CONNACK to 172.18.0.3 (0, 5) +1612506260: Socket error on client , disconnecting. +1612506280: New connection from 172.18.0.3 on port 1883. +1612506280: Sending CONNACK to 172.18.0.3 (0, 5) +1612506280: Socket error on client , disconnecting. +1612506300: New connection from 172.18.0.3 on port 1883. +1612506300: Sending CONNACK to 172.18.0.3 (0, 5) +1612506300: Socket error on client , disconnecting. +1612506320: New connection from 172.18.0.3 on port 1883. +1612506320: Sending CONNACK to 172.18.0.3 (0, 5) +1612506320: Socket error on client , disconnecting. +1612506340: New connection from 172.18.0.3 on port 1883. +1612506340: Sending CONNACK to 172.18.0.3 (0, 5) +1612506340: Socket error on client , disconnecting. +1612506360: New connection from 172.18.0.3 on port 1883. +1612506360: Sending CONNACK to 172.18.0.3 (0, 5) +1612506360: Socket error on client , disconnecting. +1612506380: New connection from 172.18.0.3 on port 1883. +1612506380: Sending CONNACK to 172.18.0.3 (0, 5) +1612506380: Socket error on client , disconnecting. +1612506400: New connection from 172.18.0.3 on port 1883. +1612506400: Sending CONNACK to 172.18.0.3 (0, 5) +1612506400: Socket error on client , disconnecting. +1612506420: New connection from 172.18.0.3 on port 1883. +1612506420: Sending CONNACK to 172.18.0.3 (0, 5) +1612506420: Socket error on client , disconnecting. +1612506440: New connection from 172.18.0.3 on port 1883. +1612506440: Sending CONNACK to 172.18.0.3 (0, 5) +1612506440: Socket error on client , disconnecting. +1612506460: New connection from 172.18.0.3 on port 1883. +1612506460: Sending CONNACK to 172.18.0.3 (0, 5) +1612506460: Socket error on client , disconnecting. +1612506480: New connection from 172.18.0.3 on port 1883. +1612506480: Sending CONNACK to 172.18.0.3 (0, 5) +1612506480: Socket error on client , disconnecting. +1612506500: New connection from 172.18.0.3 on port 1883. +1612506500: Sending CONNACK to 172.18.0.3 (0, 5) +1612506500: Socket error on client , disconnecting. +1612506520: New connection from 172.18.0.3 on port 1883. +1612506520: Sending CONNACK to 172.18.0.3 (0, 5) +1612506520: Socket error on client , disconnecting. +1612506540: New connection from 172.18.0.3 on port 1883. +1612506540: Sending CONNACK to 172.18.0.3 (0, 5) +1612506540: Socket error on client , disconnecting. +1612506560: New connection from 172.18.0.3 on port 1883. +1612506560: Sending CONNACK to 172.18.0.3 (0, 5) +1612506560: Socket error on client , disconnecting. +1612506580: New connection from 172.18.0.3 on port 1883. +1612506580: Sending CONNACK to 172.18.0.3 (0, 5) +1612506580: Socket error on client , disconnecting. +1612506600: New connection from 172.18.0.3 on port 1883. +1612506600: Sending CONNACK to 172.18.0.3 (0, 5) +1612506600: Socket error on client , disconnecting. +1612506620: New connection from 172.18.0.3 on port 1883. +1612506620: Sending CONNACK to 172.18.0.3 (0, 5) +1612506620: Socket error on client , disconnecting. +1612506640: New connection from 172.18.0.3 on port 1883. +1612506640: Sending CONNACK to 172.18.0.3 (0, 5) +1612506640: Socket error on client , disconnecting. +1612506660: New connection from 172.18.0.3 on port 1883. +1612506660: Sending CONNACK to 172.18.0.3 (0, 5) +1612506660: Socket error on client , disconnecting. +1612506680: New connection from 172.18.0.3 on port 1883. +1612506680: Sending CONNACK to 172.18.0.3 (0, 5) +1612506680: Socket error on client , disconnecting. +1612506700: New connection from 172.18.0.3 on port 1883. +1612506700: Sending CONNACK to 172.18.0.3 (0, 5) +1612506700: Socket error on client , disconnecting. +1612506720: New connection from 172.18.0.3 on port 1883. +1612506720: Sending CONNACK to 172.18.0.3 (0, 5) +1612506720: Socket error on client , disconnecting. +1612506740: New connection from 172.18.0.3 on port 1883. +1612506740: Sending CONNACK to 172.18.0.3 (0, 5) +1612506740: Socket error on client , disconnecting. +1612506760: New connection from 172.18.0.3 on port 1883. +1612506760: Sending CONNACK to 172.18.0.3 (0, 5) +1612506760: Socket error on client , disconnecting. +1612506780: New connection from 172.18.0.3 on port 1883. +1612506780: Sending CONNACK to 172.18.0.3 (0, 5) +1612506780: Socket error on client , disconnecting. +1612506800: New connection from 172.18.0.3 on port 1883. +1612506800: Sending CONNACK to 172.18.0.3 (0, 5) +1612506800: Socket error on client , disconnecting. +1612506820: New connection from 172.18.0.3 on port 1883. +1612506820: Sending CONNACK to 172.18.0.3 (0, 5) +1612506820: Socket error on client , disconnecting. +1612506840: New connection from 172.18.0.3 on port 1883. +1612506840: Sending CONNACK to 172.18.0.3 (0, 5) +1612506840: Socket error on client , disconnecting. +1612506860: New connection from 172.18.0.3 on port 1883. +1612506860: Sending CONNACK to 172.18.0.3 (0, 5) +1612506860: Socket error on client , disconnecting. +1612506880: New connection from 172.18.0.3 on port 1883. +1612506880: Sending CONNACK to 172.18.0.3 (0, 5) +1612506880: Socket error on client , disconnecting. +1612506900: New connection from 172.18.0.3 on port 1883. +1612506900: Sending CONNACK to 172.18.0.3 (0, 5) +1612506900: Socket error on client , disconnecting. +1612506920: New connection from 172.18.0.3 on port 1883. +1612506920: Sending CONNACK to 172.18.0.3 (0, 5) +1612506920: Socket error on client , disconnecting. +1612506940: New connection from 172.18.0.3 on port 1883. +1612506940: Sending CONNACK to 172.18.0.3 (0, 5) +1612506940: Socket error on client , disconnecting. +1612506960: New connection from 172.18.0.3 on port 1883. +1612506960: Sending CONNACK to 172.18.0.3 (0, 5) +1612506960: Socket error on client , disconnecting. +1612506980: New connection from 172.18.0.3 on port 1883. +1612506980: Sending CONNACK to 172.18.0.3 (0, 5) +1612506980: Socket error on client , disconnecting. +1612507000: New connection from 172.18.0.3 on port 1883. +1612507000: Sending CONNACK to 172.18.0.3 (0, 5) +1612507000: Socket error on client , disconnecting. +1612507020: New connection from 172.18.0.3 on port 1883. +1612507020: Sending CONNACK to 172.18.0.3 (0, 5) +1612507020: Socket error on client , disconnecting. +1612507040: New connection from 172.18.0.3 on port 1883. +1612507040: Sending CONNACK to 172.18.0.3 (0, 5) +1612507040: Socket error on client , disconnecting. +1612507060: New connection from 172.18.0.3 on port 1883. +1612507060: Sending CONNACK to 172.18.0.3 (0, 5) +1612507060: Socket error on client , disconnecting. +1612507080: New connection from 172.18.0.3 on port 1883. +1612507080: Sending CONNACK to 172.18.0.3 (0, 5) +1612507080: Socket error on client , disconnecting. +1612507100: New connection from 172.18.0.3 on port 1883. +1612507100: Sending CONNACK to 172.18.0.3 (0, 5) +1612507100: Socket error on client , disconnecting. +1612507120: New connection from 172.18.0.3 on port 1883. +1612507120: Sending CONNACK to 172.18.0.3 (0, 5) +1612507120: Socket error on client , disconnecting. +1612507140: New connection from 172.18.0.3 on port 1883. +1612507140: Sending CONNACK to 172.18.0.3 (0, 5) +1612507140: Socket error on client , disconnecting. +1612507160: New connection from 172.18.0.3 on port 1883. +1612507160: Sending CONNACK to 172.18.0.3 (0, 5) +1612507160: Socket error on client , disconnecting. +1612507180: New connection from 172.18.0.3 on port 1883. +1612507180: Sending CONNACK to 172.18.0.3 (0, 5) +1612507180: Socket error on client , disconnecting. +1612507200: New connection from 172.18.0.3 on port 1883. +1612507200: Sending CONNACK to 172.18.0.3 (0, 5) +1612507200: Socket error on client , disconnecting. +1612507220: New connection from 172.18.0.3 on port 1883. +1612507220: Sending CONNACK to 172.18.0.3 (0, 5) +1612507220: Socket error on client , disconnecting. +1612507240: New connection from 172.18.0.3 on port 1883. +1612507240: Sending CONNACK to 172.18.0.3 (0, 5) +1612507240: Socket error on client , disconnecting. +1612507260: New connection from 172.18.0.3 on port 1883. +1612507260: Sending CONNACK to 172.18.0.3 (0, 5) +1612507260: Socket error on client , disconnecting. +1612507280: New connection from 172.18.0.3 on port 1883. +1612507280: Sending CONNACK to 172.18.0.3 (0, 5) +1612507280: Socket error on client , disconnecting. +1612507300: New connection from 172.18.0.3 on port 1883. +1612507300: Sending CONNACK to 172.18.0.3 (0, 5) +1612507300: Socket error on client , disconnecting. +1612507320: New connection from 172.18.0.3 on port 1883. +1612507320: Sending CONNACK to 172.18.0.3 (0, 5) +1612507320: Socket error on client , disconnecting. +1612507340: New connection from 172.18.0.3 on port 1883. +1612507340: Sending CONNACK to 172.18.0.3 (0, 5) +1612507340: Socket error on client , disconnecting. +1612507360: New connection from 172.18.0.3 on port 1883. +1612507360: Sending CONNACK to 172.18.0.3 (0, 5) +1612507360: Socket error on client , disconnecting. +1612507380: New connection from 172.18.0.3 on port 1883. +1612507380: Sending CONNACK to 172.18.0.3 (0, 5) +1612507380: Socket error on client , disconnecting. +1612507400: New connection from 172.18.0.3 on port 1883. +1612507400: Sending CONNACK to 172.18.0.3 (0, 5) +1612507400: Socket error on client , disconnecting. +1612507420: New connection from 172.18.0.3 on port 1883. +1612507420: Sending CONNACK to 172.18.0.3 (0, 5) +1612507420: Socket error on client , disconnecting. +1612507440: New connection from 172.18.0.3 on port 1883. +1612507440: Sending CONNACK to 172.18.0.3 (0, 5) +1612507440: Socket error on client , disconnecting. +1612507460: New connection from 172.18.0.3 on port 1883. +1612507460: Sending CONNACK to 172.18.0.3 (0, 5) +1612507460: Socket error on client , disconnecting. +1612507480: New connection from 172.18.0.3 on port 1883. +1612507480: Sending CONNACK to 172.18.0.3 (0, 5) +1612507480: Socket error on client , disconnecting. +1612507500: New connection from 172.18.0.3 on port 1883. +1612507500: Sending CONNACK to 172.18.0.3 (0, 5) +1612507500: Socket error on client , disconnecting. +1612507520: New connection from 172.18.0.3 on port 1883. +1612507520: Sending CONNACK to 172.18.0.3 (0, 5) +1612507520: Socket error on client , disconnecting. +1612507540: New connection from 172.18.0.3 on port 1883. +1612507540: Sending CONNACK to 172.18.0.3 (0, 5) +1612507540: Socket error on client , disconnecting. +1612507560: New connection from 172.18.0.3 on port 1883. +1612507560: Sending CONNACK to 172.18.0.3 (0, 5) +1612507560: Socket error on client , disconnecting. +1612507580: New connection from 172.18.0.3 on port 1883. +1612507580: Sending CONNACK to 172.18.0.3 (0, 5) +1612507580: Socket error on client , disconnecting. +1612507600: New connection from 172.18.0.3 on port 1883. +1612507600: Sending CONNACK to 172.18.0.3 (0, 5) +1612507600: Socket error on client , disconnecting. +1612507620: New connection from 172.18.0.3 on port 1883. +1612507620: Sending CONNACK to 172.18.0.3 (0, 5) +1612507620: Socket error on client , disconnecting. +1612507640: New connection from 172.18.0.3 on port 1883. +1612507640: Sending CONNACK to 172.18.0.3 (0, 5) +1612507640: Socket error on client , disconnecting. +1612507651: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612507651: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612507651: Error: Permission denied. +1612507660: New connection from 172.18.0.3 on port 1883. +1612507660: Sending CONNACK to 172.18.0.3 (0, 5) +1612507660: Socket error on client , disconnecting. +1612507680: New connection from 172.18.0.3 on port 1883. +1612507680: Sending CONNACK to 172.18.0.3 (0, 5) +1612507680: Socket error on client , disconnecting. +1612507700: New connection from 172.18.0.3 on port 1883. +1612507700: Sending CONNACK to 172.18.0.3 (0, 5) +1612507700: Socket error on client , disconnecting. +1612507720: New connection from 172.18.0.3 on port 1883. +1612507720: Sending CONNACK to 172.18.0.3 (0, 5) +1612507720: Socket error on client , disconnecting. +1612507740: New connection from 172.18.0.3 on port 1883. +1612507740: Sending CONNACK to 172.18.0.3 (0, 5) +1612507740: Socket error on client , disconnecting. +1612507760: New connection from 172.18.0.3 on port 1883. +1612507760: Sending CONNACK to 172.18.0.3 (0, 5) +1612507760: Socket error on client , disconnecting. +1612507780: New connection from 172.18.0.3 on port 1883. +1612507780: Sending CONNACK to 172.18.0.3 (0, 5) +1612507780: Socket error on client , disconnecting. +1612507800: New connection from 172.18.0.3 on port 1883. +1612507800: Sending CONNACK to 172.18.0.3 (0, 5) +1612507800: Socket error on client , disconnecting. +1612507820: New connection from 172.18.0.3 on port 1883. +1612507820: Sending CONNACK to 172.18.0.3 (0, 5) +1612507820: Socket error on client , disconnecting. +1612507840: New connection from 172.18.0.3 on port 1883. +1612507840: Sending CONNACK to 172.18.0.3 (0, 5) +1612507840: Socket error on client , disconnecting. +1612507860: New connection from 172.18.0.3 on port 1883. +1612507860: Sending CONNACK to 172.18.0.3 (0, 5) +1612507860: Socket error on client , disconnecting. +1612507880: New connection from 172.18.0.3 on port 1883. +1612507880: Sending CONNACK to 172.18.0.3 (0, 5) +1612507880: Socket error on client , disconnecting. +1612507900: New connection from 172.18.0.3 on port 1883. +1612507900: Sending CONNACK to 172.18.0.3 (0, 5) +1612507900: Socket error on client , disconnecting. +1612507920: New connection from 172.18.0.3 on port 1883. +1612507920: Sending CONNACK to 172.18.0.3 (0, 5) +1612507920: Socket error on client , disconnecting. +1612507940: New connection from 172.18.0.3 on port 1883. +1612507940: Sending CONNACK to 172.18.0.3 (0, 5) +1612507940: Socket error on client , disconnecting. +1612507960: New connection from 172.18.0.3 on port 1883. +1612507960: Sending CONNACK to 172.18.0.3 (0, 5) +1612507960: Socket error on client , disconnecting. +1612507980: New connection from 172.18.0.3 on port 1883. +1612507980: Sending CONNACK to 172.18.0.3 (0, 5) +1612507980: Socket error on client , disconnecting. +1612508000: New connection from 172.18.0.3 on port 1883. +1612508000: Sending CONNACK to 172.18.0.3 (0, 5) +1612508000: Socket error on client , disconnecting. +1612508020: New connection from 172.18.0.3 on port 1883. +1612508020: Sending CONNACK to 172.18.0.3 (0, 5) +1612508020: Socket error on client , disconnecting. +1612508040: New connection from 172.18.0.3 on port 1883. +1612508040: Sending CONNACK to 172.18.0.3 (0, 5) +1612508040: Socket error on client , disconnecting. +1612508060: New connection from 172.18.0.3 on port 1883. +1612508060: Sending CONNACK to 172.18.0.3 (0, 5) +1612508060: Socket error on client , disconnecting. +1612508080: New connection from 172.18.0.3 on port 1883. +1612508080: Sending CONNACK to 172.18.0.3 (0, 5) +1612508080: Socket error on client , disconnecting. +1612508100: New connection from 172.18.0.3 on port 1883. +1612508100: Sending CONNACK to 172.18.0.3 (0, 5) +1612508100: Socket error on client , disconnecting. +1612508120: New connection from 172.18.0.3 on port 1883. +1612508120: Sending CONNACK to 172.18.0.3 (0, 5) +1612508120: Socket error on client , disconnecting. +1612508140: New connection from 172.18.0.3 on port 1883. +1612508140: Sending CONNACK to 172.18.0.3 (0, 5) +1612508140: Socket error on client , disconnecting. +1612508160: New connection from 172.18.0.3 on port 1883. +1612508160: Sending CONNACK to 172.18.0.3 (0, 5) +1612508160: Socket error on client , disconnecting. +1612508180: New connection from 172.18.0.3 on port 1883. +1612508180: Sending CONNACK to 172.18.0.3 (0, 5) +1612508180: Socket error on client , disconnecting. +1612508200: New connection from 172.18.0.3 on port 1883. +1612508200: Sending CONNACK to 172.18.0.3 (0, 5) +1612508200: Socket error on client , disconnecting. +1612508220: New connection from 172.18.0.3 on port 1883. +1612508220: Sending CONNACK to 172.18.0.3 (0, 5) +1612508220: Socket error on client , disconnecting. +1612508240: New connection from 172.18.0.3 on port 1883. +1612508240: Sending CONNACK to 172.18.0.3 (0, 5) +1612508240: Socket error on client , disconnecting. +1612508260: New connection from 172.18.0.3 on port 1883. +1612508260: Sending CONNACK to 172.18.0.3 (0, 5) +1612508260: Socket error on client , disconnecting. +1612508280: New connection from 172.18.0.3 on port 1883. +1612508280: Sending CONNACK to 172.18.0.3 (0, 5) +1612508280: Socket error on client , disconnecting. +1612508300: New connection from 172.18.0.3 on port 1883. +1612508300: Sending CONNACK to 172.18.0.3 (0, 5) +1612508300: Socket error on client , disconnecting. +1612508320: New connection from 172.18.0.3 on port 1883. +1612508320: Sending CONNACK to 172.18.0.3 (0, 5) +1612508320: Socket error on client , disconnecting. +1612508340: New connection from 172.18.0.3 on port 1883. +1612508340: Sending CONNACK to 172.18.0.3 (0, 5) +1612508340: Socket error on client , disconnecting. +1612508360: New connection from 172.18.0.3 on port 1883. +1612508360: Sending CONNACK to 172.18.0.3 (0, 5) +1612508360: Socket error on client , disconnecting. +1612508380: New connection from 172.18.0.3 on port 1883. +1612508380: Sending CONNACK to 172.18.0.3 (0, 5) +1612508380: Socket error on client , disconnecting. +1612508400: New connection from 172.18.0.3 on port 1883. +1612508400: Sending CONNACK to 172.18.0.3 (0, 5) +1612508400: Socket error on client , disconnecting. +1612508420: New connection from 172.18.0.3 on port 1883. +1612508420: Sending CONNACK to 172.18.0.3 (0, 5) +1612508420: Socket error on client , disconnecting. +1612508440: New connection from 172.18.0.3 on port 1883. +1612508440: Sending CONNACK to 172.18.0.3 (0, 5) +1612508440: Socket error on client , disconnecting. +1612508460: New connection from 172.18.0.3 on port 1883. +1612508460: Sending CONNACK to 172.18.0.3 (0, 5) +1612508460: Socket error on client , disconnecting. +1612508480: New connection from 172.18.0.3 on port 1883. +1612508480: Sending CONNACK to 172.18.0.3 (0, 5) +1612508480: Socket error on client , disconnecting. +1612508500: New connection from 172.18.0.3 on port 1883. +1612508500: Sending CONNACK to 172.18.0.3 (0, 5) +1612508500: Socket error on client , disconnecting. +1612508520: New connection from 172.18.0.3 on port 1883. +1612508520: Sending CONNACK to 172.18.0.3 (0, 5) +1612508520: Socket error on client , disconnecting. +1612508540: New connection from 172.18.0.3 on port 1883. +1612508540: Sending CONNACK to 172.18.0.3 (0, 5) +1612508540: Socket error on client , disconnecting. +1612508560: New connection from 172.18.0.3 on port 1883. +1612508560: Sending CONNACK to 172.18.0.3 (0, 5) +1612508560: Socket error on client , disconnecting. +1612508580: New connection from 172.18.0.3 on port 1883. +1612508580: Sending CONNACK to 172.18.0.3 (0, 5) +1612508580: Socket error on client , disconnecting. +1612508600: New connection from 172.18.0.3 on port 1883. +1612508600: Sending CONNACK to 172.18.0.3 (0, 5) +1612508600: Socket error on client , disconnecting. +1612508620: New connection from 172.18.0.3 on port 1883. +1612508620: Sending CONNACK to 172.18.0.3 (0, 5) +1612508620: Socket error on client , disconnecting. +1612508640: New connection from 172.18.0.3 on port 1883. +1612508640: Sending CONNACK to 172.18.0.3 (0, 5) +1612508640: Socket error on client , disconnecting. +1612508660: New connection from 172.18.0.3 on port 1883. +1612508660: Sending CONNACK to 172.18.0.3 (0, 5) +1612508660: Socket error on client , disconnecting. +1612508680: New connection from 172.18.0.3 on port 1883. +1612508680: Sending CONNACK to 172.18.0.3 (0, 5) +1612508680: Socket error on client , disconnecting. +1612508700: New connection from 172.18.0.3 on port 1883. +1612508700: Sending CONNACK to 172.18.0.3 (0, 5) +1612508700: Socket error on client , disconnecting. +1612508720: New connection from 172.18.0.3 on port 1883. +1612508720: Sending CONNACK to 172.18.0.3 (0, 5) +1612508720: Socket error on client , disconnecting. +1612508740: New connection from 172.18.0.3 on port 1883. +1612508740: Sending CONNACK to 172.18.0.3 (0, 5) +1612508740: Socket error on client , disconnecting. +1612508760: New connection from 172.18.0.3 on port 1883. +1612508760: Sending CONNACK to 172.18.0.3 (0, 5) +1612508760: Socket error on client , disconnecting. +1612508780: New connection from 172.18.0.3 on port 1883. +1612508780: Sending CONNACK to 172.18.0.3 (0, 5) +1612508780: Socket error on client , disconnecting. +1612508800: New connection from 172.18.0.3 on port 1883. +1612508800: Sending CONNACK to 172.18.0.3 (0, 5) +1612508800: Socket error on client , disconnecting. +1612508820: New connection from 172.18.0.3 on port 1883. +1612508820: Sending CONNACK to 172.18.0.3 (0, 5) +1612508820: Socket error on client , disconnecting. +1612508840: New connection from 172.18.0.3 on port 1883. +1612508840: Sending CONNACK to 172.18.0.3 (0, 5) +1612508840: Socket error on client , disconnecting. +1612508860: New connection from 172.18.0.3 on port 1883. +1612508860: Sending CONNACK to 172.18.0.3 (0, 5) +1612508860: Socket error on client , disconnecting. +1612508880: New connection from 172.18.0.3 on port 1883. +1612508880: Sending CONNACK to 172.18.0.3 (0, 5) +1612508880: Socket error on client , disconnecting. +1612508900: New connection from 172.18.0.3 on port 1883. +1612508900: Sending CONNACK to 172.18.0.3 (0, 5) +1612508900: Socket error on client , disconnecting. +1612508920: New connection from 172.18.0.3 on port 1883. +1612508920: Sending CONNACK to 172.18.0.3 (0, 5) +1612508920: Socket error on client , disconnecting. +1612508940: New connection from 172.18.0.3 on port 1883. +1612508940: Sending CONNACK to 172.18.0.3 (0, 5) +1612508940: Socket error on client , disconnecting. +1612508960: New connection from 172.18.0.3 on port 1883. +1612508960: Sending CONNACK to 172.18.0.3 (0, 5) +1612508960: Socket error on client , disconnecting. +1612508980: New connection from 172.18.0.3 on port 1883. +1612508980: Sending CONNACK to 172.18.0.3 (0, 5) +1612508980: Socket error on client , disconnecting. +1612509000: New connection from 172.18.0.3 on port 1883. +1612509000: Sending CONNACK to 172.18.0.3 (0, 5) +1612509000: Socket error on client , disconnecting. +1612509020: New connection from 172.18.0.3 on port 1883. +1612509020: Sending CONNACK to 172.18.0.3 (0, 5) +1612509020: Socket error on client , disconnecting. +1612509040: New connection from 172.18.0.3 on port 1883. +1612509040: Sending CONNACK to 172.18.0.3 (0, 5) +1612509040: Socket error on client , disconnecting. +1612509060: New connection from 172.18.0.3 on port 1883. +1612509060: Sending CONNACK to 172.18.0.3 (0, 5) +1612509060: Socket error on client , disconnecting. +1612509080: New connection from 172.18.0.3 on port 1883. +1612509080: Sending CONNACK to 172.18.0.3 (0, 5) +1612509080: Socket error on client , disconnecting. +1612509100: New connection from 172.18.0.3 on port 1883. +1612509100: Sending CONNACK to 172.18.0.3 (0, 5) +1612509100: Socket error on client , disconnecting. +1612509120: New connection from 172.18.0.3 on port 1883. +1612509120: Sending CONNACK to 172.18.0.3 (0, 5) +1612509120: Socket error on client , disconnecting. +1612509140: New connection from 172.18.0.3 on port 1883. +1612509140: Sending CONNACK to 172.18.0.3 (0, 5) +1612509140: Socket error on client , disconnecting. +1612509160: New connection from 172.18.0.3 on port 1883. +1612509160: Sending CONNACK to 172.18.0.3 (0, 5) +1612509160: Socket error on client , disconnecting. +1612509180: New connection from 172.18.0.3 on port 1883. +1612509180: Sending CONNACK to 172.18.0.3 (0, 5) +1612509180: Socket error on client , disconnecting. +1612509200: New connection from 172.18.0.3 on port 1883. +1612509200: Sending CONNACK to 172.18.0.3 (0, 5) +1612509200: Socket error on client , disconnecting. +1612509220: New connection from 172.18.0.3 on port 1883. +1612509220: Sending CONNACK to 172.18.0.3 (0, 5) +1612509220: Socket error on client , disconnecting. +1612509240: New connection from 172.18.0.3 on port 1883. +1612509240: Sending CONNACK to 172.18.0.3 (0, 5) +1612509240: Socket error on client , disconnecting. +1612509260: New connection from 172.18.0.3 on port 1883. +1612509260: Sending CONNACK to 172.18.0.3 (0, 5) +1612509260: Socket error on client , disconnecting. +1612509280: New connection from 172.18.0.3 on port 1883. +1612509280: Sending CONNACK to 172.18.0.3 (0, 5) +1612509280: Socket error on client , disconnecting. +1612509300: New connection from 172.18.0.3 on port 1883. +1612509300: Sending CONNACK to 172.18.0.3 (0, 5) +1612509300: Socket error on client , disconnecting. +1612509320: New connection from 172.18.0.3 on port 1883. +1612509320: Sending CONNACK to 172.18.0.3 (0, 5) +1612509320: Socket error on client , disconnecting. +1612509340: New connection from 172.18.0.3 on port 1883. +1612509340: Sending CONNACK to 172.18.0.3 (0, 5) +1612509340: Socket error on client , disconnecting. +1612509360: New connection from 172.18.0.3 on port 1883. +1612509360: Sending CONNACK to 172.18.0.3 (0, 5) +1612509360: Socket error on client , disconnecting. +1612509380: New connection from 172.18.0.3 on port 1883. +1612509380: Sending CONNACK to 172.18.0.3 (0, 5) +1612509380: Socket error on client , disconnecting. +1612509400: New connection from 172.18.0.3 on port 1883. +1612509400: Sending CONNACK to 172.18.0.3 (0, 5) +1612509400: Socket error on client , disconnecting. +1612509420: New connection from 172.18.0.3 on port 1883. +1612509420: Sending CONNACK to 172.18.0.3 (0, 5) +1612509420: Socket error on client , disconnecting. +1612509440: New connection from 172.18.0.3 on port 1883. +1612509440: Sending CONNACK to 172.18.0.3 (0, 5) +1612509440: Socket error on client , disconnecting. +1612509452: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612509452: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612509452: Error: Permission denied. +1612509460: New connection from 172.18.0.3 on port 1883. +1612509460: Sending CONNACK to 172.18.0.3 (0, 5) +1612509460: Socket error on client , disconnecting. +1612509480: New connection from 172.18.0.3 on port 1883. +1612509480: Sending CONNACK to 172.18.0.3 (0, 5) +1612509480: Socket error on client , disconnecting. +1612509500: New connection from 172.18.0.3 on port 1883. +1612509500: Sending CONNACK to 172.18.0.3 (0, 5) +1612509500: Socket error on client , disconnecting. +1612509520: New connection from 172.18.0.3 on port 1883. +1612509520: Sending CONNACK to 172.18.0.3 (0, 5) +1612509520: Socket error on client , disconnecting. +1612509540: New connection from 172.18.0.3 on port 1883. +1612509540: Sending CONNACK to 172.18.0.3 (0, 5) +1612509540: Socket error on client , disconnecting. +1612509560: New connection from 172.18.0.3 on port 1883. +1612509560: Sending CONNACK to 172.18.0.3 (0, 5) +1612509560: Socket error on client , disconnecting. +1612509580: New connection from 172.18.0.3 on port 1883. +1612509580: Sending CONNACK to 172.18.0.3 (0, 5) +1612509580: Socket error on client , disconnecting. +1612509600: New connection from 172.18.0.3 on port 1883. +1612509600: Sending CONNACK to 172.18.0.3 (0, 5) +1612509600: Socket error on client , disconnecting. +1612509620: New connection from 172.18.0.3 on port 1883. +1612509620: Sending CONNACK to 172.18.0.3 (0, 5) +1612509620: Socket error on client , disconnecting. +1612509640: New connection from 172.18.0.3 on port 1883. +1612509640: Sending CONNACK to 172.18.0.3 (0, 5) +1612509640: Socket error on client , disconnecting. +1612509660: New connection from 172.18.0.3 on port 1883. +1612509660: Sending CONNACK to 172.18.0.3 (0, 5) +1612509660: Socket error on client , disconnecting. +1612509680: New connection from 172.18.0.3 on port 1883. +1612509680: Sending CONNACK to 172.18.0.3 (0, 5) +1612509680: Socket error on client , disconnecting. +1612509700: New connection from 172.18.0.3 on port 1883. +1612509700: Sending CONNACK to 172.18.0.3 (0, 5) +1612509700: Socket error on client , disconnecting. +1612509720: New connection from 172.18.0.3 on port 1883. +1612509720: Sending CONNACK to 172.18.0.3 (0, 5) +1612509720: Socket error on client , disconnecting. +1612509740: New connection from 172.18.0.3 on port 1883. +1612509740: Sending CONNACK to 172.18.0.3 (0, 5) +1612509740: Socket error on client , disconnecting. +1612509760: New connection from 172.18.0.3 on port 1883. +1612509760: Sending CONNACK to 172.18.0.3 (0, 5) +1612509760: Socket error on client , disconnecting. +1612509780: New connection from 172.18.0.3 on port 1883. +1612509780: Sending CONNACK to 172.18.0.3 (0, 5) +1612509780: Socket error on client , disconnecting. +1612509800: New connection from 172.18.0.3 on port 1883. +1612509800: Sending CONNACK to 172.18.0.3 (0, 5) +1612509800: Socket error on client , disconnecting. +1612509820: New connection from 172.18.0.3 on port 1883. +1612509820: Sending CONNACK to 172.18.0.3 (0, 5) +1612509820: Socket error on client , disconnecting. +1612509840: New connection from 172.18.0.3 on port 1883. +1612509840: Sending CONNACK to 172.18.0.3 (0, 5) +1612509840: Socket error on client , disconnecting. +1612509860: New connection from 172.18.0.3 on port 1883. +1612509860: Sending CONNACK to 172.18.0.3 (0, 5) +1612509860: Socket error on client , disconnecting. +1612509880: New connection from 172.18.0.3 on port 1883. +1612509880: Sending CONNACK to 172.18.0.3 (0, 5) +1612509880: Socket error on client , disconnecting. +1612509900: New connection from 172.18.0.3 on port 1883. +1612509900: Sending CONNACK to 172.18.0.3 (0, 5) +1612509900: Socket error on client , disconnecting. +1612509920: New connection from 172.18.0.3 on port 1883. +1612509920: Sending CONNACK to 172.18.0.3 (0, 5) +1612509920: Socket error on client , disconnecting. +1612509940: New connection from 172.18.0.3 on port 1883. +1612509940: Sending CONNACK to 172.18.0.3 (0, 5) +1612509940: Socket error on client , disconnecting. +1612509960: New connection from 172.18.0.3 on port 1883. +1612509960: Sending CONNACK to 172.18.0.3 (0, 5) +1612509960: Socket error on client , disconnecting. +1612509980: New connection from 172.18.0.3 on port 1883. +1612509980: Sending CONNACK to 172.18.0.3 (0, 5) +1612509980: Socket error on client , disconnecting. +1612510000: New connection from 172.18.0.3 on port 1883. +1612510000: Sending CONNACK to 172.18.0.3 (0, 5) +1612510000: Socket error on client , disconnecting. +1612510020: New connection from 172.18.0.3 on port 1883. +1612510020: Sending CONNACK to 172.18.0.3 (0, 5) +1612510020: Socket error on client , disconnecting. +1612510040: New connection from 172.18.0.3 on port 1883. +1612510040: Sending CONNACK to 172.18.0.3 (0, 5) +1612510040: Socket error on client , disconnecting. +1612510060: New connection from 172.18.0.3 on port 1883. +1612510060: Sending CONNACK to 172.18.0.3 (0, 5) +1612510060: Socket error on client , disconnecting. +1612510080: New connection from 172.18.0.3 on port 1883. +1612510080: Sending CONNACK to 172.18.0.3 (0, 5) +1612510080: Socket error on client , disconnecting. +1612510100: New connection from 172.18.0.3 on port 1883. +1612510100: Sending CONNACK to 172.18.0.3 (0, 5) +1612510100: Socket error on client , disconnecting. +1612510120: New connection from 172.18.0.3 on port 1883. +1612510120: Sending CONNACK to 172.18.0.3 (0, 5) +1612510120: Socket error on client , disconnecting. +1612510140: New connection from 172.18.0.3 on port 1883. +1612510140: Sending CONNACK to 172.18.0.3 (0, 5) +1612510140: Socket error on client , disconnecting. +1612510160: New connection from 172.18.0.3 on port 1883. +1612510160: Sending CONNACK to 172.18.0.3 (0, 5) +1612510160: Socket error on client , disconnecting. +1612510180: New connection from 172.18.0.3 on port 1883. +1612510180: Sending CONNACK to 172.18.0.3 (0, 5) +1612510180: Socket error on client , disconnecting. +1612510200: New connection from 172.18.0.3 on port 1883. +1612510200: Sending CONNACK to 172.18.0.3 (0, 5) +1612510200: Socket error on client , disconnecting. +1612510220: New connection from 172.18.0.3 on port 1883. +1612510220: Sending CONNACK to 172.18.0.3 (0, 5) +1612510220: Socket error on client , disconnecting. +1612510240: New connection from 172.18.0.3 on port 1883. +1612510240: Sending CONNACK to 172.18.0.3 (0, 5) +1612510240: Socket error on client , disconnecting. +1612510260: New connection from 172.18.0.3 on port 1883. +1612510260: Sending CONNACK to 172.18.0.3 (0, 5) +1612510260: Socket error on client , disconnecting. +1612510280: New connection from 172.18.0.3 on port 1883. +1612510280: Sending CONNACK to 172.18.0.3 (0, 5) +1612510280: Socket error on client , disconnecting. +1612510300: New connection from 172.18.0.3 on port 1883. +1612510300: Sending CONNACK to 172.18.0.3 (0, 5) +1612510300: Socket error on client , disconnecting. +1612510320: New connection from 172.18.0.3 on port 1883. +1612510320: Sending CONNACK to 172.18.0.3 (0, 5) +1612510320: Socket error on client , disconnecting. +1612510340: New connection from 172.18.0.3 on port 1883. +1612510340: Sending CONNACK to 172.18.0.3 (0, 5) +1612510340: Socket error on client , disconnecting. +1612510360: New connection from 172.18.0.3 on port 1883. +1612510360: Sending CONNACK to 172.18.0.3 (0, 5) +1612510360: Socket error on client , disconnecting. +1612510380: New connection from 172.18.0.3 on port 1883. +1612510380: Sending CONNACK to 172.18.0.3 (0, 5) +1612510380: Socket error on client , disconnecting. +1612510400: New connection from 172.18.0.3 on port 1883. +1612510400: Sending CONNACK to 172.18.0.3 (0, 5) +1612510400: Socket error on client , disconnecting. +1612510420: New connection from 172.18.0.3 on port 1883. +1612510420: Sending CONNACK to 172.18.0.3 (0, 5) +1612510420: Socket error on client , disconnecting. +1612510440: New connection from 172.18.0.3 on port 1883. +1612510440: Sending CONNACK to 172.18.0.3 (0, 5) +1612510440: Socket error on client , disconnecting. +1612510460: New connection from 172.18.0.3 on port 1883. +1612510460: Sending CONNACK to 172.18.0.3 (0, 5) +1612510460: Socket error on client , disconnecting. +1612510480: New connection from 172.18.0.3 on port 1883. +1612510480: Sending CONNACK to 172.18.0.3 (0, 5) +1612510480: Socket error on client , disconnecting. +1612510500: New connection from 172.18.0.3 on port 1883. +1612510500: Sending CONNACK to 172.18.0.3 (0, 5) +1612510500: Socket error on client , disconnecting. +1612510520: New connection from 172.18.0.3 on port 1883. +1612510520: Sending CONNACK to 172.18.0.3 (0, 5) +1612510520: Socket error on client , disconnecting. +1612510540: New connection from 172.18.0.3 on port 1883. +1612510540: Sending CONNACK to 172.18.0.3 (0, 5) +1612510540: Socket error on client , disconnecting. +1612510560: New connection from 172.18.0.3 on port 1883. +1612510560: Sending CONNACK to 172.18.0.3 (0, 5) +1612510560: Socket error on client , disconnecting. +1612510580: New connection from 172.18.0.3 on port 1883. +1612510580: Sending CONNACK to 172.18.0.3 (0, 5) +1612510580: Socket error on client , disconnecting. +1612510600: New connection from 172.18.0.3 on port 1883. +1612510600: Sending CONNACK to 172.18.0.3 (0, 5) +1612510600: Socket error on client , disconnecting. +1612510620: New connection from 172.18.0.3 on port 1883. +1612510620: Sending CONNACK to 172.18.0.3 (0, 5) +1612510620: Socket error on client , disconnecting. +1612510640: New connection from 172.18.0.3 on port 1883. +1612510640: Sending CONNACK to 172.18.0.3 (0, 5) +1612510640: Socket error on client , disconnecting. +1612510660: New connection from 172.18.0.3 on port 1883. +1612510660: Sending CONNACK to 172.18.0.3 (0, 5) +1612510660: Socket error on client , disconnecting. +1612510680: New connection from 172.18.0.3 on port 1883. +1612510680: Sending CONNACK to 172.18.0.3 (0, 5) +1612510680: Socket error on client , disconnecting. +1612510700: New connection from 172.18.0.3 on port 1883. +1612510700: Sending CONNACK to 172.18.0.3 (0, 5) +1612510700: Socket error on client , disconnecting. +1612510720: New connection from 172.18.0.3 on port 1883. +1612510720: Sending CONNACK to 172.18.0.3 (0, 5) +1612510720: Socket error on client , disconnecting. +1612510740: New connection from 172.18.0.3 on port 1883. +1612510740: Sending CONNACK to 172.18.0.3 (0, 5) +1612510740: Socket error on client , disconnecting. +1612510760: New connection from 172.18.0.3 on port 1883. +1612510760: Sending CONNACK to 172.18.0.3 (0, 5) +1612510760: Socket error on client , disconnecting. +1612510780: New connection from 172.18.0.3 on port 1883. +1612510780: Sending CONNACK to 172.18.0.3 (0, 5) +1612510780: Socket error on client , disconnecting. +1612510800: New connection from 172.18.0.3 on port 1883. +1612510800: Sending CONNACK to 172.18.0.3 (0, 5) +1612510800: Socket error on client , disconnecting. +1612510820: New connection from 172.18.0.3 on port 1883. +1612510820: Sending CONNACK to 172.18.0.3 (0, 5) +1612510820: Socket error on client , disconnecting. +1612510840: New connection from 172.18.0.3 on port 1883. +1612510840: Sending CONNACK to 172.18.0.3 (0, 5) +1612510840: Socket error on client , disconnecting. +1612510860: New connection from 172.18.0.3 on port 1883. +1612510860: Sending CONNACK to 172.18.0.3 (0, 5) +1612510860: Socket error on client , disconnecting. +1612510880: New connection from 172.18.0.3 on port 1883. +1612510880: Sending CONNACK to 172.18.0.3 (0, 5) +1612510880: Socket error on client , disconnecting. +1612510900: New connection from 172.18.0.3 on port 1883. +1612510900: Sending CONNACK to 172.18.0.3 (0, 5) +1612510900: Socket error on client , disconnecting. +1612510920: New connection from 172.18.0.3 on port 1883. +1612510920: Sending CONNACK to 172.18.0.3 (0, 5) +1612510920: Socket error on client , disconnecting. +1612510940: New connection from 172.18.0.3 on port 1883. +1612510940: Sending CONNACK to 172.18.0.3 (0, 5) +1612510940: Socket error on client , disconnecting. +1612510960: New connection from 172.18.0.3 on port 1883. +1612510960: Sending CONNACK to 172.18.0.3 (0, 5) +1612510960: Socket error on client , disconnecting. +1612510980: New connection from 172.18.0.3 on port 1883. +1612510980: Sending CONNACK to 172.18.0.3 (0, 5) +1612510980: Socket error on client , disconnecting. +1612511000: New connection from 172.18.0.3 on port 1883. +1612511000: Sending CONNACK to 172.18.0.3 (0, 5) +1612511000: Socket error on client , disconnecting. +1612511020: New connection from 172.18.0.3 on port 1883. +1612511020: Sending CONNACK to 172.18.0.3 (0, 5) +1612511020: Socket error on client , disconnecting. +1612511040: New connection from 172.18.0.3 on port 1883. +1612511040: Sending CONNACK to 172.18.0.3 (0, 5) +1612511040: Socket error on client , disconnecting. +1612511060: New connection from 172.18.0.3 on port 1883. +1612511060: Sending CONNACK to 172.18.0.3 (0, 5) +1612511060: Socket error on client , disconnecting. +1612511080: New connection from 172.18.0.3 on port 1883. +1612511080: Sending CONNACK to 172.18.0.3 (0, 5) +1612511080: Socket error on client , disconnecting. +1612511100: New connection from 172.18.0.3 on port 1883. +1612511100: Sending CONNACK to 172.18.0.3 (0, 5) +1612511100: Socket error on client , disconnecting. +1612511120: New connection from 172.18.0.3 on port 1883. +1612511120: Sending CONNACK to 172.18.0.3 (0, 5) +1612511120: Socket error on client , disconnecting. +1612511140: New connection from 172.18.0.3 on port 1883. +1612511140: Sending CONNACK to 172.18.0.3 (0, 5) +1612511140: Socket error on client , disconnecting. +1612511160: New connection from 172.18.0.3 on port 1883. +1612511160: Sending CONNACK to 172.18.0.3 (0, 5) +1612511160: Socket error on client , disconnecting. +1612511180: New connection from 172.18.0.3 on port 1883. +1612511180: Sending CONNACK to 172.18.0.3 (0, 5) +1612511180: Socket error on client , disconnecting. +1612511200: New connection from 172.18.0.3 on port 1883. +1612511200: Sending CONNACK to 172.18.0.3 (0, 5) +1612511200: Socket error on client , disconnecting. +1612511220: New connection from 172.18.0.3 on port 1883. +1612511220: Sending CONNACK to 172.18.0.3 (0, 5) +1612511220: Socket error on client , disconnecting. +1612511240: New connection from 172.18.0.3 on port 1883. +1612511240: Sending CONNACK to 172.18.0.3 (0, 5) +1612511240: Socket error on client , disconnecting. +1612511253: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612511253: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612511253: Error: Permission denied. +1612511260: New connection from 172.18.0.3 on port 1883. +1612511260: Sending CONNACK to 172.18.0.3 (0, 5) +1612511260: Socket error on client , disconnecting. +1612511280: New connection from 172.18.0.3 on port 1883. +1612511280: Sending CONNACK to 172.18.0.3 (0, 5) +1612511280: Socket error on client , disconnecting. +1612511300: New connection from 172.18.0.3 on port 1883. +1612511300: Sending CONNACK to 172.18.0.3 (0, 5) +1612511300: Socket error on client , disconnecting. +1612511320: New connection from 172.18.0.3 on port 1883. +1612511320: Sending CONNACK to 172.18.0.3 (0, 5) +1612511320: Socket error on client , disconnecting. +1612511340: New connection from 172.18.0.3 on port 1883. +1612511340: Sending CONNACK to 172.18.0.3 (0, 5) +1612511340: Socket error on client , disconnecting. +1612511360: New connection from 172.18.0.3 on port 1883. +1612511360: Sending CONNACK to 172.18.0.3 (0, 5) +1612511360: Socket error on client , disconnecting. +1612511380: New connection from 172.18.0.3 on port 1883. +1612511380: Sending CONNACK to 172.18.0.3 (0, 5) +1612511380: Socket error on client , disconnecting. +1612511400: New connection from 172.18.0.3 on port 1883. +1612511400: Sending CONNACK to 172.18.0.3 (0, 5) +1612511400: Socket error on client , disconnecting. +1612511420: New connection from 172.18.0.3 on port 1883. +1612511420: Sending CONNACK to 172.18.0.3 (0, 5) +1612511420: Socket error on client , disconnecting. +1612511440: New connection from 172.18.0.3 on port 1883. +1612511440: Sending CONNACK to 172.18.0.3 (0, 5) +1612511440: Socket error on client , disconnecting. +1612511460: New connection from 172.18.0.3 on port 1883. +1612511460: Sending CONNACK to 172.18.0.3 (0, 5) +1612511460: Socket error on client , disconnecting. +1612511480: New connection from 172.18.0.3 on port 1883. +1612511480: Sending CONNACK to 172.18.0.3 (0, 5) +1612511480: Socket error on client , disconnecting. +1612511500: New connection from 172.18.0.3 on port 1883. +1612511500: Sending CONNACK to 172.18.0.3 (0, 5) +1612511500: Socket error on client , disconnecting. +1612511520: New connection from 172.18.0.3 on port 1883. +1612511520: Sending CONNACK to 172.18.0.3 (0, 5) +1612511520: Socket error on client , disconnecting. +1612511540: New connection from 172.18.0.3 on port 1883. +1612511540: Sending CONNACK to 172.18.0.3 (0, 5) +1612511540: Socket error on client , disconnecting. +1612511560: New connection from 172.18.0.3 on port 1883. +1612511560: Sending CONNACK to 172.18.0.3 (0, 5) +1612511560: Socket error on client , disconnecting. +1612511580: New connection from 172.18.0.3 on port 1883. +1612511580: Sending CONNACK to 172.18.0.3 (0, 5) +1612511580: Socket error on client , disconnecting. +1612511600: New connection from 172.18.0.3 on port 1883. +1612511600: Sending CONNACK to 172.18.0.3 (0, 5) +1612511600: Socket error on client , disconnecting. +1612511620: New connection from 172.18.0.3 on port 1883. +1612511620: Sending CONNACK to 172.18.0.3 (0, 5) +1612511620: Socket error on client , disconnecting. +1612511640: New connection from 172.18.0.3 on port 1883. +1612511640: Sending CONNACK to 172.18.0.3 (0, 5) +1612511640: Socket error on client , disconnecting. +1612511660: New connection from 172.18.0.3 on port 1883. +1612511660: Sending CONNACK to 172.18.0.3 (0, 5) +1612511660: Socket error on client , disconnecting. +1612511680: New connection from 172.18.0.3 on port 1883. +1612511680: Sending CONNACK to 172.18.0.3 (0, 5) +1612511680: Socket error on client , disconnecting. +1612511700: New connection from 172.18.0.3 on port 1883. +1612511700: Sending CONNACK to 172.18.0.3 (0, 5) +1612511700: Socket error on client , disconnecting. +1612511720: New connection from 172.18.0.3 on port 1883. +1612511720: Sending CONNACK to 172.18.0.3 (0, 5) +1612511720: Socket error on client , disconnecting. +1612511740: New connection from 172.18.0.3 on port 1883. +1612511740: Sending CONNACK to 172.18.0.3 (0, 5) +1612511740: Socket error on client , disconnecting. +1612511760: New connection from 172.18.0.3 on port 1883. +1612511760: Sending CONNACK to 172.18.0.3 (0, 5) +1612511760: Socket error on client , disconnecting. +1612511780: New connection from 172.18.0.3 on port 1883. +1612511780: Sending CONNACK to 172.18.0.3 (0, 5) +1612511780: Socket error on client , disconnecting. +1612511800: New connection from 172.18.0.3 on port 1883. +1612511800: Sending CONNACK to 172.18.0.3 (0, 5) +1612511800: Socket error on client , disconnecting. +1612511820: New connection from 172.18.0.3 on port 1883. +1612511820: Sending CONNACK to 172.18.0.3 (0, 5) +1612511820: Socket error on client , disconnecting. +1612511840: New connection from 172.18.0.3 on port 1883. +1612511840: Sending CONNACK to 172.18.0.3 (0, 5) +1612511840: Socket error on client , disconnecting. +1612511860: New connection from 172.18.0.3 on port 1883. +1612511860: Sending CONNACK to 172.18.0.3 (0, 5) +1612511860: Socket error on client , disconnecting. +1612511880: New connection from 172.18.0.3 on port 1883. +1612511880: Sending CONNACK to 172.18.0.3 (0, 5) +1612511880: Socket error on client , disconnecting. +1612511900: New connection from 172.18.0.3 on port 1883. +1612511900: Sending CONNACK to 172.18.0.3 (0, 5) +1612511900: Socket error on client , disconnecting. +1612511920: New connection from 172.18.0.3 on port 1883. +1612511920: Sending CONNACK to 172.18.0.3 (0, 5) +1612511920: Socket error on client , disconnecting. +1612511940: New connection from 172.18.0.3 on port 1883. +1612511940: Sending CONNACK to 172.18.0.3 (0, 5) +1612511940: Socket error on client , disconnecting. +1612511960: New connection from 172.18.0.3 on port 1883. +1612511960: Sending CONNACK to 172.18.0.3 (0, 5) +1612511960: Socket error on client , disconnecting. +1612511980: New connection from 172.18.0.3 on port 1883. +1612511980: Sending CONNACK to 172.18.0.3 (0, 5) +1612511980: Socket error on client , disconnecting. +1612512000: New connection from 172.18.0.3 on port 1883. +1612512000: Sending CONNACK to 172.18.0.3 (0, 5) +1612512000: Socket error on client , disconnecting. +1612512020: New connection from 172.18.0.3 on port 1883. +1612512020: Sending CONNACK to 172.18.0.3 (0, 5) +1612512020: Socket error on client , disconnecting. +1612512040: New connection from 172.18.0.3 on port 1883. +1612512040: Sending CONNACK to 172.18.0.3 (0, 5) +1612512040: Socket error on client , disconnecting. +1612512060: New connection from 172.18.0.3 on port 1883. +1612512060: Sending CONNACK to 172.18.0.3 (0, 5) +1612512060: Socket error on client , disconnecting. +1612512080: New connection from 172.18.0.3 on port 1883. +1612512080: Sending CONNACK to 172.18.0.3 (0, 5) +1612512080: Socket error on client , disconnecting. +1612512100: New connection from 172.18.0.3 on port 1883. +1612512100: Sending CONNACK to 172.18.0.3 (0, 5) +1612512100: Socket error on client , disconnecting. +1612512120: New connection from 172.18.0.3 on port 1883. +1612512120: Sending CONNACK to 172.18.0.3 (0, 5) +1612512120: Socket error on client , disconnecting. +1612512140: New connection from 172.18.0.3 on port 1883. +1612512140: Sending CONNACK to 172.18.0.3 (0, 5) +1612512140: Socket error on client , disconnecting. +1612512160: New connection from 172.18.0.3 on port 1883. +1612512160: Sending CONNACK to 172.18.0.3 (0, 5) +1612512160: Socket error on client , disconnecting. +1612512180: New connection from 172.18.0.3 on port 1883. +1612512180: Sending CONNACK to 172.18.0.3 (0, 5) +1612512180: Socket error on client , disconnecting. +1612512200: New connection from 172.18.0.3 on port 1883. +1612512200: Sending CONNACK to 172.18.0.3 (0, 5) +1612512200: Socket error on client , disconnecting. +1612512220: New connection from 172.18.0.3 on port 1883. +1612512220: Sending CONNACK to 172.18.0.3 (0, 5) +1612512220: Socket error on client , disconnecting. +1612512240: New connection from 172.18.0.3 on port 1883. +1612512240: Sending CONNACK to 172.18.0.3 (0, 5) +1612512240: Socket error on client , disconnecting. +1612512260: New connection from 172.18.0.3 on port 1883. +1612512260: Sending CONNACK to 172.18.0.3 (0, 5) +1612512260: Socket error on client , disconnecting. +1612512280: New connection from 172.18.0.3 on port 1883. +1612512280: Sending CONNACK to 172.18.0.3 (0, 5) +1612512280: Socket error on client , disconnecting. +1612512300: New connection from 172.18.0.3 on port 1883. +1612512300: Sending CONNACK to 172.18.0.3 (0, 5) +1612512300: Socket error on client , disconnecting. +1612512320: New connection from 172.18.0.3 on port 1883. +1612512320: Sending CONNACK to 172.18.0.3 (0, 5) +1612512320: Socket error on client , disconnecting. +1612512340: New connection from 172.18.0.3 on port 1883. +1612512340: Sending CONNACK to 172.18.0.3 (0, 5) +1612512340: Socket error on client , disconnecting. +1612512360: New connection from 172.18.0.3 on port 1883. +1612512360: Sending CONNACK to 172.18.0.3 (0, 5) +1612512360: Socket error on client , disconnecting. +1612512380: New connection from 172.18.0.3 on port 1883. +1612512380: Sending CONNACK to 172.18.0.3 (0, 5) +1612512380: Socket error on client , disconnecting. +1612512400: New connection from 172.18.0.3 on port 1883. +1612512400: Sending CONNACK to 172.18.0.3 (0, 5) +1612512400: Socket error on client , disconnecting. +1612512420: New connection from 172.18.0.3 on port 1883. +1612512420: Sending CONNACK to 172.18.0.3 (0, 5) +1612512420: Socket error on client , disconnecting. +1612512440: New connection from 172.18.0.3 on port 1883. +1612512440: Sending CONNACK to 172.18.0.3 (0, 5) +1612512440: Socket error on client , disconnecting. +1612512460: New connection from 172.18.0.3 on port 1883. +1612512460: Sending CONNACK to 172.18.0.3 (0, 5) +1612512460: Socket error on client , disconnecting. +1612512480: New connection from 172.18.0.3 on port 1883. +1612512480: Sending CONNACK to 172.18.0.3 (0, 5) +1612512480: Socket error on client , disconnecting. +1612512500: New connection from 172.18.0.3 on port 1883. +1612512500: Sending CONNACK to 172.18.0.3 (0, 5) +1612512500: Socket error on client , disconnecting. +1612512520: New connection from 172.18.0.3 on port 1883. +1612512520: Sending CONNACK to 172.18.0.3 (0, 5) +1612512520: Socket error on client , disconnecting. +1612512540: New connection from 172.18.0.3 on port 1883. +1612512540: Sending CONNACK to 172.18.0.3 (0, 5) +1612512540: Socket error on client , disconnecting. +1612512560: New connection from 172.18.0.3 on port 1883. +1612512560: Sending CONNACK to 172.18.0.3 (0, 5) +1612512560: Socket error on client , disconnecting. +1612512580: New connection from 172.18.0.3 on port 1883. +1612512580: Sending CONNACK to 172.18.0.3 (0, 5) +1612512580: Socket error on client , disconnecting. +1612512600: New connection from 172.18.0.3 on port 1883. +1612512600: Sending CONNACK to 172.18.0.3 (0, 5) +1612512600: Socket error on client , disconnecting. +1612512620: New connection from 172.18.0.3 on port 1883. +1612512620: Sending CONNACK to 172.18.0.3 (0, 5) +1612512620: Socket error on client , disconnecting. +1612512640: New connection from 172.18.0.3 on port 1883. +1612512640: Sending CONNACK to 172.18.0.3 (0, 5) +1612512640: Socket error on client , disconnecting. +1612512660: New connection from 172.18.0.3 on port 1883. +1612512660: Sending CONNACK to 172.18.0.3 (0, 5) +1612512660: Socket error on client , disconnecting. +1612512680: New connection from 172.18.0.3 on port 1883. +1612512680: Sending CONNACK to 172.18.0.3 (0, 5) +1612512680: Socket error on client , disconnecting. +1612512700: New connection from 172.18.0.3 on port 1883. +1612512700: Sending CONNACK to 172.18.0.3 (0, 5) +1612512700: Socket error on client , disconnecting. +1612512720: New connection from 172.18.0.3 on port 1883. +1612512720: Sending CONNACK to 172.18.0.3 (0, 5) +1612512720: Socket error on client , disconnecting. +1612512740: New connection from 172.18.0.3 on port 1883. +1612512740: Sending CONNACK to 172.18.0.3 (0, 5) +1612512740: Socket error on client , disconnecting. +1612512760: New connection from 172.18.0.3 on port 1883. +1612512760: Sending CONNACK to 172.18.0.3 (0, 5) +1612512760: Socket error on client , disconnecting. +1612512780: New connection from 172.18.0.3 on port 1883. +1612512780: Sending CONNACK to 172.18.0.3 (0, 5) +1612512780: Socket error on client , disconnecting. +1612512800: New connection from 172.18.0.3 on port 1883. +1612512800: Sending CONNACK to 172.18.0.3 (0, 5) +1612512800: Socket error on client , disconnecting. +1612512820: New connection from 172.18.0.3 on port 1883. +1612512820: Sending CONNACK to 172.18.0.3 (0, 5) +1612512820: Socket error on client , disconnecting. +1612512840: New connection from 172.18.0.3 on port 1883. +1612512840: Sending CONNACK to 172.18.0.3 (0, 5) +1612512840: Socket error on client , disconnecting. +1612512860: New connection from 172.18.0.3 on port 1883. +1612512860: Sending CONNACK to 172.18.0.3 (0, 5) +1612512860: Socket error on client , disconnecting. +1612512880: New connection from 172.18.0.3 on port 1883. +1612512880: Sending CONNACK to 172.18.0.3 (0, 5) +1612512880: Socket error on client , disconnecting. +1612512900: New connection from 172.18.0.3 on port 1883. +1612512900: Sending CONNACK to 172.18.0.3 (0, 5) +1612512900: Socket error on client , disconnecting. +1612512920: New connection from 172.18.0.3 on port 1883. +1612512920: Sending CONNACK to 172.18.0.3 (0, 5) +1612512920: Socket error on client , disconnecting. +1612512940: New connection from 172.18.0.3 on port 1883. +1612512940: Sending CONNACK to 172.18.0.3 (0, 5) +1612512940: Socket error on client , disconnecting. +1612512960: New connection from 172.18.0.3 on port 1883. +1612512960: Sending CONNACK to 172.18.0.3 (0, 5) +1612512960: Socket error on client , disconnecting. +1612512980: New connection from 172.18.0.3 on port 1883. +1612512980: Sending CONNACK to 172.18.0.3 (0, 5) +1612512980: Socket error on client , disconnecting. +1612513000: New connection from 172.18.0.3 on port 1883. +1612513000: Sending CONNACK to 172.18.0.3 (0, 5) +1612513000: Socket error on client , disconnecting. +1612513020: New connection from 172.18.0.3 on port 1883. +1612513020: Sending CONNACK to 172.18.0.3 (0, 5) +1612513020: Socket error on client , disconnecting. +1612513040: New connection from 172.18.0.3 on port 1883. +1612513040: Sending CONNACK to 172.18.0.3 (0, 5) +1612513040: Socket error on client , disconnecting. +1612513054: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612513054: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612513054: Error: Permission denied. +1612513060: New connection from 172.18.0.3 on port 1883. +1612513060: Sending CONNACK to 172.18.0.3 (0, 5) +1612513060: Socket error on client , disconnecting. +1612513080: New connection from 172.18.0.3 on port 1883. +1612513080: Sending CONNACK to 172.18.0.3 (0, 5) +1612513080: Socket error on client , disconnecting. +1612513100: New connection from 172.18.0.3 on port 1883. +1612513100: Sending CONNACK to 172.18.0.3 (0, 5) +1612513100: Socket error on client , disconnecting. +1612513120: New connection from 172.18.0.3 on port 1883. +1612513120: Sending CONNACK to 172.18.0.3 (0, 5) +1612513120: Socket error on client , disconnecting. +1612513140: New connection from 172.18.0.3 on port 1883. +1612513140: Sending CONNACK to 172.18.0.3 (0, 5) +1612513140: Socket error on client , disconnecting. +1612513160: New connection from 172.18.0.3 on port 1883. +1612513160: Sending CONNACK to 172.18.0.3 (0, 5) +1612513160: Socket error on client , disconnecting. +1612513180: New connection from 172.18.0.3 on port 1883. +1612513180: Sending CONNACK to 172.18.0.3 (0, 5) +1612513180: Socket error on client , disconnecting. +1612513200: New connection from 172.18.0.3 on port 1883. +1612513200: Sending CONNACK to 172.18.0.3 (0, 5) +1612513200: Socket error on client , disconnecting. +1612513220: New connection from 172.18.0.3 on port 1883. +1612513220: Sending CONNACK to 172.18.0.3 (0, 5) +1612513220: Socket error on client , disconnecting. +1612513240: New connection from 172.18.0.3 on port 1883. +1612513240: Sending CONNACK to 172.18.0.3 (0, 5) +1612513240: Socket error on client , disconnecting. +1612513260: New connection from 172.18.0.3 on port 1883. +1612513260: Sending CONNACK to 172.18.0.3 (0, 5) +1612513260: Socket error on client , disconnecting. +1612513280: New connection from 172.18.0.3 on port 1883. +1612513280: Sending CONNACK to 172.18.0.3 (0, 5) +1612513280: Socket error on client , disconnecting. +1612513300: New connection from 172.18.0.3 on port 1883. +1612513300: Sending CONNACK to 172.18.0.3 (0, 5) +1612513300: Socket error on client , disconnecting. +1612513320: New connection from 172.18.0.3 on port 1883. +1612513320: Sending CONNACK to 172.18.0.3 (0, 5) +1612513320: Socket error on client , disconnecting. +1612513340: New connection from 172.18.0.3 on port 1883. +1612513340: Sending CONNACK to 172.18.0.3 (0, 5) +1612513340: Socket error on client , disconnecting. +1612513360: New connection from 172.18.0.3 on port 1883. +1612513360: Sending CONNACK to 172.18.0.3 (0, 5) +1612513360: Socket error on client , disconnecting. +1612513380: New connection from 172.18.0.3 on port 1883. +1612513380: Sending CONNACK to 172.18.0.3 (0, 5) +1612513380: Socket error on client , disconnecting. +1612513400: New connection from 172.18.0.3 on port 1883. +1612513400: Sending CONNACK to 172.18.0.3 (0, 5) +1612513400: Socket error on client , disconnecting. +1612513420: New connection from 172.18.0.3 on port 1883. +1612513420: Sending CONNACK to 172.18.0.3 (0, 5) +1612513420: Socket error on client , disconnecting. +1612513440: New connection from 172.18.0.3 on port 1883. +1612513440: Sending CONNACK to 172.18.0.3 (0, 5) +1612513440: Socket error on client , disconnecting. +1612513460: New connection from 172.18.0.3 on port 1883. +1612513460: Sending CONNACK to 172.18.0.3 (0, 5) +1612513460: Socket error on client , disconnecting. +1612513480: New connection from 172.18.0.3 on port 1883. +1612513480: Sending CONNACK to 172.18.0.3 (0, 5) +1612513480: Socket error on client , disconnecting. +1612513500: New connection from 172.18.0.3 on port 1883. +1612513500: Sending CONNACK to 172.18.0.3 (0, 5) +1612513500: Socket error on client , disconnecting. +1612513520: New connection from 172.18.0.3 on port 1883. +1612513520: Sending CONNACK to 172.18.0.3 (0, 5) +1612513520: Socket error on client , disconnecting. +1612513540: New connection from 172.18.0.3 on port 1883. +1612513540: Sending CONNACK to 172.18.0.3 (0, 5) +1612513540: Socket error on client , disconnecting. +1612513560: New connection from 172.18.0.3 on port 1883. +1612513560: Sending CONNACK to 172.18.0.3 (0, 5) +1612513560: Socket error on client , disconnecting. +1612513580: New connection from 172.18.0.3 on port 1883. +1612513580: Sending CONNACK to 172.18.0.3 (0, 5) +1612513580: Socket error on client , disconnecting. +1612513600: New connection from 172.18.0.3 on port 1883. +1612513600: Sending CONNACK to 172.18.0.3 (0, 5) +1612513600: Socket error on client , disconnecting. +1612513620: New connection from 172.18.0.3 on port 1883. +1612513620: Sending CONNACK to 172.18.0.3 (0, 5) +1612513620: Socket error on client , disconnecting. +1612513640: New connection from 172.18.0.3 on port 1883. +1612513640: Sending CONNACK to 172.18.0.3 (0, 5) +1612513640: Socket error on client , disconnecting. +1612513660: New connection from 172.18.0.3 on port 1883. +1612513660: Sending CONNACK to 172.18.0.3 (0, 5) +1612513660: Socket error on client , disconnecting. +1612513680: New connection from 172.18.0.3 on port 1883. +1612513680: Sending CONNACK to 172.18.0.3 (0, 5) +1612513680: Socket error on client , disconnecting. +1612513700: New connection from 172.18.0.3 on port 1883. +1612513700: Sending CONNACK to 172.18.0.3 (0, 5) +1612513700: Socket error on client , disconnecting. +1612513720: New connection from 172.18.0.3 on port 1883. +1612513720: Sending CONNACK to 172.18.0.3 (0, 5) +1612513720: Socket error on client , disconnecting. +1612513740: New connection from 172.18.0.3 on port 1883. +1612513740: Sending CONNACK to 172.18.0.3 (0, 5) +1612513740: Socket error on client , disconnecting. +1612513760: New connection from 172.18.0.3 on port 1883. +1612513760: Sending CONNACK to 172.18.0.3 (0, 5) +1612513760: Socket error on client , disconnecting. +1612513780: New connection from 172.18.0.3 on port 1883. +1612513780: Sending CONNACK to 172.18.0.3 (0, 5) +1612513780: Socket error on client , disconnecting. +1612513800: New connection from 172.18.0.3 on port 1883. +1612513800: Sending CONNACK to 172.18.0.3 (0, 5) +1612513800: Socket error on client , disconnecting. +1612513820: New connection from 172.18.0.3 on port 1883. +1612513820: Sending CONNACK to 172.18.0.3 (0, 5) +1612513820: Socket error on client , disconnecting. +1612513840: New connection from 172.18.0.3 on port 1883. +1612513840: Sending CONNACK to 172.18.0.3 (0, 5) +1612513840: Socket error on client , disconnecting. +1612513860: New connection from 172.18.0.3 on port 1883. +1612513860: Sending CONNACK to 172.18.0.3 (0, 5) +1612513860: Socket error on client , disconnecting. +1612513880: New connection from 172.18.0.3 on port 1883. +1612513880: Sending CONNACK to 172.18.0.3 (0, 5) +1612513880: Socket error on client , disconnecting. +1612513900: New connection from 172.18.0.3 on port 1883. +1612513900: Sending CONNACK to 172.18.0.3 (0, 5) +1612513900: Socket error on client , disconnecting. +1612513920: New connection from 172.18.0.3 on port 1883. +1612513920: Sending CONNACK to 172.18.0.3 (0, 5) +1612513920: Socket error on client , disconnecting. +1612513940: New connection from 172.18.0.3 on port 1883. +1612513940: Sending CONNACK to 172.18.0.3 (0, 5) +1612513940: Socket error on client , disconnecting. +1612513960: New connection from 172.18.0.3 on port 1883. +1612513960: Sending CONNACK to 172.18.0.3 (0, 5) +1612513960: Socket error on client , disconnecting. +1612513980: New connection from 172.18.0.3 on port 1883. +1612513980: Sending CONNACK to 172.18.0.3 (0, 5) +1612513980: Socket error on client , disconnecting. +1612514000: New connection from 172.18.0.3 on port 1883. +1612514000: Sending CONNACK to 172.18.0.3 (0, 5) +1612514000: Socket error on client , disconnecting. +1612514020: New connection from 172.18.0.3 on port 1883. +1612514020: Sending CONNACK to 172.18.0.3 (0, 5) +1612514020: Socket error on client , disconnecting. +1612514040: New connection from 172.18.0.3 on port 1883. +1612514040: Sending CONNACK to 172.18.0.3 (0, 5) +1612514040: Socket error on client , disconnecting. +1612514060: New connection from 172.18.0.3 on port 1883. +1612514060: Sending CONNACK to 172.18.0.3 (0, 5) +1612514060: Socket error on client , disconnecting. +1612514080: New connection from 172.18.0.3 on port 1883. +1612514080: Sending CONNACK to 172.18.0.3 (0, 5) +1612514080: Socket error on client , disconnecting. +1612514100: New connection from 172.18.0.3 on port 1883. +1612514100: Sending CONNACK to 172.18.0.3 (0, 5) +1612514100: Socket error on client , disconnecting. +1612514120: New connection from 172.18.0.3 on port 1883. +1612514120: Sending CONNACK to 172.18.0.3 (0, 5) +1612514120: Socket error on client , disconnecting. +1612514140: New connection from 172.18.0.3 on port 1883. +1612514140: Sending CONNACK to 172.18.0.3 (0, 5) +1612514140: Socket error on client , disconnecting. +1612514160: New connection from 172.18.0.3 on port 1883. +1612514160: Sending CONNACK to 172.18.0.3 (0, 5) +1612514160: Socket error on client , disconnecting. +1612514180: New connection from 172.18.0.3 on port 1883. +1612514180: Sending CONNACK to 172.18.0.3 (0, 5) +1612514180: Socket error on client , disconnecting. +1612514200: New connection from 172.18.0.3 on port 1883. +1612514200: Sending CONNACK to 172.18.0.3 (0, 5) +1612514200: Socket error on client , disconnecting. +1612514220: New connection from 172.18.0.3 on port 1883. +1612514220: Sending CONNACK to 172.18.0.3 (0, 5) +1612514220: Socket error on client , disconnecting. +1612514240: New connection from 172.18.0.3 on port 1883. +1612514240: Sending CONNACK to 172.18.0.3 (0, 5) +1612514240: Socket error on client , disconnecting. +1612514260: New connection from 172.18.0.3 on port 1883. +1612514260: Sending CONNACK to 172.18.0.3 (0, 5) +1612514260: Socket error on client , disconnecting. +1612514280: New connection from 172.18.0.3 on port 1883. +1612514280: Sending CONNACK to 172.18.0.3 (0, 5) +1612514280: Socket error on client , disconnecting. +1612514300: New connection from 172.18.0.3 on port 1883. +1612514300: Sending CONNACK to 172.18.0.3 (0, 5) +1612514300: Socket error on client , disconnecting. +1612514320: New connection from 172.18.0.3 on port 1883. +1612514320: Sending CONNACK to 172.18.0.3 (0, 5) +1612514320: Socket error on client , disconnecting. +1612514340: New connection from 172.18.0.3 on port 1883. +1612514340: Sending CONNACK to 172.18.0.3 (0, 5) +1612514340: Socket error on client , disconnecting. +1612514360: New connection from 172.18.0.3 on port 1883. +1612514360: Sending CONNACK to 172.18.0.3 (0, 5) +1612514360: Socket error on client , disconnecting. +1612514380: New connection from 172.18.0.3 on port 1883. +1612514380: Sending CONNACK to 172.18.0.3 (0, 5) +1612514380: Socket error on client , disconnecting. +1612514400: New connection from 172.18.0.3 on port 1883. +1612514400: Sending CONNACK to 172.18.0.3 (0, 5) +1612514400: Socket error on client , disconnecting. +1612514420: New connection from 172.18.0.3 on port 1883. +1612514420: Sending CONNACK to 172.18.0.3 (0, 5) +1612514420: Socket error on client , disconnecting. +1612514440: New connection from 172.18.0.3 on port 1883. +1612514440: Sending CONNACK to 172.18.0.3 (0, 5) +1612514440: Socket error on client , disconnecting. +1612514460: New connection from 172.18.0.3 on port 1883. +1612514460: Sending CONNACK to 172.18.0.3 (0, 5) +1612514460: Socket error on client , disconnecting. +1612514480: New connection from 172.18.0.3 on port 1883. +1612514480: Sending CONNACK to 172.18.0.3 (0, 5) +1612514480: Socket error on client , disconnecting. +1612514500: New connection from 172.18.0.3 on port 1883. +1612514500: Sending CONNACK to 172.18.0.3 (0, 5) +1612514500: Socket error on client , disconnecting. +1612514520: New connection from 172.18.0.3 on port 1883. +1612514520: Sending CONNACK to 172.18.0.3 (0, 5) +1612514520: Socket error on client , disconnecting. +1612514540: New connection from 172.18.0.3 on port 1883. +1612514540: Sending CONNACK to 172.18.0.3 (0, 5) +1612514540: Socket error on client , disconnecting. +1612514560: New connection from 172.18.0.3 on port 1883. +1612514560: Sending CONNACK to 172.18.0.3 (0, 5) +1612514560: Socket error on client , disconnecting. +1612514580: New connection from 172.18.0.3 on port 1883. +1612514580: Sending CONNACK to 172.18.0.3 (0, 5) +1612514580: Socket error on client , disconnecting. +1612514600: New connection from 172.18.0.3 on port 1883. +1612514600: Sending CONNACK to 172.18.0.3 (0, 5) +1612514600: Socket error on client , disconnecting. +1612514620: New connection from 172.18.0.3 on port 1883. +1612514620: Sending CONNACK to 172.18.0.3 (0, 5) +1612514620: Socket error on client , disconnecting. +1612514640: New connection from 172.18.0.3 on port 1883. +1612514640: Sending CONNACK to 172.18.0.3 (0, 5) +1612514640: Socket error on client , disconnecting. +1612514660: New connection from 172.18.0.3 on port 1883. +1612514660: Sending CONNACK to 172.18.0.3 (0, 5) +1612514660: Socket error on client , disconnecting. +1612514680: New connection from 172.18.0.3 on port 1883. +1612514680: Sending CONNACK to 172.18.0.3 (0, 5) +1612514680: Socket error on client , disconnecting. +1612514700: New connection from 172.18.0.3 on port 1883. +1612514700: Sending CONNACK to 172.18.0.3 (0, 5) +1612514700: Socket error on client , disconnecting. +1612514720: New connection from 172.18.0.3 on port 1883. +1612514720: Sending CONNACK to 172.18.0.3 (0, 5) +1612514720: Socket error on client , disconnecting. +1612514740: New connection from 172.18.0.3 on port 1883. +1612514740: Sending CONNACK to 172.18.0.3 (0, 5) +1612514740: Socket error on client , disconnecting. +1612514760: New connection from 172.18.0.3 on port 1883. +1612514760: Sending CONNACK to 172.18.0.3 (0, 5) +1612514760: Socket error on client , disconnecting. +1612514780: New connection from 172.18.0.3 on port 1883. +1612514780: Sending CONNACK to 172.18.0.3 (0, 5) +1612514780: Socket error on client , disconnecting. +1612514800: New connection from 172.18.0.3 on port 1883. +1612514800: Sending CONNACK to 172.18.0.3 (0, 5) +1612514800: Socket error on client , disconnecting. +1612514820: New connection from 172.18.0.3 on port 1883. +1612514820: Sending CONNACK to 172.18.0.3 (0, 5) +1612514820: Socket error on client , disconnecting. +1612514840: New connection from 172.18.0.3 on port 1883. +1612514840: Sending CONNACK to 172.18.0.3 (0, 5) +1612514840: Socket error on client , disconnecting. +1612514855: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612514855: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612514855: Error: Permission denied. +1612514860: New connection from 172.18.0.3 on port 1883. +1612514860: Sending CONNACK to 172.18.0.3 (0, 5) +1612514860: Socket error on client , disconnecting. +1612514880: New connection from 172.18.0.3 on port 1883. +1612514880: Sending CONNACK to 172.18.0.3 (0, 5) +1612514880: Socket error on client , disconnecting. +1612514900: New connection from 172.18.0.3 on port 1883. +1612514900: Sending CONNACK to 172.18.0.3 (0, 5) +1612514900: Socket error on client , disconnecting. +1612514920: New connection from 172.18.0.3 on port 1883. +1612514920: Sending CONNACK to 172.18.0.3 (0, 5) +1612514920: Socket error on client , disconnecting. +1612514940: New connection from 172.18.0.3 on port 1883. +1612514940: Sending CONNACK to 172.18.0.3 (0, 5) +1612514940: Socket error on client , disconnecting. +1612514960: New connection from 172.18.0.3 on port 1883. +1612514960: Sending CONNACK to 172.18.0.3 (0, 5) +1612514960: Socket error on client , disconnecting. +1612514980: New connection from 172.18.0.3 on port 1883. +1612514980: Sending CONNACK to 172.18.0.3 (0, 5) +1612514980: Socket error on client , disconnecting. +1612515000: New connection from 172.18.0.3 on port 1883. +1612515000: Sending CONNACK to 172.18.0.3 (0, 5) +1612515000: Socket error on client , disconnecting. +1612515020: New connection from 172.18.0.3 on port 1883. +1612515020: Sending CONNACK to 172.18.0.3 (0, 5) +1612515020: Socket error on client , disconnecting. +1612515040: New connection from 172.18.0.3 on port 1883. +1612515040: Sending CONNACK to 172.18.0.3 (0, 5) +1612515040: Socket error on client , disconnecting. +1612515060: New connection from 172.18.0.3 on port 1883. +1612515060: Sending CONNACK to 172.18.0.3 (0, 5) +1612515060: Socket error on client , disconnecting. +1612515080: New connection from 172.18.0.3 on port 1883. +1612515080: Sending CONNACK to 172.18.0.3 (0, 5) +1612515080: Socket error on client , disconnecting. +1612515100: New connection from 172.18.0.3 on port 1883. +1612515100: Sending CONNACK to 172.18.0.3 (0, 5) +1612515100: Socket error on client , disconnecting. +1612515120: New connection from 172.18.0.3 on port 1883. +1612515120: Sending CONNACK to 172.18.0.3 (0, 5) +1612515120: Socket error on client , disconnecting. +1612515140: New connection from 172.18.0.3 on port 1883. +1612515140: Sending CONNACK to 172.18.0.3 (0, 5) +1612515140: Socket error on client , disconnecting. +1612515160: New connection from 172.18.0.3 on port 1883. +1612515160: Sending CONNACK to 172.18.0.3 (0, 5) +1612515160: Socket error on client , disconnecting. +1612515180: New connection from 172.18.0.3 on port 1883. +1612515180: Sending CONNACK to 172.18.0.3 (0, 5) +1612515180: Socket error on client , disconnecting. +1612515200: New connection from 172.18.0.3 on port 1883. +1612515200: Sending CONNACK to 172.18.0.3 (0, 5) +1612515200: Socket error on client , disconnecting. +1612515220: New connection from 172.18.0.3 on port 1883. +1612515220: Sending CONNACK to 172.18.0.3 (0, 5) +1612515220: Socket error on client , disconnecting. +1612515240: New connection from 172.18.0.3 on port 1883. +1612515240: Sending CONNACK to 172.18.0.3 (0, 5) +1612515240: Socket error on client , disconnecting. +1612515260: New connection from 172.18.0.3 on port 1883. +1612515260: Sending CONNACK to 172.18.0.3 (0, 5) +1612515260: Socket error on client , disconnecting. +1612515280: New connection from 172.18.0.3 on port 1883. +1612515280: Sending CONNACK to 172.18.0.3 (0, 5) +1612515280: Socket error on client , disconnecting. +1612515300: New connection from 172.18.0.3 on port 1883. +1612515300: Sending CONNACK to 172.18.0.3 (0, 5) +1612515300: Socket error on client , disconnecting. +1612515320: New connection from 172.18.0.3 on port 1883. +1612515320: Sending CONNACK to 172.18.0.3 (0, 5) +1612515320: Socket error on client , disconnecting. +1612515340: New connection from 172.18.0.3 on port 1883. +1612515340: Sending CONNACK to 172.18.0.3 (0, 5) +1612515340: Socket error on client , disconnecting. +1612515360: New connection from 172.18.0.3 on port 1883. +1612515360: Sending CONNACK to 172.18.0.3 (0, 5) +1612515360: Socket error on client , disconnecting. +1612515380: New connection from 172.18.0.3 on port 1883. +1612515380: Sending CONNACK to 172.18.0.3 (0, 5) +1612515380: Socket error on client , disconnecting. +1612515400: New connection from 172.18.0.3 on port 1883. +1612515400: Sending CONNACK to 172.18.0.3 (0, 5) +1612515400: Socket error on client , disconnecting. +1612515420: New connection from 172.18.0.3 on port 1883. +1612515420: Sending CONNACK to 172.18.0.3 (0, 5) +1612515420: Socket error on client , disconnecting. +1612515440: New connection from 172.18.0.3 on port 1883. +1612515440: Sending CONNACK to 172.18.0.3 (0, 5) +1612515440: Socket error on client , disconnecting. +1612515460: New connection from 172.18.0.3 on port 1883. +1612515460: Sending CONNACK to 172.18.0.3 (0, 5) +1612515460: Socket error on client , disconnecting. +1612515480: New connection from 172.18.0.3 on port 1883. +1612515480: Sending CONNACK to 172.18.0.3 (0, 5) +1612515480: Socket error on client , disconnecting. +1612515500: New connection from 172.18.0.3 on port 1883. +1612515500: Sending CONNACK to 172.18.0.3 (0, 5) +1612515500: Socket error on client , disconnecting. +1612515520: New connection from 172.18.0.3 on port 1883. +1612515520: Sending CONNACK to 172.18.0.3 (0, 5) +1612515520: Socket error on client , disconnecting. +1612515540: New connection from 172.18.0.3 on port 1883. +1612515540: Sending CONNACK to 172.18.0.3 (0, 5) +1612515540: Socket error on client , disconnecting. +1612515560: New connection from 172.18.0.3 on port 1883. +1612515560: Sending CONNACK to 172.18.0.3 (0, 5) +1612515560: Socket error on client , disconnecting. +1612515580: New connection from 172.18.0.3 on port 1883. +1612515580: Sending CONNACK to 172.18.0.3 (0, 5) +1612515580: Socket error on client , disconnecting. +1612515600: New connection from 172.18.0.3 on port 1883. +1612515600: Sending CONNACK to 172.18.0.3 (0, 5) +1612515600: Socket error on client , disconnecting. +1612515620: New connection from 172.18.0.3 on port 1883. +1612515620: Sending CONNACK to 172.18.0.3 (0, 5) +1612515620: Socket error on client , disconnecting. +1612515640: New connection from 172.18.0.3 on port 1883. +1612515640: Sending CONNACK to 172.18.0.3 (0, 5) +1612515640: Socket error on client , disconnecting. +1612515660: New connection from 172.18.0.3 on port 1883. +1612515660: Sending CONNACK to 172.18.0.3 (0, 5) +1612515660: Socket error on client , disconnecting. +1612515680: New connection from 172.18.0.3 on port 1883. +1612515680: Sending CONNACK to 172.18.0.3 (0, 5) +1612515680: Socket error on client , disconnecting. +1612515700: New connection from 172.18.0.3 on port 1883. +1612515700: Sending CONNACK to 172.18.0.3 (0, 5) +1612515700: Socket error on client , disconnecting. +1612515720: New connection from 172.18.0.3 on port 1883. +1612515720: Sending CONNACK to 172.18.0.3 (0, 5) +1612515720: Socket error on client , disconnecting. +1612515740: New connection from 172.18.0.3 on port 1883. +1612515740: Sending CONNACK to 172.18.0.3 (0, 5) +1612515740: Socket error on client , disconnecting. +1612515760: New connection from 172.18.0.3 on port 1883. +1612515760: Sending CONNACK to 172.18.0.3 (0, 5) +1612515760: Socket error on client , disconnecting. +1612515780: New connection from 172.18.0.3 on port 1883. +1612515780: Sending CONNACK to 172.18.0.3 (0, 5) +1612515780: Socket error on client , disconnecting. +1612515800: New connection from 172.18.0.3 on port 1883. +1612515800: Sending CONNACK to 172.18.0.3 (0, 5) +1612515800: Socket error on client , disconnecting. +1612515820: New connection from 172.18.0.3 on port 1883. +1612515820: Sending CONNACK to 172.18.0.3 (0, 5) +1612515820: Socket error on client , disconnecting. +1612515840: New connection from 172.18.0.3 on port 1883. +1612515840: Sending CONNACK to 172.18.0.3 (0, 5) +1612515840: Socket error on client , disconnecting. +1612515860: New connection from 172.18.0.3 on port 1883. +1612515860: Sending CONNACK to 172.18.0.3 (0, 5) +1612515860: Socket error on client , disconnecting. +1612515880: New connection from 172.18.0.3 on port 1883. +1612515880: Sending CONNACK to 172.18.0.3 (0, 5) +1612515880: Socket error on client , disconnecting. +1612515900: New connection from 172.18.0.3 on port 1883. +1612515900: Sending CONNACK to 172.18.0.3 (0, 5) +1612515900: Socket error on client , disconnecting. +1612515920: New connection from 172.18.0.3 on port 1883. +1612515920: Sending CONNACK to 172.18.0.3 (0, 5) +1612515920: Socket error on client , disconnecting. +1612515940: New connection from 172.18.0.3 on port 1883. +1612515940: Sending CONNACK to 172.18.0.3 (0, 5) +1612515940: Socket error on client , disconnecting. +1612515960: New connection from 172.18.0.3 on port 1883. +1612515960: Sending CONNACK to 172.18.0.3 (0, 5) +1612515960: Socket error on client , disconnecting. +1612515980: New connection from 172.18.0.3 on port 1883. +1612515980: Sending CONNACK to 172.18.0.3 (0, 5) +1612515980: Socket error on client , disconnecting. +1612516000: New connection from 172.18.0.3 on port 1883. +1612516000: Sending CONNACK to 172.18.0.3 (0, 5) +1612516000: Socket error on client , disconnecting. +1612516020: New connection from 172.18.0.3 on port 1883. +1612516020: Sending CONNACK to 172.18.0.3 (0, 5) +1612516020: Socket error on client , disconnecting. +1612516040: New connection from 172.18.0.3 on port 1883. +1612516040: Sending CONNACK to 172.18.0.3 (0, 5) +1612516040: Socket error on client , disconnecting. +1612516060: New connection from 172.18.0.3 on port 1883. +1612516060: Sending CONNACK to 172.18.0.3 (0, 5) +1612516060: Socket error on client , disconnecting. +1612516080: New connection from 172.18.0.3 on port 1883. +1612516080: Sending CONNACK to 172.18.0.3 (0, 5) +1612516080: Socket error on client , disconnecting. +1612516100: New connection from 172.18.0.3 on port 1883. +1612516100: Sending CONNACK to 172.18.0.3 (0, 5) +1612516100: Socket error on client , disconnecting. +1612516120: New connection from 172.18.0.3 on port 1883. +1612516120: Sending CONNACK to 172.18.0.3 (0, 5) +1612516120: Socket error on client , disconnecting. +1612516140: New connection from 172.18.0.3 on port 1883. +1612516140: Sending CONNACK to 172.18.0.3 (0, 5) +1612516140: Socket error on client , disconnecting. +1612516160: New connection from 172.18.0.3 on port 1883. +1612516160: Sending CONNACK to 172.18.0.3 (0, 5) +1612516160: Socket error on client , disconnecting. +1612516180: New connection from 172.18.0.3 on port 1883. +1612516180: Sending CONNACK to 172.18.0.3 (0, 5) +1612516180: Socket error on client , disconnecting. +1612516200: New connection from 172.18.0.3 on port 1883. +1612516200: Sending CONNACK to 172.18.0.3 (0, 5) +1612516200: Socket error on client , disconnecting. +1612516220: New connection from 172.18.0.3 on port 1883. +1612516220: Sending CONNACK to 172.18.0.3 (0, 5) +1612516220: Socket error on client , disconnecting. +1612516240: New connection from 172.18.0.3 on port 1883. +1612516240: Sending CONNACK to 172.18.0.3 (0, 5) +1612516240: Socket error on client , disconnecting. +1612516260: New connection from 172.18.0.3 on port 1883. +1612516260: Sending CONNACK to 172.18.0.3 (0, 5) +1612516260: Socket error on client , disconnecting. +1612516280: New connection from 172.18.0.3 on port 1883. +1612516280: Sending CONNACK to 172.18.0.3 (0, 5) +1612516280: Socket error on client , disconnecting. +1612516300: New connection from 172.18.0.3 on port 1883. +1612516300: Sending CONNACK to 172.18.0.3 (0, 5) +1612516300: Socket error on client , disconnecting. +1612516320: New connection from 172.18.0.3 on port 1883. +1612516320: Sending CONNACK to 172.18.0.3 (0, 5) +1612516320: Socket error on client , disconnecting. +1612516340: New connection from 172.18.0.3 on port 1883. +1612516340: Sending CONNACK to 172.18.0.3 (0, 5) +1612516340: Socket error on client , disconnecting. +1612516360: New connection from 172.18.0.3 on port 1883. +1612516360: Sending CONNACK to 172.18.0.3 (0, 5) +1612516360: Socket error on client , disconnecting. +1612516380: New connection from 172.18.0.3 on port 1883. +1612516380: Sending CONNACK to 172.18.0.3 (0, 5) +1612516380: Socket error on client , disconnecting. +1612516400: New connection from 172.18.0.3 on port 1883. +1612516400: Sending CONNACK to 172.18.0.3 (0, 5) +1612516400: Socket error on client , disconnecting. +1612516420: New connection from 172.18.0.3 on port 1883. +1612516420: Sending CONNACK to 172.18.0.3 (0, 5) +1612516420: Socket error on client , disconnecting. +1612516440: New connection from 172.18.0.3 on port 1883. +1612516440: Sending CONNACK to 172.18.0.3 (0, 5) +1612516440: Socket error on client , disconnecting. +1612516460: New connection from 172.18.0.3 on port 1883. +1612516460: Sending CONNACK to 172.18.0.3 (0, 5) +1612516460: Socket error on client , disconnecting. +1612516480: New connection from 172.18.0.3 on port 1883. +1612516480: Sending CONNACK to 172.18.0.3 (0, 5) +1612516480: Socket error on client , disconnecting. +1612516500: New connection from 172.18.0.3 on port 1883. +1612516500: Sending CONNACK to 172.18.0.3 (0, 5) +1612516500: Socket error on client , disconnecting. +1612516520: New connection from 172.18.0.3 on port 1883. +1612516520: Sending CONNACK to 172.18.0.3 (0, 5) +1612516520: Socket error on client , disconnecting. +1612516540: New connection from 172.18.0.3 on port 1883. +1612516540: Sending CONNACK to 172.18.0.3 (0, 5) +1612516540: Socket error on client , disconnecting. +1612516560: New connection from 172.18.0.3 on port 1883. +1612516560: Sending CONNACK to 172.18.0.3 (0, 5) +1612516560: Socket error on client , disconnecting. +1612516580: New connection from 172.18.0.3 on port 1883. +1612516580: Sending CONNACK to 172.18.0.3 (0, 5) +1612516580: Socket error on client , disconnecting. +1612516600: New connection from 172.18.0.3 on port 1883. +1612516600: Sending CONNACK to 172.18.0.3 (0, 5) +1612516600: Socket error on client , disconnecting. +1612516620: New connection from 172.18.0.3 on port 1883. +1612516620: Sending CONNACK to 172.18.0.3 (0, 5) +1612516620: Socket error on client , disconnecting. +1612516640: New connection from 172.18.0.3 on port 1883. +1612516640: Sending CONNACK to 172.18.0.3 (0, 5) +1612516640: Socket error on client , disconnecting. +1612516656: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612516656: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612516656: Error: Permission denied. +1612516660: New connection from 172.18.0.3 on port 1883. +1612516660: Sending CONNACK to 172.18.0.3 (0, 5) +1612516660: Socket error on client , disconnecting. +1612516680: New connection from 172.18.0.3 on port 1883. +1612516680: Sending CONNACK to 172.18.0.3 (0, 5) +1612516680: Socket error on client , disconnecting. +1612516700: New connection from 172.18.0.3 on port 1883. +1612516700: Sending CONNACK to 172.18.0.3 (0, 5) +1612516700: Socket error on client , disconnecting. +1612516720: New connection from 172.18.0.3 on port 1883. +1612516720: Sending CONNACK to 172.18.0.3 (0, 5) +1612516720: Socket error on client , disconnecting. +1612516740: New connection from 172.18.0.3 on port 1883. +1612516740: Sending CONNACK to 172.18.0.3 (0, 5) +1612516740: Socket error on client , disconnecting. +1612516760: New connection from 172.18.0.3 on port 1883. +1612516760: Sending CONNACK to 172.18.0.3 (0, 5) +1612516760: Socket error on client , disconnecting. +1612516780: New connection from 172.18.0.3 on port 1883. +1612516780: Sending CONNACK to 172.18.0.3 (0, 5) +1612516780: Socket error on client , disconnecting. +1612516800: New connection from 172.18.0.3 on port 1883. +1612516800: Sending CONNACK to 172.18.0.3 (0, 5) +1612516800: Socket error on client , disconnecting. +1612516820: New connection from 172.18.0.3 on port 1883. +1612516820: Sending CONNACK to 172.18.0.3 (0, 5) +1612516820: Socket error on client , disconnecting. +1612516840: New connection from 172.18.0.3 on port 1883. +1612516840: Sending CONNACK to 172.18.0.3 (0, 5) +1612516840: Socket error on client , disconnecting. +1612516860: New connection from 172.18.0.3 on port 1883. +1612516860: Sending CONNACK to 172.18.0.3 (0, 5) +1612516860: Socket error on client , disconnecting. +1612516880: New connection from 172.18.0.3 on port 1883. +1612516880: Sending CONNACK to 172.18.0.3 (0, 5) +1612516880: Socket error on client , disconnecting. +1612516900: New connection from 172.18.0.3 on port 1883. +1612516900: Sending CONNACK to 172.18.0.3 (0, 5) +1612516900: Socket error on client , disconnecting. +1612516920: New connection from 172.18.0.3 on port 1883. +1612516920: Sending CONNACK to 172.18.0.3 (0, 5) +1612516920: Socket error on client , disconnecting. +1612516940: New connection from 172.18.0.3 on port 1883. +1612516940: Sending CONNACK to 172.18.0.3 (0, 5) +1612516940: Socket error on client , disconnecting. +1612516960: New connection from 172.18.0.3 on port 1883. +1612516960: Sending CONNACK to 172.18.0.3 (0, 5) +1612516960: Socket error on client , disconnecting. +1612516980: New connection from 172.18.0.3 on port 1883. +1612516980: Sending CONNACK to 172.18.0.3 (0, 5) +1612516980: Socket error on client , disconnecting. +1612517000: New connection from 172.18.0.3 on port 1883. +1612517000: Sending CONNACK to 172.18.0.3 (0, 5) +1612517000: Socket error on client , disconnecting. +1612517020: New connection from 172.18.0.3 on port 1883. +1612517020: Sending CONNACK to 172.18.0.3 (0, 5) +1612517020: Socket error on client , disconnecting. +1612517040: New connection from 172.18.0.3 on port 1883. +1612517040: Sending CONNACK to 172.18.0.3 (0, 5) +1612517040: Socket error on client , disconnecting. +1612517060: New connection from 172.18.0.3 on port 1883. +1612517060: Sending CONNACK to 172.18.0.3 (0, 5) +1612517060: Socket error on client , disconnecting. +1612517080: New connection from 172.18.0.3 on port 1883. +1612517080: Sending CONNACK to 172.18.0.3 (0, 5) +1612517080: Socket error on client , disconnecting. +1612517100: New connection from 172.18.0.3 on port 1883. +1612517100: Sending CONNACK to 172.18.0.3 (0, 5) +1612517100: Socket error on client , disconnecting. +1612517120: New connection from 172.18.0.3 on port 1883. +1612517120: Sending CONNACK to 172.18.0.3 (0, 5) +1612517120: Socket error on client , disconnecting. +1612517140: New connection from 172.18.0.3 on port 1883. +1612517140: Sending CONNACK to 172.18.0.3 (0, 5) +1612517140: Socket error on client , disconnecting. +1612517160: New connection from 172.18.0.3 on port 1883. +1612517160: Sending CONNACK to 172.18.0.3 (0, 5) +1612517160: Socket error on client , disconnecting. +1612517180: New connection from 172.18.0.3 on port 1883. +1612517180: Sending CONNACK to 172.18.0.3 (0, 5) +1612517180: Socket error on client , disconnecting. +1612517200: New connection from 172.18.0.3 on port 1883. +1612517200: Sending CONNACK to 172.18.0.3 (0, 5) +1612517200: Socket error on client , disconnecting. +1612517220: New connection from 172.18.0.3 on port 1883. +1612517220: Sending CONNACK to 172.18.0.3 (0, 5) +1612517220: Socket error on client , disconnecting. +1612517240: New connection from 172.18.0.3 on port 1883. +1612517240: Sending CONNACK to 172.18.0.3 (0, 5) +1612517240: Socket error on client , disconnecting. +1612517260: New connection from 172.18.0.3 on port 1883. +1612517260: Sending CONNACK to 172.18.0.3 (0, 5) +1612517260: Socket error on client , disconnecting. +1612517280: New connection from 172.18.0.3 on port 1883. +1612517280: Sending CONNACK to 172.18.0.3 (0, 5) +1612517280: Socket error on client , disconnecting. +1612517300: New connection from 172.18.0.3 on port 1883. +1612517300: Sending CONNACK to 172.18.0.3 (0, 5) +1612517300: Socket error on client , disconnecting. +1612517320: New connection from 172.18.0.3 on port 1883. +1612517320: Sending CONNACK to 172.18.0.3 (0, 5) +1612517320: Socket error on client , disconnecting. +1612517340: New connection from 172.18.0.3 on port 1883. +1612517340: Sending CONNACK to 172.18.0.3 (0, 5) +1612517340: Socket error on client , disconnecting. +1612517360: New connection from 172.18.0.3 on port 1883. +1612517360: Sending CONNACK to 172.18.0.3 (0, 5) +1612517360: Socket error on client , disconnecting. +1612517380: New connection from 172.18.0.3 on port 1883. +1612517380: Sending CONNACK to 172.18.0.3 (0, 5) +1612517380: Socket error on client , disconnecting. +1612517400: New connection from 172.18.0.3 on port 1883. +1612517400: Sending CONNACK to 172.18.0.3 (0, 5) +1612517400: Socket error on client , disconnecting. +1612517420: New connection from 172.18.0.3 on port 1883. +1612517420: Sending CONNACK to 172.18.0.3 (0, 5) +1612517420: Socket error on client , disconnecting. +1612517440: New connection from 172.18.0.3 on port 1883. +1612517440: Sending CONNACK to 172.18.0.3 (0, 5) +1612517440: Socket error on client , disconnecting. +1612517460: New connection from 172.18.0.3 on port 1883. +1612517460: Sending CONNACK to 172.18.0.3 (0, 5) +1612517460: Socket error on client , disconnecting. +1612517480: New connection from 172.18.0.3 on port 1883. +1612517480: Sending CONNACK to 172.18.0.3 (0, 5) +1612517480: Socket error on client , disconnecting. +1612517500: New connection from 172.18.0.3 on port 1883. +1612517500: Sending CONNACK to 172.18.0.3 (0, 5) +1612517500: Socket error on client , disconnecting. +1612517520: New connection from 172.18.0.3 on port 1883. +1612517520: Sending CONNACK to 172.18.0.3 (0, 5) +1612517520: Socket error on client , disconnecting. +1612517540: New connection from 172.18.0.3 on port 1883. +1612517540: Sending CONNACK to 172.18.0.3 (0, 5) +1612517540: Socket error on client , disconnecting. +1612517560: New connection from 172.18.0.3 on port 1883. +1612517560: Sending CONNACK to 172.18.0.3 (0, 5) +1612517560: Socket error on client , disconnecting. +1612517580: New connection from 172.18.0.3 on port 1883. +1612517580: Sending CONNACK to 172.18.0.3 (0, 5) +1612517580: Socket error on client , disconnecting. +1612517600: New connection from 172.18.0.3 on port 1883. +1612517600: Sending CONNACK to 172.18.0.3 (0, 5) +1612517600: Socket error on client , disconnecting. +1612517620: New connection from 172.18.0.3 on port 1883. +1612517620: Sending CONNACK to 172.18.0.3 (0, 5) +1612517620: Socket error on client , disconnecting. +1612517640: New connection from 172.18.0.3 on port 1883. +1612517640: Sending CONNACK to 172.18.0.3 (0, 5) +1612517640: Socket error on client , disconnecting. +1612517660: New connection from 172.18.0.3 on port 1883. +1612517660: Sending CONNACK to 172.18.0.3 (0, 5) +1612517660: Socket error on client , disconnecting. +1612517680: New connection from 172.18.0.3 on port 1883. +1612517680: Sending CONNACK to 172.18.0.3 (0, 5) +1612517680: Socket error on client , disconnecting. +1612517700: New connection from 172.18.0.3 on port 1883. +1612517700: Sending CONNACK to 172.18.0.3 (0, 5) +1612517700: Socket error on client , disconnecting. +1612517720: New connection from 172.18.0.3 on port 1883. +1612517720: Sending CONNACK to 172.18.0.3 (0, 5) +1612517720: Socket error on client , disconnecting. +1612517740: New connection from 172.18.0.3 on port 1883. +1612517740: Sending CONNACK to 172.18.0.3 (0, 5) +1612517740: Socket error on client , disconnecting. +1612517760: New connection from 172.18.0.3 on port 1883. +1612517760: Sending CONNACK to 172.18.0.3 (0, 5) +1612517760: Socket error on client , disconnecting. +1612517780: New connection from 172.18.0.3 on port 1883. +1612517780: Sending CONNACK to 172.18.0.3 (0, 5) +1612517780: Socket error on client , disconnecting. +1612517800: New connection from 172.18.0.3 on port 1883. +1612517800: Sending CONNACK to 172.18.0.3 (0, 5) +1612517800: Socket error on client , disconnecting. +1612517820: New connection from 172.18.0.3 on port 1883. +1612517820: Sending CONNACK to 172.18.0.3 (0, 5) +1612517820: Socket error on client , disconnecting. +1612517840: New connection from 172.18.0.3 on port 1883. +1612517840: Sending CONNACK to 172.18.0.3 (0, 5) +1612517840: Socket error on client , disconnecting. +1612517860: New connection from 172.18.0.3 on port 1883. +1612517860: Sending CONNACK to 172.18.0.3 (0, 5) +1612517860: Socket error on client , disconnecting. +1612517880: New connection from 172.18.0.3 on port 1883. +1612517880: Sending CONNACK to 172.18.0.3 (0, 5) +1612517880: Socket error on client , disconnecting. +1612517900: New connection from 172.18.0.3 on port 1883. +1612517900: Sending CONNACK to 172.18.0.3 (0, 5) +1612517900: Socket error on client , disconnecting. +1612517920: New connection from 172.18.0.3 on port 1883. +1612517920: Sending CONNACK to 172.18.0.3 (0, 5) +1612517920: Socket error on client , disconnecting. +1612517940: New connection from 172.18.0.3 on port 1883. +1612517940: Sending CONNACK to 172.18.0.3 (0, 5) +1612517940: Socket error on client , disconnecting. +1612517960: New connection from 172.18.0.3 on port 1883. +1612517960: Sending CONNACK to 172.18.0.3 (0, 5) +1612517960: Socket error on client , disconnecting. +1612517980: New connection from 172.18.0.3 on port 1883. +1612517980: Sending CONNACK to 172.18.0.3 (0, 5) +1612517980: Socket error on client , disconnecting. +1612518000: New connection from 172.18.0.3 on port 1883. +1612518000: Sending CONNACK to 172.18.0.3 (0, 5) +1612518000: Socket error on client , disconnecting. +1612518020: New connection from 172.18.0.3 on port 1883. +1612518020: Sending CONNACK to 172.18.0.3 (0, 5) +1612518020: Socket error on client , disconnecting. +1612518040: New connection from 172.18.0.3 on port 1883. +1612518040: Sending CONNACK to 172.18.0.3 (0, 5) +1612518040: Socket error on client , disconnecting. +1612518060: New connection from 172.18.0.3 on port 1883. +1612518060: Sending CONNACK to 172.18.0.3 (0, 5) +1612518060: Socket error on client , disconnecting. +1612518080: New connection from 172.18.0.3 on port 1883. +1612518080: Sending CONNACK to 172.18.0.3 (0, 5) +1612518080: Socket error on client , disconnecting. +1612518100: New connection from 172.18.0.3 on port 1883. +1612518100: Sending CONNACK to 172.18.0.3 (0, 5) +1612518100: Socket error on client , disconnecting. +1612518120: New connection from 172.18.0.3 on port 1883. +1612518120: Sending CONNACK to 172.18.0.3 (0, 5) +1612518120: Socket error on client , disconnecting. +1612518140: New connection from 172.18.0.3 on port 1883. +1612518140: Sending CONNACK to 172.18.0.3 (0, 5) +1612518140: Socket error on client , disconnecting. +1612518160: New connection from 172.18.0.3 on port 1883. +1612518160: Sending CONNACK to 172.18.0.3 (0, 5) +1612518160: Socket error on client , disconnecting. +1612518180: New connection from 172.18.0.3 on port 1883. +1612518180: Sending CONNACK to 172.18.0.3 (0, 5) +1612518180: Socket error on client , disconnecting. +1612518200: New connection from 172.18.0.3 on port 1883. +1612518200: Sending CONNACK to 172.18.0.3 (0, 5) +1612518200: Socket error on client , disconnecting. +1612518220: New connection from 172.18.0.3 on port 1883. +1612518220: Sending CONNACK to 172.18.0.3 (0, 5) +1612518220: Socket error on client , disconnecting. +1612518240: New connection from 172.18.0.3 on port 1883. +1612518240: Sending CONNACK to 172.18.0.3 (0, 5) +1612518240: Socket error on client , disconnecting. +1612518260: New connection from 172.18.0.3 on port 1883. +1612518260: Sending CONNACK to 172.18.0.3 (0, 5) +1612518260: Socket error on client , disconnecting. +1612518280: New connection from 172.18.0.3 on port 1883. +1612518280: Sending CONNACK to 172.18.0.3 (0, 5) +1612518280: Socket error on client , disconnecting. +1612518300: New connection from 172.18.0.3 on port 1883. +1612518300: Sending CONNACK to 172.18.0.3 (0, 5) +1612518300: Socket error on client , disconnecting. +1612518320: New connection from 172.18.0.3 on port 1883. +1612518320: Sending CONNACK to 172.18.0.3 (0, 5) +1612518320: Socket error on client , disconnecting. +1612518340: New connection from 172.18.0.3 on port 1883. +1612518340: Sending CONNACK to 172.18.0.3 (0, 5) +1612518340: Socket error on client , disconnecting. +1612518360: New connection from 172.18.0.3 on port 1883. +1612518360: Sending CONNACK to 172.18.0.3 (0, 5) +1612518360: Socket error on client , disconnecting. +1612518380: New connection from 172.18.0.3 on port 1883. +1612518380: Sending CONNACK to 172.18.0.3 (0, 5) +1612518380: Socket error on client , disconnecting. +1612518400: New connection from 172.18.0.3 on port 1883. +1612518400: Sending CONNACK to 172.18.0.3 (0, 5) +1612518400: Socket error on client , disconnecting. +1612518420: New connection from 172.18.0.3 on port 1883. +1612518420: Sending CONNACK to 172.18.0.3 (0, 5) +1612518420: Socket error on client , disconnecting. +1612518440: New connection from 172.18.0.3 on port 1883. +1612518440: Sending CONNACK to 172.18.0.3 (0, 5) +1612518440: Socket error on client , disconnecting. +1612518457: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612518457: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612518457: Error: Permission denied. +1612518460: New connection from 172.18.0.3 on port 1883. +1612518460: Sending CONNACK to 172.18.0.3 (0, 5) +1612518460: Socket error on client , disconnecting. +1612518480: New connection from 172.18.0.3 on port 1883. +1612518480: Sending CONNACK to 172.18.0.3 (0, 5) +1612518480: Socket error on client , disconnecting. +1612518500: New connection from 172.18.0.3 on port 1883. +1612518500: Sending CONNACK to 172.18.0.3 (0, 5) +1612518500: Socket error on client , disconnecting. +1612518520: New connection from 172.18.0.3 on port 1883. +1612518520: Sending CONNACK to 172.18.0.3 (0, 5) +1612518520: Socket error on client , disconnecting. +1612518540: New connection from 172.18.0.3 on port 1883. +1612518540: Sending CONNACK to 172.18.0.3 (0, 5) +1612518540: Socket error on client , disconnecting. +1612518560: New connection from 172.18.0.3 on port 1883. +1612518560: Sending CONNACK to 172.18.0.3 (0, 5) +1612518560: Socket error on client , disconnecting. +1612518580: New connection from 172.18.0.3 on port 1883. +1612518580: Sending CONNACK to 172.18.0.3 (0, 5) +1612518580: Socket error on client , disconnecting. +1612518600: New connection from 172.18.0.3 on port 1883. +1612518600: Sending CONNACK to 172.18.0.3 (0, 5) +1612518600: Socket error on client , disconnecting. +1612518620: New connection from 172.18.0.3 on port 1883. +1612518620: Sending CONNACK to 172.18.0.3 (0, 5) +1612518620: Socket error on client , disconnecting. +1612518640: New connection from 172.18.0.3 on port 1883. +1612518640: Sending CONNACK to 172.18.0.3 (0, 5) +1612518640: Socket error on client , disconnecting. +1612518660: New connection from 172.18.0.3 on port 1883. +1612518660: Sending CONNACK to 172.18.0.3 (0, 5) +1612518660: Socket error on client , disconnecting. +1612518680: New connection from 172.18.0.3 on port 1883. +1612518680: Sending CONNACK to 172.18.0.3 (0, 5) +1612518680: Socket error on client , disconnecting. +1612518700: New connection from 172.18.0.3 on port 1883. +1612518700: Sending CONNACK to 172.18.0.3 (0, 5) +1612518700: Socket error on client , disconnecting. +1612518720: New connection from 172.18.0.3 on port 1883. +1612518720: Sending CONNACK to 172.18.0.3 (0, 5) +1612518720: Socket error on client , disconnecting. +1612518740: New connection from 172.18.0.3 on port 1883. +1612518740: Sending CONNACK to 172.18.0.3 (0, 5) +1612518740: Socket error on client , disconnecting. +1612518760: New connection from 172.18.0.3 on port 1883. +1612518760: Sending CONNACK to 172.18.0.3 (0, 5) +1612518760: Socket error on client , disconnecting. +1612518780: New connection from 172.18.0.3 on port 1883. +1612518780: Sending CONNACK to 172.18.0.3 (0, 5) +1612518780: Socket error on client , disconnecting. +1612518800: New connection from 172.18.0.3 on port 1883. +1612518800: Sending CONNACK to 172.18.0.3 (0, 5) +1612518800: Socket error on client , disconnecting. +1612518820: New connection from 172.18.0.3 on port 1883. +1612518820: Sending CONNACK to 172.18.0.3 (0, 5) +1612518820: Socket error on client , disconnecting. +1612518840: New connection from 172.18.0.3 on port 1883. +1612518840: Sending CONNACK to 172.18.0.3 (0, 5) +1612518840: Socket error on client , disconnecting. +1612518860: New connection from 172.18.0.3 on port 1883. +1612518860: Sending CONNACK to 172.18.0.3 (0, 5) +1612518860: Socket error on client , disconnecting. +1612518880: New connection from 172.18.0.3 on port 1883. +1612518880: Sending CONNACK to 172.18.0.3 (0, 5) +1612518880: Socket error on client , disconnecting. +1612518900: New connection from 172.18.0.3 on port 1883. +1612518900: Sending CONNACK to 172.18.0.3 (0, 5) +1612518900: Socket error on client , disconnecting. +1612518920: New connection from 172.18.0.3 on port 1883. +1612518920: Sending CONNACK to 172.18.0.3 (0, 5) +1612518920: Socket error on client , disconnecting. +1612518940: New connection from 172.18.0.3 on port 1883. +1612518940: Sending CONNACK to 172.18.0.3 (0, 5) +1612518940: Socket error on client , disconnecting. +1612518960: New connection from 172.18.0.3 on port 1883. +1612518960: Sending CONNACK to 172.18.0.3 (0, 5) +1612518960: Socket error on client , disconnecting. +1612518980: New connection from 172.18.0.3 on port 1883. +1612518980: Sending CONNACK to 172.18.0.3 (0, 5) +1612518980: Socket error on client , disconnecting. +1612519000: New connection from 172.18.0.3 on port 1883. +1612519000: Sending CONNACK to 172.18.0.3 (0, 5) +1612519000: Socket error on client , disconnecting. +1612519020: New connection from 172.18.0.3 on port 1883. +1612519020: Sending CONNACK to 172.18.0.3 (0, 5) +1612519020: Socket error on client , disconnecting. +1612519040: New connection from 172.18.0.3 on port 1883. +1612519040: Sending CONNACK to 172.18.0.3 (0, 5) +1612519040: Socket error on client , disconnecting. +1612519060: New connection from 172.18.0.3 on port 1883. +1612519060: Sending CONNACK to 172.18.0.3 (0, 5) +1612519060: Socket error on client , disconnecting. +1612519080: New connection from 172.18.0.3 on port 1883. +1612519080: Sending CONNACK to 172.18.0.3 (0, 5) +1612519080: Socket error on client , disconnecting. +1612519100: New connection from 172.18.0.3 on port 1883. +1612519100: Sending CONNACK to 172.18.0.3 (0, 5) +1612519100: Socket error on client , disconnecting. +1612519120: New connection from 172.18.0.3 on port 1883. +1612519120: Sending CONNACK to 172.18.0.3 (0, 5) +1612519120: Socket error on client , disconnecting. +1612519140: New connection from 172.18.0.3 on port 1883. +1612519140: Sending CONNACK to 172.18.0.3 (0, 5) +1612519140: Socket error on client , disconnecting. +1612519160: New connection from 172.18.0.3 on port 1883. +1612519160: Sending CONNACK to 172.18.0.3 (0, 5) +1612519160: Socket error on client , disconnecting. +1612519180: New connection from 172.18.0.3 on port 1883. +1612519180: Sending CONNACK to 172.18.0.3 (0, 5) +1612519180: Socket error on client , disconnecting. +1612519200: New connection from 172.18.0.3 on port 1883. +1612519200: Sending CONNACK to 172.18.0.3 (0, 5) +1612519200: Socket error on client , disconnecting. +1612519220: New connection from 172.18.0.3 on port 1883. +1612519220: Sending CONNACK to 172.18.0.3 (0, 5) +1612519220: Socket error on client , disconnecting. +1612519240: New connection from 172.18.0.3 on port 1883. +1612519240: Sending CONNACK to 172.18.0.3 (0, 5) +1612519240: Socket error on client , disconnecting. +1612519260: New connection from 172.18.0.3 on port 1883. +1612519260: Sending CONNACK to 172.18.0.3 (0, 5) +1612519260: Socket error on client , disconnecting. +1612519280: New connection from 172.18.0.3 on port 1883. +1612519280: Sending CONNACK to 172.18.0.3 (0, 5) +1612519280: Socket error on client , disconnecting. +1612519300: New connection from 172.18.0.3 on port 1883. +1612519300: Sending CONNACK to 172.18.0.3 (0, 5) +1612519300: Socket error on client , disconnecting. +1612519320: New connection from 172.18.0.3 on port 1883. +1612519320: Sending CONNACK to 172.18.0.3 (0, 5) +1612519320: Socket error on client , disconnecting. +1612519340: New connection from 172.18.0.3 on port 1883. +1612519340: Sending CONNACK to 172.18.0.3 (0, 5) +1612519340: Socket error on client , disconnecting. +1612519360: New connection from 172.18.0.3 on port 1883. +1612519360: Sending CONNACK to 172.18.0.3 (0, 5) +1612519360: Socket error on client , disconnecting. +1612519380: New connection from 172.18.0.3 on port 1883. +1612519380: Sending CONNACK to 172.18.0.3 (0, 5) +1612519380: Socket error on client , disconnecting. +1612519400: New connection from 172.18.0.3 on port 1883. +1612519400: Sending CONNACK to 172.18.0.3 (0, 5) +1612519400: Socket error on client , disconnecting. +1612519420: New connection from 172.18.0.3 on port 1883. +1612519420: Sending CONNACK to 172.18.0.3 (0, 5) +1612519420: Socket error on client , disconnecting. +1612519440: New connection from 172.18.0.3 on port 1883. +1612519440: Sending CONNACK to 172.18.0.3 (0, 5) +1612519440: Socket error on client , disconnecting. +1612519460: New connection from 172.18.0.3 on port 1883. +1612519460: Sending CONNACK to 172.18.0.3 (0, 5) +1612519460: Socket error on client , disconnecting. +1612519480: New connection from 172.18.0.3 on port 1883. +1612519480: Sending CONNACK to 172.18.0.3 (0, 5) +1612519480: Socket error on client , disconnecting. +1612519500: New connection from 172.18.0.3 on port 1883. +1612519500: Sending CONNACK to 172.18.0.3 (0, 5) +1612519500: Socket error on client , disconnecting. +1612519520: New connection from 172.18.0.3 on port 1883. +1612519520: Sending CONNACK to 172.18.0.3 (0, 5) +1612519520: Socket error on client , disconnecting. +1612519540: New connection from 172.18.0.3 on port 1883. +1612519540: Sending CONNACK to 172.18.0.3 (0, 5) +1612519540: Socket error on client , disconnecting. +1612519560: New connection from 172.18.0.3 on port 1883. +1612519560: Sending CONNACK to 172.18.0.3 (0, 5) +1612519560: Socket error on client , disconnecting. +1612519580: New connection from 172.18.0.3 on port 1883. +1612519580: Sending CONNACK to 172.18.0.3 (0, 5) +1612519580: Socket error on client , disconnecting. +1612519600: New connection from 172.18.0.3 on port 1883. +1612519600: Sending CONNACK to 172.18.0.3 (0, 5) +1612519600: Socket error on client , disconnecting. +1612519620: New connection from 172.18.0.3 on port 1883. +1612519620: Sending CONNACK to 172.18.0.3 (0, 5) +1612519620: Socket error on client , disconnecting. +1612519640: New connection from 172.18.0.3 on port 1883. +1612519640: Sending CONNACK to 172.18.0.3 (0, 5) +1612519640: Socket error on client , disconnecting. +1612519660: New connection from 172.18.0.3 on port 1883. +1612519660: Sending CONNACK to 172.18.0.3 (0, 5) +1612519660: Socket error on client , disconnecting. +1612519680: New connection from 172.18.0.3 on port 1883. +1612519680: Sending CONNACK to 172.18.0.3 (0, 5) +1612519680: Socket error on client , disconnecting. +1612519700: New connection from 172.18.0.3 on port 1883. +1612519700: Sending CONNACK to 172.18.0.3 (0, 5) +1612519700: Socket error on client , disconnecting. +1612519720: New connection from 172.18.0.3 on port 1883. +1612519720: Sending CONNACK to 172.18.0.3 (0, 5) +1612519720: Socket error on client , disconnecting. +1612519740: New connection from 172.18.0.3 on port 1883. +1612519740: Sending CONNACK to 172.18.0.3 (0, 5) +1612519740: Socket error on client , disconnecting. +1612519760: New connection from 172.18.0.3 on port 1883. +1612519760: Sending CONNACK to 172.18.0.3 (0, 5) +1612519760: Socket error on client , disconnecting. +1612519780: New connection from 172.18.0.3 on port 1883. +1612519780: Sending CONNACK to 172.18.0.3 (0, 5) +1612519780: Socket error on client , disconnecting. +1612519800: New connection from 172.18.0.3 on port 1883. +1612519800: Sending CONNACK to 172.18.0.3 (0, 5) +1612519800: Socket error on client , disconnecting. +1612519820: New connection from 172.18.0.3 on port 1883. +1612519820: Sending CONNACK to 172.18.0.3 (0, 5) +1612519820: Socket error on client , disconnecting. +1612519840: New connection from 172.18.0.3 on port 1883. +1612519840: Sending CONNACK to 172.18.0.3 (0, 5) +1612519840: Socket error on client , disconnecting. +1612519860: New connection from 172.18.0.3 on port 1883. +1612519860: Sending CONNACK to 172.18.0.3 (0, 5) +1612519860: Socket error on client , disconnecting. +1612519880: New connection from 172.18.0.3 on port 1883. +1612519880: Sending CONNACK to 172.18.0.3 (0, 5) +1612519880: Socket error on client , disconnecting. +1612519900: New connection from 172.18.0.3 on port 1883. +1612519900: Sending CONNACK to 172.18.0.3 (0, 5) +1612519900: Socket error on client , disconnecting. +1612519920: New connection from 172.18.0.3 on port 1883. +1612519920: Sending CONNACK to 172.18.0.3 (0, 5) +1612519920: Socket error on client , disconnecting. +1612519940: New connection from 172.18.0.3 on port 1883. +1612519940: Sending CONNACK to 172.18.0.3 (0, 5) +1612519940: Socket error on client , disconnecting. +1612519960: New connection from 172.18.0.3 on port 1883. +1612519960: Sending CONNACK to 172.18.0.3 (0, 5) +1612519960: Socket error on client , disconnecting. +1612519980: New connection from 172.18.0.3 on port 1883. +1612519980: Sending CONNACK to 172.18.0.3 (0, 5) +1612519980: Socket error on client , disconnecting. +1612520000: New connection from 172.18.0.3 on port 1883. +1612520000: Sending CONNACK to 172.18.0.3 (0, 5) +1612520000: Socket error on client , disconnecting. +1612520020: New connection from 172.18.0.3 on port 1883. +1612520020: Sending CONNACK to 172.18.0.3 (0, 5) +1612520020: Socket error on client , disconnecting. +1612520040: New connection from 172.18.0.3 on port 1883. +1612520040: Sending CONNACK to 172.18.0.3 (0, 5) +1612520040: Socket error on client , disconnecting. +1612520060: New connection from 172.18.0.3 on port 1883. +1612520060: Sending CONNACK to 172.18.0.3 (0, 5) +1612520060: Socket error on client , disconnecting. +1612520080: New connection from 172.18.0.3 on port 1883. +1612520080: Sending CONNACK to 172.18.0.3 (0, 5) +1612520080: Socket error on client , disconnecting. +1612520100: New connection from 172.18.0.3 on port 1883. +1612520100: Sending CONNACK to 172.18.0.3 (0, 5) +1612520100: Socket error on client , disconnecting. +1612520120: New connection from 172.18.0.3 on port 1883. +1612520120: Sending CONNACK to 172.18.0.3 (0, 5) +1612520120: Socket error on client , disconnecting. +1612520140: New connection from 172.18.0.3 on port 1883. +1612520140: Sending CONNACK to 172.18.0.3 (0, 5) +1612520140: Socket error on client , disconnecting. +1612520160: New connection from 172.18.0.3 on port 1883. +1612520160: Sending CONNACK to 172.18.0.3 (0, 5) +1612520160: Socket error on client , disconnecting. +1612520180: New connection from 172.18.0.3 on port 1883. +1612520180: Sending CONNACK to 172.18.0.3 (0, 5) +1612520180: Socket error on client , disconnecting. +1612520200: New connection from 172.18.0.3 on port 1883. +1612520200: Sending CONNACK to 172.18.0.3 (0, 5) +1612520200: Socket error on client , disconnecting. +1612520220: New connection from 172.18.0.3 on port 1883. +1612520220: Sending CONNACK to 172.18.0.3 (0, 5) +1612520220: Socket error on client , disconnecting. +1612520240: New connection from 172.18.0.3 on port 1883. +1612520240: Sending CONNACK to 172.18.0.3 (0, 5) +1612520240: Socket error on client , disconnecting. +1612520258: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612520258: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612520258: Error: Permission denied. +1612520260: New connection from 172.18.0.3 on port 1883. +1612520260: Sending CONNACK to 172.18.0.3 (0, 5) +1612520260: Socket error on client , disconnecting. +1612520280: New connection from 172.18.0.3 on port 1883. +1612520280: Sending CONNACK to 172.18.0.3 (0, 5) +1612520280: Socket error on client , disconnecting. +1612520300: New connection from 172.18.0.3 on port 1883. +1612520300: Sending CONNACK to 172.18.0.3 (0, 5) +1612520300: Socket error on client , disconnecting. +1612520320: New connection from 172.18.0.3 on port 1883. +1612520320: Sending CONNACK to 172.18.0.3 (0, 5) +1612520320: Socket error on client , disconnecting. +1612520340: New connection from 172.18.0.3 on port 1883. +1612520340: Sending CONNACK to 172.18.0.3 (0, 5) +1612520340: Socket error on client , disconnecting. +1612520360: New connection from 172.18.0.3 on port 1883. +1612520360: Sending CONNACK to 172.18.0.3 (0, 5) +1612520360: Socket error on client , disconnecting. +1612520380: New connection from 172.18.0.3 on port 1883. +1612520380: Sending CONNACK to 172.18.0.3 (0, 5) +1612520380: Socket error on client , disconnecting. +1612520400: New connection from 172.18.0.3 on port 1883. +1612520400: Sending CONNACK to 172.18.0.3 (0, 5) +1612520400: Socket error on client , disconnecting. +1612520420: New connection from 172.18.0.3 on port 1883. +1612520420: Sending CONNACK to 172.18.0.3 (0, 5) +1612520420: Socket error on client , disconnecting. +1612520440: New connection from 172.18.0.3 on port 1883. +1612520440: Sending CONNACK to 172.18.0.3 (0, 5) +1612520440: Socket error on client , disconnecting. +1612520460: New connection from 172.18.0.3 on port 1883. +1612520460: Sending CONNACK to 172.18.0.3 (0, 5) +1612520460: Socket error on client , disconnecting. +1612520480: New connection from 172.18.0.3 on port 1883. +1612520480: Sending CONNACK to 172.18.0.3 (0, 5) +1612520480: Socket error on client , disconnecting. +1612520500: New connection from 172.18.0.3 on port 1883. +1612520500: Sending CONNACK to 172.18.0.3 (0, 5) +1612520500: Socket error on client , disconnecting. +1612520520: New connection from 172.18.0.3 on port 1883. +1612520520: Sending CONNACK to 172.18.0.3 (0, 5) +1612520520: Socket error on client , disconnecting. +1612520540: New connection from 172.18.0.3 on port 1883. +1612520540: Sending CONNACK to 172.18.0.3 (0, 5) +1612520540: Socket error on client , disconnecting. +1612520560: New connection from 172.18.0.3 on port 1883. +1612520560: Sending CONNACK to 172.18.0.3 (0, 5) +1612520560: Socket error on client , disconnecting. +1612520580: New connection from 172.18.0.3 on port 1883. +1612520580: Sending CONNACK to 172.18.0.3 (0, 5) +1612520580: Socket error on client , disconnecting. +1612520600: New connection from 172.18.0.3 on port 1883. +1612520600: Sending CONNACK to 172.18.0.3 (0, 5) +1612520600: Socket error on client , disconnecting. +1612520620: New connection from 172.18.0.3 on port 1883. +1612520620: Sending CONNACK to 172.18.0.3 (0, 5) +1612520620: Socket error on client , disconnecting. +1612520640: New connection from 172.18.0.3 on port 1883. +1612520640: Sending CONNACK to 172.18.0.3 (0, 5) +1612520640: Socket error on client , disconnecting. +1612520660: New connection from 172.18.0.3 on port 1883. +1612520660: Sending CONNACK to 172.18.0.3 (0, 5) +1612520660: Socket error on client , disconnecting. +1612520680: New connection from 172.18.0.3 on port 1883. +1612520680: Sending CONNACK to 172.18.0.3 (0, 5) +1612520680: Socket error on client , disconnecting. +1612520700: New connection from 172.18.0.3 on port 1883. +1612520700: Sending CONNACK to 172.18.0.3 (0, 5) +1612520700: Socket error on client , disconnecting. +1612520720: New connection from 172.18.0.3 on port 1883. +1612520720: Sending CONNACK to 172.18.0.3 (0, 5) +1612520720: Socket error on client , disconnecting. +1612520740: New connection from 172.18.0.3 on port 1883. +1612520740: Sending CONNACK to 172.18.0.3 (0, 5) +1612520740: Socket error on client , disconnecting. +1612520760: New connection from 172.18.0.3 on port 1883. +1612520760: Sending CONNACK to 172.18.0.3 (0, 5) +1612520760: Socket error on client , disconnecting. +1612520780: New connection from 172.18.0.3 on port 1883. +1612520780: Sending CONNACK to 172.18.0.3 (0, 5) +1612520780: Socket error on client , disconnecting. +1612520800: New connection from 172.18.0.3 on port 1883. +1612520800: Sending CONNACK to 172.18.0.3 (0, 5) +1612520800: Socket error on client , disconnecting. +1612520820: New connection from 172.18.0.3 on port 1883. +1612520820: Sending CONNACK to 172.18.0.3 (0, 5) +1612520820: Socket error on client , disconnecting. +1612520840: New connection from 172.18.0.3 on port 1883. +1612520840: Sending CONNACK to 172.18.0.3 (0, 5) +1612520840: Socket error on client , disconnecting. +1612520860: New connection from 172.18.0.3 on port 1883. +1612520860: Sending CONNACK to 172.18.0.3 (0, 5) +1612520860: Socket error on client , disconnecting. +1612520880: New connection from 172.18.0.3 on port 1883. +1612520880: Sending CONNACK to 172.18.0.3 (0, 5) +1612520880: Socket error on client , disconnecting. +1612520900: New connection from 172.18.0.3 on port 1883. +1612520900: Sending CONNACK to 172.18.0.3 (0, 5) +1612520900: Socket error on client , disconnecting. +1612520920: New connection from 172.18.0.3 on port 1883. +1612520920: Sending CONNACK to 172.18.0.3 (0, 5) +1612520920: Socket error on client , disconnecting. +1612520940: New connection from 172.18.0.3 on port 1883. +1612520940: Sending CONNACK to 172.18.0.3 (0, 5) +1612520940: Socket error on client , disconnecting. +1612520960: New connection from 172.18.0.3 on port 1883. +1612520960: Sending CONNACK to 172.18.0.3 (0, 5) +1612520960: Socket error on client , disconnecting. +1612520980: New connection from 172.18.0.3 on port 1883. +1612520980: Sending CONNACK to 172.18.0.3 (0, 5) +1612520980: Socket error on client , disconnecting. +1612521000: New connection from 172.18.0.3 on port 1883. +1612521000: Sending CONNACK to 172.18.0.3 (0, 5) +1612521000: Socket error on client , disconnecting. +1612521020: New connection from 172.18.0.3 on port 1883. +1612521020: Sending CONNACK to 172.18.0.3 (0, 5) +1612521020: Socket error on client , disconnecting. +1612521040: New connection from 172.18.0.3 on port 1883. +1612521040: Sending CONNACK to 172.18.0.3 (0, 5) +1612521040: Socket error on client , disconnecting. +1612521060: New connection from 172.18.0.3 on port 1883. +1612521060: Sending CONNACK to 172.18.0.3 (0, 5) +1612521060: Socket error on client , disconnecting. +1612521080: New connection from 172.18.0.3 on port 1883. +1612521080: Sending CONNACK to 172.18.0.3 (0, 5) +1612521080: Socket error on client , disconnecting. +1612521100: New connection from 172.18.0.3 on port 1883. +1612521100: Sending CONNACK to 172.18.0.3 (0, 5) +1612521100: Socket error on client , disconnecting. +1612521120: New connection from 172.18.0.3 on port 1883. +1612521120: Sending CONNACK to 172.18.0.3 (0, 5) +1612521120: Socket error on client , disconnecting. +1612521140: New connection from 172.18.0.3 on port 1883. +1612521140: Sending CONNACK to 172.18.0.3 (0, 5) +1612521140: Socket error on client , disconnecting. +1612521160: New connection from 172.18.0.3 on port 1883. +1612521160: Sending CONNACK to 172.18.0.3 (0, 5) +1612521160: Socket error on client , disconnecting. +1612521180: New connection from 172.18.0.3 on port 1883. +1612521180: Sending CONNACK to 172.18.0.3 (0, 5) +1612521180: Socket error on client , disconnecting. +1612521200: New connection from 172.18.0.3 on port 1883. +1612521200: Sending CONNACK to 172.18.0.3 (0, 5) +1612521200: Socket error on client , disconnecting. +1612521220: New connection from 172.18.0.3 on port 1883. +1612521220: Sending CONNACK to 172.18.0.3 (0, 5) +1612521220: Socket error on client , disconnecting. +1612521240: New connection from 172.18.0.3 on port 1883. +1612521240: Sending CONNACK to 172.18.0.3 (0, 5) +1612521240: Socket error on client , disconnecting. +1612521260: New connection from 172.18.0.3 on port 1883. +1612521260: Sending CONNACK to 172.18.0.3 (0, 5) +1612521260: Socket error on client , disconnecting. +1612521280: New connection from 172.18.0.3 on port 1883. +1612521280: Sending CONNACK to 172.18.0.3 (0, 5) +1612521280: Socket error on client , disconnecting. +1612521300: New connection from 172.18.0.3 on port 1883. +1612521300: Sending CONNACK to 172.18.0.3 (0, 5) +1612521300: Socket error on client , disconnecting. +1612521320: New connection from 172.18.0.3 on port 1883. +1612521320: Sending CONNACK to 172.18.0.3 (0, 5) +1612521320: Socket error on client , disconnecting. +1612521340: New connection from 172.18.0.3 on port 1883. +1612521340: Sending CONNACK to 172.18.0.3 (0, 5) +1612521340: Socket error on client , disconnecting. +1612521360: New connection from 172.18.0.3 on port 1883. +1612521360: Sending CONNACK to 172.18.0.3 (0, 5) +1612521360: Socket error on client , disconnecting. +1612521380: New connection from 172.18.0.3 on port 1883. +1612521380: Sending CONNACK to 172.18.0.3 (0, 5) +1612521380: Socket error on client , disconnecting. +1612521400: New connection from 172.18.0.3 on port 1883. +1612521400: Sending CONNACK to 172.18.0.3 (0, 5) +1612521400: Socket error on client , disconnecting. +1612521420: New connection from 172.18.0.3 on port 1883. +1612521420: Sending CONNACK to 172.18.0.3 (0, 5) +1612521420: Socket error on client , disconnecting. +1612521440: New connection from 172.18.0.3 on port 1883. +1612521440: Sending CONNACK to 172.18.0.3 (0, 5) +1612521440: Socket error on client , disconnecting. +1612521460: New connection from 172.18.0.3 on port 1883. +1612521460: Sending CONNACK to 172.18.0.3 (0, 5) +1612521460: Socket error on client , disconnecting. +1612521480: New connection from 172.18.0.3 on port 1883. +1612521480: Sending CONNACK to 172.18.0.3 (0, 5) +1612521480: Socket error on client , disconnecting. +1612521500: New connection from 172.18.0.3 on port 1883. +1612521500: Sending CONNACK to 172.18.0.3 (0, 5) +1612521500: Socket error on client , disconnecting. +1612521520: New connection from 172.18.0.3 on port 1883. +1612521520: Sending CONNACK to 172.18.0.3 (0, 5) +1612521520: Socket error on client , disconnecting. +1612521540: New connection from 172.18.0.3 on port 1883. +1612521540: Sending CONNACK to 172.18.0.3 (0, 5) +1612521540: Socket error on client , disconnecting. +1612521560: New connection from 172.18.0.3 on port 1883. +1612521560: Sending CONNACK to 172.18.0.3 (0, 5) +1612521560: Socket error on client , disconnecting. +1612521580: New connection from 172.18.0.3 on port 1883. +1612521580: Sending CONNACK to 172.18.0.3 (0, 5) +1612521580: Socket error on client , disconnecting. +1612521600: New connection from 172.18.0.3 on port 1883. +1612521600: Sending CONNACK to 172.18.0.3 (0, 5) +1612521600: Socket error on client , disconnecting. +1612521620: New connection from 172.18.0.3 on port 1883. +1612521620: Sending CONNACK to 172.18.0.3 (0, 5) +1612521620: Socket error on client , disconnecting. +1612521640: New connection from 172.18.0.3 on port 1883. +1612521640: Sending CONNACK to 172.18.0.3 (0, 5) +1612521640: Socket error on client , disconnecting. +1612521660: New connection from 172.18.0.3 on port 1883. +1612521660: Sending CONNACK to 172.18.0.3 (0, 5) +1612521660: Socket error on client , disconnecting. +1612521680: New connection from 172.18.0.3 on port 1883. +1612521680: Sending CONNACK to 172.18.0.3 (0, 5) +1612521680: Socket error on client , disconnecting. +1612521700: New connection from 172.18.0.3 on port 1883. +1612521700: Sending CONNACK to 172.18.0.3 (0, 5) +1612521700: Socket error on client , disconnecting. +1612521720: New connection from 172.18.0.3 on port 1883. +1612521720: Sending CONNACK to 172.18.0.3 (0, 5) +1612521720: Socket error on client , disconnecting. +1612521740: New connection from 172.18.0.3 on port 1883. +1612521740: Sending CONNACK to 172.18.0.3 (0, 5) +1612521740: Socket error on client , disconnecting. +1612521760: New connection from 172.18.0.3 on port 1883. +1612521760: Sending CONNACK to 172.18.0.3 (0, 5) +1612521760: Socket error on client , disconnecting. +1612521780: New connection from 172.18.0.3 on port 1883. +1612521780: Sending CONNACK to 172.18.0.3 (0, 5) +1612521780: Socket error on client , disconnecting. +1612521800: New connection from 172.18.0.3 on port 1883. +1612521800: Sending CONNACK to 172.18.0.3 (0, 5) +1612521800: Socket error on client , disconnecting. +1612521820: New connection from 172.18.0.3 on port 1883. +1612521820: Sending CONNACK to 172.18.0.3 (0, 5) +1612521820: Socket error on client , disconnecting. +1612521840: New connection from 172.18.0.3 on port 1883. +1612521840: Sending CONNACK to 172.18.0.3 (0, 5) +1612521840: Socket error on client , disconnecting. +1612521860: New connection from 172.18.0.3 on port 1883. +1612521860: Sending CONNACK to 172.18.0.3 (0, 5) +1612521860: Socket error on client , disconnecting. +1612521880: New connection from 172.18.0.3 on port 1883. +1612521880: Sending CONNACK to 172.18.0.3 (0, 5) +1612521880: Socket error on client , disconnecting. +1612521900: New connection from 172.18.0.3 on port 1883. +1612521900: Sending CONNACK to 172.18.0.3 (0, 5) +1612521900: Socket error on client , disconnecting. +1612521920: New connection from 172.18.0.3 on port 1883. +1612521920: Sending CONNACK to 172.18.0.3 (0, 5) +1612521920: Socket error on client , disconnecting. +1612521940: New connection from 172.18.0.3 on port 1883. +1612521940: Sending CONNACK to 172.18.0.3 (0, 5) +1612521940: Socket error on client , disconnecting. +1612521960: New connection from 172.18.0.3 on port 1883. +1612521960: Sending CONNACK to 172.18.0.3 (0, 5) +1612521960: Socket error on client , disconnecting. +1612521980: New connection from 172.18.0.3 on port 1883. +1612521980: Sending CONNACK to 172.18.0.3 (0, 5) +1612521980: Socket error on client , disconnecting. +1612522000: New connection from 172.18.0.3 on port 1883. +1612522000: Sending CONNACK to 172.18.0.3 (0, 5) +1612522000: Socket error on client , disconnecting. +1612522020: New connection from 172.18.0.3 on port 1883. +1612522020: Sending CONNACK to 172.18.0.3 (0, 5) +1612522020: Socket error on client , disconnecting. +1612522040: New connection from 172.18.0.3 on port 1883. +1612522040: Sending CONNACK to 172.18.0.3 (0, 5) +1612522040: Socket error on client , disconnecting. +1612522059: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612522059: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612522059: Error: Permission denied. +1612522060: New connection from 172.18.0.3 on port 1883. +1612522060: Sending CONNACK to 172.18.0.3 (0, 5) +1612522060: Socket error on client , disconnecting. +1612522080: New connection from 172.18.0.3 on port 1883. +1612522080: Sending CONNACK to 172.18.0.3 (0, 5) +1612522080: Socket error on client , disconnecting. +1612522100: New connection from 172.18.0.3 on port 1883. +1612522100: Sending CONNACK to 172.18.0.3 (0, 5) +1612522100: Socket error on client , disconnecting. +1612522120: New connection from 172.18.0.3 on port 1883. +1612522120: Sending CONNACK to 172.18.0.3 (0, 5) +1612522120: Socket error on client , disconnecting. +1612522140: New connection from 172.18.0.3 on port 1883. +1612522140: Sending CONNACK to 172.18.0.3 (0, 5) +1612522140: Socket error on client , disconnecting. +1612522160: New connection from 172.18.0.3 on port 1883. +1612522160: Sending CONNACK to 172.18.0.3 (0, 5) +1612522160: Socket error on client , disconnecting. +1612522180: New connection from 172.18.0.3 on port 1883. +1612522180: Sending CONNACK to 172.18.0.3 (0, 5) +1612522180: Socket error on client , disconnecting. +1612522200: New connection from 172.18.0.3 on port 1883. +1612522200: Sending CONNACK to 172.18.0.3 (0, 5) +1612522200: Socket error on client , disconnecting. +1612522220: New connection from 172.18.0.3 on port 1883. +1612522220: Sending CONNACK to 172.18.0.3 (0, 5) +1612522220: Socket error on client , disconnecting. +1612522240: New connection from 172.18.0.3 on port 1883. +1612522240: Sending CONNACK to 172.18.0.3 (0, 5) +1612522240: Socket error on client , disconnecting. +1612522260: New connection from 172.18.0.3 on port 1883. +1612522260: Sending CONNACK to 172.18.0.3 (0, 5) +1612522260: Socket error on client , disconnecting. +1612522280: New connection from 172.18.0.3 on port 1883. +1612522280: Sending CONNACK to 172.18.0.3 (0, 5) +1612522280: Socket error on client , disconnecting. +1612522300: New connection from 172.18.0.3 on port 1883. +1612522300: Sending CONNACK to 172.18.0.3 (0, 5) +1612522300: Socket error on client , disconnecting. +1612522320: New connection from 172.18.0.3 on port 1883. +1612522320: Sending CONNACK to 172.18.0.3 (0, 5) +1612522320: Socket error on client , disconnecting. +1612522340: New connection from 172.18.0.3 on port 1883. +1612522340: Sending CONNACK to 172.18.0.3 (0, 5) +1612522340: Socket error on client , disconnecting. +1612522360: New connection from 172.18.0.3 on port 1883. +1612522360: Sending CONNACK to 172.18.0.3 (0, 5) +1612522360: Socket error on client , disconnecting. +1612522380: New connection from 172.18.0.3 on port 1883. +1612522380: Sending CONNACK to 172.18.0.3 (0, 5) +1612522380: Socket error on client , disconnecting. +1612522400: New connection from 172.18.0.3 on port 1883. +1612522400: Sending CONNACK to 172.18.0.3 (0, 5) +1612522400: Socket error on client , disconnecting. +1612522420: New connection from 172.18.0.3 on port 1883. +1612522420: Sending CONNACK to 172.18.0.3 (0, 5) +1612522420: Socket error on client , disconnecting. +1612522440: New connection from 172.18.0.3 on port 1883. +1612522440: Sending CONNACK to 172.18.0.3 (0, 5) +1612522440: Socket error on client , disconnecting. +1612522460: New connection from 172.18.0.3 on port 1883. +1612522460: Sending CONNACK to 172.18.0.3 (0, 5) +1612522460: Socket error on client , disconnecting. +1612522480: New connection from 172.18.0.3 on port 1883. +1612522480: Sending CONNACK to 172.18.0.3 (0, 5) +1612522480: Socket error on client , disconnecting. +1612522500: New connection from 172.18.0.3 on port 1883. +1612522500: Sending CONNACK to 172.18.0.3 (0, 5) +1612522500: Socket error on client , disconnecting. +1612522520: New connection from 172.18.0.3 on port 1883. +1612522520: Sending CONNACK to 172.18.0.3 (0, 5) +1612522520: Socket error on client , disconnecting. +1612522540: New connection from 172.18.0.3 on port 1883. +1612522540: Sending CONNACK to 172.18.0.3 (0, 5) +1612522540: Socket error on client , disconnecting. +1612522560: New connection from 172.18.0.3 on port 1883. +1612522560: Sending CONNACK to 172.18.0.3 (0, 5) +1612522560: Socket error on client , disconnecting. +1612522580: New connection from 172.18.0.3 on port 1883. +1612522580: Sending CONNACK to 172.18.0.3 (0, 5) +1612522580: Socket error on client , disconnecting. +1612522600: New connection from 172.18.0.3 on port 1883. +1612522600: Sending CONNACK to 172.18.0.3 (0, 5) +1612522600: Socket error on client , disconnecting. +1612522620: New connection from 172.18.0.3 on port 1883. +1612522620: Sending CONNACK to 172.18.0.3 (0, 5) +1612522620: Socket error on client , disconnecting. +1612522640: New connection from 172.18.0.3 on port 1883. +1612522640: Sending CONNACK to 172.18.0.3 (0, 5) +1612522640: Socket error on client , disconnecting. +1612522660: New connection from 172.18.0.3 on port 1883. +1612522660: Sending CONNACK to 172.18.0.3 (0, 5) +1612522660: Socket error on client , disconnecting. +1612522680: New connection from 172.18.0.3 on port 1883. +1612522680: Sending CONNACK to 172.18.0.3 (0, 5) +1612522680: Socket error on client , disconnecting. +1612522700: New connection from 172.18.0.3 on port 1883. +1612522700: Sending CONNACK to 172.18.0.3 (0, 5) +1612522700: Socket error on client , disconnecting. +1612522720: New connection from 172.18.0.3 on port 1883. +1612522720: Sending CONNACK to 172.18.0.3 (0, 5) +1612522720: Socket error on client , disconnecting. +1612522740: New connection from 172.18.0.3 on port 1883. +1612522740: Sending CONNACK to 172.18.0.3 (0, 5) +1612522740: Socket error on client , disconnecting. +1612522760: New connection from 172.18.0.3 on port 1883. +1612522760: Sending CONNACK to 172.18.0.3 (0, 5) +1612522760: Socket error on client , disconnecting. +1612522780: New connection from 172.18.0.3 on port 1883. +1612522780: Sending CONNACK to 172.18.0.3 (0, 5) +1612522780: Socket error on client , disconnecting. +1612522800: New connection from 172.18.0.3 on port 1883. +1612522800: Sending CONNACK to 172.18.0.3 (0, 5) +1612522800: Socket error on client , disconnecting. +1612522820: New connection from 172.18.0.3 on port 1883. +1612522820: Sending CONNACK to 172.18.0.3 (0, 5) +1612522820: Socket error on client , disconnecting. +1612522840: New connection from 172.18.0.3 on port 1883. +1612522840: Sending CONNACK to 172.18.0.3 (0, 5) +1612522840: Socket error on client , disconnecting. +1612522860: New connection from 172.18.0.3 on port 1883. +1612522860: Sending CONNACK to 172.18.0.3 (0, 5) +1612522860: Socket error on client , disconnecting. +1612522880: New connection from 172.18.0.3 on port 1883. +1612522880: Sending CONNACK to 172.18.0.3 (0, 5) +1612522880: Socket error on client , disconnecting. +1612522900: New connection from 172.18.0.3 on port 1883. +1612522900: Sending CONNACK to 172.18.0.3 (0, 5) +1612522900: Socket error on client , disconnecting. +1612522920: New connection from 172.18.0.3 on port 1883. +1612522920: Sending CONNACK to 172.18.0.3 (0, 5) +1612522920: Socket error on client , disconnecting. +1612522940: New connection from 172.18.0.3 on port 1883. +1612522940: Sending CONNACK to 172.18.0.3 (0, 5) +1612522940: Socket error on client , disconnecting. +1612522960: New connection from 172.18.0.3 on port 1883. +1612522960: Sending CONNACK to 172.18.0.3 (0, 5) +1612522960: Socket error on client , disconnecting. +1612522980: New connection from 172.18.0.3 on port 1883. +1612522980: Sending CONNACK to 172.18.0.3 (0, 5) +1612522980: Socket error on client , disconnecting. +1612523000: New connection from 172.18.0.3 on port 1883. +1612523000: Sending CONNACK to 172.18.0.3 (0, 5) +1612523000: Socket error on client , disconnecting. +1612523020: New connection from 172.18.0.3 on port 1883. +1612523020: Sending CONNACK to 172.18.0.3 (0, 5) +1612523020: Socket error on client , disconnecting. +1612523040: New connection from 172.18.0.3 on port 1883. +1612523040: Sending CONNACK to 172.18.0.3 (0, 5) +1612523040: Socket error on client , disconnecting. +1612523060: New connection from 172.18.0.3 on port 1883. +1612523060: Sending CONNACK to 172.18.0.3 (0, 5) +1612523060: Socket error on client , disconnecting. +1612523080: New connection from 172.18.0.3 on port 1883. +1612523080: Sending CONNACK to 172.18.0.3 (0, 5) +1612523080: Socket error on client , disconnecting. +1612523100: New connection from 172.18.0.3 on port 1883. +1612523100: Sending CONNACK to 172.18.0.3 (0, 5) +1612523100: Socket error on client , disconnecting. +1612523120: New connection from 172.18.0.3 on port 1883. +1612523120: Sending CONNACK to 172.18.0.3 (0, 5) +1612523120: Socket error on client , disconnecting. +1612523140: New connection from 172.18.0.3 on port 1883. +1612523140: Sending CONNACK to 172.18.0.3 (0, 5) +1612523140: Socket error on client , disconnecting. +1612523160: New connection from 172.18.0.3 on port 1883. +1612523160: Sending CONNACK to 172.18.0.3 (0, 5) +1612523160: Socket error on client , disconnecting. +1612523180: New connection from 172.18.0.3 on port 1883. +1612523180: Sending CONNACK to 172.18.0.3 (0, 5) +1612523180: Socket error on client , disconnecting. +1612523200: New connection from 172.18.0.3 on port 1883. +1612523200: Sending CONNACK to 172.18.0.3 (0, 5) +1612523200: Socket error on client , disconnecting. +1612523220: New connection from 172.18.0.3 on port 1883. +1612523220: Sending CONNACK to 172.18.0.3 (0, 5) +1612523220: Socket error on client , disconnecting. +1612523240: New connection from 172.18.0.3 on port 1883. +1612523240: Sending CONNACK to 172.18.0.3 (0, 5) +1612523240: Socket error on client , disconnecting. +1612523260: New connection from 172.18.0.3 on port 1883. +1612523260: Sending CONNACK to 172.18.0.3 (0, 5) +1612523260: Socket error on client , disconnecting. +1612523280: New connection from 172.18.0.3 on port 1883. +1612523280: Sending CONNACK to 172.18.0.3 (0, 5) +1612523280: Socket error on client , disconnecting. +1612523300: New connection from 172.18.0.3 on port 1883. +1612523300: Sending CONNACK to 172.18.0.3 (0, 5) +1612523300: Socket error on client , disconnecting. +1612523320: New connection from 172.18.0.3 on port 1883. +1612523320: Sending CONNACK to 172.18.0.3 (0, 5) +1612523320: Socket error on client , disconnecting. +1612523340: New connection from 172.18.0.3 on port 1883. +1612523340: Sending CONNACK to 172.18.0.3 (0, 5) +1612523340: Socket error on client , disconnecting. +1612523360: New connection from 172.18.0.3 on port 1883. +1612523360: Sending CONNACK to 172.18.0.3 (0, 5) +1612523360: Socket error on client , disconnecting. +1612523380: New connection from 172.18.0.3 on port 1883. +1612523380: Sending CONNACK to 172.18.0.3 (0, 5) +1612523380: Socket error on client , disconnecting. +1612523400: New connection from 172.18.0.3 on port 1883. +1612523400: Sending CONNACK to 172.18.0.3 (0, 5) +1612523400: Socket error on client , disconnecting. +1612523420: New connection from 172.18.0.3 on port 1883. +1612523420: Sending CONNACK to 172.18.0.3 (0, 5) +1612523420: Socket error on client , disconnecting. +1612523440: New connection from 172.18.0.3 on port 1883. +1612523440: Sending CONNACK to 172.18.0.3 (0, 5) +1612523440: Socket error on client , disconnecting. +1612523460: New connection from 172.18.0.3 on port 1883. +1612523460: Sending CONNACK to 172.18.0.3 (0, 5) +1612523460: Socket error on client , disconnecting. +1612523480: New connection from 172.18.0.3 on port 1883. +1612523480: Sending CONNACK to 172.18.0.3 (0, 5) +1612523480: Socket error on client , disconnecting. +1612523500: New connection from 172.18.0.3 on port 1883. +1612523500: Sending CONNACK to 172.18.0.3 (0, 5) +1612523500: Socket error on client , disconnecting. +1612523520: New connection from 172.18.0.3 on port 1883. +1612523520: Sending CONNACK to 172.18.0.3 (0, 5) +1612523520: Socket error on client , disconnecting. +1612523540: New connection from 172.18.0.3 on port 1883. +1612523540: Sending CONNACK to 172.18.0.3 (0, 5) +1612523540: Socket error on client , disconnecting. +1612523560: New connection from 172.18.0.3 on port 1883. +1612523560: Sending CONNACK to 172.18.0.3 (0, 5) +1612523560: Socket error on client , disconnecting. +1612523580: New connection from 172.18.0.3 on port 1883. +1612523580: Sending CONNACK to 172.18.0.3 (0, 5) +1612523580: Socket error on client , disconnecting. +1612523600: New connection from 172.18.0.3 on port 1883. +1612523600: Sending CONNACK to 172.18.0.3 (0, 5) +1612523600: Socket error on client , disconnecting. +1612523620: New connection from 172.18.0.3 on port 1883. +1612523620: Sending CONNACK to 172.18.0.3 (0, 5) +1612523620: Socket error on client , disconnecting. +1612523640: New connection from 172.18.0.3 on port 1883. +1612523640: Sending CONNACK to 172.18.0.3 (0, 5) +1612523640: Socket error on client , disconnecting. +1612523660: New connection from 172.18.0.3 on port 1883. +1612523660: Sending CONNACK to 172.18.0.3 (0, 5) +1612523660: Socket error on client , disconnecting. +1612523680: New connection from 172.18.0.3 on port 1883. +1612523680: Sending CONNACK to 172.18.0.3 (0, 5) +1612523680: Socket error on client , disconnecting. +1612523700: New connection from 172.18.0.3 on port 1883. +1612523700: Sending CONNACK to 172.18.0.3 (0, 5) +1612523700: Socket error on client , disconnecting. +1612523720: New connection from 172.18.0.3 on port 1883. +1612523720: Sending CONNACK to 172.18.0.3 (0, 5) +1612523720: Socket error on client , disconnecting. +1612523740: New connection from 172.18.0.3 on port 1883. +1612523740: Sending CONNACK to 172.18.0.3 (0, 5) +1612523740: Socket error on client , disconnecting. +1612523760: New connection from 172.18.0.3 on port 1883. +1612523760: Sending CONNACK to 172.18.0.3 (0, 5) +1612523760: Socket error on client , disconnecting. +1612523780: New connection from 172.18.0.3 on port 1883. +1612523780: Sending CONNACK to 172.18.0.3 (0, 5) +1612523780: Socket error on client , disconnecting. +1612523800: New connection from 172.18.0.3 on port 1883. +1612523800: Sending CONNACK to 172.18.0.3 (0, 5) +1612523800: Socket error on client , disconnecting. +1612523820: New connection from 172.18.0.3 on port 1883. +1612523820: Sending CONNACK to 172.18.0.3 (0, 5) +1612523820: Socket error on client , disconnecting. +1612523840: New connection from 172.18.0.3 on port 1883. +1612523840: Sending CONNACK to 172.18.0.3 (0, 5) +1612523840: Socket error on client , disconnecting. +1612523860: New connection from 172.18.0.3 on port 1883. +1612523860: Sending CONNACK to 172.18.0.3 (0, 5) +1612523860: Socket error on client , disconnecting. +1612523860: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612523860: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612523860: Error: Permission denied. +1612523880: New connection from 172.18.0.3 on port 1883. +1612523880: Sending CONNACK to 172.18.0.3 (0, 5) +1612523880: Socket error on client , disconnecting. +1612523900: New connection from 172.18.0.3 on port 1883. +1612523900: Sending CONNACK to 172.18.0.3 (0, 5) +1612523900: Socket error on client , disconnecting. +1612523920: New connection from 172.18.0.3 on port 1883. +1612523920: Sending CONNACK to 172.18.0.3 (0, 5) +1612523920: Socket error on client , disconnecting. +1612523940: New connection from 172.18.0.3 on port 1883. +1612523940: Sending CONNACK to 172.18.0.3 (0, 5) +1612523940: Socket error on client , disconnecting. +1612523960: New connection from 172.18.0.3 on port 1883. +1612523960: Sending CONNACK to 172.18.0.3 (0, 5) +1612523960: Socket error on client , disconnecting. +1612523980: New connection from 172.18.0.3 on port 1883. +1612523980: Sending CONNACK to 172.18.0.3 (0, 5) +1612523980: Socket error on client , disconnecting. +1612524000: New connection from 172.18.0.3 on port 1883. +1612524000: Sending CONNACK to 172.18.0.3 (0, 5) +1612524000: Socket error on client , disconnecting. +1612524020: New connection from 172.18.0.3 on port 1883. +1612524020: Sending CONNACK to 172.18.0.3 (0, 5) +1612524020: Socket error on client , disconnecting. +1612524040: New connection from 172.18.0.3 on port 1883. +1612524040: Sending CONNACK to 172.18.0.3 (0, 5) +1612524040: Socket error on client , disconnecting. +1612524060: New connection from 172.18.0.3 on port 1883. +1612524060: Sending CONNACK to 172.18.0.3 (0, 5) +1612524060: Socket error on client , disconnecting. +1612524080: New connection from 172.18.0.3 on port 1883. +1612524080: Sending CONNACK to 172.18.0.3 (0, 5) +1612524080: Socket error on client , disconnecting. +1612524100: New connection from 172.18.0.3 on port 1883. +1612524100: Sending CONNACK to 172.18.0.3 (0, 5) +1612524100: Socket error on client , disconnecting. +1612524120: New connection from 172.18.0.3 on port 1883. +1612524120: Sending CONNACK to 172.18.0.3 (0, 5) +1612524120: Socket error on client , disconnecting. +1612524140: New connection from 172.18.0.3 on port 1883. +1612524140: Sending CONNACK to 172.18.0.3 (0, 5) +1612524140: Socket error on client , disconnecting. +1612524160: New connection from 172.18.0.3 on port 1883. +1612524160: Sending CONNACK to 172.18.0.3 (0, 5) +1612524160: Socket error on client , disconnecting. +1612524180: New connection from 172.18.0.3 on port 1883. +1612524180: Sending CONNACK to 172.18.0.3 (0, 5) +1612524180: Socket error on client , disconnecting. +1612524200: New connection from 172.18.0.3 on port 1883. +1612524200: Sending CONNACK to 172.18.0.3 (0, 5) +1612524200: Socket error on client , disconnecting. +1612524220: New connection from 172.18.0.3 on port 1883. +1612524220: Sending CONNACK to 172.18.0.3 (0, 5) +1612524220: Socket error on client , disconnecting. +1612524240: New connection from 172.18.0.3 on port 1883. +1612524240: Sending CONNACK to 172.18.0.3 (0, 5) +1612524240: Socket error on client , disconnecting. +1612524260: New connection from 172.18.0.3 on port 1883. +1612524260: Sending CONNACK to 172.18.0.3 (0, 5) +1612524260: Socket error on client , disconnecting. +1612524280: New connection from 172.18.0.3 on port 1883. +1612524280: Sending CONNACK to 172.18.0.3 (0, 5) +1612524280: Socket error on client , disconnecting. +1612524300: New connection from 172.18.0.3 on port 1883. +1612524300: Sending CONNACK to 172.18.0.3 (0, 5) +1612524300: Socket error on client , disconnecting. +1612524320: New connection from 172.18.0.3 on port 1883. +1612524320: Sending CONNACK to 172.18.0.3 (0, 5) +1612524320: Socket error on client , disconnecting. +1612524340: New connection from 172.18.0.3 on port 1883. +1612524340: Sending CONNACK to 172.18.0.3 (0, 5) +1612524340: Socket error on client , disconnecting. +1612524360: New connection from 172.18.0.3 on port 1883. +1612524360: Sending CONNACK to 172.18.0.3 (0, 5) +1612524360: Socket error on client , disconnecting. +1612524380: New connection from 172.18.0.3 on port 1883. +1612524380: Sending CONNACK to 172.18.0.3 (0, 5) +1612524380: Socket error on client , disconnecting. +1612524400: New connection from 172.18.0.3 on port 1883. +1612524400: Sending CONNACK to 172.18.0.3 (0, 5) +1612524400: Socket error on client , disconnecting. +1612524420: New connection from 172.18.0.3 on port 1883. +1612524420: Sending CONNACK to 172.18.0.3 (0, 5) +1612524420: Socket error on client , disconnecting. +1612524440: New connection from 172.18.0.3 on port 1883. +1612524440: Sending CONNACK to 172.18.0.3 (0, 5) +1612524440: Socket error on client , disconnecting. +1612524460: New connection from 172.18.0.3 on port 1883. +1612524460: Sending CONNACK to 172.18.0.3 (0, 5) +1612524460: Socket error on client , disconnecting. +1612524480: New connection from 172.18.0.3 on port 1883. +1612524480: Sending CONNACK to 172.18.0.3 (0, 5) +1612524480: Socket error on client , disconnecting. +1612524500: New connection from 172.18.0.3 on port 1883. +1612524500: Sending CONNACK to 172.18.0.3 (0, 5) +1612524500: Socket error on client , disconnecting. +1612524520: New connection from 172.18.0.3 on port 1883. +1612524520: Sending CONNACK to 172.18.0.3 (0, 5) +1612524520: Socket error on client , disconnecting. +1612524540: New connection from 172.18.0.3 on port 1883. +1612524540: Sending CONNACK to 172.18.0.3 (0, 5) +1612524540: Socket error on client , disconnecting. +1612524560: New connection from 172.18.0.3 on port 1883. +1612524560: Sending CONNACK to 172.18.0.3 (0, 5) +1612524560: Socket error on client , disconnecting. +1612524580: New connection from 172.18.0.3 on port 1883. +1612524580: Sending CONNACK to 172.18.0.3 (0, 5) +1612524580: Socket error on client , disconnecting. +1612524600: New connection from 172.18.0.3 on port 1883. +1612524600: Sending CONNACK to 172.18.0.3 (0, 5) +1612524600: Socket error on client , disconnecting. +1612524620: New connection from 172.18.0.3 on port 1883. +1612524620: Sending CONNACK to 172.18.0.3 (0, 5) +1612524620: Socket error on client , disconnecting. +1612524640: New connection from 172.18.0.3 on port 1883. +1612524640: Sending CONNACK to 172.18.0.3 (0, 5) +1612524640: Socket error on client , disconnecting. +1612524660: New connection from 172.18.0.3 on port 1883. +1612524660: Sending CONNACK to 172.18.0.3 (0, 5) +1612524660: Socket error on client , disconnecting. +1612524680: New connection from 172.18.0.3 on port 1883. +1612524680: Sending CONNACK to 172.18.0.3 (0, 5) +1612524680: Socket error on client , disconnecting. +1612524700: New connection from 172.18.0.3 on port 1883. +1612524700: Sending CONNACK to 172.18.0.3 (0, 5) +1612524700: Socket error on client , disconnecting. +1612524720: New connection from 172.18.0.3 on port 1883. +1612524720: Sending CONNACK to 172.18.0.3 (0, 5) +1612524720: Socket error on client , disconnecting. +1612524740: New connection from 172.18.0.3 on port 1883. +1612524740: Sending CONNACK to 172.18.0.3 (0, 5) +1612524740: Socket error on client , disconnecting. +1612524760: New connection from 172.18.0.3 on port 1883. +1612524760: Sending CONNACK to 172.18.0.3 (0, 5) +1612524760: Socket error on client , disconnecting. +1612524780: New connection from 172.18.0.3 on port 1883. +1612524780: Sending CONNACK to 172.18.0.3 (0, 5) +1612524780: Socket error on client , disconnecting. +1612524800: New connection from 172.18.0.3 on port 1883. +1612524800: Sending CONNACK to 172.18.0.3 (0, 5) +1612524800: Socket error on client , disconnecting. +1612524820: New connection from 172.18.0.3 on port 1883. +1612524820: Sending CONNACK to 172.18.0.3 (0, 5) +1612524820: Socket error on client , disconnecting. +1612524840: New connection from 172.18.0.3 on port 1883. +1612524840: Sending CONNACK to 172.18.0.3 (0, 5) +1612524840: Socket error on client , disconnecting. +1612524860: New connection from 172.18.0.3 on port 1883. +1612524860: Sending CONNACK to 172.18.0.3 (0, 5) +1612524860: Socket error on client , disconnecting. +1612524880: New connection from 172.18.0.3 on port 1883. +1612524880: Sending CONNACK to 172.18.0.3 (0, 5) +1612524880: Socket error on client , disconnecting. +1612524900: New connection from 172.18.0.3 on port 1883. +1612524900: Sending CONNACK to 172.18.0.3 (0, 5) +1612524900: Socket error on client , disconnecting. +1612524920: New connection from 172.18.0.3 on port 1883. +1612524920: Sending CONNACK to 172.18.0.3 (0, 5) +1612524920: Socket error on client , disconnecting. +1612524940: New connection from 172.18.0.3 on port 1883. +1612524940: Sending CONNACK to 172.18.0.3 (0, 5) +1612524940: Socket error on client , disconnecting. +1612524960: New connection from 172.18.0.3 on port 1883. +1612524960: Sending CONNACK to 172.18.0.3 (0, 5) +1612524960: Socket error on client , disconnecting. +1612524980: New connection from 172.18.0.3 on port 1883. +1612524980: Sending CONNACK to 172.18.0.3 (0, 5) +1612524980: Socket error on client , disconnecting. +1612525000: New connection from 172.18.0.3 on port 1883. +1612525000: Sending CONNACK to 172.18.0.3 (0, 5) +1612525000: Socket error on client , disconnecting. +1612525020: New connection from 172.18.0.3 on port 1883. +1612525020: Sending CONNACK to 172.18.0.3 (0, 5) +1612525020: Socket error on client , disconnecting. +1612525040: New connection from 172.18.0.3 on port 1883. +1612525040: Sending CONNACK to 172.18.0.3 (0, 5) +1612525040: Socket error on client , disconnecting. +1612525060: New connection from 172.18.0.3 on port 1883. +1612525060: Sending CONNACK to 172.18.0.3 (0, 5) +1612525060: Socket error on client , disconnecting. +1612525080: New connection from 172.18.0.3 on port 1883. +1612525080: Sending CONNACK to 172.18.0.3 (0, 5) +1612525080: Socket error on client , disconnecting. +1612525100: New connection from 172.18.0.3 on port 1883. +1612525100: Sending CONNACK to 172.18.0.3 (0, 5) +1612525100: Socket error on client , disconnecting. +1612525120: New connection from 172.18.0.3 on port 1883. +1612525120: Sending CONNACK to 172.18.0.3 (0, 5) +1612525120: Socket error on client , disconnecting. +1612525140: New connection from 172.18.0.3 on port 1883. +1612525140: Sending CONNACK to 172.18.0.3 (0, 5) +1612525140: Socket error on client , disconnecting. +1612525160: New connection from 172.18.0.3 on port 1883. +1612525160: Sending CONNACK to 172.18.0.3 (0, 5) +1612525160: Socket error on client , disconnecting. +1612525180: New connection from 172.18.0.3 on port 1883. +1612525180: Sending CONNACK to 172.18.0.3 (0, 5) +1612525180: Socket error on client , disconnecting. +1612525200: New connection from 172.18.0.3 on port 1883. +1612525200: Sending CONNACK to 172.18.0.3 (0, 5) +1612525200: Socket error on client , disconnecting. +1612525220: New connection from 172.18.0.3 on port 1883. +1612525220: Sending CONNACK to 172.18.0.3 (0, 5) +1612525220: Socket error on client , disconnecting. +1612525240: New connection from 172.18.0.3 on port 1883. +1612525240: Sending CONNACK to 172.18.0.3 (0, 5) +1612525240: Socket error on client , disconnecting. +1612525260: New connection from 172.18.0.3 on port 1883. +1612525260: Sending CONNACK to 172.18.0.3 (0, 5) +1612525260: Socket error on client , disconnecting. +1612525280: New connection from 172.18.0.3 on port 1883. +1612525280: Sending CONNACK to 172.18.0.3 (0, 5) +1612525280: Socket error on client , disconnecting. +1612525300: New connection from 172.18.0.3 on port 1883. +1612525300: Sending CONNACK to 172.18.0.3 (0, 5) +1612525300: Socket error on client , disconnecting. +1612525320: New connection from 172.18.0.3 on port 1883. +1612525320: Sending CONNACK to 172.18.0.3 (0, 5) +1612525320: Socket error on client , disconnecting. +1612525340: New connection from 172.18.0.3 on port 1883. +1612525340: Sending CONNACK to 172.18.0.3 (0, 5) +1612525340: Socket error on client , disconnecting. +1612525360: New connection from 172.18.0.3 on port 1883. +1612525360: Sending CONNACK to 172.18.0.3 (0, 5) +1612525360: Socket error on client , disconnecting. +1612525380: New connection from 172.18.0.3 on port 1883. +1612525380: Sending CONNACK to 172.18.0.3 (0, 5) +1612525380: Socket error on client , disconnecting. +1612525400: New connection from 172.18.0.3 on port 1883. +1612525400: Sending CONNACK to 172.18.0.3 (0, 5) +1612525400: Socket error on client , disconnecting. +1612525420: New connection from 172.18.0.3 on port 1883. +1612525420: Sending CONNACK to 172.18.0.3 (0, 5) +1612525420: Socket error on client , disconnecting. +1612525440: New connection from 172.18.0.3 on port 1883. +1612525440: Sending CONNACK to 172.18.0.3 (0, 5) +1612525440: Socket error on client , disconnecting. +1612525460: New connection from 172.18.0.3 on port 1883. +1612525460: Sending CONNACK to 172.18.0.3 (0, 5) +1612525460: Socket error on client , disconnecting. +1612525480: New connection from 172.18.0.3 on port 1883. +1612525480: Sending CONNACK to 172.18.0.3 (0, 5) +1612525480: Socket error on client , disconnecting. +1612525500: New connection from 172.18.0.3 on port 1883. +1612525500: Sending CONNACK to 172.18.0.3 (0, 5) +1612525500: Socket error on client , disconnecting. +1612525520: New connection from 172.18.0.3 on port 1883. +1612525520: Sending CONNACK to 172.18.0.3 (0, 5) +1612525520: Socket error on client , disconnecting. +1612525540: New connection from 172.18.0.3 on port 1883. +1612525540: Sending CONNACK to 172.18.0.3 (0, 5) +1612525540: Socket error on client , disconnecting. +1612525560: New connection from 172.18.0.3 on port 1883. +1612525560: Sending CONNACK to 172.18.0.3 (0, 5) +1612525560: Socket error on client , disconnecting. +1612525580: New connection from 172.18.0.3 on port 1883. +1612525580: Sending CONNACK to 172.18.0.3 (0, 5) +1612525580: Socket error on client , disconnecting. +1612525600: New connection from 172.18.0.3 on port 1883. +1612525600: Sending CONNACK to 172.18.0.3 (0, 5) +1612525600: Socket error on client , disconnecting. +1612525620: New connection from 172.18.0.3 on port 1883. +1612525620: Sending CONNACK to 172.18.0.3 (0, 5) +1612525620: Socket error on client , disconnecting. +1612525640: New connection from 172.18.0.3 on port 1883. +1612525640: Sending CONNACK to 172.18.0.3 (0, 5) +1612525640: Socket error on client , disconnecting. +1612525660: New connection from 172.18.0.3 on port 1883. +1612525660: Sending CONNACK to 172.18.0.3 (0, 5) +1612525660: Socket error on client , disconnecting. +1612525661: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612525661: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612525661: Error: Permission denied. +1612525680: New connection from 172.18.0.3 on port 1883. +1612525680: Sending CONNACK to 172.18.0.3 (0, 5) +1612525680: Socket error on client , disconnecting. +1612525700: New connection from 172.18.0.3 on port 1883. +1612525700: Sending CONNACK to 172.18.0.3 (0, 5) +1612525700: Socket error on client , disconnecting. +1612525720: New connection from 172.18.0.3 on port 1883. +1612525720: Sending CONNACK to 172.18.0.3 (0, 5) +1612525720: Socket error on client , disconnecting. +1612525740: New connection from 172.18.0.3 on port 1883. +1612525740: Sending CONNACK to 172.18.0.3 (0, 5) +1612525740: Socket error on client , disconnecting. +1612525760: New connection from 172.18.0.3 on port 1883. +1612525760: Sending CONNACK to 172.18.0.3 (0, 5) +1612525760: Socket error on client , disconnecting. +1612525780: New connection from 172.18.0.3 on port 1883. +1612525780: Sending CONNACK to 172.18.0.3 (0, 5) +1612525780: Socket error on client , disconnecting. +1612525800: New connection from 172.18.0.3 on port 1883. +1612525800: Sending CONNACK to 172.18.0.3 (0, 5) +1612525800: Socket error on client , disconnecting. +1612525820: New connection from 172.18.0.3 on port 1883. +1612525820: Sending CONNACK to 172.18.0.3 (0, 5) +1612525820: Socket error on client , disconnecting. +1612525840: New connection from 172.18.0.3 on port 1883. +1612525840: Sending CONNACK to 172.18.0.3 (0, 5) +1612525840: Socket error on client , disconnecting. +1612525860: New connection from 172.18.0.3 on port 1883. +1612525860: Sending CONNACK to 172.18.0.3 (0, 5) +1612525860: Socket error on client , disconnecting. +1612525880: New connection from 172.18.0.3 on port 1883. +1612525880: Sending CONNACK to 172.18.0.3 (0, 5) +1612525880: Socket error on client , disconnecting. +1612525900: New connection from 172.18.0.3 on port 1883. +1612525900: Sending CONNACK to 172.18.0.3 (0, 5) +1612525900: Socket error on client , disconnecting. +1612525920: New connection from 172.18.0.3 on port 1883. +1612525920: Sending CONNACK to 172.18.0.3 (0, 5) +1612525920: Socket error on client , disconnecting. +1612525940: New connection from 172.18.0.3 on port 1883. +1612525940: Sending CONNACK to 172.18.0.3 (0, 5) +1612525940: Socket error on client , disconnecting. +1612525960: New connection from 172.18.0.3 on port 1883. +1612525960: Sending CONNACK to 172.18.0.3 (0, 5) +1612525960: Socket error on client , disconnecting. +1612525980: New connection from 172.18.0.3 on port 1883. +1612525980: Sending CONNACK to 172.18.0.3 (0, 5) +1612525980: Socket error on client , disconnecting. +1612526000: New connection from 172.18.0.3 on port 1883. +1612526000: Sending CONNACK to 172.18.0.3 (0, 5) +1612526000: Socket error on client , disconnecting. +1612526020: New connection from 172.18.0.3 on port 1883. +1612526020: Sending CONNACK to 172.18.0.3 (0, 5) +1612526020: Socket error on client , disconnecting. +1612526040: New connection from 172.18.0.3 on port 1883. +1612526040: Sending CONNACK to 172.18.0.3 (0, 5) +1612526040: Socket error on client , disconnecting. +1612526060: New connection from 172.18.0.3 on port 1883. +1612526060: Sending CONNACK to 172.18.0.3 (0, 5) +1612526060: Socket error on client , disconnecting. +1612526080: New connection from 172.18.0.3 on port 1883. +1612526080: Sending CONNACK to 172.18.0.3 (0, 5) +1612526080: Socket error on client , disconnecting. +1612526100: New connection from 172.18.0.3 on port 1883. +1612526100: Sending CONNACK to 172.18.0.3 (0, 5) +1612526100: Socket error on client , disconnecting. +1612526120: New connection from 172.18.0.3 on port 1883. +1612526120: Sending CONNACK to 172.18.0.3 (0, 5) +1612526120: Socket error on client , disconnecting. +1612526140: New connection from 172.18.0.3 on port 1883. +1612526140: Sending CONNACK to 172.18.0.3 (0, 5) +1612526140: Socket error on client , disconnecting. +1612526160: New connection from 172.18.0.3 on port 1883. +1612526160: Sending CONNACK to 172.18.0.3 (0, 5) +1612526160: Socket error on client , disconnecting. +1612526180: New connection from 172.18.0.3 on port 1883. +1612526180: Sending CONNACK to 172.18.0.3 (0, 5) +1612526180: Socket error on client , disconnecting. +1612526200: New connection from 172.18.0.3 on port 1883. +1612526200: Sending CONNACK to 172.18.0.3 (0, 5) +1612526200: Socket error on client , disconnecting. +1612526220: New connection from 172.18.0.3 on port 1883. +1612526220: Sending CONNACK to 172.18.0.3 (0, 5) +1612526220: Socket error on client , disconnecting. +1612526240: New connection from 172.18.0.3 on port 1883. +1612526240: Sending CONNACK to 172.18.0.3 (0, 5) +1612526240: Socket error on client , disconnecting. +1612526260: New connection from 172.18.0.3 on port 1883. +1612526260: Sending CONNACK to 172.18.0.3 (0, 5) +1612526260: Socket error on client , disconnecting. +1612526280: New connection from 172.18.0.3 on port 1883. +1612526280: Sending CONNACK to 172.18.0.3 (0, 5) +1612526280: Socket error on client , disconnecting. +1612526300: New connection from 172.18.0.3 on port 1883. +1612526300: Sending CONNACK to 172.18.0.3 (0, 5) +1612526300: Socket error on client , disconnecting. +1612526320: New connection from 172.18.0.3 on port 1883. +1612526320: Sending CONNACK to 172.18.0.3 (0, 5) +1612526320: Socket error on client , disconnecting. +1612526340: New connection from 172.18.0.3 on port 1883. +1612526340: Sending CONNACK to 172.18.0.3 (0, 5) +1612526340: Socket error on client , disconnecting. +1612526360: New connection from 172.18.0.3 on port 1883. +1612526360: Sending CONNACK to 172.18.0.3 (0, 5) +1612526360: Socket error on client , disconnecting. +1612526380: New connection from 172.18.0.3 on port 1883. +1612526380: Sending CONNACK to 172.18.0.3 (0, 5) +1612526380: Socket error on client , disconnecting. +1612526400: New connection from 172.18.0.3 on port 1883. +1612526400: Sending CONNACK to 172.18.0.3 (0, 5) +1612526400: Socket error on client , disconnecting. +1612526420: New connection from 172.18.0.3 on port 1883. +1612526420: Sending CONNACK to 172.18.0.3 (0, 5) +1612526420: Socket error on client , disconnecting. +1612526440: New connection from 172.18.0.3 on port 1883. +1612526440: Sending CONNACK to 172.18.0.3 (0, 5) +1612526440: Socket error on client , disconnecting. +1612526460: New connection from 172.18.0.3 on port 1883. +1612526460: Sending CONNACK to 172.18.0.3 (0, 5) +1612526460: Socket error on client , disconnecting. +1612526480: New connection from 172.18.0.3 on port 1883. +1612526480: Sending CONNACK to 172.18.0.3 (0, 5) +1612526480: Socket error on client , disconnecting. +1612526500: New connection from 172.18.0.3 on port 1883. +1612526500: Sending CONNACK to 172.18.0.3 (0, 5) +1612526500: Socket error on client , disconnecting. +1612526520: New connection from 172.18.0.3 on port 1883. +1612526520: Sending CONNACK to 172.18.0.3 (0, 5) +1612526520: Socket error on client , disconnecting. +1612526540: New connection from 172.18.0.3 on port 1883. +1612526540: Sending CONNACK to 172.18.0.3 (0, 5) +1612526540: Socket error on client , disconnecting. +1612526560: New connection from 172.18.0.3 on port 1883. +1612526560: Sending CONNACK to 172.18.0.3 (0, 5) +1612526560: Socket error on client , disconnecting. +1612526580: New connection from 172.18.0.3 on port 1883. +1612526580: Sending CONNACK to 172.18.0.3 (0, 5) +1612526580: Socket error on client , disconnecting. +1612526600: New connection from 172.18.0.3 on port 1883. +1612526600: Sending CONNACK to 172.18.0.3 (0, 5) +1612526600: Socket error on client , disconnecting. +1612526620: New connection from 172.18.0.3 on port 1883. +1612526620: Sending CONNACK to 172.18.0.3 (0, 5) +1612526620: Socket error on client , disconnecting. +1612526640: New connection from 172.18.0.3 on port 1883. +1612526640: Sending CONNACK to 172.18.0.3 (0, 5) +1612526640: Socket error on client , disconnecting. +1612526660: New connection from 172.18.0.3 on port 1883. +1612526660: Sending CONNACK to 172.18.0.3 (0, 5) +1612526660: Socket error on client , disconnecting. +1612526680: New connection from 172.18.0.3 on port 1883. +1612526680: Sending CONNACK to 172.18.0.3 (0, 5) +1612526680: Socket error on client , disconnecting. +1612526700: New connection from 172.18.0.3 on port 1883. +1612526700: Sending CONNACK to 172.18.0.3 (0, 5) +1612526700: Socket error on client , disconnecting. +1612526720: New connection from 172.18.0.3 on port 1883. +1612526720: Sending CONNACK to 172.18.0.3 (0, 5) +1612526720: Socket error on client , disconnecting. +1612526740: New connection from 172.18.0.3 on port 1883. +1612526740: Sending CONNACK to 172.18.0.3 (0, 5) +1612526740: Socket error on client , disconnecting. +1612526760: New connection from 172.18.0.3 on port 1883. +1612526760: Sending CONNACK to 172.18.0.3 (0, 5) +1612526760: Socket error on client , disconnecting. +1612526780: New connection from 172.18.0.3 on port 1883. +1612526780: Sending CONNACK to 172.18.0.3 (0, 5) +1612526780: Socket error on client , disconnecting. +1612526800: New connection from 172.18.0.3 on port 1883. +1612526800: Sending CONNACK to 172.18.0.3 (0, 5) +1612526800: Socket error on client , disconnecting. +1612526820: New connection from 172.18.0.3 on port 1883. +1612526820: Sending CONNACK to 172.18.0.3 (0, 5) +1612526820: Socket error on client , disconnecting. +1612526840: New connection from 172.18.0.3 on port 1883. +1612526840: Sending CONNACK to 172.18.0.3 (0, 5) +1612526840: Socket error on client , disconnecting. +1612526860: New connection from 172.18.0.3 on port 1883. +1612526860: Sending CONNACK to 172.18.0.3 (0, 5) +1612526860: Socket error on client , disconnecting. +1612526880: New connection from 172.18.0.3 on port 1883. +1612526880: Sending CONNACK to 172.18.0.3 (0, 5) +1612526880: Socket error on client , disconnecting. +1612526900: New connection from 172.18.0.3 on port 1883. +1612526900: Sending CONNACK to 172.18.0.3 (0, 5) +1612526900: Socket error on client , disconnecting. +1612526920: New connection from 172.18.0.3 on port 1883. +1612526920: Sending CONNACK to 172.18.0.3 (0, 5) +1612526920: Socket error on client , disconnecting. +1612526940: New connection from 172.18.0.3 on port 1883. +1612526940: Sending CONNACK to 172.18.0.3 (0, 5) +1612526940: Socket error on client , disconnecting. +1612526960: New connection from 172.18.0.3 on port 1883. +1612526960: Sending CONNACK to 172.18.0.3 (0, 5) +1612526960: Socket error on client , disconnecting. +1612526980: New connection from 172.18.0.3 on port 1883. +1612526980: Sending CONNACK to 172.18.0.3 (0, 5) +1612526980: Socket error on client , disconnecting. +1612527000: New connection from 172.18.0.3 on port 1883. +1612527000: Sending CONNACK to 172.18.0.3 (0, 5) +1612527000: Socket error on client , disconnecting. +1612527020: New connection from 172.18.0.3 on port 1883. +1612527020: Sending CONNACK to 172.18.0.3 (0, 5) +1612527020: Socket error on client , disconnecting. +1612527040: New connection from 172.18.0.3 on port 1883. +1612527040: Sending CONNACK to 172.18.0.3 (0, 5) +1612527040: Socket error on client , disconnecting. +1612527060: New connection from 172.18.0.3 on port 1883. +1612527060: Sending CONNACK to 172.18.0.3 (0, 5) +1612527060: Socket error on client , disconnecting. +1612527080: New connection from 172.18.0.3 on port 1883. +1612527080: Sending CONNACK to 172.18.0.3 (0, 5) +1612527080: Socket error on client , disconnecting. +1612527100: New connection from 172.18.0.3 on port 1883. +1612527100: Sending CONNACK to 172.18.0.3 (0, 5) +1612527100: Socket error on client , disconnecting. +1612527120: New connection from 172.18.0.3 on port 1883. +1612527120: Sending CONNACK to 172.18.0.3 (0, 5) +1612527120: Socket error on client , disconnecting. +1612527140: New connection from 172.18.0.3 on port 1883. +1612527140: Sending CONNACK to 172.18.0.3 (0, 5) +1612527140: Socket error on client , disconnecting. +1612527160: New connection from 172.18.0.3 on port 1883. +1612527160: Sending CONNACK to 172.18.0.3 (0, 5) +1612527160: Socket error on client , disconnecting. +1612527180: New connection from 172.18.0.3 on port 1883. +1612527180: Sending CONNACK to 172.18.0.3 (0, 5) +1612527180: Socket error on client , disconnecting. +1612527200: New connection from 172.18.0.3 on port 1883. +1612527200: Sending CONNACK to 172.18.0.3 (0, 5) +1612527200: Socket error on client , disconnecting. +1612527220: New connection from 172.18.0.3 on port 1883. +1612527220: Sending CONNACK to 172.18.0.3 (0, 5) +1612527220: Socket error on client , disconnecting. +1612527240: New connection from 172.18.0.3 on port 1883. +1612527240: Sending CONNACK to 172.18.0.3 (0, 5) +1612527240: Socket error on client , disconnecting. +1612527260: New connection from 172.18.0.3 on port 1883. +1612527260: Sending CONNACK to 172.18.0.3 (0, 5) +1612527260: Socket error on client , disconnecting. +1612527280: New connection from 172.18.0.3 on port 1883. +1612527280: Sending CONNACK to 172.18.0.3 (0, 5) +1612527280: Socket error on client , disconnecting. +1612527300: New connection from 172.18.0.3 on port 1883. +1612527300: Sending CONNACK to 172.18.0.3 (0, 5) +1612527300: Socket error on client , disconnecting. +1612527320: New connection from 172.18.0.3 on port 1883. +1612527320: Sending CONNACK to 172.18.0.3 (0, 5) +1612527320: Socket error on client , disconnecting. +1612527340: New connection from 172.18.0.3 on port 1883. +1612527340: Sending CONNACK to 172.18.0.3 (0, 5) +1612527340: Socket error on client , disconnecting. +1612527360: New connection from 172.18.0.3 on port 1883. +1612527360: Sending CONNACK to 172.18.0.3 (0, 5) +1612527360: Socket error on client , disconnecting. +1612527380: New connection from 172.18.0.3 on port 1883. +1612527380: Sending CONNACK to 172.18.0.3 (0, 5) +1612527380: Socket error on client , disconnecting. +1612527400: New connection from 172.18.0.3 on port 1883. +1612527400: Sending CONNACK to 172.18.0.3 (0, 5) +1612527400: Socket error on client , disconnecting. +1612527420: New connection from 172.18.0.3 on port 1883. +1612527420: Sending CONNACK to 172.18.0.3 (0, 5) +1612527420: Socket error on client , disconnecting. +1612527440: New connection from 172.18.0.3 on port 1883. +1612527440: Sending CONNACK to 172.18.0.3 (0, 5) +1612527440: Socket error on client , disconnecting. +1612527460: New connection from 172.18.0.3 on port 1883. +1612527460: Sending CONNACK to 172.18.0.3 (0, 5) +1612527460: Socket error on client , disconnecting. +1612527462: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612527462: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612527462: Error: Permission denied. +1612527480: New connection from 172.18.0.3 on port 1883. +1612527480: Sending CONNACK to 172.18.0.3 (0, 5) +1612527480: Socket error on client , disconnecting. +1612527500: New connection from 172.18.0.3 on port 1883. +1612527500: Sending CONNACK to 172.18.0.3 (0, 5) +1612527500: Socket error on client , disconnecting. +1612527520: New connection from 172.18.0.3 on port 1883. +1612527520: Sending CONNACK to 172.18.0.3 (0, 5) +1612527520: Socket error on client , disconnecting. +1612527540: New connection from 172.18.0.3 on port 1883. +1612527540: Sending CONNACK to 172.18.0.3 (0, 5) +1612527540: Socket error on client , disconnecting. +1612527560: New connection from 172.18.0.3 on port 1883. +1612527560: Sending CONNACK to 172.18.0.3 (0, 5) +1612527560: Socket error on client , disconnecting. +1612527580: New connection from 172.18.0.3 on port 1883. +1612527580: Sending CONNACK to 172.18.0.3 (0, 5) +1612527580: Socket error on client , disconnecting. +1612527600: New connection from 172.18.0.3 on port 1883. +1612527600: Sending CONNACK to 172.18.0.3 (0, 5) +1612527600: Socket error on client , disconnecting. +1612527620: New connection from 172.18.0.3 on port 1883. +1612527620: Sending CONNACK to 172.18.0.3 (0, 5) +1612527620: Socket error on client , disconnecting. +1612527640: New connection from 172.18.0.3 on port 1883. +1612527640: Sending CONNACK to 172.18.0.3 (0, 5) +1612527640: Socket error on client , disconnecting. +1612527660: New connection from 172.18.0.3 on port 1883. +1612527660: Sending CONNACK to 172.18.0.3 (0, 5) +1612527660: Socket error on client , disconnecting. +1612527680: New connection from 172.18.0.3 on port 1883. +1612527680: Sending CONNACK to 172.18.0.3 (0, 5) +1612527680: Socket error on client , disconnecting. +1612527700: New connection from 172.18.0.3 on port 1883. +1612527700: Sending CONNACK to 172.18.0.3 (0, 5) +1612527700: Socket error on client , disconnecting. +1612527720: New connection from 172.18.0.3 on port 1883. +1612527720: Sending CONNACK to 172.18.0.3 (0, 5) +1612527720: Socket error on client , disconnecting. +1612527740: New connection from 172.18.0.3 on port 1883. +1612527740: Sending CONNACK to 172.18.0.3 (0, 5) +1612527740: Socket error on client , disconnecting. +1612527760: New connection from 172.18.0.3 on port 1883. +1612527760: Sending CONNACK to 172.18.0.3 (0, 5) +1612527760: Socket error on client , disconnecting. +1612527780: New connection from 172.18.0.3 on port 1883. +1612527780: Sending CONNACK to 172.18.0.3 (0, 5) +1612527780: Socket error on client , disconnecting. +1612527800: New connection from 172.18.0.3 on port 1883. +1612527800: Sending CONNACK to 172.18.0.3 (0, 5) +1612527800: Socket error on client , disconnecting. +1612527820: New connection from 172.18.0.3 on port 1883. +1612527820: Sending CONNACK to 172.18.0.3 (0, 5) +1612527820: Socket error on client , disconnecting. +1612527840: New connection from 172.18.0.3 on port 1883. +1612527840: Sending CONNACK to 172.18.0.3 (0, 5) +1612527840: Socket error on client , disconnecting. +1612527860: New connection from 172.18.0.3 on port 1883. +1612527860: Sending CONNACK to 172.18.0.3 (0, 5) +1612527860: Socket error on client , disconnecting. +1612527880: New connection from 172.18.0.3 on port 1883. +1612527880: Sending CONNACK to 172.18.0.3 (0, 5) +1612527880: Socket error on client , disconnecting. +1612527900: New connection from 172.18.0.3 on port 1883. +1612527900: Sending CONNACK to 172.18.0.3 (0, 5) +1612527900: Socket error on client , disconnecting. +1612527920: New connection from 172.18.0.3 on port 1883. +1612527920: Sending CONNACK to 172.18.0.3 (0, 5) +1612527920: Socket error on client , disconnecting. +1612527940: New connection from 172.18.0.3 on port 1883. +1612527940: Sending CONNACK to 172.18.0.3 (0, 5) +1612527940: Socket error on client , disconnecting. +1612527960: New connection from 172.18.0.3 on port 1883. +1612527960: Sending CONNACK to 172.18.0.3 (0, 5) +1612527960: Socket error on client , disconnecting. +1612527980: New connection from 172.18.0.3 on port 1883. +1612527980: Sending CONNACK to 172.18.0.3 (0, 5) +1612527980: Socket error on client , disconnecting. +1612528000: New connection from 172.18.0.3 on port 1883. +1612528000: Sending CONNACK to 172.18.0.3 (0, 5) +1612528000: Socket error on client , disconnecting. +1612528020: New connection from 172.18.0.3 on port 1883. +1612528020: Sending CONNACK to 172.18.0.3 (0, 5) +1612528020: Socket error on client , disconnecting. +1612528040: New connection from 172.18.0.3 on port 1883. +1612528040: Sending CONNACK to 172.18.0.3 (0, 5) +1612528040: Socket error on client , disconnecting. +1612528060: New connection from 172.18.0.3 on port 1883. +1612528060: Sending CONNACK to 172.18.0.3 (0, 5) +1612528060: Socket error on client , disconnecting. +1612528080: New connection from 172.18.0.3 on port 1883. +1612528080: Sending CONNACK to 172.18.0.3 (0, 5) +1612528080: Socket error on client , disconnecting. +1612528100: New connection from 172.18.0.3 on port 1883. +1612528100: Sending CONNACK to 172.18.0.3 (0, 5) +1612528100: Socket error on client , disconnecting. +1612528120: New connection from 172.18.0.3 on port 1883. +1612528120: Sending CONNACK to 172.18.0.3 (0, 5) +1612528120: Socket error on client , disconnecting. +1612528140: New connection from 172.18.0.3 on port 1883. +1612528140: Sending CONNACK to 172.18.0.3 (0, 5) +1612528140: Socket error on client , disconnecting. +1612528160: New connection from 172.18.0.3 on port 1883. +1612528160: Sending CONNACK to 172.18.0.3 (0, 5) +1612528160: Socket error on client , disconnecting. +1612528180: New connection from 172.18.0.3 on port 1883. +1612528180: Sending CONNACK to 172.18.0.3 (0, 5) +1612528180: Socket error on client , disconnecting. +1612528200: New connection from 172.18.0.3 on port 1883. +1612528200: Sending CONNACK to 172.18.0.3 (0, 5) +1612528200: Socket error on client , disconnecting. +1612528220: New connection from 172.18.0.3 on port 1883. +1612528220: Sending CONNACK to 172.18.0.3 (0, 5) +1612528220: Socket error on client , disconnecting. +1612528240: New connection from 172.18.0.3 on port 1883. +1612528240: Sending CONNACK to 172.18.0.3 (0, 5) +1612528240: Socket error on client , disconnecting. +1612528260: New connection from 172.18.0.3 on port 1883. +1612528260: Sending CONNACK to 172.18.0.3 (0, 5) +1612528260: Socket error on client , disconnecting. +1612528280: New connection from 172.18.0.3 on port 1883. +1612528280: Sending CONNACK to 172.18.0.3 (0, 5) +1612528280: Socket error on client , disconnecting. +1612528300: New connection from 172.18.0.3 on port 1883. +1612528300: Sending CONNACK to 172.18.0.3 (0, 5) +1612528300: Socket error on client , disconnecting. +1612528320: New connection from 172.18.0.3 on port 1883. +1612528320: Sending CONNACK to 172.18.0.3 (0, 5) +1612528320: Socket error on client , disconnecting. +1612528340: New connection from 172.18.0.3 on port 1883. +1612528340: Sending CONNACK to 172.18.0.3 (0, 5) +1612528340: Socket error on client , disconnecting. +1612528360: New connection from 172.18.0.3 on port 1883. +1612528360: Sending CONNACK to 172.18.0.3 (0, 5) +1612528360: Socket error on client , disconnecting. +1612528380: New connection from 172.18.0.3 on port 1883. +1612528380: Sending CONNACK to 172.18.0.3 (0, 5) +1612528380: Socket error on client , disconnecting. +1612528400: New connection from 172.18.0.3 on port 1883. +1612528400: Sending CONNACK to 172.18.0.3 (0, 5) +1612528400: Socket error on client , disconnecting. +1612528420: New connection from 172.18.0.3 on port 1883. +1612528420: Sending CONNACK to 172.18.0.3 (0, 5) +1612528420: Socket error on client , disconnecting. +1612528440: New connection from 172.18.0.3 on port 1883. +1612528440: Sending CONNACK to 172.18.0.3 (0, 5) +1612528440: Socket error on client , disconnecting. +1612528460: New connection from 172.18.0.3 on port 1883. +1612528460: Sending CONNACK to 172.18.0.3 (0, 5) +1612528460: Socket error on client , disconnecting. +1612528480: New connection from 172.18.0.3 on port 1883. +1612528480: Sending CONNACK to 172.18.0.3 (0, 5) +1612528480: Socket error on client , disconnecting. +1612528500: New connection from 172.18.0.3 on port 1883. +1612528500: Sending CONNACK to 172.18.0.3 (0, 5) +1612528500: Socket error on client , disconnecting. +1612528520: New connection from 172.18.0.3 on port 1883. +1612528520: Sending CONNACK to 172.18.0.3 (0, 5) +1612528520: Socket error on client , disconnecting. +1612528540: New connection from 172.18.0.3 on port 1883. +1612528540: Sending CONNACK to 172.18.0.3 (0, 5) +1612528540: Socket error on client , disconnecting. +1612528560: New connection from 172.18.0.3 on port 1883. +1612528560: Sending CONNACK to 172.18.0.3 (0, 5) +1612528560: Socket error on client , disconnecting. +1612528580: New connection from 172.18.0.3 on port 1883. +1612528580: Sending CONNACK to 172.18.0.3 (0, 5) +1612528580: Socket error on client , disconnecting. +1612528600: New connection from 172.18.0.3 on port 1883. +1612528600: Sending CONNACK to 172.18.0.3 (0, 5) +1612528600: Socket error on client , disconnecting. +1612528620: New connection from 172.18.0.3 on port 1883. +1612528620: Sending CONNACK to 172.18.0.3 (0, 5) +1612528620: Socket error on client , disconnecting. +1612528640: New connection from 172.18.0.3 on port 1883. +1612528640: Sending CONNACK to 172.18.0.3 (0, 5) +1612528640: Socket error on client , disconnecting. +1612528660: New connection from 172.18.0.3 on port 1883. +1612528660: Sending CONNACK to 172.18.0.3 (0, 5) +1612528660: Socket error on client , disconnecting. +1612528680: New connection from 172.18.0.3 on port 1883. +1612528680: Sending CONNACK to 172.18.0.3 (0, 5) +1612528680: Socket error on client , disconnecting. +1612528700: New connection from 172.18.0.3 on port 1883. +1612528700: Sending CONNACK to 172.18.0.3 (0, 5) +1612528700: Socket error on client , disconnecting. +1612528720: New connection from 172.18.0.3 on port 1883. +1612528720: Sending CONNACK to 172.18.0.3 (0, 5) +1612528720: Socket error on client , disconnecting. +1612528740: New connection from 172.18.0.3 on port 1883. +1612528740: Sending CONNACK to 172.18.0.3 (0, 5) +1612528740: Socket error on client , disconnecting. +1612528760: New connection from 172.18.0.3 on port 1883. +1612528760: Sending CONNACK to 172.18.0.3 (0, 5) +1612528760: Socket error on client , disconnecting. +1612528780: New connection from 172.18.0.3 on port 1883. +1612528780: Sending CONNACK to 172.18.0.3 (0, 5) +1612528780: Socket error on client , disconnecting. +1612528800: New connection from 172.18.0.3 on port 1883. +1612528800: Sending CONNACK to 172.18.0.3 (0, 5) +1612528800: Socket error on client , disconnecting. +1612528820: New connection from 172.18.0.3 on port 1883. +1612528820: Sending CONNACK to 172.18.0.3 (0, 5) +1612528820: Socket error on client , disconnecting. +1612528840: New connection from 172.18.0.3 on port 1883. +1612528840: Sending CONNACK to 172.18.0.3 (0, 5) +1612528840: Socket error on client , disconnecting. +1612528860: New connection from 172.18.0.3 on port 1883. +1612528860: Sending CONNACK to 172.18.0.3 (0, 5) +1612528860: Socket error on client , disconnecting. +1612528880: New connection from 172.18.0.3 on port 1883. +1612528880: Sending CONNACK to 172.18.0.3 (0, 5) +1612528880: Socket error on client , disconnecting. +1612528900: New connection from 172.18.0.3 on port 1883. +1612528900: Sending CONNACK to 172.18.0.3 (0, 5) +1612528900: Socket error on client , disconnecting. +1612528920: New connection from 172.18.0.3 on port 1883. +1612528920: Sending CONNACK to 172.18.0.3 (0, 5) +1612528920: Socket error on client , disconnecting. +1612528940: New connection from 172.18.0.3 on port 1883. +1612528940: Sending CONNACK to 172.18.0.3 (0, 5) +1612528940: Socket error on client , disconnecting. +1612528960: New connection from 172.18.0.3 on port 1883. +1612528960: Sending CONNACK to 172.18.0.3 (0, 5) +1612528960: Socket error on client , disconnecting. +1612528980: New connection from 172.18.0.3 on port 1883. +1612528980: Sending CONNACK to 172.18.0.3 (0, 5) +1612528980: Socket error on client , disconnecting. +1612529000: New connection from 172.18.0.3 on port 1883. +1612529000: Sending CONNACK to 172.18.0.3 (0, 5) +1612529000: Socket error on client , disconnecting. +1612529020: New connection from 172.18.0.3 on port 1883. +1612529020: Sending CONNACK to 172.18.0.3 (0, 5) +1612529020: Socket error on client , disconnecting. +1612529040: New connection from 172.18.0.3 on port 1883. +1612529040: Sending CONNACK to 172.18.0.3 (0, 5) +1612529040: Socket error on client , disconnecting. +1612529060: New connection from 172.18.0.3 on port 1883. +1612529060: Sending CONNACK to 172.18.0.3 (0, 5) +1612529060: Socket error on client , disconnecting. +1612529080: New connection from 172.18.0.3 on port 1883. +1612529080: Sending CONNACK to 172.18.0.3 (0, 5) +1612529080: Socket error on client , disconnecting. +1612529100: New connection from 172.18.0.3 on port 1883. +1612529100: Sending CONNACK to 172.18.0.3 (0, 5) +1612529100: Socket error on client , disconnecting. +1612529120: New connection from 172.18.0.3 on port 1883. +1612529120: Sending CONNACK to 172.18.0.3 (0, 5) +1612529120: Socket error on client , disconnecting. +1612529140: New connection from 172.18.0.3 on port 1883. +1612529140: Sending CONNACK to 172.18.0.3 (0, 5) +1612529140: Socket error on client , disconnecting. +1612529160: New connection from 172.18.0.3 on port 1883. +1612529160: Sending CONNACK to 172.18.0.3 (0, 5) +1612529160: Socket error on client , disconnecting. +1612529180: New connection from 172.18.0.3 on port 1883. +1612529180: Sending CONNACK to 172.18.0.3 (0, 5) +1612529180: Socket error on client , disconnecting. +1612529200: New connection from 172.18.0.3 on port 1883. +1612529200: Sending CONNACK to 172.18.0.3 (0, 5) +1612529200: Socket error on client , disconnecting. +1612529220: New connection from 172.18.0.3 on port 1883. +1612529220: Sending CONNACK to 172.18.0.3 (0, 5) +1612529220: Socket error on client , disconnecting. +1612529240: New connection from 172.18.0.3 on port 1883. +1612529240: Sending CONNACK to 172.18.0.3 (0, 5) +1612529240: Socket error on client , disconnecting. +1612529260: New connection from 172.18.0.3 on port 1883. +1612529260: Sending CONNACK to 172.18.0.3 (0, 5) +1612529260: Socket error on client , disconnecting. +1612529263: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612529263: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612529263: Error: Permission denied. +1612529280: New connection from 172.18.0.3 on port 1883. +1612529280: Sending CONNACK to 172.18.0.3 (0, 5) +1612529280: Socket error on client , disconnecting. +1612529300: New connection from 172.18.0.3 on port 1883. +1612529300: Sending CONNACK to 172.18.0.3 (0, 5) +1612529300: Socket error on client , disconnecting. +1612529320: New connection from 172.18.0.3 on port 1883. +1612529320: Sending CONNACK to 172.18.0.3 (0, 5) +1612529320: Socket error on client , disconnecting. +1612529340: New connection from 172.18.0.3 on port 1883. +1612529340: Sending CONNACK to 172.18.0.3 (0, 5) +1612529340: Socket error on client , disconnecting. +1612529360: New connection from 172.18.0.3 on port 1883. +1612529360: Sending CONNACK to 172.18.0.3 (0, 5) +1612529360: Socket error on client , disconnecting. +1612529380: New connection from 172.18.0.3 on port 1883. +1612529380: Sending CONNACK to 172.18.0.3 (0, 5) +1612529380: Socket error on client , disconnecting. +1612529400: New connection from 172.18.0.3 on port 1883. +1612529400: Sending CONNACK to 172.18.0.3 (0, 5) +1612529400: Socket error on client , disconnecting. +1612529420: New connection from 172.18.0.3 on port 1883. +1612529420: Sending CONNACK to 172.18.0.3 (0, 5) +1612529420: Socket error on client , disconnecting. +1612529440: New connection from 172.18.0.3 on port 1883. +1612529440: Sending CONNACK to 172.18.0.3 (0, 5) +1612529440: Socket error on client , disconnecting. +1612529460: New connection from 172.18.0.3 on port 1883. +1612529460: Sending CONNACK to 172.18.0.3 (0, 5) +1612529460: Socket error on client , disconnecting. +1612529480: New connection from 172.18.0.3 on port 1883. +1612529480: Sending CONNACK to 172.18.0.3 (0, 5) +1612529480: Socket error on client , disconnecting. +1612529500: New connection from 172.18.0.3 on port 1883. +1612529500: Sending CONNACK to 172.18.0.3 (0, 5) +1612529500: Socket error on client , disconnecting. +1612529520: New connection from 172.18.0.3 on port 1883. +1612529520: Sending CONNACK to 172.18.0.3 (0, 5) +1612529520: Socket error on client , disconnecting. +1612529540: New connection from 172.18.0.3 on port 1883. +1612529540: Sending CONNACK to 172.18.0.3 (0, 5) +1612529540: Socket error on client , disconnecting. +1612529560: New connection from 172.18.0.3 on port 1883. +1612529560: Sending CONNACK to 172.18.0.3 (0, 5) +1612529560: Socket error on client , disconnecting. +1612529580: New connection from 172.18.0.3 on port 1883. +1612529580: Sending CONNACK to 172.18.0.3 (0, 5) +1612529580: Socket error on client , disconnecting. +1612529600: New connection from 172.18.0.3 on port 1883. +1612529600: Sending CONNACK to 172.18.0.3 (0, 5) +1612529600: Socket error on client , disconnecting. +1612529620: New connection from 172.18.0.3 on port 1883. +1612529620: Sending CONNACK to 172.18.0.3 (0, 5) +1612529620: Socket error on client , disconnecting. +1612529640: New connection from 172.18.0.3 on port 1883. +1612529640: Sending CONNACK to 172.18.0.3 (0, 5) +1612529640: Socket error on client , disconnecting. +1612529660: New connection from 172.18.0.3 on port 1883. +1612529660: Sending CONNACK to 172.18.0.3 (0, 5) +1612529660: Socket error on client , disconnecting. +1612529680: New connection from 172.18.0.3 on port 1883. +1612529680: Sending CONNACK to 172.18.0.3 (0, 5) +1612529680: Socket error on client , disconnecting. +1612529700: New connection from 172.18.0.3 on port 1883. +1612529700: Sending CONNACK to 172.18.0.3 (0, 5) +1612529700: Socket error on client , disconnecting. +1612529720: New connection from 172.18.0.3 on port 1883. +1612529720: Sending CONNACK to 172.18.0.3 (0, 5) +1612529720: Socket error on client , disconnecting. +1612529740: New connection from 172.18.0.3 on port 1883. +1612529740: Sending CONNACK to 172.18.0.3 (0, 5) +1612529740: Socket error on client , disconnecting. +1612529760: New connection from 172.18.0.3 on port 1883. +1612529760: Sending CONNACK to 172.18.0.3 (0, 5) +1612529760: Socket error on client , disconnecting. +1612529780: New connection from 172.18.0.3 on port 1883. +1612529780: Sending CONNACK to 172.18.0.3 (0, 5) +1612529780: Socket error on client , disconnecting. +1612529800: New connection from 172.18.0.3 on port 1883. +1612529800: Sending CONNACK to 172.18.0.3 (0, 5) +1612529800: Socket error on client , disconnecting. +1612529820: New connection from 172.18.0.3 on port 1883. +1612529820: Sending CONNACK to 172.18.0.3 (0, 5) +1612529820: Socket error on client , disconnecting. +1612529840: New connection from 172.18.0.3 on port 1883. +1612529840: Sending CONNACK to 172.18.0.3 (0, 5) +1612529840: Socket error on client , disconnecting. +1612529860: New connection from 172.18.0.3 on port 1883. +1612529860: Sending CONNACK to 172.18.0.3 (0, 5) +1612529860: Socket error on client , disconnecting. +1612529880: New connection from 172.18.0.3 on port 1883. +1612529880: Sending CONNACK to 172.18.0.3 (0, 5) +1612529880: Socket error on client , disconnecting. +1612529900: New connection from 172.18.0.3 on port 1883. +1612529900: Sending CONNACK to 172.18.0.3 (0, 5) +1612529900: Socket error on client , disconnecting. +1612529920: New connection from 172.18.0.3 on port 1883. +1612529920: Sending CONNACK to 172.18.0.3 (0, 5) +1612529920: Socket error on client , disconnecting. +1612529940: New connection from 172.18.0.3 on port 1883. +1612529940: Sending CONNACK to 172.18.0.3 (0, 5) +1612529940: Socket error on client , disconnecting. +1612529960: New connection from 172.18.0.3 on port 1883. +1612529960: Sending CONNACK to 172.18.0.3 (0, 5) +1612529960: Socket error on client , disconnecting. +1612529980: New connection from 172.18.0.3 on port 1883. +1612529980: Sending CONNACK to 172.18.0.3 (0, 5) +1612529980: Socket error on client , disconnecting. +1612530000: New connection from 172.18.0.3 on port 1883. +1612530000: Sending CONNACK to 172.18.0.3 (0, 5) +1612530000: Socket error on client , disconnecting. +1612530020: New connection from 172.18.0.3 on port 1883. +1612530020: Sending CONNACK to 172.18.0.3 (0, 5) +1612530020: Socket error on client , disconnecting. +1612530040: New connection from 172.18.0.3 on port 1883. +1612530040: Sending CONNACK to 172.18.0.3 (0, 5) +1612530040: Socket error on client , disconnecting. +1612530060: New connection from 172.18.0.3 on port 1883. +1612530060: Sending CONNACK to 172.18.0.3 (0, 5) +1612530060: Socket error on client , disconnecting. +1612530080: New connection from 172.18.0.3 on port 1883. +1612530080: Sending CONNACK to 172.18.0.3 (0, 5) +1612530080: Socket error on client , disconnecting. +1612530100: New connection from 172.18.0.3 on port 1883. +1612530100: Sending CONNACK to 172.18.0.3 (0, 5) +1612530100: Socket error on client , disconnecting. +1612530120: New connection from 172.18.0.3 on port 1883. +1612530120: Sending CONNACK to 172.18.0.3 (0, 5) +1612530120: Socket error on client , disconnecting. +1612530140: New connection from 172.18.0.3 on port 1883. +1612530140: Sending CONNACK to 172.18.0.3 (0, 5) +1612530140: Socket error on client , disconnecting. +1612530160: New connection from 172.18.0.3 on port 1883. +1612530160: Sending CONNACK to 172.18.0.3 (0, 5) +1612530160: Socket error on client , disconnecting. +1612530180: New connection from 172.18.0.3 on port 1883. +1612530180: Sending CONNACK to 172.18.0.3 (0, 5) +1612530180: Socket error on client , disconnecting. +1612530200: New connection from 172.18.0.3 on port 1883. +1612530200: Sending CONNACK to 172.18.0.3 (0, 5) +1612530200: Socket error on client , disconnecting. +1612530220: New connection from 172.18.0.3 on port 1883. +1612530220: Sending CONNACK to 172.18.0.3 (0, 5) +1612530220: Socket error on client , disconnecting. +1612530240: New connection from 172.18.0.3 on port 1883. +1612530240: Sending CONNACK to 172.18.0.3 (0, 5) +1612530240: Socket error on client , disconnecting. +1612530260: New connection from 172.18.0.3 on port 1883. +1612530260: Sending CONNACK to 172.18.0.3 (0, 5) +1612530260: Socket error on client , disconnecting. +1612530280: New connection from 172.18.0.3 on port 1883. +1612530280: Sending CONNACK to 172.18.0.3 (0, 5) +1612530280: Socket error on client , disconnecting. +1612530300: New connection from 172.18.0.3 on port 1883. +1612530300: Sending CONNACK to 172.18.0.3 (0, 5) +1612530300: Socket error on client , disconnecting. +1612530320: New connection from 172.18.0.3 on port 1883. +1612530320: Sending CONNACK to 172.18.0.3 (0, 5) +1612530320: Socket error on client , disconnecting. +1612530340: New connection from 172.18.0.3 on port 1883. +1612530340: Sending CONNACK to 172.18.0.3 (0, 5) +1612530340: Socket error on client , disconnecting. +1612530360: New connection from 172.18.0.3 on port 1883. +1612530360: Sending CONNACK to 172.18.0.3 (0, 5) +1612530360: Socket error on client , disconnecting. +1612530380: New connection from 172.18.0.3 on port 1883. +1612530380: Sending CONNACK to 172.18.0.3 (0, 5) +1612530380: Socket error on client , disconnecting. +1612530400: New connection from 172.18.0.3 on port 1883. +1612530400: Sending CONNACK to 172.18.0.3 (0, 5) +1612530400: Socket error on client , disconnecting. +1612530420: New connection from 172.18.0.3 on port 1883. +1612530420: Sending CONNACK to 172.18.0.3 (0, 5) +1612530420: Socket error on client , disconnecting. +1612530440: New connection from 172.18.0.3 on port 1883. +1612530440: Sending CONNACK to 172.18.0.3 (0, 5) +1612530440: Socket error on client , disconnecting. +1612530460: New connection from 172.18.0.3 on port 1883. +1612530460: Sending CONNACK to 172.18.0.3 (0, 5) +1612530460: Socket error on client , disconnecting. +1612530480: New connection from 172.18.0.3 on port 1883. +1612530480: Sending CONNACK to 172.18.0.3 (0, 5) +1612530480: Socket error on client , disconnecting. +1612530500: New connection from 172.18.0.3 on port 1883. +1612530500: Sending CONNACK to 172.18.0.3 (0, 5) +1612530500: Socket error on client , disconnecting. +1612530520: New connection from 172.18.0.3 on port 1883. +1612530520: Sending CONNACK to 172.18.0.3 (0, 5) +1612530520: Socket error on client , disconnecting. +1612530540: New connection from 172.18.0.3 on port 1883. +1612530540: Sending CONNACK to 172.18.0.3 (0, 5) +1612530540: Socket error on client , disconnecting. +1612530560: New connection from 172.18.0.3 on port 1883. +1612530560: Sending CONNACK to 172.18.0.3 (0, 5) +1612530560: Socket error on client , disconnecting. +1612530580: New connection from 172.18.0.3 on port 1883. +1612530580: Sending CONNACK to 172.18.0.3 (0, 5) +1612530580: Socket error on client , disconnecting. +1612530600: New connection from 172.18.0.3 on port 1883. +1612530600: Sending CONNACK to 172.18.0.3 (0, 5) +1612530600: Socket error on client , disconnecting. +1612530620: New connection from 172.18.0.3 on port 1883. +1612530620: Sending CONNACK to 172.18.0.3 (0, 5) +1612530620: Socket error on client , disconnecting. +1612530640: New connection from 172.18.0.3 on port 1883. +1612530640: Sending CONNACK to 172.18.0.3 (0, 5) +1612530640: Socket error on client , disconnecting. +1612530660: New connection from 172.18.0.3 on port 1883. +1612530660: Sending CONNACK to 172.18.0.3 (0, 5) +1612530660: Socket error on client , disconnecting. +1612530680: New connection from 172.18.0.3 on port 1883. +1612530680: Sending CONNACK to 172.18.0.3 (0, 5) +1612530680: Socket error on client , disconnecting. +1612530700: New connection from 172.18.0.3 on port 1883. +1612530700: Sending CONNACK to 172.18.0.3 (0, 5) +1612530700: Socket error on client , disconnecting. +1612530720: New connection from 172.18.0.3 on port 1883. +1612530720: Sending CONNACK to 172.18.0.3 (0, 5) +1612530720: Socket error on client , disconnecting. +1612530740: New connection from 172.18.0.3 on port 1883. +1612530740: Sending CONNACK to 172.18.0.3 (0, 5) +1612530740: Socket error on client , disconnecting. +1612530760: New connection from 172.18.0.3 on port 1883. +1612530760: Sending CONNACK to 172.18.0.3 (0, 5) +1612530760: Socket error on client , disconnecting. +1612530780: New connection from 172.18.0.3 on port 1883. +1612530780: Sending CONNACK to 172.18.0.3 (0, 5) +1612530780: Socket error on client , disconnecting. +1612530800: New connection from 172.18.0.3 on port 1883. +1612530800: Sending CONNACK to 172.18.0.3 (0, 5) +1612530800: Socket error on client , disconnecting. +1612530820: New connection from 172.18.0.3 on port 1883. +1612530820: Sending CONNACK to 172.18.0.3 (0, 5) +1612530820: Socket error on client , disconnecting. +1612530840: New connection from 172.18.0.3 on port 1883. +1612530840: Sending CONNACK to 172.18.0.3 (0, 5) +1612530840: Socket error on client , disconnecting. +1612530860: New connection from 172.18.0.3 on port 1883. +1612530860: Sending CONNACK to 172.18.0.3 (0, 5) +1612530860: Socket error on client , disconnecting. +1612530880: New connection from 172.18.0.3 on port 1883. +1612530880: Sending CONNACK to 172.18.0.3 (0, 5) +1612530880: Socket error on client , disconnecting. +1612530900: New connection from 172.18.0.3 on port 1883. +1612530900: Sending CONNACK to 172.18.0.3 (0, 5) +1612530900: Socket error on client , disconnecting. +1612530920: New connection from 172.18.0.3 on port 1883. +1612530920: Sending CONNACK to 172.18.0.3 (0, 5) +1612530920: Socket error on client , disconnecting. +1612530940: New connection from 172.18.0.3 on port 1883. +1612530940: Sending CONNACK to 172.18.0.3 (0, 5) +1612530940: Socket error on client , disconnecting. +1612530960: New connection from 172.18.0.3 on port 1883. +1612530960: Sending CONNACK to 172.18.0.3 (0, 5) +1612530960: Socket error on client , disconnecting. +1612530980: New connection from 172.18.0.3 on port 1883. +1612530980: Sending CONNACK to 172.18.0.3 (0, 5) +1612530980: Socket error on client , disconnecting. +1612531000: New connection from 172.18.0.3 on port 1883. +1612531000: Sending CONNACK to 172.18.0.3 (0, 5) +1612531000: Socket error on client , disconnecting. +1612531020: New connection from 172.18.0.3 on port 1883. +1612531020: Sending CONNACK to 172.18.0.3 (0, 5) +1612531020: Socket error on client , disconnecting. +1612531040: New connection from 172.18.0.3 on port 1883. +1612531040: Sending CONNACK to 172.18.0.3 (0, 5) +1612531040: Socket error on client , disconnecting. +1612531060: New connection from 172.18.0.3 on port 1883. +1612531060: Sending CONNACK to 172.18.0.3 (0, 5) +1612531060: Socket error on client , disconnecting. +1612531064: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612531064: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612531064: Error: Permission denied. +1612531080: New connection from 172.18.0.3 on port 1883. +1612531080: Sending CONNACK to 172.18.0.3 (0, 5) +1612531080: Socket error on client , disconnecting. +1612531100: New connection from 172.18.0.3 on port 1883. +1612531100: Sending CONNACK to 172.18.0.3 (0, 5) +1612531100: Socket error on client , disconnecting. +1612531120: New connection from 172.18.0.3 on port 1883. +1612531120: Sending CONNACK to 172.18.0.3 (0, 5) +1612531120: Socket error on client , disconnecting. +1612531140: New connection from 172.18.0.3 on port 1883. +1612531140: Sending CONNACK to 172.18.0.3 (0, 5) +1612531140: Socket error on client , disconnecting. +1612531160: New connection from 172.18.0.3 on port 1883. +1612531160: Sending CONNACK to 172.18.0.3 (0, 5) +1612531160: Socket error on client , disconnecting. +1612531180: New connection from 172.18.0.3 on port 1883. +1612531180: Sending CONNACK to 172.18.0.3 (0, 5) +1612531180: Socket error on client , disconnecting. +1612531200: New connection from 172.18.0.3 on port 1883. +1612531200: Sending CONNACK to 172.18.0.3 (0, 5) +1612531200: Socket error on client , disconnecting. +1612531220: New connection from 172.18.0.3 on port 1883. +1612531220: Sending CONNACK to 172.18.0.3 (0, 5) +1612531220: Socket error on client , disconnecting. +1612531240: New connection from 172.18.0.3 on port 1883. +1612531240: Sending CONNACK to 172.18.0.3 (0, 5) +1612531240: Socket error on client , disconnecting. +1612531260: New connection from 172.18.0.3 on port 1883. +1612531260: Sending CONNACK to 172.18.0.3 (0, 5) +1612531260: Socket error on client , disconnecting. +1612531280: New connection from 172.18.0.3 on port 1883. +1612531280: Sending CONNACK to 172.18.0.3 (0, 5) +1612531280: Socket error on client , disconnecting. +1612531300: New connection from 172.18.0.3 on port 1883. +1612531300: Sending CONNACK to 172.18.0.3 (0, 5) +1612531300: Socket error on client , disconnecting. +1612531320: New connection from 172.18.0.3 on port 1883. +1612531320: Sending CONNACK to 172.18.0.3 (0, 5) +1612531320: Socket error on client , disconnecting. +1612531340: New connection from 172.18.0.3 on port 1883. +1612531340: Sending CONNACK to 172.18.0.3 (0, 5) +1612531340: Socket error on client , disconnecting. +1612531360: New connection from 172.18.0.3 on port 1883. +1612531360: Sending CONNACK to 172.18.0.3 (0, 5) +1612531360: Socket error on client , disconnecting. +1612531380: New connection from 172.18.0.3 on port 1883. +1612531380: Sending CONNACK to 172.18.0.3 (0, 5) +1612531380: Socket error on client , disconnecting. +1612531400: New connection from 172.18.0.3 on port 1883. +1612531400: Sending CONNACK to 172.18.0.3 (0, 5) +1612531400: Socket error on client , disconnecting. +1612531420: New connection from 172.18.0.3 on port 1883. +1612531420: Sending CONNACK to 172.18.0.3 (0, 5) +1612531420: Socket error on client , disconnecting. +1612531440: New connection from 172.18.0.3 on port 1883. +1612531440: Sending CONNACK to 172.18.0.3 (0, 5) +1612531440: Socket error on client , disconnecting. +1612531460: New connection from 172.18.0.3 on port 1883. +1612531460: Sending CONNACK to 172.18.0.3 (0, 5) +1612531460: Socket error on client , disconnecting. +1612531480: New connection from 172.18.0.3 on port 1883. +1612531480: Sending CONNACK to 172.18.0.3 (0, 5) +1612531480: Socket error on client , disconnecting. +1612531500: New connection from 172.18.0.3 on port 1883. +1612531500: Sending CONNACK to 172.18.0.3 (0, 5) +1612531500: Socket error on client , disconnecting. +1612531520: New connection from 172.18.0.3 on port 1883. +1612531520: Sending CONNACK to 172.18.0.3 (0, 5) +1612531520: Socket error on client , disconnecting. +1612531540: New connection from 172.18.0.3 on port 1883. +1612531540: Sending CONNACK to 172.18.0.3 (0, 5) +1612531540: Socket error on client , disconnecting. +1612531560: New connection from 172.18.0.3 on port 1883. +1612531560: Sending CONNACK to 172.18.0.3 (0, 5) +1612531560: Socket error on client , disconnecting. +1612531580: New connection from 172.18.0.3 on port 1883. +1612531580: Sending CONNACK to 172.18.0.3 (0, 5) +1612531580: Socket error on client , disconnecting. +1612531600: New connection from 172.18.0.3 on port 1883. +1612531600: Sending CONNACK to 172.18.0.3 (0, 5) +1612531600: Socket error on client , disconnecting. +1612531620: New connection from 172.18.0.3 on port 1883. +1612531620: Sending CONNACK to 172.18.0.3 (0, 5) +1612531620: Socket error on client , disconnecting. +1612531640: New connection from 172.18.0.3 on port 1883. +1612531640: Sending CONNACK to 172.18.0.3 (0, 5) +1612531640: Socket error on client , disconnecting. +1612531660: New connection from 172.18.0.3 on port 1883. +1612531660: Sending CONNACK to 172.18.0.3 (0, 5) +1612531660: Socket error on client , disconnecting. +1612531680: New connection from 172.18.0.3 on port 1883. +1612531680: Sending CONNACK to 172.18.0.3 (0, 5) +1612531680: Socket error on client , disconnecting. +1612531700: New connection from 172.18.0.3 on port 1883. +1612531700: Sending CONNACK to 172.18.0.3 (0, 5) +1612531700: Socket error on client , disconnecting. +1612531720: New connection from 172.18.0.3 on port 1883. +1612531720: Sending CONNACK to 172.18.0.3 (0, 5) +1612531720: Socket error on client , disconnecting. +1612531740: New connection from 172.18.0.3 on port 1883. +1612531740: Sending CONNACK to 172.18.0.3 (0, 5) +1612531740: Socket error on client , disconnecting. +1612531760: New connection from 172.18.0.3 on port 1883. +1612531760: Sending CONNACK to 172.18.0.3 (0, 5) +1612531760: Socket error on client , disconnecting. +1612531780: New connection from 172.18.0.3 on port 1883. +1612531780: Sending CONNACK to 172.18.0.3 (0, 5) +1612531780: Socket error on client , disconnecting. +1612531800: New connection from 172.18.0.3 on port 1883. +1612531800: Sending CONNACK to 172.18.0.3 (0, 5) +1612531800: Socket error on client , disconnecting. +1612531820: New connection from 172.18.0.3 on port 1883. +1612531820: Sending CONNACK to 172.18.0.3 (0, 5) +1612531820: Socket error on client , disconnecting. +1612531840: New connection from 172.18.0.3 on port 1883. +1612531840: Sending CONNACK to 172.18.0.3 (0, 5) +1612531840: Socket error on client , disconnecting. +1612531860: New connection from 172.18.0.3 on port 1883. +1612531860: Sending CONNACK to 172.18.0.3 (0, 5) +1612531860: Socket error on client , disconnecting. +1612531880: New connection from 172.18.0.3 on port 1883. +1612531880: Sending CONNACK to 172.18.0.3 (0, 5) +1612531880: Socket error on client , disconnecting. +1612531900: New connection from 172.18.0.3 on port 1883. +1612531900: Sending CONNACK to 172.18.0.3 (0, 5) +1612531900: Socket error on client , disconnecting. +1612531920: New connection from 172.18.0.3 on port 1883. +1612531920: Sending CONNACK to 172.18.0.3 (0, 5) +1612531920: Socket error on client , disconnecting. +1612531940: New connection from 172.18.0.3 on port 1883. +1612531940: Sending CONNACK to 172.18.0.3 (0, 5) +1612531940: Socket error on client , disconnecting. +1612531960: New connection from 172.18.0.3 on port 1883. +1612531960: Sending CONNACK to 172.18.0.3 (0, 5) +1612531960: Socket error on client , disconnecting. +1612531980: New connection from 172.18.0.3 on port 1883. +1612531980: Sending CONNACK to 172.18.0.3 (0, 5) +1612531980: Socket error on client , disconnecting. +1612532000: New connection from 172.18.0.3 on port 1883. +1612532000: Sending CONNACK to 172.18.0.3 (0, 5) +1612532000: Socket error on client , disconnecting. +1612532020: New connection from 172.18.0.3 on port 1883. +1612532020: Sending CONNACK to 172.18.0.3 (0, 5) +1612532020: Socket error on client , disconnecting. +1612532040: New connection from 172.18.0.3 on port 1883. +1612532040: Sending CONNACK to 172.18.0.3 (0, 5) +1612532040: Socket error on client , disconnecting. +1612532060: New connection from 172.18.0.3 on port 1883. +1612532060: Sending CONNACK to 172.18.0.3 (0, 5) +1612532060: Socket error on client , disconnecting. +1612532080: New connection from 172.18.0.3 on port 1883. +1612532080: Sending CONNACK to 172.18.0.3 (0, 5) +1612532080: Socket error on client , disconnecting. +1612532100: New connection from 172.18.0.3 on port 1883. +1612532100: Sending CONNACK to 172.18.0.3 (0, 5) +1612532100: Socket error on client , disconnecting. +1612532120: New connection from 172.18.0.3 on port 1883. +1612532120: Sending CONNACK to 172.18.0.3 (0, 5) +1612532120: Socket error on client , disconnecting. +1612532140: New connection from 172.18.0.3 on port 1883. +1612532140: Sending CONNACK to 172.18.0.3 (0, 5) +1612532140: Socket error on client , disconnecting. +1612532160: New connection from 172.18.0.3 on port 1883. +1612532160: Sending CONNACK to 172.18.0.3 (0, 5) +1612532160: Socket error on client , disconnecting. +1612532180: New connection from 172.18.0.3 on port 1883. +1612532180: Sending CONNACK to 172.18.0.3 (0, 5) +1612532180: Socket error on client , disconnecting. +1612532200: New connection from 172.18.0.3 on port 1883. +1612532200: Sending CONNACK to 172.18.0.3 (0, 5) +1612532200: Socket error on client , disconnecting. +1612532220: New connection from 172.18.0.3 on port 1883. +1612532220: Sending CONNACK to 172.18.0.3 (0, 5) +1612532220: Socket error on client , disconnecting. +1612532240: New connection from 172.18.0.3 on port 1883. +1612532240: Sending CONNACK to 172.18.0.3 (0, 5) +1612532240: Socket error on client , disconnecting. +1612532260: New connection from 172.18.0.3 on port 1883. +1612532260: Sending CONNACK to 172.18.0.3 (0, 5) +1612532260: Socket error on client , disconnecting. +1612532280: New connection from 172.18.0.3 on port 1883. +1612532280: Sending CONNACK to 172.18.0.3 (0, 5) +1612532280: Socket error on client , disconnecting. +1612532300: New connection from 172.18.0.3 on port 1883. +1612532300: Sending CONNACK to 172.18.0.3 (0, 5) +1612532300: Socket error on client , disconnecting. +1612532320: New connection from 172.18.0.3 on port 1883. +1612532320: Sending CONNACK to 172.18.0.3 (0, 5) +1612532320: Socket error on client , disconnecting. +1612532340: New connection from 172.18.0.3 on port 1883. +1612532340: Sending CONNACK to 172.18.0.3 (0, 5) +1612532340: Socket error on client , disconnecting. +1612532360: New connection from 172.18.0.3 on port 1883. +1612532360: Sending CONNACK to 172.18.0.3 (0, 5) +1612532360: Socket error on client , disconnecting. +1612532380: New connection from 172.18.0.3 on port 1883. +1612532380: Sending CONNACK to 172.18.0.3 (0, 5) +1612532380: Socket error on client , disconnecting. +1612532400: New connection from 172.18.0.3 on port 1883. +1612532400: Sending CONNACK to 172.18.0.3 (0, 5) +1612532400: Socket error on client , disconnecting. +1612532420: New connection from 172.18.0.3 on port 1883. +1612532420: Sending CONNACK to 172.18.0.3 (0, 5) +1612532420: Socket error on client , disconnecting. +1612532440: New connection from 172.18.0.3 on port 1883. +1612532440: Sending CONNACK to 172.18.0.3 (0, 5) +1612532440: Socket error on client , disconnecting. +1612532460: New connection from 172.18.0.3 on port 1883. +1612532460: Sending CONNACK to 172.18.0.3 (0, 5) +1612532460: Socket error on client , disconnecting. +1612532480: New connection from 172.18.0.3 on port 1883. +1612532480: Sending CONNACK to 172.18.0.3 (0, 5) +1612532480: Socket error on client , disconnecting. +1612532500: New connection from 172.18.0.3 on port 1883. +1612532500: Sending CONNACK to 172.18.0.3 (0, 5) +1612532500: Socket error on client , disconnecting. +1612532520: New connection from 172.18.0.3 on port 1883. +1612532520: Sending CONNACK to 172.18.0.3 (0, 5) +1612532520: Socket error on client , disconnecting. +1612532540: New connection from 172.18.0.3 on port 1883. +1612532540: Sending CONNACK to 172.18.0.3 (0, 5) +1612532540: Socket error on client , disconnecting. +1612532560: New connection from 172.18.0.3 on port 1883. +1612532560: Sending CONNACK to 172.18.0.3 (0, 5) +1612532560: Socket error on client , disconnecting. +1612532580: New connection from 172.18.0.3 on port 1883. +1612532580: Sending CONNACK to 172.18.0.3 (0, 5) +1612532580: Socket error on client , disconnecting. +1612532600: New connection from 172.18.0.3 on port 1883. +1612532600: Sending CONNACK to 172.18.0.3 (0, 5) +1612532600: Socket error on client , disconnecting. +1612532620: New connection from 172.18.0.3 on port 1883. +1612532620: Sending CONNACK to 172.18.0.3 (0, 5) +1612532620: Socket error on client , disconnecting. +1612532640: New connection from 172.18.0.3 on port 1883. +1612532640: Sending CONNACK to 172.18.0.3 (0, 5) +1612532640: Socket error on client , disconnecting. +1612532660: New connection from 172.18.0.3 on port 1883. +1612532660: Sending CONNACK to 172.18.0.3 (0, 5) +1612532660: Socket error on client , disconnecting. +1612532680: New connection from 172.18.0.3 on port 1883. +1612532680: Sending CONNACK to 172.18.0.3 (0, 5) +1612532680: Socket error on client , disconnecting. +1612532700: New connection from 172.18.0.3 on port 1883. +1612532700: Sending CONNACK to 172.18.0.3 (0, 5) +1612532700: Socket error on client , disconnecting. +1612532720: New connection from 172.18.0.3 on port 1883. +1612532720: Sending CONNACK to 172.18.0.3 (0, 5) +1612532720: Socket error on client , disconnecting. +1612532740: New connection from 172.18.0.3 on port 1883. +1612532740: Sending CONNACK to 172.18.0.3 (0, 5) +1612532740: Socket error on client , disconnecting. +1612532760: New connection from 172.18.0.3 on port 1883. +1612532760: Sending CONNACK to 172.18.0.3 (0, 5) +1612532760: Socket error on client , disconnecting. +1612532780: New connection from 172.18.0.3 on port 1883. +1612532780: Sending CONNACK to 172.18.0.3 (0, 5) +1612532780: Socket error on client , disconnecting. +1612532800: New connection from 172.18.0.3 on port 1883. +1612532800: Sending CONNACK to 172.18.0.3 (0, 5) +1612532800: Socket error on client , disconnecting. +1612532820: New connection from 172.18.0.3 on port 1883. +1612532820: Sending CONNACK to 172.18.0.3 (0, 5) +1612532820: Socket error on client , disconnecting. +1612532840: New connection from 172.18.0.3 on port 1883. +1612532840: Sending CONNACK to 172.18.0.3 (0, 5) +1612532840: Socket error on client , disconnecting. +1612532860: New connection from 172.18.0.3 on port 1883. +1612532860: Sending CONNACK to 172.18.0.3 (0, 5) +1612532860: Socket error on client , disconnecting. +1612532865: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612532865: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612532865: Error: Permission denied. +1612532880: New connection from 172.18.0.3 on port 1883. +1612532880: Sending CONNACK to 172.18.0.3 (0, 5) +1612532880: Socket error on client , disconnecting. +1612532900: New connection from 172.18.0.3 on port 1883. +1612532900: Sending CONNACK to 172.18.0.3 (0, 5) +1612532900: Socket error on client , disconnecting. +1612532920: New connection from 172.18.0.3 on port 1883. +1612532920: Sending CONNACK to 172.18.0.3 (0, 5) +1612532920: Socket error on client , disconnecting. +1612532940: New connection from 172.18.0.3 on port 1883. +1612532940: Sending CONNACK to 172.18.0.3 (0, 5) +1612532940: Socket error on client , disconnecting. +1612532960: New connection from 172.18.0.3 on port 1883. +1612532960: Sending CONNACK to 172.18.0.3 (0, 5) +1612532960: Socket error on client , disconnecting. +1612532980: New connection from 172.18.0.3 on port 1883. +1612532980: Sending CONNACK to 172.18.0.3 (0, 5) +1612532980: Socket error on client , disconnecting. +1612533000: New connection from 172.18.0.3 on port 1883. +1612533000: Sending CONNACK to 172.18.0.3 (0, 5) +1612533000: Socket error on client , disconnecting. +1612533020: New connection from 172.18.0.3 on port 1883. +1612533020: Sending CONNACK to 172.18.0.3 (0, 5) +1612533020: Socket error on client , disconnecting. +1612533040: New connection from 172.18.0.3 on port 1883. +1612533040: Sending CONNACK to 172.18.0.3 (0, 5) +1612533040: Socket error on client , disconnecting. +1612533060: New connection from 172.18.0.3 on port 1883. +1612533060: Sending CONNACK to 172.18.0.3 (0, 5) +1612533060: Socket error on client , disconnecting. +1612533080: New connection from 172.18.0.3 on port 1883. +1612533080: Sending CONNACK to 172.18.0.3 (0, 5) +1612533080: Socket error on client , disconnecting. +1612533100: New connection from 172.18.0.3 on port 1883. +1612533100: Sending CONNACK to 172.18.0.3 (0, 5) +1612533100: Socket error on client , disconnecting. +1612533120: New connection from 172.18.0.3 on port 1883. +1612533120: Sending CONNACK to 172.18.0.3 (0, 5) +1612533120: Socket error on client , disconnecting. +1612533140: New connection from 172.18.0.3 on port 1883. +1612533140: Sending CONNACK to 172.18.0.3 (0, 5) +1612533140: Socket error on client , disconnecting. +1612533160: New connection from 172.18.0.3 on port 1883. +1612533160: Sending CONNACK to 172.18.0.3 (0, 5) +1612533160: Socket error on client , disconnecting. +1612533180: New connection from 172.18.0.3 on port 1883. +1612533180: Sending CONNACK to 172.18.0.3 (0, 5) +1612533180: Socket error on client , disconnecting. +1612533200: New connection from 172.18.0.3 on port 1883. +1612533200: Sending CONNACK to 172.18.0.3 (0, 5) +1612533200: Socket error on client , disconnecting. +1612533220: New connection from 172.18.0.3 on port 1883. +1612533220: Sending CONNACK to 172.18.0.3 (0, 5) +1612533220: Socket error on client , disconnecting. +1612533240: New connection from 172.18.0.3 on port 1883. +1612533240: Sending CONNACK to 172.18.0.3 (0, 5) +1612533240: Socket error on client , disconnecting. +1612533260: New connection from 172.18.0.3 on port 1883. +1612533260: Sending CONNACK to 172.18.0.3 (0, 5) +1612533260: Socket error on client , disconnecting. +1612533280: New connection from 172.18.0.3 on port 1883. +1612533280: Sending CONNACK to 172.18.0.3 (0, 5) +1612533280: Socket error on client , disconnecting. +1612533300: New connection from 172.18.0.3 on port 1883. +1612533300: Sending CONNACK to 172.18.0.3 (0, 5) +1612533300: Socket error on client , disconnecting. +1612533320: New connection from 172.18.0.3 on port 1883. +1612533320: Sending CONNACK to 172.18.0.3 (0, 5) +1612533320: Socket error on client , disconnecting. +1612533340: New connection from 172.18.0.3 on port 1883. +1612533340: Sending CONNACK to 172.18.0.3 (0, 5) +1612533340: Socket error on client , disconnecting. +1612533360: New connection from 172.18.0.3 on port 1883. +1612533360: Sending CONNACK to 172.18.0.3 (0, 5) +1612533360: Socket error on client , disconnecting. +1612533380: New connection from 172.18.0.3 on port 1883. +1612533380: Sending CONNACK to 172.18.0.3 (0, 5) +1612533380: Socket error on client , disconnecting. +1612533400: New connection from 172.18.0.3 on port 1883. +1612533400: Sending CONNACK to 172.18.0.3 (0, 5) +1612533400: Socket error on client , disconnecting. +1612533420: New connection from 172.18.0.3 on port 1883. +1612533420: Sending CONNACK to 172.18.0.3 (0, 5) +1612533420: Socket error on client , disconnecting. +1612533440: New connection from 172.18.0.3 on port 1883. +1612533440: Sending CONNACK to 172.18.0.3 (0, 5) +1612533440: Socket error on client , disconnecting. +1612533460: New connection from 172.18.0.3 on port 1883. +1612533460: Sending CONNACK to 172.18.0.3 (0, 5) +1612533460: Socket error on client , disconnecting. +1612533480: New connection from 172.18.0.3 on port 1883. +1612533480: Sending CONNACK to 172.18.0.3 (0, 5) +1612533480: Socket error on client , disconnecting. +1612533500: New connection from 172.18.0.3 on port 1883. +1612533500: Sending CONNACK to 172.18.0.3 (0, 5) +1612533500: Socket error on client , disconnecting. +1612533520: New connection from 172.18.0.3 on port 1883. +1612533520: Sending CONNACK to 172.18.0.3 (0, 5) +1612533520: Socket error on client , disconnecting. +1612533540: New connection from 172.18.0.3 on port 1883. +1612533540: Sending CONNACK to 172.18.0.3 (0, 5) +1612533540: Socket error on client , disconnecting. +1612533560: New connection from 172.18.0.3 on port 1883. +1612533560: Sending CONNACK to 172.18.0.3 (0, 5) +1612533560: Socket error on client , disconnecting. +1612533580: New connection from 172.18.0.3 on port 1883. +1612533580: Sending CONNACK to 172.18.0.3 (0, 5) +1612533580: Socket error on client , disconnecting. +1612533600: New connection from 172.18.0.3 on port 1883. +1612533600: Sending CONNACK to 172.18.0.3 (0, 5) +1612533600: Socket error on client , disconnecting. +1612533620: New connection from 172.18.0.3 on port 1883. +1612533620: Sending CONNACK to 172.18.0.3 (0, 5) +1612533620: Socket error on client , disconnecting. +1612533640: New connection from 172.18.0.3 on port 1883. +1612533640: Sending CONNACK to 172.18.0.3 (0, 5) +1612533640: Socket error on client , disconnecting. +1612533660: New connection from 172.18.0.3 on port 1883. +1612533660: Sending CONNACK to 172.18.0.3 (0, 5) +1612533660: Socket error on client , disconnecting. +1612533680: New connection from 172.18.0.3 on port 1883. +1612533680: Sending CONNACK to 172.18.0.3 (0, 5) +1612533680: Socket error on client , disconnecting. +1612533700: New connection from 172.18.0.3 on port 1883. +1612533700: Sending CONNACK to 172.18.0.3 (0, 5) +1612533700: Socket error on client , disconnecting. +1612533720: New connection from 172.18.0.3 on port 1883. +1612533720: Sending CONNACK to 172.18.0.3 (0, 5) +1612533720: Socket error on client , disconnecting. +1612533740: New connection from 172.18.0.3 on port 1883. +1612533740: Sending CONNACK to 172.18.0.3 (0, 5) +1612533740: Socket error on client , disconnecting. +1612533760: New connection from 172.18.0.3 on port 1883. +1612533760: Sending CONNACK to 172.18.0.3 (0, 5) +1612533760: Socket error on client , disconnecting. +1612533780: New connection from 172.18.0.3 on port 1883. +1612533780: Sending CONNACK to 172.18.0.3 (0, 5) +1612533780: Socket error on client , disconnecting. +1612533800: New connection from 172.18.0.3 on port 1883. +1612533800: Sending CONNACK to 172.18.0.3 (0, 5) +1612533800: Socket error on client , disconnecting. +1612533820: New connection from 172.18.0.3 on port 1883. +1612533820: Sending CONNACK to 172.18.0.3 (0, 5) +1612533820: Socket error on client , disconnecting. +1612533840: New connection from 172.18.0.3 on port 1883. +1612533840: Sending CONNACK to 172.18.0.3 (0, 5) +1612533840: Socket error on client , disconnecting. +1612533860: New connection from 172.18.0.3 on port 1883. +1612533860: Sending CONNACK to 172.18.0.3 (0, 5) +1612533860: Socket error on client , disconnecting. +1612533880: New connection from 172.18.0.3 on port 1883. +1612533880: Sending CONNACK to 172.18.0.3 (0, 5) +1612533880: Socket error on client , disconnecting. +1612533900: New connection from 172.18.0.3 on port 1883. +1612533900: Sending CONNACK to 172.18.0.3 (0, 5) +1612533900: Socket error on client , disconnecting. +1612533920: New connection from 172.18.0.3 on port 1883. +1612533920: Sending CONNACK to 172.18.0.3 (0, 5) +1612533920: Socket error on client , disconnecting. +1612533940: New connection from 172.18.0.3 on port 1883. +1612533940: Sending CONNACK to 172.18.0.3 (0, 5) +1612533940: Socket error on client , disconnecting. +1612533960: New connection from 172.18.0.3 on port 1883. +1612533960: Sending CONNACK to 172.18.0.3 (0, 5) +1612533960: Socket error on client , disconnecting. +1612533980: New connection from 172.18.0.3 on port 1883. +1612533980: Sending CONNACK to 172.18.0.3 (0, 5) +1612533980: Socket error on client , disconnecting. +1612534000: New connection from 172.18.0.3 on port 1883. +1612534000: Sending CONNACK to 172.18.0.3 (0, 5) +1612534000: Socket error on client , disconnecting. +1612534020: New connection from 172.18.0.3 on port 1883. +1612534020: Sending CONNACK to 172.18.0.3 (0, 5) +1612534020: Socket error on client , disconnecting. +1612534040: New connection from 172.18.0.3 on port 1883. +1612534040: Sending CONNACK to 172.18.0.3 (0, 5) +1612534040: Socket error on client , disconnecting. +1612534060: New connection from 172.18.0.3 on port 1883. +1612534060: Sending CONNACK to 172.18.0.3 (0, 5) +1612534060: Socket error on client , disconnecting. +1612534080: New connection from 172.18.0.3 on port 1883. +1612534080: Sending CONNACK to 172.18.0.3 (0, 5) +1612534080: Socket error on client , disconnecting. +1612534100: New connection from 172.18.0.3 on port 1883. +1612534100: Sending CONNACK to 172.18.0.3 (0, 5) +1612534100: Socket error on client , disconnecting. +1612534120: New connection from 172.18.0.3 on port 1883. +1612534120: Sending CONNACK to 172.18.0.3 (0, 5) +1612534120: Socket error on client , disconnecting. +1612534140: New connection from 172.18.0.3 on port 1883. +1612534140: Sending CONNACK to 172.18.0.3 (0, 5) +1612534140: Socket error on client , disconnecting. +1612534160: New connection from 172.18.0.3 on port 1883. +1612534160: Sending CONNACK to 172.18.0.3 (0, 5) +1612534160: Socket error on client , disconnecting. +1612534180: New connection from 172.18.0.3 on port 1883. +1612534180: Sending CONNACK to 172.18.0.3 (0, 5) +1612534180: Socket error on client , disconnecting. +1612534200: New connection from 172.18.0.3 on port 1883. +1612534200: Sending CONNACK to 172.18.0.3 (0, 5) +1612534200: Socket error on client , disconnecting. +1612534220: New connection from 172.18.0.3 on port 1883. +1612534220: Sending CONNACK to 172.18.0.3 (0, 5) +1612534220: Socket error on client , disconnecting. +1612534240: New connection from 172.18.0.3 on port 1883. +1612534240: Sending CONNACK to 172.18.0.3 (0, 5) +1612534240: Socket error on client , disconnecting. +1612534260: New connection from 172.18.0.3 on port 1883. +1612534260: Sending CONNACK to 172.18.0.3 (0, 5) +1612534260: Socket error on client , disconnecting. +1612534280: New connection from 172.18.0.3 on port 1883. +1612534280: Sending CONNACK to 172.18.0.3 (0, 5) +1612534280: Socket error on client , disconnecting. +1612534300: New connection from 172.18.0.3 on port 1883. +1612534300: Sending CONNACK to 172.18.0.3 (0, 5) +1612534300: Socket error on client , disconnecting. +1612534320: New connection from 172.18.0.3 on port 1883. +1612534320: Sending CONNACK to 172.18.0.3 (0, 5) +1612534320: Socket error on client , disconnecting. +1612534340: New connection from 172.18.0.3 on port 1883. +1612534340: Sending CONNACK to 172.18.0.3 (0, 5) +1612534340: Socket error on client , disconnecting. +1612534360: New connection from 172.18.0.3 on port 1883. +1612534360: Sending CONNACK to 172.18.0.3 (0, 5) +1612534360: Socket error on client , disconnecting. +1612534379: mosquitto version 1.6.10 terminating +1612534379: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612534379: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612534379: Error: Permission denied. +1612534381: mosquitto version 1.6.10 starting +1612534381: Config loaded from /mosquitto/config/mosquitto.conf. +1612534381: Opening websockets listen socket on port 8884. +1612534381: Opening ipv4 listen socket on port 1883. +1612534381: Opening ipv6 listen socket on port 1883. +1612534400: New connection from 172.18.0.3 on port 1883. +1612534400: New client connected from 172.18.0.3 as Telegraf-Consumer-fbkEL (p1, c1, k60, u'subclient'). +1612534400: No will message specified. +1612534400: Sending CONNACK to Telegraf-Consumer-fbkEL (0, 0) +1612534400: Received SUBSCRIBE from Telegraf-Consumer-fbkEL +1612534400: IOT/+/acc (QoS 0) +1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/acc +1612534400: IOT/+/mag (QoS 0) +1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/mag +1612534400: IOT/+/gyro (QoS 0) +1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/gyro +1612534400: IOT/+/temp (QoS 0) +1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/temp +1612534400: Sending SUBACK to Telegraf-Consumer-fbkEL +1612534465: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534465: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534530: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534530: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534590: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534590: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534655: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534655: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534720: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534720: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534785: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534785: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534850: Received PINGREQ from Telegraf-Consumer-fbkEL +1612534850: Sending PINGRESP to Telegraf-Consumer-fbkEL +1612534880: mosquitto version 1.6.10 terminating +1612534880: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612534880: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612534880: Error: Permission denied. +1612534882: mosquitto version 1.6.10 starting +1612536540: mosquitto version 1.6.10 starting +1612536540: Config loaded from /mosquitto/config/mosquitto.conf. +1612536540: Opening websockets listen socket on port 9001. +1612536540: Opening ipv4 listen socket on port 8883. +1612536540: Opening ipv6 listen socket on port 8883. +1612536540: New connection from 172.18.0.3 on port 8883. +1612536540: New client connected from 172.18.0.3 as Telegraf-Consumer-GBfjN (p2, c1, k60, u'subclient'). +1612536540: No will message specified. +1612536540: Sending CONNACK to Telegraf-Consumer-GBfjN (0, 0) +1612536540: Received SUBSCRIBE from Telegraf-Consumer-GBfjN +1612536540: IOT/+/mag (QoS 0) +1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/mag +1612536540: IOT/+/gyro (QoS 0) +1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/gyro +1612536540: IOT/+/temp (QoS 0) +1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/temp +1612536540: IOT/+/acc (QoS 0) +1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/acc +1612536540: Sending SUBACK to Telegraf-Consumer-GBfjN +1612536605: Received PINGREQ from Telegraf-Consumer-GBfjN +1612536605: Sending PINGRESP to Telegraf-Consumer-GBfjN +1612536665: Received PINGREQ from Telegraf-Consumer-GBfjN +1612537032: mosquitto version 1.6.10 starting +1612537032: Config loaded from /mosquitto/config/mosquitto.conf. +1612537032: Opening websockets listen socket on port 9001. +1612537033: Opening ipv4 listen socket on port 8883. +1612537033: Opening ipv6 listen socket on port 8883. +1612537033: New connection from 172.18.0.4 on port 8883. +1612537033: New client connected from 172.18.0.4 as Telegraf-Consumer-LlXz9 (p2, c1, k60, u'subclient'). +1612537033: No will message specified. +1612537033: Sending CONNACK to Telegraf-Consumer-LlXz9 (0, 0) +1612537033: Received SUBSCRIBE from Telegraf-Consumer-LlXz9 +1612537033: IOT/+/acc (QoS 0) +1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/acc +1612537033: IOT/+/mag (QoS 0) +1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/mag +1612537033: IOT/+/gyro (QoS 0) +1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/gyro +1612537033: IOT/+/temp (QoS 0) +1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/temp +1612537033: Sending SUBACK to Telegraf-Consumer-LlXz9 +1612537098: Received PINGREQ from Telegraf-Consumer-LlXz9 +1612537098: Sending PINGRESP to Telegraf-Consumer-LlXz9 +1612537157: mosquitto version 1.6.10 terminating +1612537157: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612537157: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612537157: Error: Permission denied. +1612537169: mosquitto version 1.6.10 starting +1612537169: Config loaded from /mosquitto/config/mosquitto.conf. +1612537169: Opening websockets listen socket on port 9001. +1612537169: Opening ipv4 listen socket on port 8883. +1612537169: Opening ipv6 listen socket on port 8883. +1612537169: New connection from 172.18.0.3 on port 8883. +1612537169: New client connected from 172.18.0.3 as Telegraf-Consumer-3Zghm (p2, c1, k60, u'subclient'). +1612537169: No will message specified. +1612537169: Sending CONNACK to Telegraf-Consumer-3Zghm (0, 0) +1612537169: Received SUBSCRIBE from Telegraf-Consumer-3Zghm +1612537169: IOT/+/gyro (QoS 0) +1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/gyro +1612537169: IOT/+/temp (QoS 0) +1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/temp +1612537169: IOT/+/acc (QoS 0) +1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/acc +1612537169: IOT/+/mag (QoS 0) +1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/mag +1612537169: Sending SUBACK to Telegraf-Consumer-3Zghm +1612537229: Received PINGREQ from Telegraf-Consumer-3Zghm +1612537229: Sending PINGRESP to Telegraf-Consumer-3Zghm +1612537271: mosquitto version 1.6.10 terminating +1612537271: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612537271: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612537271: Error: Permission denied. +1612537283: mosquitto version 1.6.10 starting +1612537283: Config loaded from /mosquitto/config/mosquitto.conf. +1612537283: Opening websockets listen socket on port 9001. +1612537284: Opening ipv4 listen socket on port 8883. +1612537284: Opening ipv6 listen socket on port 8883. +1612537284: New connection from 172.18.0.4 on port 8883. +1612537284: New client connected from 172.18.0.4 as Telegraf-Consumer-Z1jPf (p2, c1, k60, u'subclient'). +1612537284: No will message specified. +1612537284: Sending CONNACK to Telegraf-Consumer-Z1jPf (0, 0) +1612537284: Received SUBSCRIBE from Telegraf-Consumer-Z1jPf +1612537284: IOT/+/acc (QoS 0) +1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/acc +1612537284: IOT/+/mag (QoS 0) +1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/mag +1612537284: IOT/+/gyro (QoS 0) +1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/gyro +1612537284: IOT/+/temp (QoS 0) +1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/temp +1612537284: Sending SUBACK to Telegraf-Consumer-Z1jPf +1612537306: New connection from 172.18.0.6 on port 8883. +1612537306: New client connected from 172.18.0.6 as MQTT_FX_Client (p2, c1, k60). +1612537306: No will message specified. +1612537306: Sending CONNACK to MQTT_FX_Client (0, 0) +1612537307: Received DISCONNECT from MQTT_FX_Client +1612537307: Client MQTT_FX_Client disconnected. +1612537308: New connection from 172.18.0.6 on port 8883. +1612537308: New client connected from 172.18.0.6 as MQTT_FX_Client (p2, c1, k60). +1612537308: No will message specified. +1612537308: Sending CONNACK to MQTT_FX_Client (0, 0) +1612537310: Received SUBSCRIBE from MQTT_FX_Client +1612537310: # (QoS 0) +1612537310: MQTT_FX_Client 0 # +1612537310: Sending SUBACK to MQTT_FX_Client +1612537326: Socket error on client MQTT_FX_Client, disconnecting. +1612537326: mosquitto version 1.6.10 terminating +1612537326: Saving in-memory database to /mosquitto/data/mosquitto.db. +1612537326: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. +1612537326: Error: Permission denied. diff --git a/certbot/telegraf/telegraf.toml b/certbot/telegraf/telegraf.toml index 974b0cd..24e0e63 100644 --- a/certbot/telegraf/telegraf.toml +++ b/certbot/telegraf/telegraf.toml @@ -1,101 +1,101 @@ -[agent] - interval = "20s" - round_interval = true - metric_batch_size = 1000 - metric_buffer_limit = 10000 - collection_jitter = "0s" - flush_interval = "10s" - flush_jitter = "0s" - precision = "" - debug = true - quiet = false - hostname = "" - omit_hostname = true - -############################################################# -# OUTPUT PLUGINS # -############################################################# -[[outputs.influxdb]] - urls = [ "http://influxdb:8086" ] - - database = "edge" - - skip_database_creation = false - - timeout = "5s" - username = "${INFLUXDB_USER}" - password = "${INFLUXDB_USER_PASSWORD}" - ## Use TLS but skip chain & host verification - insecure_skip_verify = true - -############################################################### -# PROCESSOR PLUGINS # -############################################################### - -[[processors.regex]] - - order = 1 - - [[processors.regex.tags]] - - # use the `topic` tag to extract information from the MQTT Topic - key = "topic" - # Topic: IOT// - # Extract - pattern = ".*/(.*)/.*" - # Replace the first occurrence - replacement = "${1}" - # Store it in tag called: - result_key = "sensorID" - - -[[processors.enum]] - - order = 2 - - [[processors.enum.mapping]] - - # create a mapping between extracted sensorID and some meta-data - tag = "sensorID" - dest = "location" - - [processors.enum.mapping.value_mappings] - "sensor1" = "kitchen" - "sensor2" = "livingroom" - -################################################################## -# INPUT PLUGINS # -################################################################## - -[[inputs.mqtt_consumer]] - - servers = [ "tcp://mosquitto:1883" ] - - # Topics to subscribe to: - topics = [ - "IOT/+/acc", - "IOT/+/mag", - "IOT/+/gyro", - "IOT/+/temp" - ] - - # Telegraf will also store the topic as a tag with name `topic` - # NOTE: necessary for the Processor REGEX to extract - topic_tag = "topic" - - # Connection timeout - connection_timeout = "30s" - - username = "${TG_MOSQUITTO_USERNAME}" - password = "${TG_MOSQUITTO_PASSWORD}" - - ## Use TLS but skip chain & host verification - # Use Certificates if `require_certificate true` in `mosquitto.conf` file - #tls_ca = "/etc/telegraf/ca.crt" - #tls_cert = "/etc/telegraf/mqtt-client.crt" - #tls_key = "/etc/telegraf/mqtt-client.key" - ## Use TLS but skip chain & host verification - #insecure_skip_verify = true - - # Incoming MQTT Payload from Sensor nodes is in InfluxDB Line Protocol strings - data_format = "influx" +[agent] + interval = "20s" + round_interval = true + metric_batch_size = 1000 + metric_buffer_limit = 10000 + collection_jitter = "0s" + flush_interval = "10s" + flush_jitter = "0s" + precision = "" + debug = true + quiet = false + hostname = "" + omit_hostname = true + +############################################################# +# OUTPUT PLUGINS # +############################################################# +[[outputs.influxdb]] + urls = [ "http://influxdb:8086" ] + + database = "edge" + + skip_database_creation = false + + timeout = "5s" + username = "${INFLUXDB_USER}" + password = "${INFLUXDB_USER_PASSWORD}" + ## Use TLS but skip chain & host verification + insecure_skip_verify = true + +############################################################### +# PROCESSOR PLUGINS # +############################################################### + +[[processors.regex]] + + order = 1 + + [[processors.regex.tags]] + + # use the `topic` tag to extract information from the MQTT Topic + key = "topic" + # Topic: IOT// + # Extract + pattern = ".*/(.*)/.*" + # Replace the first occurrence + replacement = "${1}" + # Store it in tag called: + result_key = "sensorID" + + +[[processors.enum]] + + order = 2 + + [[processors.enum.mapping]] + + # create a mapping between extracted sensorID and some meta-data + tag = "sensorID" + dest = "location" + + [processors.enum.mapping.value_mappings] + "sensor1" = "kitchen" + "sensor2" = "livingroom" + +################################################################## +# INPUT PLUGINS # +################################################################## + +[[inputs.mqtt_consumer]] + + servers = [ "tcp://mosquitto:8883" ] + + # Topics to subscribe to: + topics = [ + "IOT/+/acc", + "IOT/+/mag", + "IOT/+/gyro", + "IOT/+/temp" + ] + + # Telegraf will also store the topic as a tag with name `topic` + # NOTE: necessary for the Processor REGEX to extract + topic_tag = "topic" + + # Connection timeout + connection_timeout = "30s" + + username = "${TG_MOSQUITTO_USERNAME}" + password = "${TG_MOSQUITTO_PASSWORD}" + + ## Use TLS but skip chain & host verification + # Use Certificates if `require_certificate true` in `mosquitto.conf` file + #tls_ca = "/etc/telegraf/ca.crt" + #tls_cert = "/etc/telegraf/mqtt-client.crt" + #tls_key = "/etc/telegraf/mqtt-client.key" + ## Use TLS but skip chain & host verification + #insecure_skip_verify = true + + # Incoming MQTT Payload from Sensor nodes is in InfluxDB Line Protocol strings + data_format = "influx" diff --git a/certbot/traefik/configurations/routers-http.toml b/certbot/traefik/configurations/routers-http.toml index 3748095..48bdd9c 100644 --- a/certbot/traefik/configurations/routers-http.toml +++ b/certbot/traefik/configurations/routers-http.toml @@ -24,4 +24,12 @@ service = "influxdb" [http.routers.influxdb-router.tls] - certResolver = "myresolver" \ No newline at end of file + certResolver = "myresolver" + + [http.routers.mqtt-router] + rule = "Host(`mqtt.demo1.iotstack.co`)" + entryPoints = ["web-secure"] + service = "mosquitto-ws" + + [http.routers.mqtt-router.tls] + certResolver = "myresolver" diff --git a/certbot/traefik/configurations/routers-tcp.toml b/certbot/traefik/configurations/routers-tcp.toml index 7427db9..de4ef7a 100644 --- a/certbot/traefik/configurations/routers-tcp.toml +++ b/certbot/traefik/configurations/routers-tcp.toml @@ -8,10 +8,3 @@ [tcp.routers.mqtt-router.tls] certResolver = "myresolver" - [tcp.routers.mqtt-websockets-router] - entryPoints = ["websockets"] - service = "mosquitto-ws" - rule = "HostSNI(`mqtt.demo1.iotstack.co`)" - - [tcp.routers.mqtt-websockets-router.tls] - certResolver = "myresolver" diff --git a/certbot/traefik/configurations/services-http.toml b/certbot/traefik/configurations/services-http.toml index 32efa12..5101cd1 100644 --- a/certbot/traefik/configurations/services-http.toml +++ b/certbot/traefik/configurations/services-http.toml @@ -15,3 +15,8 @@ [http.services.influxdb.loadBalancer.healthCheck] path = "/ping" interval = "30s" + + [http.services.mosquitto-ws] + [http.services.mosquitto-ws.loadBalancer] + [[http.services.mosquitto-ws.loadBalancer.server]] + port = "9001" diff --git a/certbot/traefik/configurations/services-tcp.toml b/certbot/traefik/configurations/services-tcp.toml index 9347af7..0eb39a8 100644 --- a/certbot/traefik/configurations/services-tcp.toml +++ b/certbot/traefik/configurations/services-tcp.toml @@ -3,9 +3,5 @@ [tcp.services.mosquitto] [tcp.services.mosquitto.loadBalancer] [[tcp.services.mosquitto.loadBalancer.servers]] - address = "mosquitto:1883" + address = "mosquitto:8883" - [tcp.services.mosquitto-ws] - [tcp.services.mosquitto-ws.loadBalancer] - [[tcp.services.mosquitto-ws.loadBalancer.servers]] - address = "mosquitto:1884" diff --git a/certbot/traefik/traefik.toml b/certbot/traefik/traefik.toml index f0d6548..5588475 100644 --- a/certbot/traefik/traefik.toml +++ b/certbot/traefik/traefik.toml @@ -42,8 +42,6 @@ [entryPoints.mqtt] address = ":8883" - [entryPoints.websockets] - address = ":8884" [retry] diff --git a/selfsigned/traefik/log/access.log b/selfsigned/traefik/log/access.log index 40e40b6..ffe3c0a 100644 --- a/selfsigned/traefik/log/access.log +++ b/selfsigned/traefik/log/access.log @@ -956,3 +956,458 @@ 85.16.177.133 - admin [03/Feb/2021:22:27:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 6ms 85.16.177.133 - admin [03/Feb/2021:22:27:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms 85.16.177.133 - admin [03/Feb/2021:22:27:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:42:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 1 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:42:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 2 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:42:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 3 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 4 "api-router@file" "-" 1ms +189.159.79.184 - - [03/Feb/2021:22:43:06 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 5 "-" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:09 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 6 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 7 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 8 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:22:43:20 +0000] "GET / HTTP/2.0" 401 17 "-" "-" 9 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 10 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 11 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 12 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 15 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 14 "api-router@file" "-" 33ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 17 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 18 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 19 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 20 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 21 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 22 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 23 "api-router@file" "-" 13ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 24 "api-router@file" "-" 11ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 25 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 26 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 27 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 28 "api-router@file" "-" 26ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 30 "api-router@file" "-" 23ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 31 "api-router@file" "-" 18ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 34 "api-router@file" "-" 11ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 43 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 13 "api-router@file" "-" 178ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 29 "api-router@file" "-" 98ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 33 "api-router@file" "-" 329ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 35 "api-router@file" "-" 323ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 36 "api-router@file" "-" 323ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 37 "api-router@file" "-" 322ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 38 "api-router@file" "-" 322ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 39 "api-router@file" "-" 321ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 40 "api-router@file" "-" 321ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 41 "api-router@file" "-" 321ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 42 "api-router@file" "-" 320ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 44 "api-router@file" "-" 315ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 32 "api-router@file" "-" 792ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 45 "api-router@file" "-" 777ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 47 "api-router@file" "-" 776ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 16 "api-router@file" "-" 2172ms +85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 46 "api-router@file" "-" 2084ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 48 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 49 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 50 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 51 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 52 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 53 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 54 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 55 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 56 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:29 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 57 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:29 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 58 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 60 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:43:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 61 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:33 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 62 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:33 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 63 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 65 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 66 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 67 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/http/routers/grafana-router@docker HTTP/2.0" 200 330 "-" "-" 69 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/mqtt HTTP/2.0" 200 171 "-" "-" 70 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/web HTTP/2.0" 200 168 "-" "-" 71 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 72 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/websockets HTTP/2.0" 200 177 "-" "-" 73 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/http/middlewares/grafana-mw@file HTTP/2.0" 404 52 "-" "-" 74 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 78 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:43:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:43:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:43:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 84 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 90 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:44:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:44:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:44:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 96 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 102 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:44:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:44:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:44:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:45:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 108 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:45:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 11ms +85.16.177.133 - admin [03/Feb/2021:22:45:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:45:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:24 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 118 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:24 +0000] "GET /dashboard/statics/providers/internal.svg HTTP/2.0" 200 3681 "-" "-" 119 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:24 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 120 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 121 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 122 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 123 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:45:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:45:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:22:45:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 126 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 698 "-" "-" 1 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 2 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 3 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 4 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 5 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:46:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 6 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:46:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 7 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:46:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 8 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 9 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 10 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 11 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 12 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 13 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:46:34 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 14 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:46:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 15 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 16 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:39 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 17 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 18 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 19 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 20 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:46 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 21 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 22 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:46:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 23 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 24 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 25 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 26 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 27 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:46:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 28 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:46:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 29 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 30 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 31 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 32 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 33 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 34 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 35 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 36 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 37 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 38 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 39 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:47:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 40 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 41 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 42 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 44 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 45 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 46 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 47 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 48 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 49 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 50 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 51 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 52 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 53 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 54 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 55 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 56 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 57 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 58 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 60 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 63 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:47:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:47:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 66 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 67 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 69 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 70 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:48:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 71 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 72 "api-router@file" "-" 7ms +85.16.177.133 - admin [03/Feb/2021:22:48:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 75 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 78 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 81 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 84 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:48:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 87 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 90 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 93 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 96 "api-router@file" "-" 11ms +85.16.177.133 - admin [03/Feb/2021:22:48:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:48:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 99 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:48:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 102 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 105 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 108 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 111 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:49:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 114 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 117 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:49:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 120 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 121 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 122 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 123 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 126 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:49:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 127 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 128 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 129 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 130 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 131 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 132 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 133 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 134 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 135 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:49:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 136 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:49:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 137 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:50:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 138 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 139 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 140 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 141 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 142 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 143 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 144 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:50:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 145 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 146 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 147 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 148 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 149 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 150 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 151 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 152 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 153 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 154 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 155 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 156 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 157 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 158 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 159 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 160 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:50:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 161 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 162 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 163 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:50:44 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 164 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:50:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 165 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:50:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 166 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 1 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 2 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 3 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 4 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 5 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 7 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 8 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 9 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 10 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:31 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 183 "-" "-" 11 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:31 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 12 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:32 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1656 "-" "-" 13 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 14 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 15 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 16 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 17 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 18 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:51:34 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 19 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:36 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 20 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:36 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 21 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 22 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:39 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 23 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:41 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 24 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 25 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:44 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 26 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:46 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 27 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 28 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:49 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 29 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:51 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 30 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 31 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:54 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 32 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:55 +0000] "GET /api/tcp/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 408 "-" "-" 33 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:55 +0000] "GET /api/tcp/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 34 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:56 +0000] "GET /api/tcp/routers?search=&status=&per_page=2&page=1 HTTP/2.0" 200 478 "-" "-" 35 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:56 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 36 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:56 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 37 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:57 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1656 "-" "-" 38 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:51:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 39 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 40 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:51:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 41 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:51:59 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 42 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:52:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:52:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 44 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET / HTTP/2.0" 302 37 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 12ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 15ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 2ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 49 "grafana-router@file" "http://grafana:3000" 14ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 48 "grafana-router@file" "http://grafana:3000" 33ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 50 "grafana-router@file" "http://grafana:3000" 115ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 54 "grafana-router@file" "http://grafana:3000" 272ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 52 "grafana-router@file" "http://grafana:3000" 669ms +85.16.177.133 - admin [03/Feb/2021:22:52:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 55 "api-router@file" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 51 "grafana-router@file" "http://grafana:3000" 5788ms +85.16.177.133 - admin [03/Feb/2021:22:52:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 56 "api-router@file" "-" 1ms +85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 53 "grafana-router@file" "http://grafana:3000" 10812ms +85.16.177.133 - - [03/Feb/2021:22:52:23 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 57 "grafana-router@file" "http://grafana:3000" 12ms +85.16.177.133 - - [03/Feb/2021:22:52:23 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 58 "grafana-router@file" "http://grafana:3000" 2ms +85.16.177.133 - admin [03/Feb/2021:22:52:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:52:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 60 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:52:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:52:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:52:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 63 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:52:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:52:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:52:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 66 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 67 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 69 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 70 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 71 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 72 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:53:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 2ms +205.169.39.49 - - [03/Feb/2021:22:53:37 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 74 "-" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:22:53:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:22:53:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 1ms +67.205.165.53 - - [03/Feb/2021:22:53:52 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 78 "influxdb-router@file" "http://influxdb:8086" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:53:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:54:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 84 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:54:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:54:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 9ms +85.16.177.133 - admin [03/Feb/2021:22:54:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 90 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:54:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:55:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 96 "api-router@file" "-" 2ms +85.16.177.133 - admin [03/Feb/2021:22:55:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 102 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:55:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:56:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 108 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 15ms +85.16.177.133 - admin [03/Feb/2021:22:56:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:56:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:57:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 0ms +85.16.177.133 - - [03/Feb/2021:22:57:15 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 120 "grafana-router@file" "http://grafana:3000" 19ms +85.16.177.133 - admin [03/Feb/2021:22:57:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 121 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 122 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 123 "api-router@file" "-" 5ms +85.16.177.133 - admin [03/Feb/2021:22:57:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:22:57:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 126 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 127 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:57:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 128 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:57:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 129 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 130 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 131 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 132 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 133 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 134 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 135 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 136 "api-router@file" "-" 6ms +85.16.177.133 - admin [03/Feb/2021:22:58:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 137 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 138 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 139 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 140 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:58:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 141 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 142 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 143 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 144 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 145 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 146 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 147 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 148 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 149 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 150 "api-router@file" "-" 10ms +85.16.177.133 - admin [03/Feb/2021:22:59:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 151 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 152 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:22:59:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 153 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 154 "api-router@file" "-" 3ms +85.16.177.133 - admin [03/Feb/2021:23:00:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 155 "api-router@file" "-" 4ms +85.16.177.133 - admin [03/Feb/2021:23:00:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 156 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:23:00:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 157 "api-router@file" "-" 0ms +85.16.177.133 - admin [03/Feb/2021:23:00:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 158 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 159 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 160 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 161 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 162 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 163 "api-router@file" "-" 1ms +85.16.177.133 - admin [03/Feb/2021:23:00:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 164 "api-router@file" "-" 1ms From 34a2677dd274031d00019bde22e3b031be15a3ce Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Fri, 5 Feb 2021 16:07:04 +0100 Subject: [PATCH 17/19] Logs removed --- certbot/mosquitto/log/mosquitto.log | 21458 -------------------------- selfsigned/traefik/log/access.log | 1413 -- 2 files changed, 22871 deletions(-) delete mode 100644 certbot/mosquitto/log/mosquitto.log delete mode 100644 selfsigned/traefik/log/access.log diff --git a/certbot/mosquitto/log/mosquitto.log b/certbot/mosquitto/log/mosquitto.log deleted file mode 100644 index 0a3eeb9..0000000 --- a/certbot/mosquitto/log/mosquitto.log +++ /dev/null @@ -1,21458 +0,0 @@ -1612394052: mosquitto version 1.6.10 starting -1612394052: Config loaded from /mosquitto/config/mosquitto.conf. -1612394052: Error: Invalid password hash for user pubclient, removing entry. -1612394052: Error: Invalid password hash for user subclient, removing entry. -1612394052: Opening ipv4 listen socket on port 1883. -1612394052: Opening ipv6 listen socket on port 1883. -1612394052: Opening websockets listen socket on port 8884. -1612394060: New connection from 172.18.0.4 on port 1883. -1612394060: Sending CONNACK to 172.18.0.4 (0, 5) -1612394060: Socket error on client , disconnecting. -1612394060: New connection from 172.18.0.4 on port 1883. -1612394060: Sending CONNACK to 172.18.0.4 (0, 5) -1612394060: Socket error on client , disconnecting. -1612394080: New connection from 172.18.0.4 on port 1883. -1612394080: Sending CONNACK to 172.18.0.4 (0, 5) -1612394080: Socket error on client , disconnecting. -1612394100: New connection from 172.18.0.4 on port 1883. -1612394100: Sending CONNACK to 172.18.0.4 (0, 5) -1612394100: Socket error on client , disconnecting. -1612394120: New connection from 172.18.0.4 on port 1883. -1612394120: Sending CONNACK to 172.18.0.4 (0, 5) -1612394120: Socket error on client , disconnecting. -1612394140: New connection from 172.18.0.4 on port 1883. -1612394140: Sending CONNACK to 172.18.0.4 (0, 5) -1612394140: Socket error on client , disconnecting. -1612394160: New connection from 172.18.0.4 on port 1883. -1612394160: Sending CONNACK to 172.18.0.4 (0, 5) -1612394160: Socket error on client , disconnecting. -1612394180: New connection from 172.18.0.4 on port 1883. -1612394180: Sending CONNACK to 172.18.0.4 (0, 5) -1612394180: Socket error on client , disconnecting. -1612394181: mosquitto version 1.6.10 terminating -1612394181: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612394181: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612394181: Error: Permission denied. -1612394188: mosquitto version 1.6.10 starting -1612394188: Config loaded from /mosquitto/config/mosquitto.conf. -1612394188: Error: Invalid password hash for user pubclient, removing entry. -1612394188: Error: Invalid password hash for user subclient, removing entry. -1612394188: Opening ipv4 listen socket on port 1883. -1612394188: Opening ipv6 listen socket on port 1883. -1612394188: Opening websockets listen socket on port 8884. -1612394189: New connection from 172.18.0.3 on port 1883. -1612394189: Sending CONNACK to 172.18.0.3 (0, 5) -1612394189: Socket error on client , disconnecting. -1612394189: New connection from 172.18.0.3 on port 1883. -1612394189: Sending CONNACK to 172.18.0.3 (0, 5) -1612394189: Socket error on client , disconnecting. -1612394201: New connection from 172.18.0.3 on port 1883. -1612394201: Sending CONNACK to 172.18.0.3 (0, 5) -1612394201: Socket error on client , disconnecting. -1612394220: New connection from 172.18.0.3 on port 1883. -1612394220: Sending CONNACK to 172.18.0.3 (0, 5) -1612394220: Socket error on client , disconnecting. -1612394240: New connection from 172.18.0.3 on port 1883. -1612394240: Sending CONNACK to 172.18.0.3 (0, 5) -1612394240: Socket error on client , disconnecting. -1612394260: New connection from 172.18.0.3 on port 1883. -1612394260: Sending CONNACK to 172.18.0.3 (0, 5) -1612394260: Socket error on client , disconnecting. -1612394280: New connection from 172.18.0.3 on port 1883. -1612394280: Sending CONNACK to 172.18.0.3 (0, 5) -1612394280: Socket error on client , disconnecting. -1612394300: New connection from 172.18.0.3 on port 1883. -1612394300: Sending CONNACK to 172.18.0.3 (0, 5) -1612394300: Socket error on client , disconnecting. -1612394320: New connection from 172.18.0.3 on port 1883. -1612394320: Sending CONNACK to 172.18.0.3 (0, 5) -1612394320: Socket error on client , disconnecting. -1612394340: New connection from 172.18.0.3 on port 1883. -1612394340: Sending CONNACK to 172.18.0.3 (0, 5) -1612394340: Socket error on client , disconnecting. -1612394360: New connection from 172.18.0.3 on port 1883. -1612394360: Sending CONNACK to 172.18.0.3 (0, 5) -1612394360: Socket error on client , disconnecting. -1612394380: New connection from 172.18.0.3 on port 1883. -1612394380: Sending CONNACK to 172.18.0.3 (0, 5) -1612394380: Socket error on client , disconnecting. -1612394400: New connection from 172.18.0.3 on port 1883. -1612394400: Sending CONNACK to 172.18.0.3 (0, 5) -1612394400: Socket error on client , disconnecting. -1612394420: New connection from 172.18.0.3 on port 1883. -1612394420: Sending CONNACK to 172.18.0.3 (0, 5) -1612394420: Socket error on client , disconnecting. -1612394440: New connection from 172.18.0.3 on port 1883. -1612394440: Sending CONNACK to 172.18.0.3 (0, 5) -1612394440: Socket error on client , disconnecting. -1612394460: New connection from 172.18.0.3 on port 1883. -1612394460: Sending CONNACK to 172.18.0.3 (0, 5) -1612394460: Socket error on client , disconnecting. -1612394480: New connection from 172.18.0.3 on port 1883. -1612394480: Sending CONNACK to 172.18.0.3 (0, 5) -1612394480: Socket error on client , disconnecting. -1612394500: New connection from 172.18.0.3 on port 1883. -1612394500: Sending CONNACK to 172.18.0.3 (0, 5) -1612394500: Socket error on client , disconnecting. -1612394520: New connection from 172.18.0.3 on port 1883. -1612394520: Sending CONNACK to 172.18.0.3 (0, 5) -1612394520: Socket error on client , disconnecting. -1612394540: New connection from 172.18.0.3 on port 1883. -1612394540: Sending CONNACK to 172.18.0.3 (0, 5) -1612394540: Socket error on client , disconnecting. -1612394560: New connection from 172.18.0.3 on port 1883. -1612394560: Sending CONNACK to 172.18.0.3 (0, 5) -1612394560: Socket error on client , disconnecting. -1612394580: New connection from 172.18.0.3 on port 1883. -1612394580: Sending CONNACK to 172.18.0.3 (0, 5) -1612394580: Socket error on client , disconnecting. -1612394600: New connection from 172.18.0.3 on port 1883. -1612394600: Sending CONNACK to 172.18.0.3 (0, 5) -1612394600: Socket error on client , disconnecting. -1612394620: New connection from 172.18.0.3 on port 1883. -1612394620: Sending CONNACK to 172.18.0.3 (0, 5) -1612394620: Socket error on client , disconnecting. -1612394640: New connection from 172.18.0.3 on port 1883. -1612394640: Sending CONNACK to 172.18.0.3 (0, 5) -1612394640: Socket error on client , disconnecting. -1612394660: New connection from 172.18.0.3 on port 1883. -1612394660: Sending CONNACK to 172.18.0.3 (0, 5) -1612394660: Socket error on client , disconnecting. -1612394680: New connection from 172.18.0.3 on port 1883. -1612394680: Sending CONNACK to 172.18.0.3 (0, 5) -1612394680: Socket error on client , disconnecting. -1612394700: New connection from 172.18.0.3 on port 1883. -1612394700: Sending CONNACK to 172.18.0.3 (0, 5) -1612394700: Socket error on client , disconnecting. -1612394720: New connection from 172.18.0.3 on port 1883. -1612394720: Sending CONNACK to 172.18.0.3 (0, 5) -1612394720: Socket error on client , disconnecting. -1612394740: New connection from 172.18.0.3 on port 1883. -1612394740: Sending CONNACK to 172.18.0.3 (0, 5) -1612394740: Socket error on client , disconnecting. -1612394760: New connection from 172.18.0.3 on port 1883. -1612394760: Sending CONNACK to 172.18.0.3 (0, 5) -1612394760: Socket error on client , disconnecting. -1612394780: New connection from 172.18.0.3 on port 1883. -1612394780: Sending CONNACK to 172.18.0.3 (0, 5) -1612394780: Socket error on client , disconnecting. -1612394800: New connection from 172.18.0.3 on port 1883. -1612394800: Sending CONNACK to 172.18.0.3 (0, 5) -1612394800: Socket error on client , disconnecting. -1612394820: New connection from 172.18.0.3 on port 1883. -1612394820: Sending CONNACK to 172.18.0.3 (0, 5) -1612394820: Socket error on client , disconnecting. -1612394840: New connection from 172.18.0.3 on port 1883. -1612394840: Sending CONNACK to 172.18.0.3 (0, 5) -1612394840: Socket error on client , disconnecting. -1612394860: New connection from 172.18.0.3 on port 1883. -1612394860: Sending CONNACK to 172.18.0.3 (0, 5) -1612394860: Socket error on client , disconnecting. -1612394880: New connection from 172.18.0.3 on port 1883. -1612394880: Sending CONNACK to 172.18.0.3 (0, 5) -1612394880: Socket error on client , disconnecting. -1612394900: New connection from 172.18.0.3 on port 1883. -1612394900: Sending CONNACK to 172.18.0.3 (0, 5) -1612394900: Socket error on client , disconnecting. -1612394920: New connection from 172.18.0.3 on port 1883. -1612394920: Sending CONNACK to 172.18.0.3 (0, 5) -1612394920: Socket error on client , disconnecting. -1612394940: New connection from 172.18.0.3 on port 1883. -1612394940: Sending CONNACK to 172.18.0.3 (0, 5) -1612394940: Socket error on client , disconnecting. -1612394960: New connection from 172.18.0.3 on port 1883. -1612394960: Sending CONNACK to 172.18.0.3 (0, 5) -1612394960: Socket error on client , disconnecting. -1612394980: New connection from 172.18.0.3 on port 1883. -1612394980: Sending CONNACK to 172.18.0.3 (0, 5) -1612394980: Socket error on client , disconnecting. -1612395000: New connection from 172.18.0.3 on port 1883. -1612395000: Sending CONNACK to 172.18.0.3 (0, 5) -1612395000: Socket error on client , disconnecting. -1612395020: New connection from 172.18.0.3 on port 1883. -1612395020: Sending CONNACK to 172.18.0.3 (0, 5) -1612395020: Socket error on client , disconnecting. -1612395040: New connection from 172.18.0.3 on port 1883. -1612395040: Sending CONNACK to 172.18.0.3 (0, 5) -1612395040: Socket error on client , disconnecting. -1612395060: New connection from 172.18.0.3 on port 1883. -1612395060: Sending CONNACK to 172.18.0.3 (0, 5) -1612395060: Socket error on client , disconnecting. -1612395080: New connection from 172.18.0.3 on port 1883. -1612395080: Sending CONNACK to 172.18.0.3 (0, 5) -1612395080: Socket error on client , disconnecting. -1612395100: New connection from 172.18.0.3 on port 1883. -1612395100: Sending CONNACK to 172.18.0.3 (0, 5) -1612395100: Socket error on client , disconnecting. -1612395120: New connection from 172.18.0.3 on port 1883. -1612395120: Sending CONNACK to 172.18.0.3 (0, 5) -1612395120: Socket error on client , disconnecting. -1612395140: New connection from 172.18.0.3 on port 1883. -1612395140: Sending CONNACK to 172.18.0.3 (0, 5) -1612395140: Socket error on client , disconnecting. -1612395160: New connection from 172.18.0.3 on port 1883. -1612395160: Sending CONNACK to 172.18.0.3 (0, 5) -1612395160: Socket error on client , disconnecting. -1612395180: New connection from 172.18.0.3 on port 1883. -1612395180: Sending CONNACK to 172.18.0.3 (0, 5) -1612395180: Socket error on client , disconnecting. -1612395200: New connection from 172.18.0.3 on port 1883. -1612395200: Sending CONNACK to 172.18.0.3 (0, 5) -1612395200: Socket error on client , disconnecting. -1612395220: New connection from 172.18.0.3 on port 1883. -1612395220: Sending CONNACK to 172.18.0.3 (0, 5) -1612395220: Socket error on client , disconnecting. -1612395240: New connection from 172.18.0.3 on port 1883. -1612395240: Sending CONNACK to 172.18.0.3 (0, 5) -1612395240: Socket error on client , disconnecting. -1612395260: New connection from 172.18.0.3 on port 1883. -1612395260: Sending CONNACK to 172.18.0.3 (0, 5) -1612395260: Socket error on client , disconnecting. -1612395280: New connection from 172.18.0.3 on port 1883. -1612395280: Sending CONNACK to 172.18.0.3 (0, 5) -1612395280: Socket error on client , disconnecting. -1612395300: New connection from 172.18.0.3 on port 1883. -1612395300: Sending CONNACK to 172.18.0.3 (0, 5) -1612395300: Socket error on client , disconnecting. -1612395320: New connection from 172.18.0.3 on port 1883. -1612395320: Sending CONNACK to 172.18.0.3 (0, 5) -1612395320: Socket error on client , disconnecting. -1612395340: New connection from 172.18.0.3 on port 1883. -1612395340: Sending CONNACK to 172.18.0.3 (0, 5) -1612395340: Socket error on client , disconnecting. -1612395360: New connection from 172.18.0.3 on port 1883. -1612395360: Sending CONNACK to 172.18.0.3 (0, 5) -1612395360: Socket error on client , disconnecting. -1612395380: New connection from 172.18.0.3 on port 1883. -1612395380: Sending CONNACK to 172.18.0.3 (0, 5) -1612395380: Socket error on client , disconnecting. -1612395400: New connection from 172.18.0.3 on port 1883. -1612395400: Sending CONNACK to 172.18.0.3 (0, 5) -1612395400: Socket error on client , disconnecting. -1612395420: New connection from 172.18.0.3 on port 1883. -1612395420: Sending CONNACK to 172.18.0.3 (0, 5) -1612395420: Socket error on client , disconnecting. -1612395440: New connection from 172.18.0.3 on port 1883. -1612395440: Sending CONNACK to 172.18.0.3 (0, 5) -1612395440: Socket error on client , disconnecting. -1612395460: New connection from 172.18.0.3 on port 1883. -1612395460: Sending CONNACK to 172.18.0.3 (0, 5) -1612395460: Socket error on client , disconnecting. -1612395480: New connection from 172.18.0.3 on port 1883. -1612395480: Sending CONNACK to 172.18.0.3 (0, 5) -1612395480: Socket error on client , disconnecting. -1612395500: New connection from 172.18.0.3 on port 1883. -1612395500: Sending CONNACK to 172.18.0.3 (0, 5) -1612395500: Socket error on client , disconnecting. -1612395520: New connection from 172.18.0.3 on port 1883. -1612395520: Sending CONNACK to 172.18.0.3 (0, 5) -1612395520: Socket error on client , disconnecting. -1612395540: New connection from 172.18.0.3 on port 1883. -1612395540: Sending CONNACK to 172.18.0.3 (0, 5) -1612395540: Socket error on client , disconnecting. -1612395560: New connection from 172.18.0.3 on port 1883. -1612395560: Sending CONNACK to 172.18.0.3 (0, 5) -1612395560: Socket error on client , disconnecting. -1612395580: New connection from 172.18.0.3 on port 1883. -1612395580: Sending CONNACK to 172.18.0.3 (0, 5) -1612395580: Socket error on client , disconnecting. -1612395600: New connection from 172.18.0.3 on port 1883. -1612395600: Sending CONNACK to 172.18.0.3 (0, 5) -1612395600: Socket error on client , disconnecting. -1612395620: New connection from 172.18.0.3 on port 1883. -1612395620: Sending CONNACK to 172.18.0.3 (0, 5) -1612395620: Socket error on client , disconnecting. -1612395640: New connection from 172.18.0.3 on port 1883. -1612395640: Sending CONNACK to 172.18.0.3 (0, 5) -1612395640: Socket error on client , disconnecting. -1612395660: New connection from 172.18.0.3 on port 1883. -1612395660: Sending CONNACK to 172.18.0.3 (0, 5) -1612395660: Socket error on client , disconnecting. -1612395680: New connection from 172.18.0.3 on port 1883. -1612395680: Sending CONNACK to 172.18.0.3 (0, 5) -1612395680: Socket error on client , disconnecting. -1612395700: New connection from 172.18.0.3 on port 1883. -1612395700: Sending CONNACK to 172.18.0.3 (0, 5) -1612395700: Socket error on client , disconnecting. -1612395720: New connection from 172.18.0.3 on port 1883. -1612395720: Sending CONNACK to 172.18.0.3 (0, 5) -1612395720: Socket error on client , disconnecting. -1612395740: New connection from 172.18.0.3 on port 1883. -1612395740: Sending CONNACK to 172.18.0.3 (0, 5) -1612395740: Socket error on client , disconnecting. -1612395760: New connection from 172.18.0.3 on port 1883. -1612395760: Sending CONNACK to 172.18.0.3 (0, 5) -1612395760: Socket error on client , disconnecting. -1612395780: New connection from 172.18.0.3 on port 1883. -1612395780: Sending CONNACK to 172.18.0.3 (0, 5) -1612395780: Socket error on client , disconnecting. -1612395800: New connection from 172.18.0.3 on port 1883. -1612395800: Sending CONNACK to 172.18.0.3 (0, 5) -1612395800: Socket error on client , disconnecting. -1612395820: New connection from 172.18.0.3 on port 1883. -1612395820: Sending CONNACK to 172.18.0.3 (0, 5) -1612395820: Socket error on client , disconnecting. -1612395840: New connection from 172.18.0.3 on port 1883. -1612395840: Sending CONNACK to 172.18.0.3 (0, 5) -1612395840: Socket error on client , disconnecting. -1612395860: New connection from 172.18.0.3 on port 1883. -1612395860: Sending CONNACK to 172.18.0.3 (0, 5) -1612395860: Socket error on client , disconnecting. -1612395880: New connection from 172.18.0.3 on port 1883. -1612395880: Sending CONNACK to 172.18.0.3 (0, 5) -1612395880: Socket error on client , disconnecting. -1612395900: New connection from 172.18.0.3 on port 1883. -1612395900: Sending CONNACK to 172.18.0.3 (0, 5) -1612395900: Socket error on client , disconnecting. -1612395920: New connection from 172.18.0.3 on port 1883. -1612395920: Sending CONNACK to 172.18.0.3 (0, 5) -1612395920: Socket error on client , disconnecting. -1612395940: New connection from 172.18.0.3 on port 1883. -1612395940: Sending CONNACK to 172.18.0.3 (0, 5) -1612395940: Socket error on client , disconnecting. -1612395960: New connection from 172.18.0.3 on port 1883. -1612395960: Sending CONNACK to 172.18.0.3 (0, 5) -1612395960: Socket error on client , disconnecting. -1612395980: New connection from 172.18.0.3 on port 1883. -1612395980: Sending CONNACK to 172.18.0.3 (0, 5) -1612395980: Socket error on client , disconnecting. -1612395989: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612395989: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612395989: Error: Permission denied. -1612396000: New connection from 172.18.0.3 on port 1883. -1612396000: Sending CONNACK to 172.18.0.3 (0, 5) -1612396000: Socket error on client , disconnecting. -1612396020: New connection from 172.18.0.3 on port 1883. -1612396020: Sending CONNACK to 172.18.0.3 (0, 5) -1612396020: Socket error on client , disconnecting. -1612396040: New connection from 172.18.0.3 on port 1883. -1612396040: Sending CONNACK to 172.18.0.3 (0, 5) -1612396040: Socket error on client , disconnecting. -1612396060: New connection from 172.18.0.3 on port 1883. -1612396060: Sending CONNACK to 172.18.0.3 (0, 5) -1612396060: Socket error on client , disconnecting. -1612396080: New connection from 172.18.0.3 on port 1883. -1612396080: Sending CONNACK to 172.18.0.3 (0, 5) -1612396080: Socket error on client , disconnecting. -1612396100: New connection from 172.18.0.3 on port 1883. -1612396100: Sending CONNACK to 172.18.0.3 (0, 5) -1612396100: Socket error on client , disconnecting. -1612396120: New connection from 172.18.0.3 on port 1883. -1612396120: Sending CONNACK to 172.18.0.3 (0, 5) -1612396120: Socket error on client , disconnecting. -1612396140: New connection from 172.18.0.3 on port 1883. -1612396140: Sending CONNACK to 172.18.0.3 (0, 5) -1612396140: Socket error on client , disconnecting. -1612396160: New connection from 172.18.0.3 on port 1883. -1612396160: Sending CONNACK to 172.18.0.3 (0, 5) -1612396160: Socket error on client , disconnecting. -1612396180: New connection from 172.18.0.3 on port 1883. -1612396180: Sending CONNACK to 172.18.0.3 (0, 5) -1612396180: Socket error on client , disconnecting. -1612396200: New connection from 172.18.0.3 on port 1883. -1612396200: Sending CONNACK to 172.18.0.3 (0, 5) -1612396200: Socket error on client , disconnecting. -1612396220: New connection from 172.18.0.3 on port 1883. -1612396220: Sending CONNACK to 172.18.0.3 (0, 5) -1612396220: Socket error on client , disconnecting. -1612396240: New connection from 172.18.0.3 on port 1883. -1612396240: Sending CONNACK to 172.18.0.3 (0, 5) -1612396240: Socket error on client , disconnecting. -1612396260: New connection from 172.18.0.3 on port 1883. -1612396260: Sending CONNACK to 172.18.0.3 (0, 5) -1612396260: Socket error on client , disconnecting. -1612396280: New connection from 172.18.0.3 on port 1883. -1612396280: Sending CONNACK to 172.18.0.3 (0, 5) -1612396280: Socket error on client , disconnecting. -1612396300: New connection from 172.18.0.3 on port 1883. -1612396300: Sending CONNACK to 172.18.0.3 (0, 5) -1612396300: Socket error on client , disconnecting. -1612396320: New connection from 172.18.0.3 on port 1883. -1612396320: Sending CONNACK to 172.18.0.3 (0, 5) -1612396320: Socket error on client , disconnecting. -1612396340: New connection from 172.18.0.3 on port 1883. -1612396340: Sending CONNACK to 172.18.0.3 (0, 5) -1612396340: Socket error on client , disconnecting. -1612396360: New connection from 172.18.0.3 on port 1883. -1612396360: Sending CONNACK to 172.18.0.3 (0, 5) -1612396360: Socket error on client , disconnecting. -1612396380: New connection from 172.18.0.3 on port 1883. -1612396380: Sending CONNACK to 172.18.0.3 (0, 5) -1612396380: Socket error on client , disconnecting. -1612396400: New connection from 172.18.0.3 on port 1883. -1612396400: Sending CONNACK to 172.18.0.3 (0, 5) -1612396400: Socket error on client , disconnecting. -1612396420: New connection from 172.18.0.3 on port 1883. -1612396420: Sending CONNACK to 172.18.0.3 (0, 5) -1612396420: Socket error on client , disconnecting. -1612396440: New connection from 172.18.0.3 on port 1883. -1612396440: Sending CONNACK to 172.18.0.3 (0, 5) -1612396440: Socket error on client , disconnecting. -1612396460: New connection from 172.18.0.3 on port 1883. -1612396460: Sending CONNACK to 172.18.0.3 (0, 5) -1612396460: Socket error on client , disconnecting. -1612396480: New connection from 172.18.0.3 on port 1883. -1612396480: Sending CONNACK to 172.18.0.3 (0, 5) -1612396480: Socket error on client , disconnecting. -1612396500: New connection from 172.18.0.3 on port 1883. -1612396500: Sending CONNACK to 172.18.0.3 (0, 5) -1612396500: Socket error on client , disconnecting. -1612396520: New connection from 172.18.0.3 on port 1883. -1612396520: Sending CONNACK to 172.18.0.3 (0, 5) -1612396520: Socket error on client , disconnecting. -1612396540: New connection from 172.18.0.3 on port 1883. -1612396540: Sending CONNACK to 172.18.0.3 (0, 5) -1612396540: Socket error on client , disconnecting. -1612396560: New connection from 172.18.0.3 on port 1883. -1612396560: Sending CONNACK to 172.18.0.3 (0, 5) -1612396560: Socket error on client , disconnecting. -1612396580: New connection from 172.18.0.3 on port 1883. -1612396580: Sending CONNACK to 172.18.0.3 (0, 5) -1612396580: Socket error on client , disconnecting. -1612396600: New connection from 172.18.0.3 on port 1883. -1612396600: Sending CONNACK to 172.18.0.3 (0, 5) -1612396600: Socket error on client , disconnecting. -1612396620: New connection from 172.18.0.3 on port 1883. -1612396620: Sending CONNACK to 172.18.0.3 (0, 5) -1612396620: Socket error on client , disconnecting. -1612396640: New connection from 172.18.0.3 on port 1883. -1612396640: Sending CONNACK to 172.18.0.3 (0, 5) -1612396640: Socket error on client , disconnecting. -1612396660: New connection from 172.18.0.3 on port 1883. -1612396660: Sending CONNACK to 172.18.0.3 (0, 5) -1612396660: Socket error on client , disconnecting. -1612396680: New connection from 172.18.0.3 on port 1883. -1612396680: Sending CONNACK to 172.18.0.3 (0, 5) -1612396680: Socket error on client , disconnecting. -1612396700: New connection from 172.18.0.3 on port 1883. -1612396700: Sending CONNACK to 172.18.0.3 (0, 5) -1612396700: Socket error on client , disconnecting. -1612396720: New connection from 172.18.0.3 on port 1883. -1612396720: Sending CONNACK to 172.18.0.3 (0, 5) -1612396720: Socket error on client , disconnecting. -1612396740: New connection from 172.18.0.3 on port 1883. -1612396740: Sending CONNACK to 172.18.0.3 (0, 5) -1612396740: Socket error on client , disconnecting. -1612396760: New connection from 172.18.0.3 on port 1883. -1612396760: Sending CONNACK to 172.18.0.3 (0, 5) -1612396760: Socket error on client , disconnecting. -1612396780: New connection from 172.18.0.3 on port 1883. -1612396780: Sending CONNACK to 172.18.0.3 (0, 5) -1612396780: Socket error on client , disconnecting. -1612396800: New connection from 172.18.0.3 on port 1883. -1612396800: Sending CONNACK to 172.18.0.3 (0, 5) -1612396800: Socket error on client , disconnecting. -1612396820: New connection from 172.18.0.3 on port 1883. -1612396820: Sending CONNACK to 172.18.0.3 (0, 5) -1612396820: Socket error on client , disconnecting. -1612396840: New connection from 172.18.0.3 on port 1883. -1612396840: Sending CONNACK to 172.18.0.3 (0, 5) -1612396840: Socket error on client , disconnecting. -1612396860: New connection from 172.18.0.3 on port 1883. -1612396860: Sending CONNACK to 172.18.0.3 (0, 5) -1612396860: Socket error on client , disconnecting. -1612396880: New connection from 172.18.0.3 on port 1883. -1612396880: Sending CONNACK to 172.18.0.3 (0, 5) -1612396880: Socket error on client , disconnecting. -1612396900: New connection from 172.18.0.3 on port 1883. -1612396900: Sending CONNACK to 172.18.0.3 (0, 5) -1612396900: Socket error on client , disconnecting. -1612396920: New connection from 172.18.0.3 on port 1883. -1612396920: Sending CONNACK to 172.18.0.3 (0, 5) -1612396920: Socket error on client , disconnecting. -1612396940: New connection from 172.18.0.3 on port 1883. -1612396940: Sending CONNACK to 172.18.0.3 (0, 5) -1612396940: Socket error on client , disconnecting. -1612396960: New connection from 172.18.0.3 on port 1883. -1612396960: Sending CONNACK to 172.18.0.3 (0, 5) -1612396960: Socket error on client , disconnecting. -1612396980: New connection from 172.18.0.3 on port 1883. -1612396980: Sending CONNACK to 172.18.0.3 (0, 5) -1612396980: Socket error on client , disconnecting. -1612397000: New connection from 172.18.0.3 on port 1883. -1612397000: Sending CONNACK to 172.18.0.3 (0, 5) -1612397000: Socket error on client , disconnecting. -1612397020: New connection from 172.18.0.3 on port 1883. -1612397020: Sending CONNACK to 172.18.0.3 (0, 5) -1612397020: Socket error on client , disconnecting. -1612397040: New connection from 172.18.0.3 on port 1883. -1612397040: Sending CONNACK to 172.18.0.3 (0, 5) -1612397040: Socket error on client , disconnecting. -1612397060: New connection from 172.18.0.3 on port 1883. -1612397060: Sending CONNACK to 172.18.0.3 (0, 5) -1612397060: Socket error on client , disconnecting. -1612397080: New connection from 172.18.0.3 on port 1883. -1612397080: Sending CONNACK to 172.18.0.3 (0, 5) -1612397080: Socket error on client , disconnecting. -1612397100: New connection from 172.18.0.3 on port 1883. -1612397100: Sending CONNACK to 172.18.0.3 (0, 5) -1612397100: Socket error on client , disconnecting. -1612397120: New connection from 172.18.0.3 on port 1883. -1612397120: Sending CONNACK to 172.18.0.3 (0, 5) -1612397120: Socket error on client , disconnecting. -1612397140: New connection from 172.18.0.3 on port 1883. -1612397140: Sending CONNACK to 172.18.0.3 (0, 5) -1612397140: Socket error on client , disconnecting. -1612397160: New connection from 172.18.0.3 on port 1883. -1612397160: Sending CONNACK to 172.18.0.3 (0, 5) -1612397160: Socket error on client , disconnecting. -1612397180: New connection from 172.18.0.3 on port 1883. -1612397180: Sending CONNACK to 172.18.0.3 (0, 5) -1612397180: Socket error on client , disconnecting. -1612397200: New connection from 172.18.0.3 on port 1883. -1612397200: Sending CONNACK to 172.18.0.3 (0, 5) -1612397200: Socket error on client , disconnecting. -1612397220: New connection from 172.18.0.3 on port 1883. -1612397220: Sending CONNACK to 172.18.0.3 (0, 5) -1612397220: Socket error on client , disconnecting. -1612397240: New connection from 172.18.0.3 on port 1883. -1612397240: Sending CONNACK to 172.18.0.3 (0, 5) -1612397240: Socket error on client , disconnecting. -1612397260: New connection from 172.18.0.3 on port 1883. -1612397260: Sending CONNACK to 172.18.0.3 (0, 5) -1612397260: Socket error on client , disconnecting. -1612397280: New connection from 172.18.0.3 on port 1883. -1612397280: Sending CONNACK to 172.18.0.3 (0, 5) -1612397280: Socket error on client , disconnecting. -1612397300: New connection from 172.18.0.3 on port 1883. -1612397300: Sending CONNACK to 172.18.0.3 (0, 5) -1612397300: Socket error on client , disconnecting. -1612397320: New connection from 172.18.0.3 on port 1883. -1612397320: Sending CONNACK to 172.18.0.3 (0, 5) -1612397320: Socket error on client , disconnecting. -1612397340: New connection from 172.18.0.3 on port 1883. -1612397340: Sending CONNACK to 172.18.0.3 (0, 5) -1612397340: Socket error on client , disconnecting. -1612397360: New connection from 172.18.0.3 on port 1883. -1612397360: Sending CONNACK to 172.18.0.3 (0, 5) -1612397360: Socket error on client , disconnecting. -1612397380: New connection from 172.18.0.3 on port 1883. -1612397380: Sending CONNACK to 172.18.0.3 (0, 5) -1612397380: Socket error on client , disconnecting. -1612397400: New connection from 172.18.0.3 on port 1883. -1612397400: Sending CONNACK to 172.18.0.3 (0, 5) -1612397400: Socket error on client , disconnecting. -1612397420: New connection from 172.18.0.3 on port 1883. -1612397420: Sending CONNACK to 172.18.0.3 (0, 5) -1612397420: Socket error on client , disconnecting. -1612397440: New connection from 172.18.0.3 on port 1883. -1612397440: Sending CONNACK to 172.18.0.3 (0, 5) -1612397440: Socket error on client , disconnecting. -1612397460: New connection from 172.18.0.3 on port 1883. -1612397460: Sending CONNACK to 172.18.0.3 (0, 5) -1612397460: Socket error on client , disconnecting. -1612397480: New connection from 172.18.0.3 on port 1883. -1612397480: Sending CONNACK to 172.18.0.3 (0, 5) -1612397480: Socket error on client , disconnecting. -1612397500: New connection from 172.18.0.3 on port 1883. -1612397500: Sending CONNACK to 172.18.0.3 (0, 5) -1612397500: Socket error on client , disconnecting. -1612397520: New connection from 172.18.0.3 on port 1883. -1612397520: Sending CONNACK to 172.18.0.3 (0, 5) -1612397520: Socket error on client , disconnecting. -1612397540: New connection from 172.18.0.3 on port 1883. -1612397540: Sending CONNACK to 172.18.0.3 (0, 5) -1612397540: Socket error on client , disconnecting. -1612397560: New connection from 172.18.0.3 on port 1883. -1612397560: Sending CONNACK to 172.18.0.3 (0, 5) -1612397560: Socket error on client , disconnecting. -1612397580: New connection from 172.18.0.3 on port 1883. -1612397580: Sending CONNACK to 172.18.0.3 (0, 5) -1612397580: Socket error on client , disconnecting. -1612397600: New connection from 172.18.0.3 on port 1883. -1612397600: Sending CONNACK to 172.18.0.3 (0, 5) -1612397600: Socket error on client , disconnecting. -1612397620: New connection from 172.18.0.3 on port 1883. -1612397620: Sending CONNACK to 172.18.0.3 (0, 5) -1612397620: Socket error on client , disconnecting. -1612397640: New connection from 172.18.0.3 on port 1883. -1612397640: Sending CONNACK to 172.18.0.3 (0, 5) -1612397640: Socket error on client , disconnecting. -1612397660: New connection from 172.18.0.3 on port 1883. -1612397660: Sending CONNACK to 172.18.0.3 (0, 5) -1612397660: Socket error on client , disconnecting. -1612397680: New connection from 172.18.0.3 on port 1883. -1612397680: Sending CONNACK to 172.18.0.3 (0, 5) -1612397680: Socket error on client , disconnecting. -1612397700: New connection from 172.18.0.3 on port 1883. -1612397700: Sending CONNACK to 172.18.0.3 (0, 5) -1612397700: Socket error on client , disconnecting. -1612397720: New connection from 172.18.0.3 on port 1883. -1612397720: Sending CONNACK to 172.18.0.3 (0, 5) -1612397720: Socket error on client , disconnecting. -1612397740: New connection from 172.18.0.3 on port 1883. -1612397740: Sending CONNACK to 172.18.0.3 (0, 5) -1612397740: Socket error on client , disconnecting. -1612397760: New connection from 172.18.0.3 on port 1883. -1612397760: Sending CONNACK to 172.18.0.3 (0, 5) -1612397760: Socket error on client , disconnecting. -1612397780: New connection from 172.18.0.3 on port 1883. -1612397780: Sending CONNACK to 172.18.0.3 (0, 5) -1612397780: Socket error on client , disconnecting. -1612397790: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612397790: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612397790: Error: Permission denied. -1612397800: New connection from 172.18.0.3 on port 1883. -1612397800: Sending CONNACK to 172.18.0.3 (0, 5) -1612397800: Socket error on client , disconnecting. -1612397820: New connection from 172.18.0.3 on port 1883. -1612397820: Sending CONNACK to 172.18.0.3 (0, 5) -1612397820: Socket error on client , disconnecting. -1612397840: New connection from 172.18.0.3 on port 1883. -1612397840: Sending CONNACK to 172.18.0.3 (0, 5) -1612397840: Socket error on client , disconnecting. -1612397860: New connection from 172.18.0.3 on port 1883. -1612397860: Sending CONNACK to 172.18.0.3 (0, 5) -1612397860: Socket error on client , disconnecting. -1612397880: New connection from 172.18.0.3 on port 1883. -1612397880: Sending CONNACK to 172.18.0.3 (0, 5) -1612397880: Socket error on client , disconnecting. -1612397900: New connection from 172.18.0.3 on port 1883. -1612397900: Sending CONNACK to 172.18.0.3 (0, 5) -1612397900: Socket error on client , disconnecting. -1612397920: New connection from 172.18.0.3 on port 1883. -1612397920: Sending CONNACK to 172.18.0.3 (0, 5) -1612397920: Socket error on client , disconnecting. -1612397940: New connection from 172.18.0.3 on port 1883. -1612397940: Sending CONNACK to 172.18.0.3 (0, 5) -1612397940: Socket error on client , disconnecting. -1612397960: New connection from 172.18.0.3 on port 1883. -1612397960: Sending CONNACK to 172.18.0.3 (0, 5) -1612397960: Socket error on client , disconnecting. -1612397980: New connection from 172.18.0.3 on port 1883. -1612397980: Sending CONNACK to 172.18.0.3 (0, 5) -1612397980: Socket error on client , disconnecting. -1612398000: New connection from 172.18.0.3 on port 1883. -1612398000: Sending CONNACK to 172.18.0.3 (0, 5) -1612398000: Socket error on client , disconnecting. -1612398020: New connection from 172.18.0.3 on port 1883. -1612398020: Sending CONNACK to 172.18.0.3 (0, 5) -1612398020: Socket error on client , disconnecting. -1612398040: New connection from 172.18.0.3 on port 1883. -1612398040: Sending CONNACK to 172.18.0.3 (0, 5) -1612398040: Socket error on client , disconnecting. -1612398060: New connection from 172.18.0.3 on port 1883. -1612398060: Sending CONNACK to 172.18.0.3 (0, 5) -1612398060: Socket error on client , disconnecting. -1612398080: New connection from 172.18.0.3 on port 1883. -1612398080: Sending CONNACK to 172.18.0.3 (0, 5) -1612398080: Socket error on client , disconnecting. -1612398100: New connection from 172.18.0.3 on port 1883. -1612398100: Sending CONNACK to 172.18.0.3 (0, 5) -1612398100: Socket error on client , disconnecting. -1612398120: New connection from 172.18.0.3 on port 1883. -1612398120: Sending CONNACK to 172.18.0.3 (0, 5) -1612398120: Socket error on client , disconnecting. -1612398140: New connection from 172.18.0.3 on port 1883. -1612398140: Sending CONNACK to 172.18.0.3 (0, 5) -1612398140: Socket error on client , disconnecting. -1612398160: New connection from 172.18.0.3 on port 1883. -1612398160: Sending CONNACK to 172.18.0.3 (0, 5) -1612398160: Socket error on client , disconnecting. -1612398180: New connection from 172.18.0.3 on port 1883. -1612398180: Sending CONNACK to 172.18.0.3 (0, 5) -1612398180: Socket error on client , disconnecting. -1612398200: New connection from 172.18.0.3 on port 1883. -1612398200: Sending CONNACK to 172.18.0.3 (0, 5) -1612398200: Socket error on client , disconnecting. -1612398220: New connection from 172.18.0.3 on port 1883. -1612398220: Sending CONNACK to 172.18.0.3 (0, 5) -1612398220: Socket error on client , disconnecting. -1612398240: New connection from 172.18.0.3 on port 1883. -1612398240: Sending CONNACK to 172.18.0.3 (0, 5) -1612398240: Socket error on client , disconnecting. -1612398260: New connection from 172.18.0.3 on port 1883. -1612398260: Sending CONNACK to 172.18.0.3 (0, 5) -1612398260: Socket error on client , disconnecting. -1612398280: New connection from 172.18.0.3 on port 1883. -1612398280: Sending CONNACK to 172.18.0.3 (0, 5) -1612398280: Socket error on client , disconnecting. -1612398300: New connection from 172.18.0.3 on port 1883. -1612398300: Sending CONNACK to 172.18.0.3 (0, 5) -1612398300: Socket error on client , disconnecting. -1612398320: New connection from 172.18.0.3 on port 1883. -1612398320: Sending CONNACK to 172.18.0.3 (0, 5) -1612398320: Socket error on client , disconnecting. -1612398340: New connection from 172.18.0.3 on port 1883. -1612398340: Sending CONNACK to 172.18.0.3 (0, 5) -1612398340: Socket error on client , disconnecting. -1612398360: New connection from 172.18.0.3 on port 1883. -1612398360: Sending CONNACK to 172.18.0.3 (0, 5) -1612398360: Socket error on client , disconnecting. -1612398380: New connection from 172.18.0.3 on port 1883. -1612398380: Sending CONNACK to 172.18.0.3 (0, 5) -1612398380: Socket error on client , disconnecting. -1612398400: New connection from 172.18.0.3 on port 1883. -1612398400: Sending CONNACK to 172.18.0.3 (0, 5) -1612398400: Socket error on client , disconnecting. -1612398420: New connection from 172.18.0.3 on port 1883. -1612398420: Sending CONNACK to 172.18.0.3 (0, 5) -1612398420: Socket error on client , disconnecting. -1612398440: New connection from 172.18.0.3 on port 1883. -1612398440: Sending CONNACK to 172.18.0.3 (0, 5) -1612398440: Socket error on client , disconnecting. -1612398460: New connection from 172.18.0.3 on port 1883. -1612398460: Sending CONNACK to 172.18.0.3 (0, 5) -1612398460: Socket error on client , disconnecting. -1612398480: New connection from 172.18.0.3 on port 1883. -1612398480: Sending CONNACK to 172.18.0.3 (0, 5) -1612398480: Socket error on client , disconnecting. -1612398500: New connection from 172.18.0.3 on port 1883. -1612398500: Sending CONNACK to 172.18.0.3 (0, 5) -1612398500: Socket error on client , disconnecting. -1612398520: New connection from 172.18.0.3 on port 1883. -1612398520: Sending CONNACK to 172.18.0.3 (0, 5) -1612398520: Socket error on client , disconnecting. -1612398540: New connection from 172.18.0.3 on port 1883. -1612398540: Sending CONNACK to 172.18.0.3 (0, 5) -1612398540: Socket error on client , disconnecting. -1612398560: New connection from 172.18.0.3 on port 1883. -1612398560: Sending CONNACK to 172.18.0.3 (0, 5) -1612398560: Socket error on client , disconnecting. -1612398580: New connection from 172.18.0.3 on port 1883. -1612398580: Sending CONNACK to 172.18.0.3 (0, 5) -1612398580: Socket error on client , disconnecting. -1612398600: New connection from 172.18.0.3 on port 1883. -1612398600: Sending CONNACK to 172.18.0.3 (0, 5) -1612398600: Socket error on client , disconnecting. -1612398620: New connection from 172.18.0.3 on port 1883. -1612398620: Sending CONNACK to 172.18.0.3 (0, 5) -1612398620: Socket error on client , disconnecting. -1612398640: New connection from 172.18.0.3 on port 1883. -1612398640: Sending CONNACK to 172.18.0.3 (0, 5) -1612398640: Socket error on client , disconnecting. -1612398660: New connection from 172.18.0.3 on port 1883. -1612398660: Sending CONNACK to 172.18.0.3 (0, 5) -1612398660: Socket error on client , disconnecting. -1612398680: New connection from 172.18.0.3 on port 1883. -1612398680: Sending CONNACK to 172.18.0.3 (0, 5) -1612398680: Socket error on client , disconnecting. -1612398700: New connection from 172.18.0.3 on port 1883. -1612398700: Sending CONNACK to 172.18.0.3 (0, 5) -1612398700: Socket error on client , disconnecting. -1612398720: New connection from 172.18.0.3 on port 1883. -1612398720: Sending CONNACK to 172.18.0.3 (0, 5) -1612398720: Socket error on client , disconnecting. -1612398740: New connection from 172.18.0.3 on port 1883. -1612398740: Sending CONNACK to 172.18.0.3 (0, 5) -1612398740: Socket error on client , disconnecting. -1612398760: New connection from 172.18.0.3 on port 1883. -1612398760: Sending CONNACK to 172.18.0.3 (0, 5) -1612398760: Socket error on client , disconnecting. -1612398780: New connection from 172.18.0.3 on port 1883. -1612398780: Sending CONNACK to 172.18.0.3 (0, 5) -1612398780: Socket error on client , disconnecting. -1612398800: New connection from 172.18.0.3 on port 1883. -1612398800: Sending CONNACK to 172.18.0.3 (0, 5) -1612398800: Socket error on client , disconnecting. -1612398820: New connection from 172.18.0.3 on port 1883. -1612398820: Sending CONNACK to 172.18.0.3 (0, 5) -1612398820: Socket error on client , disconnecting. -1612398840: New connection from 172.18.0.3 on port 1883. -1612398840: Sending CONNACK to 172.18.0.3 (0, 5) -1612398840: Socket error on client , disconnecting. -1612398860: New connection from 172.18.0.3 on port 1883. -1612398860: Sending CONNACK to 172.18.0.3 (0, 5) -1612398860: Socket error on client , disconnecting. -1612398880: New connection from 172.18.0.3 on port 1883. -1612398880: Sending CONNACK to 172.18.0.3 (0, 5) -1612398880: Socket error on client , disconnecting. -1612398900: New connection from 172.18.0.3 on port 1883. -1612398900: Sending CONNACK to 172.18.0.3 (0, 5) -1612398900: Socket error on client , disconnecting. -1612398920: New connection from 172.18.0.3 on port 1883. -1612398920: Sending CONNACK to 172.18.0.3 (0, 5) -1612398920: Socket error on client , disconnecting. -1612398940: New connection from 172.18.0.3 on port 1883. -1612398940: Sending CONNACK to 172.18.0.3 (0, 5) -1612398940: Socket error on client , disconnecting. -1612398960: New connection from 172.18.0.3 on port 1883. -1612398960: Sending CONNACK to 172.18.0.3 (0, 5) -1612398960: Socket error on client , disconnecting. -1612398980: New connection from 172.18.0.3 on port 1883. -1612398980: Sending CONNACK to 172.18.0.3 (0, 5) -1612398980: Socket error on client , disconnecting. -1612399000: New connection from 172.18.0.3 on port 1883. -1612399000: Sending CONNACK to 172.18.0.3 (0, 5) -1612399000: Socket error on client , disconnecting. -1612399020: New connection from 172.18.0.3 on port 1883. -1612399020: Sending CONNACK to 172.18.0.3 (0, 5) -1612399020: Socket error on client , disconnecting. -1612399040: New connection from 172.18.0.3 on port 1883. -1612399040: Sending CONNACK to 172.18.0.3 (0, 5) -1612399040: Socket error on client , disconnecting. -1612399060: New connection from 172.18.0.3 on port 1883. -1612399060: Sending CONNACK to 172.18.0.3 (0, 5) -1612399060: Socket error on client , disconnecting. -1612399080: New connection from 172.18.0.3 on port 1883. -1612399080: Sending CONNACK to 172.18.0.3 (0, 5) -1612399080: Socket error on client , disconnecting. -1612399100: New connection from 172.18.0.3 on port 1883. -1612399100: Sending CONNACK to 172.18.0.3 (0, 5) -1612399100: Socket error on client , disconnecting. -1612399120: New connection from 172.18.0.3 on port 1883. -1612399120: Sending CONNACK to 172.18.0.3 (0, 5) -1612399120: Socket error on client , disconnecting. -1612399140: New connection from 172.18.0.3 on port 1883. -1612399140: Sending CONNACK to 172.18.0.3 (0, 5) -1612399140: Socket error on client , disconnecting. -1612399160: New connection from 172.18.0.3 on port 1883. -1612399160: Sending CONNACK to 172.18.0.3 (0, 5) -1612399160: Socket error on client , disconnecting. -1612399180: New connection from 172.18.0.3 on port 1883. -1612399180: Sending CONNACK to 172.18.0.3 (0, 5) -1612399180: Socket error on client , disconnecting. -1612399200: New connection from 172.18.0.3 on port 1883. -1612399200: Sending CONNACK to 172.18.0.3 (0, 5) -1612399200: Socket error on client , disconnecting. -1612399220: New connection from 172.18.0.3 on port 1883. -1612399220: Sending CONNACK to 172.18.0.3 (0, 5) -1612399220: Socket error on client , disconnecting. -1612399240: New connection from 172.18.0.3 on port 1883. -1612399240: Sending CONNACK to 172.18.0.3 (0, 5) -1612399240: Socket error on client , disconnecting. -1612399260: New connection from 172.18.0.3 on port 1883. -1612399260: Sending CONNACK to 172.18.0.3 (0, 5) -1612399260: Socket error on client , disconnecting. -1612399280: New connection from 172.18.0.3 on port 1883. -1612399280: Sending CONNACK to 172.18.0.3 (0, 5) -1612399280: Socket error on client , disconnecting. -1612399300: New connection from 172.18.0.3 on port 1883. -1612399300: Sending CONNACK to 172.18.0.3 (0, 5) -1612399300: Socket error on client , disconnecting. -1612399320: New connection from 172.18.0.3 on port 1883. -1612399320: Sending CONNACK to 172.18.0.3 (0, 5) -1612399320: Socket error on client , disconnecting. -1612399340: New connection from 172.18.0.3 on port 1883. -1612399340: Sending CONNACK to 172.18.0.3 (0, 5) -1612399340: Socket error on client , disconnecting. -1612399360: New connection from 172.18.0.3 on port 1883. -1612399360: Sending CONNACK to 172.18.0.3 (0, 5) -1612399360: Socket error on client , disconnecting. -1612399380: New connection from 172.18.0.3 on port 1883. -1612399380: Sending CONNACK to 172.18.0.3 (0, 5) -1612399380: Socket error on client , disconnecting. -1612399400: New connection from 172.18.0.3 on port 1883. -1612399400: Sending CONNACK to 172.18.0.3 (0, 5) -1612399400: Socket error on client , disconnecting. -1612399420: New connection from 172.18.0.3 on port 1883. -1612399420: Sending CONNACK to 172.18.0.3 (0, 5) -1612399420: Socket error on client , disconnecting. -1612399440: New connection from 172.18.0.3 on port 1883. -1612399440: Sending CONNACK to 172.18.0.3 (0, 5) -1612399440: Socket error on client , disconnecting. -1612399460: New connection from 172.18.0.3 on port 1883. -1612399460: Sending CONNACK to 172.18.0.3 (0, 5) -1612399460: Socket error on client , disconnecting. -1612399480: New connection from 172.18.0.3 on port 1883. -1612399480: Sending CONNACK to 172.18.0.3 (0, 5) -1612399480: Socket error on client , disconnecting. -1612399500: New connection from 172.18.0.3 on port 1883. -1612399500: Sending CONNACK to 172.18.0.3 (0, 5) -1612399500: Socket error on client , disconnecting. -1612399520: New connection from 172.18.0.3 on port 1883. -1612399520: Sending CONNACK to 172.18.0.3 (0, 5) -1612399520: Socket error on client , disconnecting. -1612399540: New connection from 172.18.0.3 on port 1883. -1612399540: Sending CONNACK to 172.18.0.3 (0, 5) -1612399540: Socket error on client , disconnecting. -1612399560: New connection from 172.18.0.3 on port 1883. -1612399560: Sending CONNACK to 172.18.0.3 (0, 5) -1612399560: Socket error on client , disconnecting. -1612399580: New connection from 172.18.0.3 on port 1883. -1612399580: Sending CONNACK to 172.18.0.3 (0, 5) -1612399580: Socket error on client , disconnecting. -1612399591: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612399591: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612399591: Error: Permission denied. -1612399600: New connection from 172.18.0.3 on port 1883. -1612399600: Sending CONNACK to 172.18.0.3 (0, 5) -1612399600: Socket error on client , disconnecting. -1612399620: New connection from 172.18.0.3 on port 1883. -1612399620: Sending CONNACK to 172.18.0.3 (0, 5) -1612399620: Socket error on client , disconnecting. -1612399640: New connection from 172.18.0.3 on port 1883. -1612399640: Sending CONNACK to 172.18.0.3 (0, 5) -1612399640: Socket error on client , disconnecting. -1612399660: New connection from 172.18.0.3 on port 1883. -1612399660: Sending CONNACK to 172.18.0.3 (0, 5) -1612399660: Socket error on client , disconnecting. -1612399680: New connection from 172.18.0.3 on port 1883. -1612399680: Sending CONNACK to 172.18.0.3 (0, 5) -1612399680: Socket error on client , disconnecting. -1612399700: New connection from 172.18.0.3 on port 1883. -1612399700: Sending CONNACK to 172.18.0.3 (0, 5) -1612399700: Socket error on client , disconnecting. -1612399720: New connection from 172.18.0.3 on port 1883. -1612399720: Sending CONNACK to 172.18.0.3 (0, 5) -1612399720: Socket error on client , disconnecting. -1612399740: New connection from 172.18.0.3 on port 1883. -1612399740: Sending CONNACK to 172.18.0.3 (0, 5) -1612399740: Socket error on client , disconnecting. -1612399760: New connection from 172.18.0.3 on port 1883. -1612399760: Sending CONNACK to 172.18.0.3 (0, 5) -1612399760: Socket error on client , disconnecting. -1612399780: New connection from 172.18.0.3 on port 1883. -1612399780: Sending CONNACK to 172.18.0.3 (0, 5) -1612399780: Socket error on client , disconnecting. -1612399800: New connection from 172.18.0.3 on port 1883. -1612399800: Sending CONNACK to 172.18.0.3 (0, 5) -1612399800: Socket error on client , disconnecting. -1612399820: New connection from 172.18.0.3 on port 1883. -1612399820: Sending CONNACK to 172.18.0.3 (0, 5) -1612399820: Socket error on client , disconnecting. -1612399840: New connection from 172.18.0.3 on port 1883. -1612399840: Sending CONNACK to 172.18.0.3 (0, 5) -1612399840: Socket error on client , disconnecting. -1612399860: New connection from 172.18.0.3 on port 1883. -1612399860: Sending CONNACK to 172.18.0.3 (0, 5) -1612399860: Socket error on client , disconnecting. -1612399880: New connection from 172.18.0.3 on port 1883. -1612399880: Sending CONNACK to 172.18.0.3 (0, 5) -1612399880: Socket error on client , disconnecting. -1612399900: New connection from 172.18.0.3 on port 1883. -1612399900: Sending CONNACK to 172.18.0.3 (0, 5) -1612399900: Socket error on client , disconnecting. -1612399920: New connection from 172.18.0.3 on port 1883. -1612399920: Sending CONNACK to 172.18.0.3 (0, 5) -1612399920: Socket error on client , disconnecting. -1612399940: New connection from 172.18.0.3 on port 1883. -1612399940: Sending CONNACK to 172.18.0.3 (0, 5) -1612399940: Socket error on client , disconnecting. -1612399960: New connection from 172.18.0.3 on port 1883. -1612399960: Sending CONNACK to 172.18.0.3 (0, 5) -1612399960: Socket error on client , disconnecting. -1612399980: New connection from 172.18.0.3 on port 1883. -1612399980: Sending CONNACK to 172.18.0.3 (0, 5) -1612399980: Socket error on client , disconnecting. -1612400000: New connection from 172.18.0.3 on port 1883. -1612400000: Sending CONNACK to 172.18.0.3 (0, 5) -1612400000: Socket error on client , disconnecting. -1612400020: New connection from 172.18.0.3 on port 1883. -1612400020: Sending CONNACK to 172.18.0.3 (0, 5) -1612400020: Socket error on client , disconnecting. -1612400040: New connection from 172.18.0.3 on port 1883. -1612400040: Sending CONNACK to 172.18.0.3 (0, 5) -1612400040: Socket error on client , disconnecting. -1612400060: New connection from 172.18.0.3 on port 1883. -1612400060: Sending CONNACK to 172.18.0.3 (0, 5) -1612400060: Socket error on client , disconnecting. -1612400080: New connection from 172.18.0.3 on port 1883. -1612400080: Sending CONNACK to 172.18.0.3 (0, 5) -1612400080: Socket error on client , disconnecting. -1612400100: New connection from 172.18.0.3 on port 1883. -1612400100: Sending CONNACK to 172.18.0.3 (0, 5) -1612400100: Socket error on client , disconnecting. -1612400120: New connection from 172.18.0.3 on port 1883. -1612400120: Sending CONNACK to 172.18.0.3 (0, 5) -1612400120: Socket error on client , disconnecting. -1612400140: New connection from 172.18.0.3 on port 1883. -1612400140: Sending CONNACK to 172.18.0.3 (0, 5) -1612400140: Socket error on client , disconnecting. -1612400160: New connection from 172.18.0.3 on port 1883. -1612400160: Sending CONNACK to 172.18.0.3 (0, 5) -1612400160: Socket error on client , disconnecting. -1612400180: New connection from 172.18.0.3 on port 1883. -1612400180: Sending CONNACK to 172.18.0.3 (0, 5) -1612400180: Socket error on client , disconnecting. -1612400200: New connection from 172.18.0.3 on port 1883. -1612400200: Sending CONNACK to 172.18.0.3 (0, 5) -1612400200: Socket error on client , disconnecting. -1612400220: New connection from 172.18.0.3 on port 1883. -1612400220: Sending CONNACK to 172.18.0.3 (0, 5) -1612400220: Socket error on client , disconnecting. -1612400240: New connection from 172.18.0.3 on port 1883. -1612400240: Sending CONNACK to 172.18.0.3 (0, 5) -1612400240: Socket error on client , disconnecting. -1612400260: New connection from 172.18.0.3 on port 1883. -1612400260: Sending CONNACK to 172.18.0.3 (0, 5) -1612400260: Socket error on client , disconnecting. -1612400280: New connection from 172.18.0.3 on port 1883. -1612400280: Sending CONNACK to 172.18.0.3 (0, 5) -1612400280: Socket error on client , disconnecting. -1612400300: New connection from 172.18.0.3 on port 1883. -1612400300: Sending CONNACK to 172.18.0.3 (0, 5) -1612400300: Socket error on client , disconnecting. -1612400320: New connection from 172.18.0.3 on port 1883. -1612400320: Sending CONNACK to 172.18.0.3 (0, 5) -1612400320: Socket error on client , disconnecting. -1612400340: New connection from 172.18.0.3 on port 1883. -1612400340: Sending CONNACK to 172.18.0.3 (0, 5) -1612400340: Socket error on client , disconnecting. -1612400360: New connection from 172.18.0.3 on port 1883. -1612400360: Sending CONNACK to 172.18.0.3 (0, 5) -1612400360: Socket error on client , disconnecting. -1612400380: New connection from 172.18.0.3 on port 1883. -1612400380: Sending CONNACK to 172.18.0.3 (0, 5) -1612400380: Socket error on client , disconnecting. -1612400400: New connection from 172.18.0.3 on port 1883. -1612400400: Sending CONNACK to 172.18.0.3 (0, 5) -1612400400: Socket error on client , disconnecting. -1612400420: New connection from 172.18.0.3 on port 1883. -1612400420: Sending CONNACK to 172.18.0.3 (0, 5) -1612400420: Socket error on client , disconnecting. -1612400440: New connection from 172.18.0.3 on port 1883. -1612400440: Sending CONNACK to 172.18.0.3 (0, 5) -1612400440: Socket error on client , disconnecting. -1612400460: New connection from 172.18.0.3 on port 1883. -1612400460: Sending CONNACK to 172.18.0.3 (0, 5) -1612400460: Socket error on client , disconnecting. -1612400480: New connection from 172.18.0.3 on port 1883. -1612400480: Sending CONNACK to 172.18.0.3 (0, 5) -1612400480: Socket error on client , disconnecting. -1612400500: New connection from 172.18.0.3 on port 1883. -1612400500: Sending CONNACK to 172.18.0.3 (0, 5) -1612400500: Socket error on client , disconnecting. -1612400520: New connection from 172.18.0.3 on port 1883. -1612400520: Sending CONNACK to 172.18.0.3 (0, 5) -1612400520: Socket error on client , disconnecting. -1612400540: New connection from 172.18.0.3 on port 1883. -1612400540: Sending CONNACK to 172.18.0.3 (0, 5) -1612400540: Socket error on client , disconnecting. -1612400560: New connection from 172.18.0.3 on port 1883. -1612400560: Sending CONNACK to 172.18.0.3 (0, 5) -1612400560: Socket error on client , disconnecting. -1612400580: New connection from 172.18.0.3 on port 1883. -1612400580: Sending CONNACK to 172.18.0.3 (0, 5) -1612400580: Socket error on client , disconnecting. -1612400600: New connection from 172.18.0.3 on port 1883. -1612400600: Sending CONNACK to 172.18.0.3 (0, 5) -1612400600: Socket error on client , disconnecting. -1612400620: New connection from 172.18.0.3 on port 1883. -1612400620: Sending CONNACK to 172.18.0.3 (0, 5) -1612400620: Socket error on client , disconnecting. -1612400640: New connection from 172.18.0.3 on port 1883. -1612400640: Sending CONNACK to 172.18.0.3 (0, 5) -1612400640: Socket error on client , disconnecting. -1612400660: New connection from 172.18.0.3 on port 1883. -1612400660: Sending CONNACK to 172.18.0.3 (0, 5) -1612400660: Socket error on client , disconnecting. -1612400680: New connection from 172.18.0.3 on port 1883. -1612400680: Sending CONNACK to 172.18.0.3 (0, 5) -1612400680: Socket error on client , disconnecting. -1612400700: New connection from 172.18.0.3 on port 1883. -1612400700: Sending CONNACK to 172.18.0.3 (0, 5) -1612400700: Socket error on client , disconnecting. -1612400720: New connection from 172.18.0.3 on port 1883. -1612400720: Sending CONNACK to 172.18.0.3 (0, 5) -1612400720: Socket error on client , disconnecting. -1612400740: New connection from 172.18.0.3 on port 1883. -1612400740: Sending CONNACK to 172.18.0.3 (0, 5) -1612400740: Socket error on client , disconnecting. -1612400760: New connection from 172.18.0.3 on port 1883. -1612400760: Sending CONNACK to 172.18.0.3 (0, 5) -1612400760: Socket error on client , disconnecting. -1612400780: New connection from 172.18.0.3 on port 1883. -1612400780: Sending CONNACK to 172.18.0.3 (0, 5) -1612400780: Socket error on client , disconnecting. -1612400800: New connection from 172.18.0.3 on port 1883. -1612400800: Sending CONNACK to 172.18.0.3 (0, 5) -1612400800: Socket error on client , disconnecting. -1612400820: New connection from 172.18.0.3 on port 1883. -1612400820: Sending CONNACK to 172.18.0.3 (0, 5) -1612400820: Socket error on client , disconnecting. -1612400840: New connection from 172.18.0.3 on port 1883. -1612400840: Sending CONNACK to 172.18.0.3 (0, 5) -1612400840: Socket error on client , disconnecting. -1612400860: New connection from 172.18.0.3 on port 1883. -1612400860: Sending CONNACK to 172.18.0.3 (0, 5) -1612400860: Socket error on client , disconnecting. -1612400880: New connection from 172.18.0.3 on port 1883. -1612400880: Sending CONNACK to 172.18.0.3 (0, 5) -1612400880: Socket error on client , disconnecting. -1612400900: New connection from 172.18.0.3 on port 1883. -1612400900: Sending CONNACK to 172.18.0.3 (0, 5) -1612400900: Socket error on client , disconnecting. -1612400920: New connection from 172.18.0.3 on port 1883. -1612400920: Sending CONNACK to 172.18.0.3 (0, 5) -1612400920: Socket error on client , disconnecting. -1612400940: New connection from 172.18.0.3 on port 1883. -1612400940: Sending CONNACK to 172.18.0.3 (0, 5) -1612400940: Socket error on client , disconnecting. -1612400960: New connection from 172.18.0.3 on port 1883. -1612400960: Sending CONNACK to 172.18.0.3 (0, 5) -1612400960: Socket error on client , disconnecting. -1612400980: New connection from 172.18.0.3 on port 1883. -1612400980: Sending CONNACK to 172.18.0.3 (0, 5) -1612400980: Socket error on client , disconnecting. -1612401000: New connection from 172.18.0.3 on port 1883. -1612401000: Sending CONNACK to 172.18.0.3 (0, 5) -1612401000: Socket error on client , disconnecting. -1612401020: New connection from 172.18.0.3 on port 1883. -1612401020: Sending CONNACK to 172.18.0.3 (0, 5) -1612401020: Socket error on client , disconnecting. -1612401040: New connection from 172.18.0.3 on port 1883. -1612401040: Sending CONNACK to 172.18.0.3 (0, 5) -1612401040: Socket error on client , disconnecting. -1612401060: New connection from 172.18.0.3 on port 1883. -1612401060: Sending CONNACK to 172.18.0.3 (0, 5) -1612401060: Socket error on client , disconnecting. -1612401080: New connection from 172.18.0.3 on port 1883. -1612401080: Sending CONNACK to 172.18.0.3 (0, 5) -1612401080: Socket error on client , disconnecting. -1612401100: New connection from 172.18.0.3 on port 1883. -1612401100: Sending CONNACK to 172.18.0.3 (0, 5) -1612401100: Socket error on client , disconnecting. -1612401120: New connection from 172.18.0.3 on port 1883. -1612401120: Sending CONNACK to 172.18.0.3 (0, 5) -1612401120: Socket error on client , disconnecting. -1612401140: New connection from 172.18.0.3 on port 1883. -1612401140: Sending CONNACK to 172.18.0.3 (0, 5) -1612401140: Socket error on client , disconnecting. -1612401160: New connection from 172.18.0.3 on port 1883. -1612401160: Sending CONNACK to 172.18.0.3 (0, 5) -1612401160: Socket error on client , disconnecting. -1612401180: New connection from 172.18.0.3 on port 1883. -1612401180: Sending CONNACK to 172.18.0.3 (0, 5) -1612401180: Socket error on client , disconnecting. -1612401200: New connection from 172.18.0.3 on port 1883. -1612401200: Sending CONNACK to 172.18.0.3 (0, 5) -1612401200: Socket error on client , disconnecting. -1612401220: New connection from 172.18.0.3 on port 1883. -1612401220: Sending CONNACK to 172.18.0.3 (0, 5) -1612401220: Socket error on client , disconnecting. -1612401240: New connection from 172.18.0.3 on port 1883. -1612401240: Sending CONNACK to 172.18.0.3 (0, 5) -1612401240: Socket error on client , disconnecting. -1612401260: New connection from 172.18.0.3 on port 1883. -1612401260: Sending CONNACK to 172.18.0.3 (0, 5) -1612401260: Socket error on client , disconnecting. -1612401280: New connection from 172.18.0.3 on port 1883. -1612401280: Sending CONNACK to 172.18.0.3 (0, 5) -1612401280: Socket error on client , disconnecting. -1612401300: New connection from 172.18.0.3 on port 1883. -1612401300: Sending CONNACK to 172.18.0.3 (0, 5) -1612401300: Socket error on client , disconnecting. -1612401320: New connection from 172.18.0.3 on port 1883. -1612401320: Sending CONNACK to 172.18.0.3 (0, 5) -1612401320: Socket error on client , disconnecting. -1612401340: New connection from 172.18.0.3 on port 1883. -1612401340: Sending CONNACK to 172.18.0.3 (0, 5) -1612401340: Socket error on client , disconnecting. -1612401360: New connection from 172.18.0.3 on port 1883. -1612401360: Sending CONNACK to 172.18.0.3 (0, 5) -1612401360: Socket error on client , disconnecting. -1612401380: New connection from 172.18.0.3 on port 1883. -1612401380: Sending CONNACK to 172.18.0.3 (0, 5) -1612401380: Socket error on client , disconnecting. -1612401392: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612401392: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612401392: Error: Permission denied. -1612401400: New connection from 172.18.0.3 on port 1883. -1612401400: Sending CONNACK to 172.18.0.3 (0, 5) -1612401400: Socket error on client , disconnecting. -1612401420: New connection from 172.18.0.3 on port 1883. -1612401420: Sending CONNACK to 172.18.0.3 (0, 5) -1612401420: Socket error on client , disconnecting. -1612401440: New connection from 172.18.0.3 on port 1883. -1612401440: Sending CONNACK to 172.18.0.3 (0, 5) -1612401440: Socket error on client , disconnecting. -1612401460: New connection from 172.18.0.3 on port 1883. -1612401460: Sending CONNACK to 172.18.0.3 (0, 5) -1612401460: Socket error on client , disconnecting. -1612401480: New connection from 172.18.0.3 on port 1883. -1612401480: Sending CONNACK to 172.18.0.3 (0, 5) -1612401480: Socket error on client , disconnecting. -1612401500: New connection from 172.18.0.3 on port 1883. -1612401500: Sending CONNACK to 172.18.0.3 (0, 5) -1612401500: Socket error on client , disconnecting. -1612401520: New connection from 172.18.0.3 on port 1883. -1612401520: Sending CONNACK to 172.18.0.3 (0, 5) -1612401520: Socket error on client , disconnecting. -1612401540: New connection from 172.18.0.3 on port 1883. -1612401540: Sending CONNACK to 172.18.0.3 (0, 5) -1612401540: Socket error on client , disconnecting. -1612401560: New connection from 172.18.0.3 on port 1883. -1612401560: Sending CONNACK to 172.18.0.3 (0, 5) -1612401560: Socket error on client , disconnecting. -1612401580: New connection from 172.18.0.3 on port 1883. -1612401580: Sending CONNACK to 172.18.0.3 (0, 5) -1612401580: Socket error on client , disconnecting. -1612401600: New connection from 172.18.0.3 on port 1883. -1612401600: Sending CONNACK to 172.18.0.3 (0, 5) -1612401600: Socket error on client , disconnecting. -1612401620: New connection from 172.18.0.3 on port 1883. -1612401620: Sending CONNACK to 172.18.0.3 (0, 5) -1612401620: Socket error on client , disconnecting. -1612401640: New connection from 172.18.0.3 on port 1883. -1612401640: Sending CONNACK to 172.18.0.3 (0, 5) -1612401640: Socket error on client , disconnecting. -1612401660: New connection from 172.18.0.3 on port 1883. -1612401660: Sending CONNACK to 172.18.0.3 (0, 5) -1612401660: Socket error on client , disconnecting. -1612401680: New connection from 172.18.0.3 on port 1883. -1612401680: Sending CONNACK to 172.18.0.3 (0, 5) -1612401680: Socket error on client , disconnecting. -1612401700: New connection from 172.18.0.3 on port 1883. -1612401700: Sending CONNACK to 172.18.0.3 (0, 5) -1612401700: Socket error on client , disconnecting. -1612401720: New connection from 172.18.0.3 on port 1883. -1612401720: Sending CONNACK to 172.18.0.3 (0, 5) -1612401720: Socket error on client , disconnecting. -1612401740: New connection from 172.18.0.3 on port 1883. -1612401740: Sending CONNACK to 172.18.0.3 (0, 5) -1612401740: Socket error on client , disconnecting. -1612401760: New connection from 172.18.0.3 on port 1883. -1612401760: Sending CONNACK to 172.18.0.3 (0, 5) -1612401760: Socket error on client , disconnecting. -1612401780: New connection from 172.18.0.3 on port 1883. -1612401780: Sending CONNACK to 172.18.0.3 (0, 5) -1612401780: Socket error on client , disconnecting. -1612401800: New connection from 172.18.0.3 on port 1883. -1612401800: Sending CONNACK to 172.18.0.3 (0, 5) -1612401800: Socket error on client , disconnecting. -1612401820: New connection from 172.18.0.3 on port 1883. -1612401820: Sending CONNACK to 172.18.0.3 (0, 5) -1612401820: Socket error on client , disconnecting. -1612401840: New connection from 172.18.0.3 on port 1883. -1612401840: Sending CONNACK to 172.18.0.3 (0, 5) -1612401840: Socket error on client , disconnecting. -1612401860: New connection from 172.18.0.3 on port 1883. -1612401860: Sending CONNACK to 172.18.0.3 (0, 5) -1612401860: Socket error on client , disconnecting. -1612401880: New connection from 172.18.0.3 on port 1883. -1612401880: Sending CONNACK to 172.18.0.3 (0, 5) -1612401880: Socket error on client , disconnecting. -1612401900: New connection from 172.18.0.3 on port 1883. -1612401900: Sending CONNACK to 172.18.0.3 (0, 5) -1612401900: Socket error on client , disconnecting. -1612401920: New connection from 172.18.0.3 on port 1883. -1612401920: Sending CONNACK to 172.18.0.3 (0, 5) -1612401920: Socket error on client , disconnecting. -1612401940: New connection from 172.18.0.3 on port 1883. -1612401940: Sending CONNACK to 172.18.0.3 (0, 5) -1612401940: Socket error on client , disconnecting. -1612401960: New connection from 172.18.0.3 on port 1883. -1612401960: Sending CONNACK to 172.18.0.3 (0, 5) -1612401960: Socket error on client , disconnecting. -1612401980: New connection from 172.18.0.3 on port 1883. -1612401980: Sending CONNACK to 172.18.0.3 (0, 5) -1612401980: Socket error on client , disconnecting. -1612402000: New connection from 172.18.0.3 on port 1883. -1612402000: Sending CONNACK to 172.18.0.3 (0, 5) -1612402000: Socket error on client , disconnecting. -1612402020: New connection from 172.18.0.3 on port 1883. -1612402020: Sending CONNACK to 172.18.0.3 (0, 5) -1612402020: Socket error on client , disconnecting. -1612402040: New connection from 172.18.0.3 on port 1883. -1612402040: Sending CONNACK to 172.18.0.3 (0, 5) -1612402040: Socket error on client , disconnecting. -1612402060: New connection from 172.18.0.3 on port 1883. -1612402060: Sending CONNACK to 172.18.0.3 (0, 5) -1612402060: Socket error on client , disconnecting. -1612402080: New connection from 172.18.0.3 on port 1883. -1612402080: Sending CONNACK to 172.18.0.3 (0, 5) -1612402080: Socket error on client , disconnecting. -1612402100: New connection from 172.18.0.3 on port 1883. -1612402100: Sending CONNACK to 172.18.0.3 (0, 5) -1612402100: Socket error on client , disconnecting. -1612402120: New connection from 172.18.0.3 on port 1883. -1612402120: Sending CONNACK to 172.18.0.3 (0, 5) -1612402120: Socket error on client , disconnecting. -1612402140: New connection from 172.18.0.3 on port 1883. -1612402140: Sending CONNACK to 172.18.0.3 (0, 5) -1612402140: Socket error on client , disconnecting. -1612402160: New connection from 172.18.0.3 on port 1883. -1612402160: Sending CONNACK to 172.18.0.3 (0, 5) -1612402160: Socket error on client , disconnecting. -1612402180: New connection from 172.18.0.3 on port 1883. -1612402180: Sending CONNACK to 172.18.0.3 (0, 5) -1612402180: Socket error on client , disconnecting. -1612402200: New connection from 172.18.0.3 on port 1883. -1612402200: Sending CONNACK to 172.18.0.3 (0, 5) -1612402200: Socket error on client , disconnecting. -1612402220: New connection from 172.18.0.3 on port 1883. -1612402220: Sending CONNACK to 172.18.0.3 (0, 5) -1612402220: Socket error on client , disconnecting. -1612402240: New connection from 172.18.0.3 on port 1883. -1612402240: Sending CONNACK to 172.18.0.3 (0, 5) -1612402240: Socket error on client , disconnecting. -1612402260: New connection from 172.18.0.3 on port 1883. -1612402260: Sending CONNACK to 172.18.0.3 (0, 5) -1612402260: Socket error on client , disconnecting. -1612402280: New connection from 172.18.0.3 on port 1883. -1612402280: Sending CONNACK to 172.18.0.3 (0, 5) -1612402280: Socket error on client , disconnecting. -1612402300: New connection from 172.18.0.3 on port 1883. -1612402300: Sending CONNACK to 172.18.0.3 (0, 5) -1612402300: Socket error on client , disconnecting. -1612402320: New connection from 172.18.0.3 on port 1883. -1612402320: Sending CONNACK to 172.18.0.3 (0, 5) -1612402320: Socket error on client , disconnecting. -1612402340: New connection from 172.18.0.3 on port 1883. -1612402340: Sending CONNACK to 172.18.0.3 (0, 5) -1612402340: Socket error on client , disconnecting. -1612402360: New connection from 172.18.0.3 on port 1883. -1612402360: Sending CONNACK to 172.18.0.3 (0, 5) -1612402360: Socket error on client , disconnecting. -1612402380: New connection from 172.18.0.3 on port 1883. -1612402380: Sending CONNACK to 172.18.0.3 (0, 5) -1612402380: Socket error on client , disconnecting. -1612402400: New connection from 172.18.0.3 on port 1883. -1612402400: Sending CONNACK to 172.18.0.3 (0, 5) -1612402400: Socket error on client , disconnecting. -1612402420: New connection from 172.18.0.3 on port 1883. -1612402420: Sending CONNACK to 172.18.0.3 (0, 5) -1612402420: Socket error on client , disconnecting. -1612402440: New connection from 172.18.0.3 on port 1883. -1612402440: Sending CONNACK to 172.18.0.3 (0, 5) -1612402440: Socket error on client , disconnecting. -1612402460: New connection from 172.18.0.3 on port 1883. -1612402460: Sending CONNACK to 172.18.0.3 (0, 5) -1612402460: Socket error on client , disconnecting. -1612402480: New connection from 172.18.0.3 on port 1883. -1612402480: Sending CONNACK to 172.18.0.3 (0, 5) -1612402480: Socket error on client , disconnecting. -1612402500: New connection from 172.18.0.3 on port 1883. -1612402500: Sending CONNACK to 172.18.0.3 (0, 5) -1612402500: Socket error on client , disconnecting. -1612402520: New connection from 172.18.0.3 on port 1883. -1612402520: Sending CONNACK to 172.18.0.3 (0, 5) -1612402520: Socket error on client , disconnecting. -1612402540: New connection from 172.18.0.3 on port 1883. -1612402540: Sending CONNACK to 172.18.0.3 (0, 5) -1612402540: Socket error on client , disconnecting. -1612402560: New connection from 172.18.0.3 on port 1883. -1612402560: Sending CONNACK to 172.18.0.3 (0, 5) -1612402560: Socket error on client , disconnecting. -1612402580: New connection from 172.18.0.3 on port 1883. -1612402580: Sending CONNACK to 172.18.0.3 (0, 5) -1612402580: Socket error on client , disconnecting. -1612402600: New connection from 172.18.0.3 on port 1883. -1612402600: Sending CONNACK to 172.18.0.3 (0, 5) -1612402600: Socket error on client , disconnecting. -1612402620: New connection from 172.18.0.3 on port 1883. -1612402620: Sending CONNACK to 172.18.0.3 (0, 5) -1612402620: Socket error on client , disconnecting. -1612402640: New connection from 172.18.0.3 on port 1883. -1612402640: Sending CONNACK to 172.18.0.3 (0, 5) -1612402640: Socket error on client , disconnecting. -1612402660: New connection from 172.18.0.3 on port 1883. -1612402660: Sending CONNACK to 172.18.0.3 (0, 5) -1612402660: Socket error on client , disconnecting. -1612402680: New connection from 172.18.0.3 on port 1883. -1612402680: Sending CONNACK to 172.18.0.3 (0, 5) -1612402680: Socket error on client , disconnecting. -1612402700: New connection from 172.18.0.3 on port 1883. -1612402700: Sending CONNACK to 172.18.0.3 (0, 5) -1612402700: Socket error on client , disconnecting. -1612402720: New connection from 172.18.0.3 on port 1883. -1612402720: Sending CONNACK to 172.18.0.3 (0, 5) -1612402720: Socket error on client , disconnecting. -1612402740: New connection from 172.18.0.3 on port 1883. -1612402740: Sending CONNACK to 172.18.0.3 (0, 5) -1612402740: Socket error on client , disconnecting. -1612402760: New connection from 172.18.0.3 on port 1883. -1612402760: Sending CONNACK to 172.18.0.3 (0, 5) -1612402760: Socket error on client , disconnecting. -1612402780: New connection from 172.18.0.3 on port 1883. -1612402780: Sending CONNACK to 172.18.0.3 (0, 5) -1612402780: Socket error on client , disconnecting. -1612402800: New connection from 172.18.0.3 on port 1883. -1612402800: Sending CONNACK to 172.18.0.3 (0, 5) -1612402800: Socket error on client , disconnecting. -1612402820: New connection from 172.18.0.3 on port 1883. -1612402820: Sending CONNACK to 172.18.0.3 (0, 5) -1612402820: Socket error on client , disconnecting. -1612402840: New connection from 172.18.0.3 on port 1883. -1612402840: Sending CONNACK to 172.18.0.3 (0, 5) -1612402840: Socket error on client , disconnecting. -1612402860: New connection from 172.18.0.3 on port 1883. -1612402860: Sending CONNACK to 172.18.0.3 (0, 5) -1612402860: Socket error on client , disconnecting. -1612402880: New connection from 172.18.0.3 on port 1883. -1612402880: Sending CONNACK to 172.18.0.3 (0, 5) -1612402880: Socket error on client , disconnecting. -1612402900: New connection from 172.18.0.3 on port 1883. -1612402900: Sending CONNACK to 172.18.0.3 (0, 5) -1612402900: Socket error on client , disconnecting. -1612402920: New connection from 172.18.0.3 on port 1883. -1612402920: Sending CONNACK to 172.18.0.3 (0, 5) -1612402920: Socket error on client , disconnecting. -1612402940: New connection from 172.18.0.3 on port 1883. -1612402940: Sending CONNACK to 172.18.0.3 (0, 5) -1612402940: Socket error on client , disconnecting. -1612402960: New connection from 172.18.0.3 on port 1883. -1612402960: Sending CONNACK to 172.18.0.3 (0, 5) -1612402960: Socket error on client , disconnecting. -1612402980: New connection from 172.18.0.3 on port 1883. -1612402980: Sending CONNACK to 172.18.0.3 (0, 5) -1612402980: Socket error on client , disconnecting. -1612403000: New connection from 172.18.0.3 on port 1883. -1612403000: Sending CONNACK to 172.18.0.3 (0, 5) -1612403000: Socket error on client , disconnecting. -1612403020: New connection from 172.18.0.3 on port 1883. -1612403020: Sending CONNACK to 172.18.0.3 (0, 5) -1612403020: Socket error on client , disconnecting. -1612403040: New connection from 172.18.0.3 on port 1883. -1612403040: Sending CONNACK to 172.18.0.3 (0, 5) -1612403040: Socket error on client , disconnecting. -1612403060: New connection from 172.18.0.3 on port 1883. -1612403060: Sending CONNACK to 172.18.0.3 (0, 5) -1612403060: Socket error on client , disconnecting. -1612403080: New connection from 172.18.0.3 on port 1883. -1612403080: Sending CONNACK to 172.18.0.3 (0, 5) -1612403080: Socket error on client , disconnecting. -1612403100: New connection from 172.18.0.3 on port 1883. -1612403100: Sending CONNACK to 172.18.0.3 (0, 5) -1612403100: Socket error on client , disconnecting. -1612403120: New connection from 172.18.0.3 on port 1883. -1612403120: Sending CONNACK to 172.18.0.3 (0, 5) -1612403120: Socket error on client , disconnecting. -1612403140: New connection from 172.18.0.3 on port 1883. -1612403140: Sending CONNACK to 172.18.0.3 (0, 5) -1612403140: Socket error on client , disconnecting. -1612403160: New connection from 172.18.0.3 on port 1883. -1612403160: Sending CONNACK to 172.18.0.3 (0, 5) -1612403160: Socket error on client , disconnecting. -1612403180: New connection from 172.18.0.3 on port 1883. -1612403180: Sending CONNACK to 172.18.0.3 (0, 5) -1612403180: Socket error on client , disconnecting. -1612403193: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612403193: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612403193: Error: Permission denied. -1612403200: New connection from 172.18.0.3 on port 1883. -1612403200: Sending CONNACK to 172.18.0.3 (0, 5) -1612403200: Socket error on client , disconnecting. -1612403220: New connection from 172.18.0.3 on port 1883. -1612403220: Sending CONNACK to 172.18.0.3 (0, 5) -1612403220: Socket error on client , disconnecting. -1612403240: New connection from 172.18.0.3 on port 1883. -1612403240: Sending CONNACK to 172.18.0.3 (0, 5) -1612403240: Socket error on client , disconnecting. -1612403260: New connection from 172.18.0.3 on port 1883. -1612403260: Sending CONNACK to 172.18.0.3 (0, 5) -1612403260: Socket error on client , disconnecting. -1612403280: New connection from 172.18.0.3 on port 1883. -1612403280: Sending CONNACK to 172.18.0.3 (0, 5) -1612403280: Socket error on client , disconnecting. -1612403300: New connection from 172.18.0.3 on port 1883. -1612403300: Sending CONNACK to 172.18.0.3 (0, 5) -1612403300: Socket error on client , disconnecting. -1612403320: New connection from 172.18.0.3 on port 1883. -1612403320: Sending CONNACK to 172.18.0.3 (0, 5) -1612403320: Socket error on client , disconnecting. -1612403340: New connection from 172.18.0.3 on port 1883. -1612403340: Sending CONNACK to 172.18.0.3 (0, 5) -1612403340: Socket error on client , disconnecting. -1612403360: New connection from 172.18.0.3 on port 1883. -1612403360: Sending CONNACK to 172.18.0.3 (0, 5) -1612403360: Socket error on client , disconnecting. -1612403380: New connection from 172.18.0.3 on port 1883. -1612403380: Sending CONNACK to 172.18.0.3 (0, 5) -1612403380: Socket error on client , disconnecting. -1612403400: New connection from 172.18.0.3 on port 1883. -1612403400: Sending CONNACK to 172.18.0.3 (0, 5) -1612403400: Socket error on client , disconnecting. -1612403420: New connection from 172.18.0.3 on port 1883. -1612403420: Sending CONNACK to 172.18.0.3 (0, 5) -1612403420: Socket error on client , disconnecting. -1612403440: New connection from 172.18.0.3 on port 1883. -1612403440: Sending CONNACK to 172.18.0.3 (0, 5) -1612403440: Socket error on client , disconnecting. -1612403460: New connection from 172.18.0.3 on port 1883. -1612403460: Sending CONNACK to 172.18.0.3 (0, 5) -1612403460: Socket error on client , disconnecting. -1612403480: New connection from 172.18.0.3 on port 1883. -1612403480: Sending CONNACK to 172.18.0.3 (0, 5) -1612403480: Socket error on client , disconnecting. -1612403500: New connection from 172.18.0.3 on port 1883. -1612403500: Sending CONNACK to 172.18.0.3 (0, 5) -1612403500: Socket error on client , disconnecting. -1612403520: New connection from 172.18.0.3 on port 1883. -1612403520: Sending CONNACK to 172.18.0.3 (0, 5) -1612403520: Socket error on client , disconnecting. -1612403540: New connection from 172.18.0.3 on port 1883. -1612403540: Sending CONNACK to 172.18.0.3 (0, 5) -1612403540: Socket error on client , disconnecting. -1612403560: New connection from 172.18.0.3 on port 1883. -1612403560: Sending CONNACK to 172.18.0.3 (0, 5) -1612403560: Socket error on client , disconnecting. -1612403580: New connection from 172.18.0.3 on port 1883. -1612403580: Sending CONNACK to 172.18.0.3 (0, 5) -1612403580: Socket error on client , disconnecting. -1612403600: New connection from 172.18.0.3 on port 1883. -1612403600: Sending CONNACK to 172.18.0.3 (0, 5) -1612403600: Socket error on client , disconnecting. -1612403620: New connection from 172.18.0.3 on port 1883. -1612403620: Sending CONNACK to 172.18.0.3 (0, 5) -1612403620: Socket error on client , disconnecting. -1612403640: New connection from 172.18.0.3 on port 1883. -1612403640: Sending CONNACK to 172.18.0.3 (0, 5) -1612403640: Socket error on client , disconnecting. -1612403660: New connection from 172.18.0.3 on port 1883. -1612403660: Sending CONNACK to 172.18.0.3 (0, 5) -1612403660: Socket error on client , disconnecting. -1612403680: New connection from 172.18.0.3 on port 1883. -1612403680: Sending CONNACK to 172.18.0.3 (0, 5) -1612403680: Socket error on client , disconnecting. -1612403700: New connection from 172.18.0.3 on port 1883. -1612403700: Sending CONNACK to 172.18.0.3 (0, 5) -1612403700: Socket error on client , disconnecting. -1612403720: New connection from 172.18.0.3 on port 1883. -1612403720: Sending CONNACK to 172.18.0.3 (0, 5) -1612403720: Socket error on client , disconnecting. -1612403740: New connection from 172.18.0.3 on port 1883. -1612403740: Sending CONNACK to 172.18.0.3 (0, 5) -1612403740: Socket error on client , disconnecting. -1612403760: New connection from 172.18.0.3 on port 1883. -1612403760: Sending CONNACK to 172.18.0.3 (0, 5) -1612403760: Socket error on client , disconnecting. -1612403780: New connection from 172.18.0.3 on port 1883. -1612403780: Sending CONNACK to 172.18.0.3 (0, 5) -1612403780: Socket error on client , disconnecting. -1612403800: New connection from 172.18.0.3 on port 1883. -1612403800: Sending CONNACK to 172.18.0.3 (0, 5) -1612403800: Socket error on client , disconnecting. -1612403820: New connection from 172.18.0.3 on port 1883. -1612403820: Sending CONNACK to 172.18.0.3 (0, 5) -1612403820: Socket error on client , disconnecting. -1612403840: New connection from 172.18.0.3 on port 1883. -1612403840: Sending CONNACK to 172.18.0.3 (0, 5) -1612403840: Socket error on client , disconnecting. -1612403860: New connection from 172.18.0.3 on port 1883. -1612403860: Sending CONNACK to 172.18.0.3 (0, 5) -1612403860: Socket error on client , disconnecting. -1612403880: New connection from 172.18.0.3 on port 1883. -1612403880: Sending CONNACK to 172.18.0.3 (0, 5) -1612403880: Socket error on client , disconnecting. -1612403900: New connection from 172.18.0.3 on port 1883. -1612403900: Sending CONNACK to 172.18.0.3 (0, 5) -1612403900: Socket error on client , disconnecting. -1612403920: New connection from 172.18.0.3 on port 1883. -1612403920: Sending CONNACK to 172.18.0.3 (0, 5) -1612403920: Socket error on client , disconnecting. -1612403940: New connection from 172.18.0.3 on port 1883. -1612403940: Sending CONNACK to 172.18.0.3 (0, 5) -1612403940: Socket error on client , disconnecting. -1612403960: New connection from 172.18.0.3 on port 1883. -1612403960: Sending CONNACK to 172.18.0.3 (0, 5) -1612403960: Socket error on client , disconnecting. -1612403980: New connection from 172.18.0.3 on port 1883. -1612403980: Sending CONNACK to 172.18.0.3 (0, 5) -1612403980: Socket error on client , disconnecting. -1612404000: New connection from 172.18.0.3 on port 1883. -1612404000: Sending CONNACK to 172.18.0.3 (0, 5) -1612404000: Socket error on client , disconnecting. -1612404020: New connection from 172.18.0.3 on port 1883. -1612404020: Sending CONNACK to 172.18.0.3 (0, 5) -1612404020: Socket error on client , disconnecting. -1612404040: New connection from 172.18.0.3 on port 1883. -1612404040: Sending CONNACK to 172.18.0.3 (0, 5) -1612404040: Socket error on client , disconnecting. -1612404060: New connection from 172.18.0.3 on port 1883. -1612404060: Sending CONNACK to 172.18.0.3 (0, 5) -1612404060: Socket error on client , disconnecting. -1612404080: New connection from 172.18.0.3 on port 1883. -1612404080: Sending CONNACK to 172.18.0.3 (0, 5) -1612404080: Socket error on client , disconnecting. -1612404100: New connection from 172.18.0.3 on port 1883. -1612404100: Sending CONNACK to 172.18.0.3 (0, 5) -1612404100: Socket error on client , disconnecting. -1612404120: New connection from 172.18.0.3 on port 1883. -1612404120: Sending CONNACK to 172.18.0.3 (0, 5) -1612404120: Socket error on client , disconnecting. -1612404140: New connection from 172.18.0.3 on port 1883. -1612404140: Sending CONNACK to 172.18.0.3 (0, 5) -1612404140: Socket error on client , disconnecting. -1612404160: New connection from 172.18.0.3 on port 1883. -1612404160: Sending CONNACK to 172.18.0.3 (0, 5) -1612404160: Socket error on client , disconnecting. -1612404180: New connection from 172.18.0.3 on port 1883. -1612404180: Sending CONNACK to 172.18.0.3 (0, 5) -1612404180: Socket error on client , disconnecting. -1612404200: New connection from 172.18.0.3 on port 1883. -1612404200: Sending CONNACK to 172.18.0.3 (0, 5) -1612404200: Socket error on client , disconnecting. -1612404220: New connection from 172.18.0.3 on port 1883. -1612404220: Sending CONNACK to 172.18.0.3 (0, 5) -1612404220: Socket error on client , disconnecting. -1612404240: New connection from 172.18.0.3 on port 1883. -1612404240: Sending CONNACK to 172.18.0.3 (0, 5) -1612404240: Socket error on client , disconnecting. -1612404260: New connection from 172.18.0.3 on port 1883. -1612404260: Sending CONNACK to 172.18.0.3 (0, 5) -1612404260: Socket error on client , disconnecting. -1612404280: New connection from 172.18.0.3 on port 1883. -1612404280: Sending CONNACK to 172.18.0.3 (0, 5) -1612404280: Socket error on client , disconnecting. -1612404300: New connection from 172.18.0.3 on port 1883. -1612404300: Sending CONNACK to 172.18.0.3 (0, 5) -1612404300: Socket error on client , disconnecting. -1612404320: New connection from 172.18.0.3 on port 1883. -1612404320: Sending CONNACK to 172.18.0.3 (0, 5) -1612404320: Socket error on client , disconnecting. -1612404340: New connection from 172.18.0.3 on port 1883. -1612404340: Sending CONNACK to 172.18.0.3 (0, 5) -1612404340: Socket error on client , disconnecting. -1612404360: New connection from 172.18.0.3 on port 1883. -1612404360: Sending CONNACK to 172.18.0.3 (0, 5) -1612404360: Socket error on client , disconnecting. -1612404380: New connection from 172.18.0.3 on port 1883. -1612404380: Sending CONNACK to 172.18.0.3 (0, 5) -1612404380: Socket error on client , disconnecting. -1612404400: New connection from 172.18.0.3 on port 1883. -1612404400: Sending CONNACK to 172.18.0.3 (0, 5) -1612404400: Socket error on client , disconnecting. -1612404420: New connection from 172.18.0.3 on port 1883. -1612404420: Sending CONNACK to 172.18.0.3 (0, 5) -1612404420: Socket error on client , disconnecting. -1612404440: New connection from 172.18.0.3 on port 1883. -1612404440: Sending CONNACK to 172.18.0.3 (0, 5) -1612404440: Socket error on client , disconnecting. -1612404460: New connection from 172.18.0.3 on port 1883. -1612404460: Sending CONNACK to 172.18.0.3 (0, 5) -1612404460: Socket error on client , disconnecting. -1612404480: New connection from 172.18.0.3 on port 1883. -1612404480: Sending CONNACK to 172.18.0.3 (0, 5) -1612404480: Socket error on client , disconnecting. -1612404500: New connection from 172.18.0.3 on port 1883. -1612404500: Sending CONNACK to 172.18.0.3 (0, 5) -1612404500: Socket error on client , disconnecting. -1612404520: New connection from 172.18.0.3 on port 1883. -1612404520: Sending CONNACK to 172.18.0.3 (0, 5) -1612404520: Socket error on client , disconnecting. -1612404540: New connection from 172.18.0.3 on port 1883. -1612404540: Sending CONNACK to 172.18.0.3 (0, 5) -1612404540: Socket error on client , disconnecting. -1612404560: New connection from 172.18.0.3 on port 1883. -1612404560: Sending CONNACK to 172.18.0.3 (0, 5) -1612404560: Socket error on client , disconnecting. -1612404580: New connection from 172.18.0.3 on port 1883. -1612404580: Sending CONNACK to 172.18.0.3 (0, 5) -1612404580: Socket error on client , disconnecting. -1612404600: New connection from 172.18.0.3 on port 1883. -1612404600: Sending CONNACK to 172.18.0.3 (0, 5) -1612404600: Socket error on client , disconnecting. -1612404620: New connection from 172.18.0.3 on port 1883. -1612404620: Sending CONNACK to 172.18.0.3 (0, 5) -1612404620: Socket error on client , disconnecting. -1612404640: New connection from 172.18.0.3 on port 1883. -1612404640: Sending CONNACK to 172.18.0.3 (0, 5) -1612404640: Socket error on client , disconnecting. -1612404660: New connection from 172.18.0.3 on port 1883. -1612404660: Sending CONNACK to 172.18.0.3 (0, 5) -1612404660: Socket error on client , disconnecting. -1612404680: New connection from 172.18.0.3 on port 1883. -1612404680: Sending CONNACK to 172.18.0.3 (0, 5) -1612404680: Socket error on client , disconnecting. -1612404700: New connection from 172.18.0.3 on port 1883. -1612404700: Sending CONNACK to 172.18.0.3 (0, 5) -1612404700: Socket error on client , disconnecting. -1612404720: New connection from 172.18.0.3 on port 1883. -1612404720: Sending CONNACK to 172.18.0.3 (0, 5) -1612404720: Socket error on client , disconnecting. -1612404740: New connection from 172.18.0.3 on port 1883. -1612404740: Sending CONNACK to 172.18.0.3 (0, 5) -1612404740: Socket error on client , disconnecting. -1612404760: New connection from 172.18.0.3 on port 1883. -1612404760: Sending CONNACK to 172.18.0.3 (0, 5) -1612404760: Socket error on client , disconnecting. -1612404780: New connection from 172.18.0.3 on port 1883. -1612404780: Sending CONNACK to 172.18.0.3 (0, 5) -1612404780: Socket error on client , disconnecting. -1612404800: New connection from 172.18.0.3 on port 1883. -1612404800: Sending CONNACK to 172.18.0.3 (0, 5) -1612404800: Socket error on client , disconnecting. -1612404820: New connection from 172.18.0.3 on port 1883. -1612404820: Sending CONNACK to 172.18.0.3 (0, 5) -1612404820: Socket error on client , disconnecting. -1612404840: New connection from 172.18.0.3 on port 1883. -1612404840: Sending CONNACK to 172.18.0.3 (0, 5) -1612404840: Socket error on client , disconnecting. -1612404860: New connection from 172.18.0.3 on port 1883. -1612404860: Sending CONNACK to 172.18.0.3 (0, 5) -1612404860: Socket error on client , disconnecting. -1612404880: New connection from 172.18.0.3 on port 1883. -1612404880: Sending CONNACK to 172.18.0.3 (0, 5) -1612404880: Socket error on client , disconnecting. -1612404900: New connection from 172.18.0.3 on port 1883. -1612404900: Sending CONNACK to 172.18.0.3 (0, 5) -1612404900: Socket error on client , disconnecting. -1612404920: New connection from 172.18.0.3 on port 1883. -1612404920: Sending CONNACK to 172.18.0.3 (0, 5) -1612404920: Socket error on client , disconnecting. -1612404940: New connection from 172.18.0.3 on port 1883. -1612404940: Sending CONNACK to 172.18.0.3 (0, 5) -1612404940: Socket error on client , disconnecting. -1612404960: New connection from 172.18.0.3 on port 1883. -1612404960: Sending CONNACK to 172.18.0.3 (0, 5) -1612404960: Socket error on client , disconnecting. -1612404980: New connection from 172.18.0.3 on port 1883. -1612404980: Sending CONNACK to 172.18.0.3 (0, 5) -1612404980: Socket error on client , disconnecting. -1612404994: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612404994: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612404994: Error: Permission denied. -1612405000: New connection from 172.18.0.3 on port 1883. -1612405000: Sending CONNACK to 172.18.0.3 (0, 5) -1612405000: Socket error on client , disconnecting. -1612405020: New connection from 172.18.0.3 on port 1883. -1612405020: Sending CONNACK to 172.18.0.3 (0, 5) -1612405020: Socket error on client , disconnecting. -1612405040: New connection from 172.18.0.3 on port 1883. -1612405040: Sending CONNACK to 172.18.0.3 (0, 5) -1612405040: Socket error on client , disconnecting. -1612405060: New connection from 172.18.0.3 on port 1883. -1612405060: Sending CONNACK to 172.18.0.3 (0, 5) -1612405060: Socket error on client , disconnecting. -1612405080: New connection from 172.18.0.3 on port 1883. -1612405080: Sending CONNACK to 172.18.0.3 (0, 5) -1612405080: Socket error on client , disconnecting. -1612405100: New connection from 172.18.0.3 on port 1883. -1612405100: Sending CONNACK to 172.18.0.3 (0, 5) -1612405100: Socket error on client , disconnecting. -1612405120: New connection from 172.18.0.3 on port 1883. -1612405120: Sending CONNACK to 172.18.0.3 (0, 5) -1612405120: Socket error on client , disconnecting. -1612405140: New connection from 172.18.0.3 on port 1883. -1612405140: Sending CONNACK to 172.18.0.3 (0, 5) -1612405140: Socket error on client , disconnecting. -1612405160: New connection from 172.18.0.3 on port 1883. -1612405160: Sending CONNACK to 172.18.0.3 (0, 5) -1612405160: Socket error on client , disconnecting. -1612405180: New connection from 172.18.0.3 on port 1883. -1612405180: Sending CONNACK to 172.18.0.3 (0, 5) -1612405180: Socket error on client , disconnecting. -1612405200: New connection from 172.18.0.3 on port 1883. -1612405200: Sending CONNACK to 172.18.0.3 (0, 5) -1612405200: Socket error on client , disconnecting. -1612405220: New connection from 172.18.0.3 on port 1883. -1612405220: Sending CONNACK to 172.18.0.3 (0, 5) -1612405220: Socket error on client , disconnecting. -1612405240: New connection from 172.18.0.3 on port 1883. -1612405240: Sending CONNACK to 172.18.0.3 (0, 5) -1612405240: Socket error on client , disconnecting. -1612405260: New connection from 172.18.0.3 on port 1883. -1612405260: Sending CONNACK to 172.18.0.3 (0, 5) -1612405260: Socket error on client , disconnecting. -1612405280: New connection from 172.18.0.3 on port 1883. -1612405280: Sending CONNACK to 172.18.0.3 (0, 5) -1612405280: Socket error on client , disconnecting. -1612405300: New connection from 172.18.0.3 on port 1883. -1612405300: Sending CONNACK to 172.18.0.3 (0, 5) -1612405300: Socket error on client , disconnecting. -1612405320: New connection from 172.18.0.3 on port 1883. -1612405320: Sending CONNACK to 172.18.0.3 (0, 5) -1612405320: Socket error on client , disconnecting. -1612405340: New connection from 172.18.0.3 on port 1883. -1612405340: Sending CONNACK to 172.18.0.3 (0, 5) -1612405340: Socket error on client , disconnecting. -1612405360: New connection from 172.18.0.3 on port 1883. -1612405360: Sending CONNACK to 172.18.0.3 (0, 5) -1612405360: Socket error on client , disconnecting. -1612405380: New connection from 172.18.0.3 on port 1883. -1612405380: Sending CONNACK to 172.18.0.3 (0, 5) -1612405380: Socket error on client , disconnecting. -1612405400: New connection from 172.18.0.3 on port 1883. -1612405400: Sending CONNACK to 172.18.0.3 (0, 5) -1612405400: Socket error on client , disconnecting. -1612405420: New connection from 172.18.0.3 on port 1883. -1612405420: Sending CONNACK to 172.18.0.3 (0, 5) -1612405420: Socket error on client , disconnecting. -1612405440: New connection from 172.18.0.3 on port 1883. -1612405440: Sending CONNACK to 172.18.0.3 (0, 5) -1612405440: Socket error on client , disconnecting. -1612405460: New connection from 172.18.0.3 on port 1883. -1612405460: Sending CONNACK to 172.18.0.3 (0, 5) -1612405460: Socket error on client , disconnecting. -1612405480: New connection from 172.18.0.3 on port 1883. -1612405480: Sending CONNACK to 172.18.0.3 (0, 5) -1612405480: Socket error on client , disconnecting. -1612405500: New connection from 172.18.0.3 on port 1883. -1612405500: Sending CONNACK to 172.18.0.3 (0, 5) -1612405500: Socket error on client , disconnecting. -1612405520: New connection from 172.18.0.3 on port 1883. -1612405520: Sending CONNACK to 172.18.0.3 (0, 5) -1612405520: Socket error on client , disconnecting. -1612405540: New connection from 172.18.0.3 on port 1883. -1612405540: Sending CONNACK to 172.18.0.3 (0, 5) -1612405540: Socket error on client , disconnecting. -1612405560: New connection from 172.18.0.3 on port 1883. -1612405560: Sending CONNACK to 172.18.0.3 (0, 5) -1612405560: Socket error on client , disconnecting. -1612405580: New connection from 172.18.0.3 on port 1883. -1612405580: Sending CONNACK to 172.18.0.3 (0, 5) -1612405580: Socket error on client , disconnecting. -1612405600: New connection from 172.18.0.3 on port 1883. -1612405600: Sending CONNACK to 172.18.0.3 (0, 5) -1612405600: Socket error on client , disconnecting. -1612405620: New connection from 172.18.0.3 on port 1883. -1612405620: Sending CONNACK to 172.18.0.3 (0, 5) -1612405620: Socket error on client , disconnecting. -1612405640: New connection from 172.18.0.3 on port 1883. -1612405640: Sending CONNACK to 172.18.0.3 (0, 5) -1612405640: Socket error on client , disconnecting. -1612405660: New connection from 172.18.0.3 on port 1883. -1612405660: Sending CONNACK to 172.18.0.3 (0, 5) -1612405660: Socket error on client , disconnecting. -1612405680: New connection from 172.18.0.3 on port 1883. -1612405680: Sending CONNACK to 172.18.0.3 (0, 5) -1612405680: Socket error on client , disconnecting. -1612405700: New connection from 172.18.0.3 on port 1883. -1612405700: Sending CONNACK to 172.18.0.3 (0, 5) -1612405700: Socket error on client , disconnecting. -1612405720: New connection from 172.18.0.3 on port 1883. -1612405720: Sending CONNACK to 172.18.0.3 (0, 5) -1612405720: Socket error on client , disconnecting. -1612405740: New connection from 172.18.0.3 on port 1883. -1612405740: Sending CONNACK to 172.18.0.3 (0, 5) -1612405740: Socket error on client , disconnecting. -1612405760: New connection from 172.18.0.3 on port 1883. -1612405760: Sending CONNACK to 172.18.0.3 (0, 5) -1612405760: Socket error on client , disconnecting. -1612405780: New connection from 172.18.0.3 on port 1883. -1612405780: Sending CONNACK to 172.18.0.3 (0, 5) -1612405780: Socket error on client , disconnecting. -1612405800: New connection from 172.18.0.3 on port 1883. -1612405800: Sending CONNACK to 172.18.0.3 (0, 5) -1612405800: Socket error on client , disconnecting. -1612405820: New connection from 172.18.0.3 on port 1883. -1612405820: Sending CONNACK to 172.18.0.3 (0, 5) -1612405820: Socket error on client , disconnecting. -1612405840: New connection from 172.18.0.3 on port 1883. -1612405840: Sending CONNACK to 172.18.0.3 (0, 5) -1612405840: Socket error on client , disconnecting. -1612405860: New connection from 172.18.0.3 on port 1883. -1612405860: Sending CONNACK to 172.18.0.3 (0, 5) -1612405860: Socket error on client , disconnecting. -1612405880: New connection from 172.18.0.3 on port 1883. -1612405880: Sending CONNACK to 172.18.0.3 (0, 5) -1612405880: Socket error on client , disconnecting. -1612405900: New connection from 172.18.0.3 on port 1883. -1612405900: Sending CONNACK to 172.18.0.3 (0, 5) -1612405900: Socket error on client , disconnecting. -1612405920: New connection from 172.18.0.3 on port 1883. -1612405920: Sending CONNACK to 172.18.0.3 (0, 5) -1612405920: Socket error on client , disconnecting. -1612405940: New connection from 172.18.0.3 on port 1883. -1612405940: Sending CONNACK to 172.18.0.3 (0, 5) -1612405940: Socket error on client , disconnecting. -1612405960: New connection from 172.18.0.3 on port 1883. -1612405960: Sending CONNACK to 172.18.0.3 (0, 5) -1612405960: Socket error on client , disconnecting. -1612405980: New connection from 172.18.0.3 on port 1883. -1612405980: Sending CONNACK to 172.18.0.3 (0, 5) -1612405980: Socket error on client , disconnecting. -1612406000: New connection from 172.18.0.3 on port 1883. -1612406000: Sending CONNACK to 172.18.0.3 (0, 5) -1612406000: Socket error on client , disconnecting. -1612406020: New connection from 172.18.0.3 on port 1883. -1612406020: Sending CONNACK to 172.18.0.3 (0, 5) -1612406020: Socket error on client , disconnecting. -1612406040: New connection from 172.18.0.3 on port 1883. -1612406040: Sending CONNACK to 172.18.0.3 (0, 5) -1612406040: Socket error on client , disconnecting. -1612406060: New connection from 172.18.0.3 on port 1883. -1612406060: Sending CONNACK to 172.18.0.3 (0, 5) -1612406060: Socket error on client , disconnecting. -1612406080: New connection from 172.18.0.3 on port 1883. -1612406080: Sending CONNACK to 172.18.0.3 (0, 5) -1612406080: Socket error on client , disconnecting. -1612406100: New connection from 172.18.0.3 on port 1883. -1612406100: Sending CONNACK to 172.18.0.3 (0, 5) -1612406100: Socket error on client , disconnecting. -1612406120: New connection from 172.18.0.3 on port 1883. -1612406120: Sending CONNACK to 172.18.0.3 (0, 5) -1612406120: Socket error on client , disconnecting. -1612406140: New connection from 172.18.0.3 on port 1883. -1612406140: Sending CONNACK to 172.18.0.3 (0, 5) -1612406140: Socket error on client , disconnecting. -1612406160: New connection from 172.18.0.3 on port 1883. -1612406160: Sending CONNACK to 172.18.0.3 (0, 5) -1612406160: Socket error on client , disconnecting. -1612406180: New connection from 172.18.0.3 on port 1883. -1612406180: Sending CONNACK to 172.18.0.3 (0, 5) -1612406180: Socket error on client , disconnecting. -1612406200: New connection from 172.18.0.3 on port 1883. -1612406200: Sending CONNACK to 172.18.0.3 (0, 5) -1612406200: Socket error on client , disconnecting. -1612406220: New connection from 172.18.0.3 on port 1883. -1612406220: Sending CONNACK to 172.18.0.3 (0, 5) -1612406220: Socket error on client , disconnecting. -1612406240: New connection from 172.18.0.3 on port 1883. -1612406240: Sending CONNACK to 172.18.0.3 (0, 5) -1612406240: Socket error on client , disconnecting. -1612406260: New connection from 172.18.0.3 on port 1883. -1612406260: Sending CONNACK to 172.18.0.3 (0, 5) -1612406260: Socket error on client , disconnecting. -1612406280: New connection from 172.18.0.3 on port 1883. -1612406280: Sending CONNACK to 172.18.0.3 (0, 5) -1612406280: Socket error on client , disconnecting. -1612406300: New connection from 172.18.0.3 on port 1883. -1612406300: Sending CONNACK to 172.18.0.3 (0, 5) -1612406300: Socket error on client , disconnecting. -1612406320: New connection from 172.18.0.3 on port 1883. -1612406320: Sending CONNACK to 172.18.0.3 (0, 5) -1612406320: Socket error on client , disconnecting. -1612406340: New connection from 172.18.0.3 on port 1883. -1612406340: Sending CONNACK to 172.18.0.3 (0, 5) -1612406340: Socket error on client , disconnecting. -1612406360: New connection from 172.18.0.3 on port 1883. -1612406360: Sending CONNACK to 172.18.0.3 (0, 5) -1612406360: Socket error on client , disconnecting. -1612406380: New connection from 172.18.0.3 on port 1883. -1612406380: Sending CONNACK to 172.18.0.3 (0, 5) -1612406380: Socket error on client , disconnecting. -1612406400: New connection from 172.18.0.3 on port 1883. -1612406400: Sending CONNACK to 172.18.0.3 (0, 5) -1612406400: Socket error on client , disconnecting. -1612406420: New connection from 172.18.0.3 on port 1883. -1612406420: Sending CONNACK to 172.18.0.3 (0, 5) -1612406420: Socket error on client , disconnecting. -1612406440: New connection from 172.18.0.3 on port 1883. -1612406440: Sending CONNACK to 172.18.0.3 (0, 5) -1612406440: Socket error on client , disconnecting. -1612406460: New connection from 172.18.0.3 on port 1883. -1612406460: Sending CONNACK to 172.18.0.3 (0, 5) -1612406460: Socket error on client , disconnecting. -1612406480: New connection from 172.18.0.3 on port 1883. -1612406480: Sending CONNACK to 172.18.0.3 (0, 5) -1612406480: Socket error on client , disconnecting. -1612406500: New connection from 172.18.0.3 on port 1883. -1612406500: Sending CONNACK to 172.18.0.3 (0, 5) -1612406500: Socket error on client , disconnecting. -1612406520: New connection from 172.18.0.3 on port 1883. -1612406520: Sending CONNACK to 172.18.0.3 (0, 5) -1612406520: Socket error on client , disconnecting. -1612406540: New connection from 172.18.0.3 on port 1883. -1612406540: Sending CONNACK to 172.18.0.3 (0, 5) -1612406540: Socket error on client , disconnecting. -1612406560: New connection from 172.18.0.3 on port 1883. -1612406560: Sending CONNACK to 172.18.0.3 (0, 5) -1612406560: Socket error on client , disconnecting. -1612406580: New connection from 172.18.0.3 on port 1883. -1612406580: Sending CONNACK to 172.18.0.3 (0, 5) -1612406580: Socket error on client , disconnecting. -1612406600: New connection from 172.18.0.3 on port 1883. -1612406600: Sending CONNACK to 172.18.0.3 (0, 5) -1612406600: Socket error on client , disconnecting. -1612406620: New connection from 172.18.0.3 on port 1883. -1612406620: Sending CONNACK to 172.18.0.3 (0, 5) -1612406620: Socket error on client , disconnecting. -1612406640: New connection from 172.18.0.3 on port 1883. -1612406640: Sending CONNACK to 172.18.0.3 (0, 5) -1612406640: Socket error on client , disconnecting. -1612406660: New connection from 172.18.0.3 on port 1883. -1612406660: Sending CONNACK to 172.18.0.3 (0, 5) -1612406660: Socket error on client , disconnecting. -1612406680: New connection from 172.18.0.3 on port 1883. -1612406680: Sending CONNACK to 172.18.0.3 (0, 5) -1612406680: Socket error on client , disconnecting. -1612406700: New connection from 172.18.0.3 on port 1883. -1612406700: Sending CONNACK to 172.18.0.3 (0, 5) -1612406700: Socket error on client , disconnecting. -1612406720: New connection from 172.18.0.3 on port 1883. -1612406720: Sending CONNACK to 172.18.0.3 (0, 5) -1612406720: Socket error on client , disconnecting. -1612406740: New connection from 172.18.0.3 on port 1883. -1612406740: Sending CONNACK to 172.18.0.3 (0, 5) -1612406740: Socket error on client , disconnecting. -1612406760: New connection from 172.18.0.3 on port 1883. -1612406760: Sending CONNACK to 172.18.0.3 (0, 5) -1612406760: Socket error on client , disconnecting. -1612406780: New connection from 172.18.0.3 on port 1883. -1612406780: Sending CONNACK to 172.18.0.3 (0, 5) -1612406780: Socket error on client , disconnecting. -1612406795: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612406795: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612406795: Error: Permission denied. -1612406800: New connection from 172.18.0.3 on port 1883. -1612406800: Sending CONNACK to 172.18.0.3 (0, 5) -1612406800: Socket error on client , disconnecting. -1612406820: New connection from 172.18.0.3 on port 1883. -1612406820: Sending CONNACK to 172.18.0.3 (0, 5) -1612406820: Socket error on client , disconnecting. -1612406840: New connection from 172.18.0.3 on port 1883. -1612406840: Sending CONNACK to 172.18.0.3 (0, 5) -1612406840: Socket error on client , disconnecting. -1612406860: New connection from 172.18.0.3 on port 1883. -1612406860: Sending CONNACK to 172.18.0.3 (0, 5) -1612406860: Socket error on client , disconnecting. -1612406880: New connection from 172.18.0.3 on port 1883. -1612406880: Sending CONNACK to 172.18.0.3 (0, 5) -1612406880: Socket error on client , disconnecting. -1612406900: New connection from 172.18.0.3 on port 1883. -1612406900: Sending CONNACK to 172.18.0.3 (0, 5) -1612406900: Socket error on client , disconnecting. -1612406920: New connection from 172.18.0.3 on port 1883. -1612406920: Sending CONNACK to 172.18.0.3 (0, 5) -1612406920: Socket error on client , disconnecting. -1612406940: New connection from 172.18.0.3 on port 1883. -1612406940: Sending CONNACK to 172.18.0.3 (0, 5) -1612406940: Socket error on client , disconnecting. -1612406960: New connection from 172.18.0.3 on port 1883. -1612406960: Sending CONNACK to 172.18.0.3 (0, 5) -1612406960: Socket error on client , disconnecting. -1612406980: New connection from 172.18.0.3 on port 1883. -1612406980: Sending CONNACK to 172.18.0.3 (0, 5) -1612406980: Socket error on client , disconnecting. -1612407000: New connection from 172.18.0.3 on port 1883. -1612407000: Sending CONNACK to 172.18.0.3 (0, 5) -1612407000: Socket error on client , disconnecting. -1612407020: New connection from 172.18.0.3 on port 1883. -1612407020: Sending CONNACK to 172.18.0.3 (0, 5) -1612407020: Socket error on client , disconnecting. -1612407040: New connection from 172.18.0.3 on port 1883. -1612407040: Sending CONNACK to 172.18.0.3 (0, 5) -1612407040: Socket error on client , disconnecting. -1612407060: New connection from 172.18.0.3 on port 1883. -1612407060: Sending CONNACK to 172.18.0.3 (0, 5) -1612407060: Socket error on client , disconnecting. -1612407080: New connection from 172.18.0.3 on port 1883. -1612407080: Sending CONNACK to 172.18.0.3 (0, 5) -1612407080: Socket error on client , disconnecting. -1612407100: New connection from 172.18.0.3 on port 1883. -1612407100: Sending CONNACK to 172.18.0.3 (0, 5) -1612407100: Socket error on client , disconnecting. -1612407120: New connection from 172.18.0.3 on port 1883. -1612407120: Sending CONNACK to 172.18.0.3 (0, 5) -1612407120: Socket error on client , disconnecting. -1612407140: New connection from 172.18.0.3 on port 1883. -1612407140: Sending CONNACK to 172.18.0.3 (0, 5) -1612407140: Socket error on client , disconnecting. -1612407160: New connection from 172.18.0.3 on port 1883. -1612407160: Sending CONNACK to 172.18.0.3 (0, 5) -1612407160: Socket error on client , disconnecting. -1612407180: New connection from 172.18.0.3 on port 1883. -1612407180: Sending CONNACK to 172.18.0.3 (0, 5) -1612407180: Socket error on client , disconnecting. -1612407200: New connection from 172.18.0.3 on port 1883. -1612407200: Sending CONNACK to 172.18.0.3 (0, 5) -1612407200: Socket error on client , disconnecting. -1612407220: New connection from 172.18.0.3 on port 1883. -1612407220: Sending CONNACK to 172.18.0.3 (0, 5) -1612407220: Socket error on client , disconnecting. -1612407240: New connection from 172.18.0.3 on port 1883. -1612407240: Sending CONNACK to 172.18.0.3 (0, 5) -1612407240: Socket error on client , disconnecting. -1612407260: New connection from 172.18.0.3 on port 1883. -1612407260: Sending CONNACK to 172.18.0.3 (0, 5) -1612407260: Socket error on client , disconnecting. -1612407280: New connection from 172.18.0.3 on port 1883. -1612407280: Sending CONNACK to 172.18.0.3 (0, 5) -1612407280: Socket error on client , disconnecting. -1612407300: New connection from 172.18.0.3 on port 1883. -1612407300: Sending CONNACK to 172.18.0.3 (0, 5) -1612407300: Socket error on client , disconnecting. -1612407320: New connection from 172.18.0.3 on port 1883. -1612407320: Sending CONNACK to 172.18.0.3 (0, 5) -1612407320: Socket error on client , disconnecting. -1612407340: New connection from 172.18.0.3 on port 1883. -1612407340: Sending CONNACK to 172.18.0.3 (0, 5) -1612407340: Socket error on client , disconnecting. -1612407360: New connection from 172.18.0.3 on port 1883. -1612407360: Sending CONNACK to 172.18.0.3 (0, 5) -1612407360: Socket error on client , disconnecting. -1612407380: New connection from 172.18.0.3 on port 1883. -1612407380: Sending CONNACK to 172.18.0.3 (0, 5) -1612407380: Socket error on client , disconnecting. -1612407400: New connection from 172.18.0.3 on port 1883. -1612407400: Sending CONNACK to 172.18.0.3 (0, 5) -1612407400: Socket error on client , disconnecting. -1612407420: New connection from 172.18.0.3 on port 1883. -1612407420: Sending CONNACK to 172.18.0.3 (0, 5) -1612407420: Socket error on client , disconnecting. -1612407440: New connection from 172.18.0.3 on port 1883. -1612407440: Sending CONNACK to 172.18.0.3 (0, 5) -1612407440: Socket error on client , disconnecting. -1612407460: New connection from 172.18.0.3 on port 1883. -1612407460: Sending CONNACK to 172.18.0.3 (0, 5) -1612407460: Socket error on client , disconnecting. -1612407480: New connection from 172.18.0.3 on port 1883. -1612407480: Sending CONNACK to 172.18.0.3 (0, 5) -1612407480: Socket error on client , disconnecting. -1612407500: New connection from 172.18.0.3 on port 1883. -1612407500: Sending CONNACK to 172.18.0.3 (0, 5) -1612407500: Socket error on client , disconnecting. -1612407520: New connection from 172.18.0.3 on port 1883. -1612407520: Sending CONNACK to 172.18.0.3 (0, 5) -1612407520: Socket error on client , disconnecting. -1612407540: New connection from 172.18.0.3 on port 1883. -1612407540: Sending CONNACK to 172.18.0.3 (0, 5) -1612407540: Socket error on client , disconnecting. -1612407560: New connection from 172.18.0.3 on port 1883. -1612407560: Sending CONNACK to 172.18.0.3 (0, 5) -1612407560: Socket error on client , disconnecting. -1612407580: New connection from 172.18.0.3 on port 1883. -1612407580: Sending CONNACK to 172.18.0.3 (0, 5) -1612407580: Socket error on client , disconnecting. -1612407600: New connection from 172.18.0.3 on port 1883. -1612407600: Sending CONNACK to 172.18.0.3 (0, 5) -1612407600: Socket error on client , disconnecting. -1612407620: New connection from 172.18.0.3 on port 1883. -1612407620: Sending CONNACK to 172.18.0.3 (0, 5) -1612407620: Socket error on client , disconnecting. -1612407640: New connection from 172.18.0.3 on port 1883. -1612407640: Sending CONNACK to 172.18.0.3 (0, 5) -1612407640: Socket error on client , disconnecting. -1612407660: New connection from 172.18.0.3 on port 1883. -1612407660: Sending CONNACK to 172.18.0.3 (0, 5) -1612407660: Socket error on client , disconnecting. -1612407680: New connection from 172.18.0.3 on port 1883. -1612407680: Sending CONNACK to 172.18.0.3 (0, 5) -1612407680: Socket error on client , disconnecting. -1612407700: New connection from 172.18.0.3 on port 1883. -1612407700: Sending CONNACK to 172.18.0.3 (0, 5) -1612407700: Socket error on client , disconnecting. -1612407720: New connection from 172.18.0.3 on port 1883. -1612407720: Sending CONNACK to 172.18.0.3 (0, 5) -1612407720: Socket error on client , disconnecting. -1612407740: New connection from 172.18.0.3 on port 1883. -1612407740: Sending CONNACK to 172.18.0.3 (0, 5) -1612407740: Socket error on client , disconnecting. -1612407760: New connection from 172.18.0.3 on port 1883. -1612407760: Sending CONNACK to 172.18.0.3 (0, 5) -1612407760: Socket error on client , disconnecting. -1612407780: New connection from 172.18.0.3 on port 1883. -1612407780: Sending CONNACK to 172.18.0.3 (0, 5) -1612407780: Socket error on client , disconnecting. -1612407800: New connection from 172.18.0.3 on port 1883. -1612407800: Sending CONNACK to 172.18.0.3 (0, 5) -1612407800: Socket error on client , disconnecting. -1612407820: New connection from 172.18.0.3 on port 1883. -1612407820: Sending CONNACK to 172.18.0.3 (0, 5) -1612407820: Socket error on client , disconnecting. -1612407840: New connection from 172.18.0.3 on port 1883. -1612407840: Sending CONNACK to 172.18.0.3 (0, 5) -1612407840: Socket error on client , disconnecting. -1612407860: New connection from 172.18.0.3 on port 1883. -1612407860: Sending CONNACK to 172.18.0.3 (0, 5) -1612407860: Socket error on client , disconnecting. -1612407880: New connection from 172.18.0.3 on port 1883. -1612407880: Sending CONNACK to 172.18.0.3 (0, 5) -1612407880: Socket error on client , disconnecting. -1612407900: New connection from 172.18.0.3 on port 1883. -1612407900: Sending CONNACK to 172.18.0.3 (0, 5) -1612407900: Socket error on client , disconnecting. -1612407920: New connection from 172.18.0.3 on port 1883. -1612407920: Sending CONNACK to 172.18.0.3 (0, 5) -1612407920: Socket error on client , disconnecting. -1612407940: New connection from 172.18.0.3 on port 1883. -1612407940: Sending CONNACK to 172.18.0.3 (0, 5) -1612407940: Socket error on client , disconnecting. -1612407960: New connection from 172.18.0.3 on port 1883. -1612407960: Sending CONNACK to 172.18.0.3 (0, 5) -1612407960: Socket error on client , disconnecting. -1612407980: New connection from 172.18.0.3 on port 1883. -1612407980: Sending CONNACK to 172.18.0.3 (0, 5) -1612407980: Socket error on client , disconnecting. -1612408000: New connection from 172.18.0.3 on port 1883. -1612408000: Sending CONNACK to 172.18.0.3 (0, 5) -1612408000: Socket error on client , disconnecting. -1612408020: New connection from 172.18.0.3 on port 1883. -1612408020: Sending CONNACK to 172.18.0.3 (0, 5) -1612408020: Socket error on client , disconnecting. -1612408040: New connection from 172.18.0.3 on port 1883. -1612408040: Sending CONNACK to 172.18.0.3 (0, 5) -1612408040: Socket error on client , disconnecting. -1612408060: New connection from 172.18.0.3 on port 1883. -1612408060: Sending CONNACK to 172.18.0.3 (0, 5) -1612408060: Socket error on client , disconnecting. -1612408080: New connection from 172.18.0.3 on port 1883. -1612408080: Sending CONNACK to 172.18.0.3 (0, 5) -1612408080: Socket error on client , disconnecting. -1612408100: New connection from 172.18.0.3 on port 1883. -1612408100: Sending CONNACK to 172.18.0.3 (0, 5) -1612408100: Socket error on client , disconnecting. -1612408120: New connection from 172.18.0.3 on port 1883. -1612408120: Sending CONNACK to 172.18.0.3 (0, 5) -1612408120: Socket error on client , disconnecting. -1612408140: New connection from 172.18.0.3 on port 1883. -1612408140: Sending CONNACK to 172.18.0.3 (0, 5) -1612408140: Socket error on client , disconnecting. -1612408160: New connection from 172.18.0.3 on port 1883. -1612408160: Sending CONNACK to 172.18.0.3 (0, 5) -1612408160: Socket error on client , disconnecting. -1612408180: New connection from 172.18.0.3 on port 1883. -1612408180: Sending CONNACK to 172.18.0.3 (0, 5) -1612408180: Socket error on client , disconnecting. -1612408200: New connection from 172.18.0.3 on port 1883. -1612408200: Sending CONNACK to 172.18.0.3 (0, 5) -1612408200: Socket error on client , disconnecting. -1612408220: New connection from 172.18.0.3 on port 1883. -1612408220: Sending CONNACK to 172.18.0.3 (0, 5) -1612408220: Socket error on client , disconnecting. -1612408240: New connection from 172.18.0.3 on port 1883. -1612408240: Sending CONNACK to 172.18.0.3 (0, 5) -1612408240: Socket error on client , disconnecting. -1612408260: New connection from 172.18.0.3 on port 1883. -1612408260: Sending CONNACK to 172.18.0.3 (0, 5) -1612408260: Socket error on client , disconnecting. -1612408280: New connection from 172.18.0.3 on port 1883. -1612408280: Sending CONNACK to 172.18.0.3 (0, 5) -1612408280: Socket error on client , disconnecting. -1612408300: New connection from 172.18.0.3 on port 1883. -1612408300: Sending CONNACK to 172.18.0.3 (0, 5) -1612408300: Socket error on client , disconnecting. -1612408320: New connection from 172.18.0.3 on port 1883. -1612408320: Sending CONNACK to 172.18.0.3 (0, 5) -1612408320: Socket error on client , disconnecting. -1612408340: New connection from 172.18.0.3 on port 1883. -1612408340: Sending CONNACK to 172.18.0.3 (0, 5) -1612408340: Socket error on client , disconnecting. -1612408360: New connection from 172.18.0.3 on port 1883. -1612408360: Sending CONNACK to 172.18.0.3 (0, 5) -1612408360: Socket error on client , disconnecting. -1612408380: New connection from 172.18.0.3 on port 1883. -1612408380: Sending CONNACK to 172.18.0.3 (0, 5) -1612408380: Socket error on client , disconnecting. -1612408400: New connection from 172.18.0.3 on port 1883. -1612408400: Sending CONNACK to 172.18.0.3 (0, 5) -1612408400: Socket error on client , disconnecting. -1612408420: New connection from 172.18.0.3 on port 1883. -1612408420: Sending CONNACK to 172.18.0.3 (0, 5) -1612408420: Socket error on client , disconnecting. -1612408440: New connection from 172.18.0.3 on port 1883. -1612408440: Sending CONNACK to 172.18.0.3 (0, 5) -1612408440: Socket error on client , disconnecting. -1612408460: New connection from 172.18.0.3 on port 1883. -1612408460: Sending CONNACK to 172.18.0.3 (0, 5) -1612408460: Socket error on client , disconnecting. -1612408480: New connection from 172.18.0.3 on port 1883. -1612408480: Sending CONNACK to 172.18.0.3 (0, 5) -1612408480: Socket error on client , disconnecting. -1612408500: New connection from 172.18.0.3 on port 1883. -1612408500: Sending CONNACK to 172.18.0.3 (0, 5) -1612408500: Socket error on client , disconnecting. -1612408520: New connection from 172.18.0.3 on port 1883. -1612408520: Sending CONNACK to 172.18.0.3 (0, 5) -1612408520: Socket error on client , disconnecting. -1612408540: New connection from 172.18.0.3 on port 1883. -1612408540: Sending CONNACK to 172.18.0.3 (0, 5) -1612408540: Socket error on client , disconnecting. -1612408560: New connection from 172.18.0.3 on port 1883. -1612408560: Sending CONNACK to 172.18.0.3 (0, 5) -1612408560: Socket error on client , disconnecting. -1612408580: New connection from 172.18.0.3 on port 1883. -1612408580: Sending CONNACK to 172.18.0.3 (0, 5) -1612408580: Socket error on client , disconnecting. -1612408596: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612408596: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612408596: Error: Permission denied. -1612408600: New connection from 172.18.0.3 on port 1883. -1612408600: Sending CONNACK to 172.18.0.3 (0, 5) -1612408600: Socket error on client , disconnecting. -1612408620: New connection from 172.18.0.3 on port 1883. -1612408620: Sending CONNACK to 172.18.0.3 (0, 5) -1612408620: Socket error on client , disconnecting. -1612408640: New connection from 172.18.0.3 on port 1883. -1612408640: Sending CONNACK to 172.18.0.3 (0, 5) -1612408640: Socket error on client , disconnecting. -1612408660: New connection from 172.18.0.3 on port 1883. -1612408660: Sending CONNACK to 172.18.0.3 (0, 5) -1612408660: Socket error on client , disconnecting. -1612408680: New connection from 172.18.0.3 on port 1883. -1612408680: Sending CONNACK to 172.18.0.3 (0, 5) -1612408680: Socket error on client , disconnecting. -1612408700: New connection from 172.18.0.3 on port 1883. -1612408700: Sending CONNACK to 172.18.0.3 (0, 5) -1612408700: Socket error on client , disconnecting. -1612408720: New connection from 172.18.0.3 on port 1883. -1612408720: Sending CONNACK to 172.18.0.3 (0, 5) -1612408720: Socket error on client , disconnecting. -1612408740: New connection from 172.18.0.3 on port 1883. -1612408740: Sending CONNACK to 172.18.0.3 (0, 5) -1612408740: Socket error on client , disconnecting. -1612408760: New connection from 172.18.0.3 on port 1883. -1612408760: Sending CONNACK to 172.18.0.3 (0, 5) -1612408760: Socket error on client , disconnecting. -1612408780: New connection from 172.18.0.3 on port 1883. -1612408780: Sending CONNACK to 172.18.0.3 (0, 5) -1612408780: Socket error on client , disconnecting. -1612408800: New connection from 172.18.0.3 on port 1883. -1612408800: Sending CONNACK to 172.18.0.3 (0, 5) -1612408800: Socket error on client , disconnecting. -1612408820: New connection from 172.18.0.3 on port 1883. -1612408820: Sending CONNACK to 172.18.0.3 (0, 5) -1612408820: Socket error on client , disconnecting. -1612408840: New connection from 172.18.0.3 on port 1883. -1612408840: Sending CONNACK to 172.18.0.3 (0, 5) -1612408840: Socket error on client , disconnecting. -1612408860: New connection from 172.18.0.3 on port 1883. -1612408860: Sending CONNACK to 172.18.0.3 (0, 5) -1612408860: Socket error on client , disconnecting. -1612408880: New connection from 172.18.0.3 on port 1883. -1612408880: Sending CONNACK to 172.18.0.3 (0, 5) -1612408880: Socket error on client , disconnecting. -1612408900: New connection from 172.18.0.3 on port 1883. -1612408900: Sending CONNACK to 172.18.0.3 (0, 5) -1612408900: Socket error on client , disconnecting. -1612408920: New connection from 172.18.0.3 on port 1883. -1612408920: Sending CONNACK to 172.18.0.3 (0, 5) -1612408920: Socket error on client , disconnecting. -1612408940: New connection from 172.18.0.3 on port 1883. -1612408940: Sending CONNACK to 172.18.0.3 (0, 5) -1612408940: Socket error on client , disconnecting. -1612408960: New connection from 172.18.0.3 on port 1883. -1612408960: Sending CONNACK to 172.18.0.3 (0, 5) -1612408960: Socket error on client , disconnecting. -1612408980: New connection from 172.18.0.3 on port 1883. -1612408980: Sending CONNACK to 172.18.0.3 (0, 5) -1612408980: Socket error on client , disconnecting. -1612409000: New connection from 172.18.0.3 on port 1883. -1612409000: Sending CONNACK to 172.18.0.3 (0, 5) -1612409000: Socket error on client , disconnecting. -1612409020: New connection from 172.18.0.3 on port 1883. -1612409020: Sending CONNACK to 172.18.0.3 (0, 5) -1612409020: Socket error on client , disconnecting. -1612409040: New connection from 172.18.0.3 on port 1883. -1612409040: Sending CONNACK to 172.18.0.3 (0, 5) -1612409040: Socket error on client , disconnecting. -1612409060: New connection from 172.18.0.3 on port 1883. -1612409060: Sending CONNACK to 172.18.0.3 (0, 5) -1612409060: Socket error on client , disconnecting. -1612409080: New connection from 172.18.0.3 on port 1883. -1612409080: Sending CONNACK to 172.18.0.3 (0, 5) -1612409080: Socket error on client , disconnecting. -1612409100: New connection from 172.18.0.3 on port 1883. -1612409100: Sending CONNACK to 172.18.0.3 (0, 5) -1612409100: Socket error on client , disconnecting. -1612409120: New connection from 172.18.0.3 on port 1883. -1612409120: Sending CONNACK to 172.18.0.3 (0, 5) -1612409120: Socket error on client , disconnecting. -1612409140: New connection from 172.18.0.3 on port 1883. -1612409140: Sending CONNACK to 172.18.0.3 (0, 5) -1612409140: Socket error on client , disconnecting. -1612409160: New connection from 172.18.0.3 on port 1883. -1612409160: Sending CONNACK to 172.18.0.3 (0, 5) -1612409160: Socket error on client , disconnecting. -1612409180: New connection from 172.18.0.3 on port 1883. -1612409180: Sending CONNACK to 172.18.0.3 (0, 5) -1612409180: Socket error on client , disconnecting. -1612409200: New connection from 172.18.0.3 on port 1883. -1612409200: Sending CONNACK to 172.18.0.3 (0, 5) -1612409200: Socket error on client , disconnecting. -1612409220: New connection from 172.18.0.3 on port 1883. -1612409220: Sending CONNACK to 172.18.0.3 (0, 5) -1612409220: Socket error on client , disconnecting. -1612409240: New connection from 172.18.0.3 on port 1883. -1612409240: Sending CONNACK to 172.18.0.3 (0, 5) -1612409240: Socket error on client , disconnecting. -1612409260: New connection from 172.18.0.3 on port 1883. -1612409260: Sending CONNACK to 172.18.0.3 (0, 5) -1612409260: Socket error on client , disconnecting. -1612409280: New connection from 172.18.0.3 on port 1883. -1612409280: Sending CONNACK to 172.18.0.3 (0, 5) -1612409280: Socket error on client , disconnecting. -1612409300: New connection from 172.18.0.3 on port 1883. -1612409300: Sending CONNACK to 172.18.0.3 (0, 5) -1612409300: Socket error on client , disconnecting. -1612409320: New connection from 172.18.0.3 on port 1883. -1612409320: Sending CONNACK to 172.18.0.3 (0, 5) -1612409320: Socket error on client , disconnecting. -1612409340: New connection from 172.18.0.3 on port 1883. -1612409340: Sending CONNACK to 172.18.0.3 (0, 5) -1612409340: Socket error on client , disconnecting. -1612409360: New connection from 172.18.0.3 on port 1883. -1612409360: Sending CONNACK to 172.18.0.3 (0, 5) -1612409360: Socket error on client , disconnecting. -1612409380: New connection from 172.18.0.3 on port 1883. -1612409380: Sending CONNACK to 172.18.0.3 (0, 5) -1612409380: Socket error on client , disconnecting. -1612409400: New connection from 172.18.0.3 on port 1883. -1612409400: Sending CONNACK to 172.18.0.3 (0, 5) -1612409400: Socket error on client , disconnecting. -1612409420: New connection from 172.18.0.3 on port 1883. -1612409420: Sending CONNACK to 172.18.0.3 (0, 5) -1612409420: Socket error on client , disconnecting. -1612409440: New connection from 172.18.0.3 on port 1883. -1612409440: Sending CONNACK to 172.18.0.3 (0, 5) -1612409440: Socket error on client , disconnecting. -1612409460: New connection from 172.18.0.3 on port 1883. -1612409460: Sending CONNACK to 172.18.0.3 (0, 5) -1612409460: Socket error on client , disconnecting. -1612409480: New connection from 172.18.0.3 on port 1883. -1612409480: Sending CONNACK to 172.18.0.3 (0, 5) -1612409480: Socket error on client , disconnecting. -1612409500: New connection from 172.18.0.3 on port 1883. -1612409500: Sending CONNACK to 172.18.0.3 (0, 5) -1612409500: Socket error on client , disconnecting. -1612409520: New connection from 172.18.0.3 on port 1883. -1612409520: Sending CONNACK to 172.18.0.3 (0, 5) -1612409520: Socket error on client , disconnecting. -1612409540: New connection from 172.18.0.3 on port 1883. -1612409540: Sending CONNACK to 172.18.0.3 (0, 5) -1612409540: Socket error on client , disconnecting. -1612409560: New connection from 172.18.0.3 on port 1883. -1612409560: Sending CONNACK to 172.18.0.3 (0, 5) -1612409560: Socket error on client , disconnecting. -1612409580: New connection from 172.18.0.3 on port 1883. -1612409580: Sending CONNACK to 172.18.0.3 (0, 5) -1612409580: Socket error on client , disconnecting. -1612409600: New connection from 172.18.0.3 on port 1883. -1612409600: Sending CONNACK to 172.18.0.3 (0, 5) -1612409600: Socket error on client , disconnecting. -1612409620: New connection from 172.18.0.3 on port 1883. -1612409620: Sending CONNACK to 172.18.0.3 (0, 5) -1612409620: Socket error on client , disconnecting. -1612409640: New connection from 172.18.0.3 on port 1883. -1612409640: Sending CONNACK to 172.18.0.3 (0, 5) -1612409640: Socket error on client , disconnecting. -1612409660: New connection from 172.18.0.3 on port 1883. -1612409660: Sending CONNACK to 172.18.0.3 (0, 5) -1612409660: Socket error on client , disconnecting. -1612409680: New connection from 172.18.0.3 on port 1883. -1612409680: Sending CONNACK to 172.18.0.3 (0, 5) -1612409680: Socket error on client , disconnecting. -1612409700: New connection from 172.18.0.3 on port 1883. -1612409700: Sending CONNACK to 172.18.0.3 (0, 5) -1612409700: Socket error on client , disconnecting. -1612409720: New connection from 172.18.0.3 on port 1883. -1612409720: Sending CONNACK to 172.18.0.3 (0, 5) -1612409720: Socket error on client , disconnecting. -1612409740: New connection from 172.18.0.3 on port 1883. -1612409740: Sending CONNACK to 172.18.0.3 (0, 5) -1612409740: Socket error on client , disconnecting. -1612409760: New connection from 172.18.0.3 on port 1883. -1612409760: Sending CONNACK to 172.18.0.3 (0, 5) -1612409760: Socket error on client , disconnecting. -1612409780: New connection from 172.18.0.3 on port 1883. -1612409780: Sending CONNACK to 172.18.0.3 (0, 5) -1612409780: Socket error on client , disconnecting. -1612409800: New connection from 172.18.0.3 on port 1883. -1612409800: Sending CONNACK to 172.18.0.3 (0, 5) -1612409800: Socket error on client , disconnecting. -1612409820: New connection from 172.18.0.3 on port 1883. -1612409820: Sending CONNACK to 172.18.0.3 (0, 5) -1612409820: Socket error on client , disconnecting. -1612409840: New connection from 172.18.0.3 on port 1883. -1612409840: Sending CONNACK to 172.18.0.3 (0, 5) -1612409840: Socket error on client , disconnecting. -1612409860: New connection from 172.18.0.3 on port 1883. -1612409860: Sending CONNACK to 172.18.0.3 (0, 5) -1612409860: Socket error on client , disconnecting. -1612409880: New connection from 172.18.0.3 on port 1883. -1612409880: Sending CONNACK to 172.18.0.3 (0, 5) -1612409880: Socket error on client , disconnecting. -1612409900: New connection from 172.18.0.3 on port 1883. -1612409900: Sending CONNACK to 172.18.0.3 (0, 5) -1612409900: Socket error on client , disconnecting. -1612409920: New connection from 172.18.0.3 on port 1883. -1612409920: Sending CONNACK to 172.18.0.3 (0, 5) -1612409920: Socket error on client , disconnecting. -1612409940: New connection from 172.18.0.3 on port 1883. -1612409940: Sending CONNACK to 172.18.0.3 (0, 5) -1612409940: Socket error on client , disconnecting. -1612409960: New connection from 172.18.0.3 on port 1883. -1612409960: Sending CONNACK to 172.18.0.3 (0, 5) -1612409960: Socket error on client , disconnecting. -1612409980: New connection from 172.18.0.3 on port 1883. -1612409980: Sending CONNACK to 172.18.0.3 (0, 5) -1612409980: Socket error on client , disconnecting. -1612410000: New connection from 172.18.0.3 on port 1883. -1612410000: Sending CONNACK to 172.18.0.3 (0, 5) -1612410000: Socket error on client , disconnecting. -1612410020: New connection from 172.18.0.3 on port 1883. -1612410020: Sending CONNACK to 172.18.0.3 (0, 5) -1612410020: Socket error on client , disconnecting. -1612410040: New connection from 172.18.0.3 on port 1883. -1612410040: Sending CONNACK to 172.18.0.3 (0, 5) -1612410040: Socket error on client , disconnecting. -1612410060: New connection from 172.18.0.3 on port 1883. -1612410060: Sending CONNACK to 172.18.0.3 (0, 5) -1612410060: Socket error on client , disconnecting. -1612410080: New connection from 172.18.0.3 on port 1883. -1612410080: Sending CONNACK to 172.18.0.3 (0, 5) -1612410080: Socket error on client , disconnecting. -1612410100: New connection from 172.18.0.3 on port 1883. -1612410100: Sending CONNACK to 172.18.0.3 (0, 5) -1612410100: Socket error on client , disconnecting. -1612410120: New connection from 172.18.0.3 on port 1883. -1612410120: Sending CONNACK to 172.18.0.3 (0, 5) -1612410120: Socket error on client , disconnecting. -1612410140: New connection from 172.18.0.3 on port 1883. -1612410140: Sending CONNACK to 172.18.0.3 (0, 5) -1612410140: Socket error on client , disconnecting. -1612410160: New connection from 172.18.0.3 on port 1883. -1612410160: Sending CONNACK to 172.18.0.3 (0, 5) -1612410160: Socket error on client , disconnecting. -1612410180: New connection from 172.18.0.3 on port 1883. -1612410180: Sending CONNACK to 172.18.0.3 (0, 5) -1612410180: Socket error on client , disconnecting. -1612410200: New connection from 172.18.0.3 on port 1883. -1612410200: Sending CONNACK to 172.18.0.3 (0, 5) -1612410200: Socket error on client , disconnecting. -1612410220: New connection from 172.18.0.3 on port 1883. -1612410220: Sending CONNACK to 172.18.0.3 (0, 5) -1612410220: Socket error on client , disconnecting. -1612410240: New connection from 172.18.0.3 on port 1883. -1612410240: Sending CONNACK to 172.18.0.3 (0, 5) -1612410240: Socket error on client , disconnecting. -1612410260: New connection from 172.18.0.3 on port 1883. -1612410260: Sending CONNACK to 172.18.0.3 (0, 5) -1612410260: Socket error on client , disconnecting. -1612410280: New connection from 172.18.0.3 on port 1883. -1612410280: Sending CONNACK to 172.18.0.3 (0, 5) -1612410280: Socket error on client , disconnecting. -1612410300: New connection from 172.18.0.3 on port 1883. -1612410300: Sending CONNACK to 172.18.0.3 (0, 5) -1612410300: Socket error on client , disconnecting. -1612410320: New connection from 172.18.0.3 on port 1883. -1612410320: Sending CONNACK to 172.18.0.3 (0, 5) -1612410320: Socket error on client , disconnecting. -1612410340: New connection from 172.18.0.3 on port 1883. -1612410340: Sending CONNACK to 172.18.0.3 (0, 5) -1612410340: Socket error on client , disconnecting. -1612410360: New connection from 172.18.0.3 on port 1883. -1612410360: Sending CONNACK to 172.18.0.3 (0, 5) -1612410360: Socket error on client , disconnecting. -1612410380: New connection from 172.18.0.3 on port 1883. -1612410380: Sending CONNACK to 172.18.0.3 (0, 5) -1612410380: Socket error on client , disconnecting. -1612410397: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612410397: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612410397: Error: Permission denied. -1612410400: New connection from 172.18.0.3 on port 1883. -1612410400: Sending CONNACK to 172.18.0.3 (0, 5) -1612410400: Socket error on client , disconnecting. -1612410420: New connection from 172.18.0.3 on port 1883. -1612410420: Sending CONNACK to 172.18.0.3 (0, 5) -1612410420: Socket error on client , disconnecting. -1612410440: New connection from 172.18.0.3 on port 1883. -1612410440: Sending CONNACK to 172.18.0.3 (0, 5) -1612410440: Socket error on client , disconnecting. -1612410460: New connection from 172.18.0.3 on port 1883. -1612410460: Sending CONNACK to 172.18.0.3 (0, 5) -1612410460: Socket error on client , disconnecting. -1612410480: New connection from 172.18.0.3 on port 1883. -1612410480: Sending CONNACK to 172.18.0.3 (0, 5) -1612410480: Socket error on client , disconnecting. -1612410500: New connection from 172.18.0.3 on port 1883. -1612410500: Sending CONNACK to 172.18.0.3 (0, 5) -1612410500: Socket error on client , disconnecting. -1612410520: New connection from 172.18.0.3 on port 1883. -1612410520: Sending CONNACK to 172.18.0.3 (0, 5) -1612410520: Socket error on client , disconnecting. -1612410540: New connection from 172.18.0.3 on port 1883. -1612410540: Sending CONNACK to 172.18.0.3 (0, 5) -1612410540: Socket error on client , disconnecting. -1612410560: New connection from 172.18.0.3 on port 1883. -1612410560: Sending CONNACK to 172.18.0.3 (0, 5) -1612410560: Socket error on client , disconnecting. -1612410580: New connection from 172.18.0.3 on port 1883. -1612410580: Sending CONNACK to 172.18.0.3 (0, 5) -1612410580: Socket error on client , disconnecting. -1612410600: New connection from 172.18.0.3 on port 1883. -1612410600: Sending CONNACK to 172.18.0.3 (0, 5) -1612410600: Socket error on client , disconnecting. -1612410620: New connection from 172.18.0.3 on port 1883. -1612410620: Sending CONNACK to 172.18.0.3 (0, 5) -1612410620: Socket error on client , disconnecting. -1612410640: New connection from 172.18.0.3 on port 1883. -1612410640: Sending CONNACK to 172.18.0.3 (0, 5) -1612410640: Socket error on client , disconnecting. -1612410660: New connection from 172.18.0.3 on port 1883. -1612410660: Sending CONNACK to 172.18.0.3 (0, 5) -1612410660: Socket error on client , disconnecting. -1612410680: New connection from 172.18.0.3 on port 1883. -1612410680: Sending CONNACK to 172.18.0.3 (0, 5) -1612410680: Socket error on client , disconnecting. -1612410700: New connection from 172.18.0.3 on port 1883. -1612410700: Sending CONNACK to 172.18.0.3 (0, 5) -1612410700: Socket error on client , disconnecting. -1612410720: New connection from 172.18.0.3 on port 1883. -1612410720: Sending CONNACK to 172.18.0.3 (0, 5) -1612410720: Socket error on client , disconnecting. -1612410740: New connection from 172.18.0.3 on port 1883. -1612410740: Sending CONNACK to 172.18.0.3 (0, 5) -1612410740: Socket error on client , disconnecting. -1612410760: New connection from 172.18.0.3 on port 1883. -1612410760: Sending CONNACK to 172.18.0.3 (0, 5) -1612410760: Socket error on client , disconnecting. -1612410780: New connection from 172.18.0.3 on port 1883. -1612410780: Sending CONNACK to 172.18.0.3 (0, 5) -1612410780: Socket error on client , disconnecting. -1612410800: New connection from 172.18.0.3 on port 1883. -1612410800: Sending CONNACK to 172.18.0.3 (0, 5) -1612410800: Socket error on client , disconnecting. -1612410820: New connection from 172.18.0.3 on port 1883. -1612410820: Sending CONNACK to 172.18.0.3 (0, 5) -1612410820: Socket error on client , disconnecting. -1612410840: New connection from 172.18.0.3 on port 1883. -1612410840: Sending CONNACK to 172.18.0.3 (0, 5) -1612410840: Socket error on client , disconnecting. -1612410860: New connection from 172.18.0.3 on port 1883. -1612410860: Sending CONNACK to 172.18.0.3 (0, 5) -1612410860: Socket error on client , disconnecting. -1612410880: New connection from 172.18.0.3 on port 1883. -1612410880: Sending CONNACK to 172.18.0.3 (0, 5) -1612410880: Socket error on client , disconnecting. -1612410900: New connection from 172.18.0.3 on port 1883. -1612410900: Sending CONNACK to 172.18.0.3 (0, 5) -1612410900: Socket error on client , disconnecting. -1612410920: New connection from 172.18.0.3 on port 1883. -1612410920: Sending CONNACK to 172.18.0.3 (0, 5) -1612410920: Socket error on client , disconnecting. -1612410940: New connection from 172.18.0.3 on port 1883. -1612410940: Sending CONNACK to 172.18.0.3 (0, 5) -1612410940: Socket error on client , disconnecting. -1612410960: New connection from 172.18.0.3 on port 1883. -1612410960: Sending CONNACK to 172.18.0.3 (0, 5) -1612410960: Socket error on client , disconnecting. -1612410980: New connection from 172.18.0.3 on port 1883. -1612410980: Sending CONNACK to 172.18.0.3 (0, 5) -1612410980: Socket error on client , disconnecting. -1612411000: New connection from 172.18.0.3 on port 1883. -1612411000: Sending CONNACK to 172.18.0.3 (0, 5) -1612411000: Socket error on client , disconnecting. -1612411020: New connection from 172.18.0.3 on port 1883. -1612411020: Sending CONNACK to 172.18.0.3 (0, 5) -1612411020: Socket error on client , disconnecting. -1612411040: New connection from 172.18.0.3 on port 1883. -1612411040: Sending CONNACK to 172.18.0.3 (0, 5) -1612411040: Socket error on client , disconnecting. -1612411060: New connection from 172.18.0.3 on port 1883. -1612411060: Sending CONNACK to 172.18.0.3 (0, 5) -1612411060: Socket error on client , disconnecting. -1612411080: New connection from 172.18.0.3 on port 1883. -1612411080: Sending CONNACK to 172.18.0.3 (0, 5) -1612411080: Socket error on client , disconnecting. -1612411100: New connection from 172.18.0.3 on port 1883. -1612411100: Sending CONNACK to 172.18.0.3 (0, 5) -1612411100: Socket error on client , disconnecting. -1612411120: New connection from 172.18.0.3 on port 1883. -1612411120: Sending CONNACK to 172.18.0.3 (0, 5) -1612411120: Socket error on client , disconnecting. -1612411140: New connection from 172.18.0.3 on port 1883. -1612411140: Sending CONNACK to 172.18.0.3 (0, 5) -1612411140: Socket error on client , disconnecting. -1612411160: New connection from 172.18.0.3 on port 1883. -1612411160: Sending CONNACK to 172.18.0.3 (0, 5) -1612411160: Socket error on client , disconnecting. -1612411180: New connection from 172.18.0.3 on port 1883. -1612411180: Sending CONNACK to 172.18.0.3 (0, 5) -1612411180: Socket error on client , disconnecting. -1612411200: New connection from 172.18.0.3 on port 1883. -1612411200: Sending CONNACK to 172.18.0.3 (0, 5) -1612411200: Socket error on client , disconnecting. -1612411220: New connection from 172.18.0.3 on port 1883. -1612411220: Sending CONNACK to 172.18.0.3 (0, 5) -1612411220: Socket error on client , disconnecting. -1612411240: New connection from 172.18.0.3 on port 1883. -1612411240: Sending CONNACK to 172.18.0.3 (0, 5) -1612411240: Socket error on client , disconnecting. -1612411260: New connection from 172.18.0.3 on port 1883. -1612411260: Sending CONNACK to 172.18.0.3 (0, 5) -1612411260: Socket error on client , disconnecting. -1612411280: New connection from 172.18.0.3 on port 1883. -1612411280: Sending CONNACK to 172.18.0.3 (0, 5) -1612411280: Socket error on client , disconnecting. -1612411300: New connection from 172.18.0.3 on port 1883. -1612411300: Sending CONNACK to 172.18.0.3 (0, 5) -1612411300: Socket error on client , disconnecting. -1612411320: New connection from 172.18.0.3 on port 1883. -1612411320: Sending CONNACK to 172.18.0.3 (0, 5) -1612411320: Socket error on client , disconnecting. -1612411340: New connection from 172.18.0.3 on port 1883. -1612411340: Sending CONNACK to 172.18.0.3 (0, 5) -1612411340: Socket error on client , disconnecting. -1612411360: New connection from 172.18.0.3 on port 1883. -1612411360: Sending CONNACK to 172.18.0.3 (0, 5) -1612411360: Socket error on client , disconnecting. -1612411380: New connection from 172.18.0.3 on port 1883. -1612411380: Sending CONNACK to 172.18.0.3 (0, 5) -1612411380: Socket error on client , disconnecting. -1612411400: New connection from 172.18.0.3 on port 1883. -1612411400: Sending CONNACK to 172.18.0.3 (0, 5) -1612411400: Socket error on client , disconnecting. -1612411420: New connection from 172.18.0.3 on port 1883. -1612411420: Sending CONNACK to 172.18.0.3 (0, 5) -1612411420: Socket error on client , disconnecting. -1612411440: New connection from 172.18.0.3 on port 1883. -1612411440: Sending CONNACK to 172.18.0.3 (0, 5) -1612411440: Socket error on client , disconnecting. -1612411460: New connection from 172.18.0.3 on port 1883. -1612411460: Sending CONNACK to 172.18.0.3 (0, 5) -1612411460: Socket error on client , disconnecting. -1612411480: New connection from 172.18.0.3 on port 1883. -1612411480: Sending CONNACK to 172.18.0.3 (0, 5) -1612411480: Socket error on client , disconnecting. -1612411500: New connection from 172.18.0.3 on port 1883. -1612411500: Sending CONNACK to 172.18.0.3 (0, 5) -1612411500: Socket error on client , disconnecting. -1612411520: New connection from 172.18.0.3 on port 1883. -1612411520: Sending CONNACK to 172.18.0.3 (0, 5) -1612411520: Socket error on client , disconnecting. -1612411540: New connection from 172.18.0.3 on port 1883. -1612411540: Sending CONNACK to 172.18.0.3 (0, 5) -1612411540: Socket error on client , disconnecting. -1612411560: New connection from 172.18.0.3 on port 1883. -1612411560: Sending CONNACK to 172.18.0.3 (0, 5) -1612411560: Socket error on client , disconnecting. -1612411580: New connection from 172.18.0.3 on port 1883. -1612411580: Sending CONNACK to 172.18.0.3 (0, 5) -1612411580: Socket error on client , disconnecting. -1612411600: New connection from 172.18.0.3 on port 1883. -1612411600: Sending CONNACK to 172.18.0.3 (0, 5) -1612411600: Socket error on client , disconnecting. -1612411620: New connection from 172.18.0.3 on port 1883. -1612411620: Sending CONNACK to 172.18.0.3 (0, 5) -1612411620: Socket error on client , disconnecting. -1612411640: New connection from 172.18.0.3 on port 1883. -1612411640: Sending CONNACK to 172.18.0.3 (0, 5) -1612411640: Socket error on client , disconnecting. -1612411660: New connection from 172.18.0.3 on port 1883. -1612411660: Sending CONNACK to 172.18.0.3 (0, 5) -1612411660: Socket error on client , disconnecting. -1612411680: New connection from 172.18.0.3 on port 1883. -1612411680: Sending CONNACK to 172.18.0.3 (0, 5) -1612411680: Socket error on client , disconnecting. -1612411700: New connection from 172.18.0.3 on port 1883. -1612411700: Sending CONNACK to 172.18.0.3 (0, 5) -1612411700: Socket error on client , disconnecting. -1612411720: New connection from 172.18.0.3 on port 1883. -1612411720: Sending CONNACK to 172.18.0.3 (0, 5) -1612411720: Socket error on client , disconnecting. -1612411740: New connection from 172.18.0.3 on port 1883. -1612411740: Sending CONNACK to 172.18.0.3 (0, 5) -1612411740: Socket error on client , disconnecting. -1612411760: New connection from 172.18.0.3 on port 1883. -1612411760: Sending CONNACK to 172.18.0.3 (0, 5) -1612411760: Socket error on client , disconnecting. -1612411780: New connection from 172.18.0.3 on port 1883. -1612411780: Sending CONNACK to 172.18.0.3 (0, 5) -1612411780: Socket error on client , disconnecting. -1612411800: New connection from 172.18.0.3 on port 1883. -1612411800: Sending CONNACK to 172.18.0.3 (0, 5) -1612411800: Socket error on client , disconnecting. -1612411820: New connection from 172.18.0.3 on port 1883. -1612411820: Sending CONNACK to 172.18.0.3 (0, 5) -1612411820: Socket error on client , disconnecting. -1612411840: New connection from 172.18.0.3 on port 1883. -1612411840: Sending CONNACK to 172.18.0.3 (0, 5) -1612411840: Socket error on client , disconnecting. -1612411860: New connection from 172.18.0.3 on port 1883. -1612411860: Sending CONNACK to 172.18.0.3 (0, 5) -1612411860: Socket error on client , disconnecting. -1612411880: New connection from 172.18.0.3 on port 1883. -1612411880: Sending CONNACK to 172.18.0.3 (0, 5) -1612411880: Socket error on client , disconnecting. -1612411900: New connection from 172.18.0.3 on port 1883. -1612411900: Sending CONNACK to 172.18.0.3 (0, 5) -1612411900: Socket error on client , disconnecting. -1612411920: New connection from 172.18.0.3 on port 1883. -1612411920: Sending CONNACK to 172.18.0.3 (0, 5) -1612411920: Socket error on client , disconnecting. -1612411940: New connection from 172.18.0.3 on port 1883. -1612411940: Sending CONNACK to 172.18.0.3 (0, 5) -1612411940: Socket error on client , disconnecting. -1612411960: New connection from 172.18.0.3 on port 1883. -1612411960: Sending CONNACK to 172.18.0.3 (0, 5) -1612411960: Socket error on client , disconnecting. -1612411980: New connection from 172.18.0.3 on port 1883. -1612411980: Sending CONNACK to 172.18.0.3 (0, 5) -1612411980: Socket error on client , disconnecting. -1612412000: New connection from 172.18.0.3 on port 1883. -1612412000: Sending CONNACK to 172.18.0.3 (0, 5) -1612412000: Socket error on client , disconnecting. -1612412020: New connection from 172.18.0.3 on port 1883. -1612412020: Sending CONNACK to 172.18.0.3 (0, 5) -1612412020: Socket error on client , disconnecting. -1612412040: New connection from 172.18.0.3 on port 1883. -1612412040: Sending CONNACK to 172.18.0.3 (0, 5) -1612412040: Socket error on client , disconnecting. -1612412060: New connection from 172.18.0.3 on port 1883. -1612412060: Sending CONNACK to 172.18.0.3 (0, 5) -1612412060: Socket error on client , disconnecting. -1612412080: New connection from 172.18.0.3 on port 1883. -1612412080: Sending CONNACK to 172.18.0.3 (0, 5) -1612412080: Socket error on client , disconnecting. -1612412100: New connection from 172.18.0.3 on port 1883. -1612412100: Sending CONNACK to 172.18.0.3 (0, 5) -1612412100: Socket error on client , disconnecting. -1612412120: New connection from 172.18.0.3 on port 1883. -1612412120: Sending CONNACK to 172.18.0.3 (0, 5) -1612412120: Socket error on client , disconnecting. -1612412140: New connection from 172.18.0.3 on port 1883. -1612412140: Sending CONNACK to 172.18.0.3 (0, 5) -1612412140: Socket error on client , disconnecting. -1612412160: New connection from 172.18.0.3 on port 1883. -1612412160: Sending CONNACK to 172.18.0.3 (0, 5) -1612412160: Socket error on client , disconnecting. -1612412180: New connection from 172.18.0.3 on port 1883. -1612412180: Sending CONNACK to 172.18.0.3 (0, 5) -1612412180: Socket error on client , disconnecting. -1612412198: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612412198: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612412198: Error: Permission denied. -1612412200: New connection from 172.18.0.3 on port 1883. -1612412200: Sending CONNACK to 172.18.0.3 (0, 5) -1612412200: Socket error on client , disconnecting. -1612412220: New connection from 172.18.0.3 on port 1883. -1612412220: Sending CONNACK to 172.18.0.3 (0, 5) -1612412220: Socket error on client , disconnecting. -1612412240: New connection from 172.18.0.3 on port 1883. -1612412240: Sending CONNACK to 172.18.0.3 (0, 5) -1612412240: Socket error on client , disconnecting. -1612412260: New connection from 172.18.0.3 on port 1883. -1612412260: Sending CONNACK to 172.18.0.3 (0, 5) -1612412260: Socket error on client , disconnecting. -1612412280: New connection from 172.18.0.3 on port 1883. -1612412280: Sending CONNACK to 172.18.0.3 (0, 5) -1612412280: Socket error on client , disconnecting. -1612412300: New connection from 172.18.0.3 on port 1883. -1612412300: Sending CONNACK to 172.18.0.3 (0, 5) -1612412300: Socket error on client , disconnecting. -1612412320: New connection from 172.18.0.3 on port 1883. -1612412320: Sending CONNACK to 172.18.0.3 (0, 5) -1612412320: Socket error on client , disconnecting. -1612412340: New connection from 172.18.0.3 on port 1883. -1612412340: Sending CONNACK to 172.18.0.3 (0, 5) -1612412340: Socket error on client , disconnecting. -1612412360: New connection from 172.18.0.3 on port 1883. -1612412360: Sending CONNACK to 172.18.0.3 (0, 5) -1612412360: Socket error on client , disconnecting. -1612412380: New connection from 172.18.0.3 on port 1883. -1612412380: Sending CONNACK to 172.18.0.3 (0, 5) -1612412380: Socket error on client , disconnecting. -1612412400: New connection from 172.18.0.3 on port 1883. -1612412400: Sending CONNACK to 172.18.0.3 (0, 5) -1612412400: Socket error on client , disconnecting. -1612412420: New connection from 172.18.0.3 on port 1883. -1612412420: Sending CONNACK to 172.18.0.3 (0, 5) -1612412420: Socket error on client , disconnecting. -1612412440: New connection from 172.18.0.3 on port 1883. -1612412440: Sending CONNACK to 172.18.0.3 (0, 5) -1612412440: Socket error on client , disconnecting. -1612412460: New connection from 172.18.0.3 on port 1883. -1612412460: Sending CONNACK to 172.18.0.3 (0, 5) -1612412460: Socket error on client , disconnecting. -1612412480: New connection from 172.18.0.3 on port 1883. -1612412480: Sending CONNACK to 172.18.0.3 (0, 5) -1612412480: Socket error on client , disconnecting. -1612412500: New connection from 172.18.0.3 on port 1883. -1612412500: Sending CONNACK to 172.18.0.3 (0, 5) -1612412500: Socket error on client , disconnecting. -1612412520: New connection from 172.18.0.3 on port 1883. -1612412520: Sending CONNACK to 172.18.0.3 (0, 5) -1612412520: Socket error on client , disconnecting. -1612412540: New connection from 172.18.0.3 on port 1883. -1612412540: Sending CONNACK to 172.18.0.3 (0, 5) -1612412540: Socket error on client , disconnecting. -1612412560: New connection from 172.18.0.3 on port 1883. -1612412560: Sending CONNACK to 172.18.0.3 (0, 5) -1612412560: Socket error on client , disconnecting. -1612412580: New connection from 172.18.0.3 on port 1883. -1612412580: Sending CONNACK to 172.18.0.3 (0, 5) -1612412580: Socket error on client , disconnecting. -1612412600: New connection from 172.18.0.3 on port 1883. -1612412600: Sending CONNACK to 172.18.0.3 (0, 5) -1612412600: Socket error on client , disconnecting. -1612412620: New connection from 172.18.0.3 on port 1883. -1612412620: Sending CONNACK to 172.18.0.3 (0, 5) -1612412620: Socket error on client , disconnecting. -1612412640: New connection from 172.18.0.3 on port 1883. -1612412640: Sending CONNACK to 172.18.0.3 (0, 5) -1612412640: Socket error on client , disconnecting. -1612412660: New connection from 172.18.0.3 on port 1883. -1612412660: Sending CONNACK to 172.18.0.3 (0, 5) -1612412660: Socket error on client , disconnecting. -1612412680: New connection from 172.18.0.3 on port 1883. -1612412680: Sending CONNACK to 172.18.0.3 (0, 5) -1612412680: Socket error on client , disconnecting. -1612412700: New connection from 172.18.0.3 on port 1883. -1612412700: Sending CONNACK to 172.18.0.3 (0, 5) -1612412700: Socket error on client , disconnecting. -1612412720: New connection from 172.18.0.3 on port 1883. -1612412720: Sending CONNACK to 172.18.0.3 (0, 5) -1612412720: Socket error on client , disconnecting. -1612412740: New connection from 172.18.0.3 on port 1883. -1612412740: Sending CONNACK to 172.18.0.3 (0, 5) -1612412740: Socket error on client , disconnecting. -1612412760: New connection from 172.18.0.3 on port 1883. -1612412760: Sending CONNACK to 172.18.0.3 (0, 5) -1612412760: Socket error on client , disconnecting. -1612412780: New connection from 172.18.0.3 on port 1883. -1612412780: Sending CONNACK to 172.18.0.3 (0, 5) -1612412780: Socket error on client , disconnecting. -1612412800: New connection from 172.18.0.3 on port 1883. -1612412800: Sending CONNACK to 172.18.0.3 (0, 5) -1612412800: Socket error on client , disconnecting. -1612412820: New connection from 172.18.0.3 on port 1883. -1612412820: Sending CONNACK to 172.18.0.3 (0, 5) -1612412820: Socket error on client , disconnecting. -1612412840: New connection from 172.18.0.3 on port 1883. -1612412840: Sending CONNACK to 172.18.0.3 (0, 5) -1612412840: Socket error on client , disconnecting. -1612412860: New connection from 172.18.0.3 on port 1883. -1612412860: Sending CONNACK to 172.18.0.3 (0, 5) -1612412860: Socket error on client , disconnecting. -1612412880: New connection from 172.18.0.3 on port 1883. -1612412880: Sending CONNACK to 172.18.0.3 (0, 5) -1612412880: Socket error on client , disconnecting. -1612412900: New connection from 172.18.0.3 on port 1883. -1612412900: Sending CONNACK to 172.18.0.3 (0, 5) -1612412900: Socket error on client , disconnecting. -1612412920: New connection from 172.18.0.3 on port 1883. -1612412920: Sending CONNACK to 172.18.0.3 (0, 5) -1612412920: Socket error on client , disconnecting. -1612412940: New connection from 172.18.0.3 on port 1883. -1612412940: Sending CONNACK to 172.18.0.3 (0, 5) -1612412940: Socket error on client , disconnecting. -1612412960: New connection from 172.18.0.3 on port 1883. -1612412960: Sending CONNACK to 172.18.0.3 (0, 5) -1612412960: Socket error on client , disconnecting. -1612412980: New connection from 172.18.0.3 on port 1883. -1612412980: Sending CONNACK to 172.18.0.3 (0, 5) -1612412980: Socket error on client , disconnecting. -1612413000: New connection from 172.18.0.3 on port 1883. -1612413000: Sending CONNACK to 172.18.0.3 (0, 5) -1612413000: Socket error on client , disconnecting. -1612413020: New connection from 172.18.0.3 on port 1883. -1612413020: Sending CONNACK to 172.18.0.3 (0, 5) -1612413020: Socket error on client , disconnecting. -1612413040: New connection from 172.18.0.3 on port 1883. -1612413040: Sending CONNACK to 172.18.0.3 (0, 5) -1612413040: Socket error on client , disconnecting. -1612413060: New connection from 172.18.0.3 on port 1883. -1612413060: Sending CONNACK to 172.18.0.3 (0, 5) -1612413060: Socket error on client , disconnecting. -1612413080: New connection from 172.18.0.3 on port 1883. -1612413080: Sending CONNACK to 172.18.0.3 (0, 5) -1612413080: Socket error on client , disconnecting. -1612413100: New connection from 172.18.0.3 on port 1883. -1612413100: Sending CONNACK to 172.18.0.3 (0, 5) -1612413100: Socket error on client , disconnecting. -1612413120: New connection from 172.18.0.3 on port 1883. -1612413120: Sending CONNACK to 172.18.0.3 (0, 5) -1612413120: Socket error on client , disconnecting. -1612413140: New connection from 172.18.0.3 on port 1883. -1612413140: Sending CONNACK to 172.18.0.3 (0, 5) -1612413140: Socket error on client , disconnecting. -1612413160: New connection from 172.18.0.3 on port 1883. -1612413160: Sending CONNACK to 172.18.0.3 (0, 5) -1612413160: Socket error on client , disconnecting. -1612413180: New connection from 172.18.0.3 on port 1883. -1612413180: Sending CONNACK to 172.18.0.3 (0, 5) -1612413180: Socket error on client , disconnecting. -1612413200: New connection from 172.18.0.3 on port 1883. -1612413200: Sending CONNACK to 172.18.0.3 (0, 5) -1612413200: Socket error on client , disconnecting. -1612413220: New connection from 172.18.0.3 on port 1883. -1612413220: Sending CONNACK to 172.18.0.3 (0, 5) -1612413220: Socket error on client , disconnecting. -1612413240: New connection from 172.18.0.3 on port 1883. -1612413240: Sending CONNACK to 172.18.0.3 (0, 5) -1612413240: Socket error on client , disconnecting. -1612413260: New connection from 172.18.0.3 on port 1883. -1612413260: Sending CONNACK to 172.18.0.3 (0, 5) -1612413260: Socket error on client , disconnecting. -1612413280: New connection from 172.18.0.3 on port 1883. -1612413280: Sending CONNACK to 172.18.0.3 (0, 5) -1612413280: Socket error on client , disconnecting. -1612413300: New connection from 172.18.0.3 on port 1883. -1612413300: Sending CONNACK to 172.18.0.3 (0, 5) -1612413300: Socket error on client , disconnecting. -1612413320: New connection from 172.18.0.3 on port 1883. -1612413320: Sending CONNACK to 172.18.0.3 (0, 5) -1612413320: Socket error on client , disconnecting. -1612413340: New connection from 172.18.0.3 on port 1883. -1612413340: Sending CONNACK to 172.18.0.3 (0, 5) -1612413340: Socket error on client , disconnecting. -1612413360: New connection from 172.18.0.3 on port 1883. -1612413360: Sending CONNACK to 172.18.0.3 (0, 5) -1612413360: Socket error on client , disconnecting. -1612413380: New connection from 172.18.0.3 on port 1883. -1612413380: Sending CONNACK to 172.18.0.3 (0, 5) -1612413380: Socket error on client , disconnecting. -1612413400: New connection from 172.18.0.3 on port 1883. -1612413400: Sending CONNACK to 172.18.0.3 (0, 5) -1612413400: Socket error on client , disconnecting. -1612413420: New connection from 172.18.0.3 on port 1883. -1612413420: Sending CONNACK to 172.18.0.3 (0, 5) -1612413420: Socket error on client , disconnecting. -1612413440: New connection from 172.18.0.3 on port 1883. -1612413440: Sending CONNACK to 172.18.0.3 (0, 5) -1612413440: Socket error on client , disconnecting. -1612413460: New connection from 172.18.0.3 on port 1883. -1612413460: Sending CONNACK to 172.18.0.3 (0, 5) -1612413460: Socket error on client , disconnecting. -1612413480: New connection from 172.18.0.3 on port 1883. -1612413480: Sending CONNACK to 172.18.0.3 (0, 5) -1612413480: Socket error on client , disconnecting. -1612413500: New connection from 172.18.0.3 on port 1883. -1612413500: Sending CONNACK to 172.18.0.3 (0, 5) -1612413500: Socket error on client , disconnecting. -1612413520: New connection from 172.18.0.3 on port 1883. -1612413520: Sending CONNACK to 172.18.0.3 (0, 5) -1612413520: Socket error on client , disconnecting. -1612413540: New connection from 172.18.0.3 on port 1883. -1612413540: Sending CONNACK to 172.18.0.3 (0, 5) -1612413540: Socket error on client , disconnecting. -1612413560: New connection from 172.18.0.3 on port 1883. -1612413560: Sending CONNACK to 172.18.0.3 (0, 5) -1612413560: Socket error on client , disconnecting. -1612413580: New connection from 172.18.0.3 on port 1883. -1612413580: Sending CONNACK to 172.18.0.3 (0, 5) -1612413580: Socket error on client , disconnecting. -1612413600: New connection from 172.18.0.3 on port 1883. -1612413600: Sending CONNACK to 172.18.0.3 (0, 5) -1612413600: Socket error on client , disconnecting. -1612413620: New connection from 172.18.0.3 on port 1883. -1612413620: Sending CONNACK to 172.18.0.3 (0, 5) -1612413620: Socket error on client , disconnecting. -1612413640: New connection from 172.18.0.3 on port 1883. -1612413640: Sending CONNACK to 172.18.0.3 (0, 5) -1612413640: Socket error on client , disconnecting. -1612413660: New connection from 172.18.0.3 on port 1883. -1612413660: Sending CONNACK to 172.18.0.3 (0, 5) -1612413660: Socket error on client , disconnecting. -1612413680: New connection from 172.18.0.3 on port 1883. -1612413680: Sending CONNACK to 172.18.0.3 (0, 5) -1612413680: Socket error on client , disconnecting. -1612413700: New connection from 172.18.0.3 on port 1883. -1612413700: Sending CONNACK to 172.18.0.3 (0, 5) -1612413700: Socket error on client , disconnecting. -1612413720: New connection from 172.18.0.3 on port 1883. -1612413720: Sending CONNACK to 172.18.0.3 (0, 5) -1612413720: Socket error on client , disconnecting. -1612413740: New connection from 172.18.0.3 on port 1883. -1612413740: Sending CONNACK to 172.18.0.3 (0, 5) -1612413740: Socket error on client , disconnecting. -1612413760: New connection from 172.18.0.3 on port 1883. -1612413760: Sending CONNACK to 172.18.0.3 (0, 5) -1612413760: Socket error on client , disconnecting. -1612413780: New connection from 172.18.0.3 on port 1883. -1612413780: Sending CONNACK to 172.18.0.3 (0, 5) -1612413780: Socket error on client , disconnecting. -1612413800: New connection from 172.18.0.3 on port 1883. -1612413800: Sending CONNACK to 172.18.0.3 (0, 5) -1612413800: Socket error on client , disconnecting. -1612413820: New connection from 172.18.0.3 on port 1883. -1612413820: Sending CONNACK to 172.18.0.3 (0, 5) -1612413820: Socket error on client , disconnecting. -1612413840: New connection from 172.18.0.3 on port 1883. -1612413840: Sending CONNACK to 172.18.0.3 (0, 5) -1612413840: Socket error on client , disconnecting. -1612413860: New connection from 172.18.0.3 on port 1883. -1612413860: Sending CONNACK to 172.18.0.3 (0, 5) -1612413860: Socket error on client , disconnecting. -1612413880: New connection from 172.18.0.3 on port 1883. -1612413880: Sending CONNACK to 172.18.0.3 (0, 5) -1612413880: Socket error on client , disconnecting. -1612413900: New connection from 172.18.0.3 on port 1883. -1612413900: Sending CONNACK to 172.18.0.3 (0, 5) -1612413900: Socket error on client , disconnecting. -1612413920: New connection from 172.18.0.3 on port 1883. -1612413920: Sending CONNACK to 172.18.0.3 (0, 5) -1612413920: Socket error on client , disconnecting. -1612413940: New connection from 172.18.0.3 on port 1883. -1612413940: Sending CONNACK to 172.18.0.3 (0, 5) -1612413940: Socket error on client , disconnecting. -1612413960: New connection from 172.18.0.3 on port 1883. -1612413960: Sending CONNACK to 172.18.0.3 (0, 5) -1612413960: Socket error on client , disconnecting. -1612413980: New connection from 172.18.0.3 on port 1883. -1612413980: Sending CONNACK to 172.18.0.3 (0, 5) -1612413980: Socket error on client , disconnecting. -1612413999: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612413999: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612413999: Error: Permission denied. -1612414000: New connection from 172.18.0.3 on port 1883. -1612414000: Sending CONNACK to 172.18.0.3 (0, 5) -1612414000: Socket error on client , disconnecting. -1612414020: New connection from 172.18.0.3 on port 1883. -1612414020: Sending CONNACK to 172.18.0.3 (0, 5) -1612414020: Socket error on client , disconnecting. -1612414040: New connection from 172.18.0.3 on port 1883. -1612414040: Sending CONNACK to 172.18.0.3 (0, 5) -1612414040: Socket error on client , disconnecting. -1612414060: New connection from 172.18.0.3 on port 1883. -1612414060: Sending CONNACK to 172.18.0.3 (0, 5) -1612414060: Socket error on client , disconnecting. -1612414080: New connection from 172.18.0.3 on port 1883. -1612414080: Sending CONNACK to 172.18.0.3 (0, 5) -1612414080: Socket error on client , disconnecting. -1612414100: New connection from 172.18.0.3 on port 1883. -1612414100: Sending CONNACK to 172.18.0.3 (0, 5) -1612414100: Socket error on client , disconnecting. -1612414120: New connection from 172.18.0.3 on port 1883. -1612414120: Sending CONNACK to 172.18.0.3 (0, 5) -1612414120: Socket error on client , disconnecting. -1612414140: New connection from 172.18.0.3 on port 1883. -1612414140: Sending CONNACK to 172.18.0.3 (0, 5) -1612414140: Socket error on client , disconnecting. -1612414160: New connection from 172.18.0.3 on port 1883. -1612414160: Sending CONNACK to 172.18.0.3 (0, 5) -1612414160: Socket error on client , disconnecting. -1612414180: New connection from 172.18.0.3 on port 1883. -1612414180: Sending CONNACK to 172.18.0.3 (0, 5) -1612414180: Socket error on client , disconnecting. -1612414200: New connection from 172.18.0.3 on port 1883. -1612414200: Sending CONNACK to 172.18.0.3 (0, 5) -1612414200: Socket error on client , disconnecting. -1612414220: New connection from 172.18.0.3 on port 1883. -1612414220: Sending CONNACK to 172.18.0.3 (0, 5) -1612414220: Socket error on client , disconnecting. -1612414240: New connection from 172.18.0.3 on port 1883. -1612414240: Sending CONNACK to 172.18.0.3 (0, 5) -1612414240: Socket error on client , disconnecting. -1612414260: New connection from 172.18.0.3 on port 1883. -1612414260: Sending CONNACK to 172.18.0.3 (0, 5) -1612414260: Socket error on client , disconnecting. -1612414280: New connection from 172.18.0.3 on port 1883. -1612414280: Sending CONNACK to 172.18.0.3 (0, 5) -1612414280: Socket error on client , disconnecting. -1612414300: New connection from 172.18.0.3 on port 1883. -1612414300: Sending CONNACK to 172.18.0.3 (0, 5) -1612414300: Socket error on client , disconnecting. -1612414320: New connection from 172.18.0.3 on port 1883. -1612414320: Sending CONNACK to 172.18.0.3 (0, 5) -1612414320: Socket error on client , disconnecting. -1612414340: New connection from 172.18.0.3 on port 1883. -1612414340: Sending CONNACK to 172.18.0.3 (0, 5) -1612414340: Socket error on client , disconnecting. -1612414360: New connection from 172.18.0.3 on port 1883. -1612414360: Sending CONNACK to 172.18.0.3 (0, 5) -1612414360: Socket error on client , disconnecting. -1612414380: New connection from 172.18.0.3 on port 1883. -1612414380: Sending CONNACK to 172.18.0.3 (0, 5) -1612414380: Socket error on client , disconnecting. -1612414400: New connection from 172.18.0.3 on port 1883. -1612414400: Sending CONNACK to 172.18.0.3 (0, 5) -1612414400: Socket error on client , disconnecting. -1612414420: New connection from 172.18.0.3 on port 1883. -1612414420: Sending CONNACK to 172.18.0.3 (0, 5) -1612414420: Socket error on client , disconnecting. -1612414440: New connection from 172.18.0.3 on port 1883. -1612414440: Sending CONNACK to 172.18.0.3 (0, 5) -1612414440: Socket error on client , disconnecting. -1612414460: New connection from 172.18.0.3 on port 1883. -1612414460: Sending CONNACK to 172.18.0.3 (0, 5) -1612414460: Socket error on client , disconnecting. -1612414480: New connection from 172.18.0.3 on port 1883. -1612414480: Sending CONNACK to 172.18.0.3 (0, 5) -1612414480: Socket error on client , disconnecting. -1612414500: New connection from 172.18.0.3 on port 1883. -1612414500: Sending CONNACK to 172.18.0.3 (0, 5) -1612414500: Socket error on client , disconnecting. -1612414520: New connection from 172.18.0.3 on port 1883. -1612414520: Sending CONNACK to 172.18.0.3 (0, 5) -1612414520: Socket error on client , disconnecting. -1612414540: New connection from 172.18.0.3 on port 1883. -1612414540: Sending CONNACK to 172.18.0.3 (0, 5) -1612414540: Socket error on client , disconnecting. -1612414560: New connection from 172.18.0.3 on port 1883. -1612414560: Sending CONNACK to 172.18.0.3 (0, 5) -1612414560: Socket error on client , disconnecting. -1612414580: New connection from 172.18.0.3 on port 1883. -1612414580: Sending CONNACK to 172.18.0.3 (0, 5) -1612414580: Socket error on client , disconnecting. -1612414600: New connection from 172.18.0.3 on port 1883. -1612414600: Sending CONNACK to 172.18.0.3 (0, 5) -1612414600: Socket error on client , disconnecting. -1612414620: New connection from 172.18.0.3 on port 1883. -1612414620: Sending CONNACK to 172.18.0.3 (0, 5) -1612414620: Socket error on client , disconnecting. -1612414640: New connection from 172.18.0.3 on port 1883. -1612414640: Sending CONNACK to 172.18.0.3 (0, 5) -1612414640: Socket error on client , disconnecting. -1612414660: New connection from 172.18.0.3 on port 1883. -1612414660: Sending CONNACK to 172.18.0.3 (0, 5) -1612414660: Socket error on client , disconnecting. -1612414680: New connection from 172.18.0.3 on port 1883. -1612414680: Sending CONNACK to 172.18.0.3 (0, 5) -1612414680: Socket error on client , disconnecting. -1612414700: New connection from 172.18.0.3 on port 1883. -1612414700: Sending CONNACK to 172.18.0.3 (0, 5) -1612414700: Socket error on client , disconnecting. -1612414720: New connection from 172.18.0.3 on port 1883. -1612414720: Sending CONNACK to 172.18.0.3 (0, 5) -1612414720: Socket error on client , disconnecting. -1612414740: New connection from 172.18.0.3 on port 1883. -1612414740: Sending CONNACK to 172.18.0.3 (0, 5) -1612414740: Socket error on client , disconnecting. -1612414760: New connection from 172.18.0.3 on port 1883. -1612414760: Sending CONNACK to 172.18.0.3 (0, 5) -1612414760: Socket error on client , disconnecting. -1612414780: New connection from 172.18.0.3 on port 1883. -1612414780: Sending CONNACK to 172.18.0.3 (0, 5) -1612414780: Socket error on client , disconnecting. -1612414800: New connection from 172.18.0.3 on port 1883. -1612414800: Sending CONNACK to 172.18.0.3 (0, 5) -1612414800: Socket error on client , disconnecting. -1612414820: New connection from 172.18.0.3 on port 1883. -1612414820: Sending CONNACK to 172.18.0.3 (0, 5) -1612414820: Socket error on client , disconnecting. -1612414840: New connection from 172.18.0.3 on port 1883. -1612414840: Sending CONNACK to 172.18.0.3 (0, 5) -1612414840: Socket error on client , disconnecting. -1612414860: New connection from 172.18.0.3 on port 1883. -1612414860: Sending CONNACK to 172.18.0.3 (0, 5) -1612414860: Socket error on client , disconnecting. -1612414880: New connection from 172.18.0.3 on port 1883. -1612414880: Sending CONNACK to 172.18.0.3 (0, 5) -1612414880: Socket error on client , disconnecting. -1612414900: New connection from 172.18.0.3 on port 1883. -1612414900: Sending CONNACK to 172.18.0.3 (0, 5) -1612414900: Socket error on client , disconnecting. -1612414920: New connection from 172.18.0.3 on port 1883. -1612414920: Sending CONNACK to 172.18.0.3 (0, 5) -1612414920: Socket error on client , disconnecting. -1612414940: New connection from 172.18.0.3 on port 1883. -1612414940: Sending CONNACK to 172.18.0.3 (0, 5) -1612414940: Socket error on client , disconnecting. -1612414960: New connection from 172.18.0.3 on port 1883. -1612414960: Sending CONNACK to 172.18.0.3 (0, 5) -1612414960: Socket error on client , disconnecting. -1612414980: New connection from 172.18.0.3 on port 1883. -1612414980: Sending CONNACK to 172.18.0.3 (0, 5) -1612414980: Socket error on client , disconnecting. -1612415000: New connection from 172.18.0.3 on port 1883. -1612415000: Sending CONNACK to 172.18.0.3 (0, 5) -1612415000: Socket error on client , disconnecting. -1612415020: New connection from 172.18.0.3 on port 1883. -1612415020: Sending CONNACK to 172.18.0.3 (0, 5) -1612415020: Socket error on client , disconnecting. -1612415040: New connection from 172.18.0.3 on port 1883. -1612415040: Sending CONNACK to 172.18.0.3 (0, 5) -1612415040: Socket error on client , disconnecting. -1612415060: New connection from 172.18.0.3 on port 1883. -1612415060: Sending CONNACK to 172.18.0.3 (0, 5) -1612415060: Socket error on client , disconnecting. -1612415080: New connection from 172.18.0.3 on port 1883. -1612415080: Sending CONNACK to 172.18.0.3 (0, 5) -1612415080: Socket error on client , disconnecting. -1612415100: New connection from 172.18.0.3 on port 1883. -1612415100: Sending CONNACK to 172.18.0.3 (0, 5) -1612415100: Socket error on client , disconnecting. -1612415120: New connection from 172.18.0.3 on port 1883. -1612415120: Sending CONNACK to 172.18.0.3 (0, 5) -1612415120: Socket error on client , disconnecting. -1612415140: New connection from 172.18.0.3 on port 1883. -1612415140: Sending CONNACK to 172.18.0.3 (0, 5) -1612415140: Socket error on client , disconnecting. -1612415160: New connection from 172.18.0.3 on port 1883. -1612415160: Sending CONNACK to 172.18.0.3 (0, 5) -1612415160: Socket error on client , disconnecting. -1612415180: New connection from 172.18.0.3 on port 1883. -1612415180: Sending CONNACK to 172.18.0.3 (0, 5) -1612415180: Socket error on client , disconnecting. -1612415200: New connection from 172.18.0.3 on port 1883. -1612415200: Sending CONNACK to 172.18.0.3 (0, 5) -1612415200: Socket error on client , disconnecting. -1612415220: New connection from 172.18.0.3 on port 1883. -1612415220: Sending CONNACK to 172.18.0.3 (0, 5) -1612415220: Socket error on client , disconnecting. -1612415240: New connection from 172.18.0.3 on port 1883. -1612415240: Sending CONNACK to 172.18.0.3 (0, 5) -1612415240: Socket error on client , disconnecting. -1612415260: New connection from 172.18.0.3 on port 1883. -1612415260: Sending CONNACK to 172.18.0.3 (0, 5) -1612415260: Socket error on client , disconnecting. -1612415280: New connection from 172.18.0.3 on port 1883. -1612415280: Sending CONNACK to 172.18.0.3 (0, 5) -1612415280: Socket error on client , disconnecting. -1612415300: New connection from 172.18.0.3 on port 1883. -1612415300: Sending CONNACK to 172.18.0.3 (0, 5) -1612415300: Socket error on client , disconnecting. -1612415320: New connection from 172.18.0.3 on port 1883. -1612415320: Sending CONNACK to 172.18.0.3 (0, 5) -1612415320: Socket error on client , disconnecting. -1612415340: New connection from 172.18.0.3 on port 1883. -1612415340: Sending CONNACK to 172.18.0.3 (0, 5) -1612415340: Socket error on client , disconnecting. -1612415360: New connection from 172.18.0.3 on port 1883. -1612415360: Sending CONNACK to 172.18.0.3 (0, 5) -1612415360: Socket error on client , disconnecting. -1612415380: New connection from 172.18.0.3 on port 1883. -1612415380: Sending CONNACK to 172.18.0.3 (0, 5) -1612415380: Socket error on client , disconnecting. -1612415400: New connection from 172.18.0.3 on port 1883. -1612415400: Sending CONNACK to 172.18.0.3 (0, 5) -1612415400: Socket error on client , disconnecting. -1612415420: New connection from 172.18.0.3 on port 1883. -1612415420: Sending CONNACK to 172.18.0.3 (0, 5) -1612415420: Socket error on client , disconnecting. -1612415440: New connection from 172.18.0.3 on port 1883. -1612415440: Sending CONNACK to 172.18.0.3 (0, 5) -1612415440: Socket error on client , disconnecting. -1612415460: New connection from 172.18.0.3 on port 1883. -1612415460: Sending CONNACK to 172.18.0.3 (0, 5) -1612415460: Socket error on client , disconnecting. -1612415480: New connection from 172.18.0.3 on port 1883. -1612415480: Sending CONNACK to 172.18.0.3 (0, 5) -1612415480: Socket error on client , disconnecting. -1612415500: New connection from 172.18.0.3 on port 1883. -1612415500: Sending CONNACK to 172.18.0.3 (0, 5) -1612415500: Socket error on client , disconnecting. -1612415520: New connection from 172.18.0.3 on port 1883. -1612415520: Sending CONNACK to 172.18.0.3 (0, 5) -1612415520: Socket error on client , disconnecting. -1612415540: New connection from 172.18.0.3 on port 1883. -1612415540: Sending CONNACK to 172.18.0.3 (0, 5) -1612415540: Socket error on client , disconnecting. -1612415560: New connection from 172.18.0.3 on port 1883. -1612415560: Sending CONNACK to 172.18.0.3 (0, 5) -1612415560: Socket error on client , disconnecting. -1612415580: New connection from 172.18.0.3 on port 1883. -1612415580: Sending CONNACK to 172.18.0.3 (0, 5) -1612415580: Socket error on client , disconnecting. -1612415600: New connection from 172.18.0.3 on port 1883. -1612415600: Sending CONNACK to 172.18.0.3 (0, 5) -1612415600: Socket error on client , disconnecting. -1612415620: New connection from 172.18.0.3 on port 1883. -1612415620: Sending CONNACK to 172.18.0.3 (0, 5) -1612415620: Socket error on client , disconnecting. -1612415640: New connection from 172.18.0.3 on port 1883. -1612415640: Sending CONNACK to 172.18.0.3 (0, 5) -1612415640: Socket error on client , disconnecting. -1612415660: New connection from 172.18.0.3 on port 1883. -1612415660: Sending CONNACK to 172.18.0.3 (0, 5) -1612415660: Socket error on client , disconnecting. -1612415680: New connection from 172.18.0.3 on port 1883. -1612415680: Sending CONNACK to 172.18.0.3 (0, 5) -1612415680: Socket error on client , disconnecting. -1612415700: New connection from 172.18.0.3 on port 1883. -1612415700: Sending CONNACK to 172.18.0.3 (0, 5) -1612415700: Socket error on client , disconnecting. -1612415720: New connection from 172.18.0.3 on port 1883. -1612415720: Sending CONNACK to 172.18.0.3 (0, 5) -1612415720: Socket error on client , disconnecting. -1612415740: New connection from 172.18.0.3 on port 1883. -1612415740: Sending CONNACK to 172.18.0.3 (0, 5) -1612415740: Socket error on client , disconnecting. -1612415760: New connection from 172.18.0.3 on port 1883. -1612415760: Sending CONNACK to 172.18.0.3 (0, 5) -1612415760: Socket error on client , disconnecting. -1612415780: New connection from 172.18.0.3 on port 1883. -1612415780: Sending CONNACK to 172.18.0.3 (0, 5) -1612415780: Socket error on client , disconnecting. -1612415800: New connection from 172.18.0.3 on port 1883. -1612415800: Sending CONNACK to 172.18.0.3 (0, 5) -1612415800: Socket error on client , disconnecting. -1612415800: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612415800: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612415800: Error: Permission denied. -1612415820: New connection from 172.18.0.3 on port 1883. -1612415820: Sending CONNACK to 172.18.0.3 (0, 5) -1612415820: Socket error on client , disconnecting. -1612415840: New connection from 172.18.0.3 on port 1883. -1612415840: Sending CONNACK to 172.18.0.3 (0, 5) -1612415840: Socket error on client , disconnecting. -1612415860: New connection from 172.18.0.3 on port 1883. -1612415860: Sending CONNACK to 172.18.0.3 (0, 5) -1612415860: Socket error on client , disconnecting. -1612415880: New connection from 172.18.0.3 on port 1883. -1612415880: Sending CONNACK to 172.18.0.3 (0, 5) -1612415880: Socket error on client , disconnecting. -1612415900: New connection from 172.18.0.3 on port 1883. -1612415900: Sending CONNACK to 172.18.0.3 (0, 5) -1612415900: Socket error on client , disconnecting. -1612415920: New connection from 172.18.0.3 on port 1883. -1612415920: Sending CONNACK to 172.18.0.3 (0, 5) -1612415920: Socket error on client , disconnecting. -1612415940: New connection from 172.18.0.3 on port 1883. -1612415940: Sending CONNACK to 172.18.0.3 (0, 5) -1612415940: Socket error on client , disconnecting. -1612415960: New connection from 172.18.0.3 on port 1883. -1612415960: Sending CONNACK to 172.18.0.3 (0, 5) -1612415960: Socket error on client , disconnecting. -1612415980: New connection from 172.18.0.3 on port 1883. -1612415980: Sending CONNACK to 172.18.0.3 (0, 5) -1612415980: Socket error on client , disconnecting. -1612416000: New connection from 172.18.0.3 on port 1883. -1612416000: Sending CONNACK to 172.18.0.3 (0, 5) -1612416000: Socket error on client , disconnecting. -1612416020: New connection from 172.18.0.3 on port 1883. -1612416020: Sending CONNACK to 172.18.0.3 (0, 5) -1612416020: Socket error on client , disconnecting. -1612416040: New connection from 172.18.0.3 on port 1883. -1612416040: Sending CONNACK to 172.18.0.3 (0, 5) -1612416040: Socket error on client , disconnecting. -1612416060: New connection from 172.18.0.3 on port 1883. -1612416060: Sending CONNACK to 172.18.0.3 (0, 5) -1612416060: Socket error on client , disconnecting. -1612416080: New connection from 172.18.0.3 on port 1883. -1612416080: Sending CONNACK to 172.18.0.3 (0, 5) -1612416080: Socket error on client , disconnecting. -1612416100: New connection from 172.18.0.3 on port 1883. -1612416100: Sending CONNACK to 172.18.0.3 (0, 5) -1612416100: Socket error on client , disconnecting. -1612416120: New connection from 172.18.0.3 on port 1883. -1612416120: Sending CONNACK to 172.18.0.3 (0, 5) -1612416120: Socket error on client , disconnecting. -1612416140: New connection from 172.18.0.3 on port 1883. -1612416140: Sending CONNACK to 172.18.0.3 (0, 5) -1612416140: Socket error on client , disconnecting. -1612416160: New connection from 172.18.0.3 on port 1883. -1612416160: Sending CONNACK to 172.18.0.3 (0, 5) -1612416160: Socket error on client , disconnecting. -1612416180: New connection from 172.18.0.3 on port 1883. -1612416180: Sending CONNACK to 172.18.0.3 (0, 5) -1612416180: Socket error on client , disconnecting. -1612416200: New connection from 172.18.0.3 on port 1883. -1612416200: Sending CONNACK to 172.18.0.3 (0, 5) -1612416200: Socket error on client , disconnecting. -1612416220: New connection from 172.18.0.3 on port 1883. -1612416220: Sending CONNACK to 172.18.0.3 (0, 5) -1612416220: Socket error on client , disconnecting. -1612416240: New connection from 172.18.0.3 on port 1883. -1612416240: Sending CONNACK to 172.18.0.3 (0, 5) -1612416240: Socket error on client , disconnecting. -1612416260: New connection from 172.18.0.3 on port 1883. -1612416260: Sending CONNACK to 172.18.0.3 (0, 5) -1612416260: Socket error on client , disconnecting. -1612416280: New connection from 172.18.0.3 on port 1883. -1612416280: Sending CONNACK to 172.18.0.3 (0, 5) -1612416280: Socket error on client , disconnecting. -1612416300: New connection from 172.18.0.3 on port 1883. -1612416300: Sending CONNACK to 172.18.0.3 (0, 5) -1612416300: Socket error on client , disconnecting. -1612416320: New connection from 172.18.0.3 on port 1883. -1612416320: Sending CONNACK to 172.18.0.3 (0, 5) -1612416320: Socket error on client , disconnecting. -1612416340: New connection from 172.18.0.3 on port 1883. -1612416340: Sending CONNACK to 172.18.0.3 (0, 5) -1612416340: Socket error on client , disconnecting. -1612416360: New connection from 172.18.0.3 on port 1883. -1612416360: Sending CONNACK to 172.18.0.3 (0, 5) -1612416360: Socket error on client , disconnecting. -1612416380: New connection from 172.18.0.3 on port 1883. -1612416380: Sending CONNACK to 172.18.0.3 (0, 5) -1612416380: Socket error on client , disconnecting. -1612416400: New connection from 172.18.0.3 on port 1883. -1612416400: Sending CONNACK to 172.18.0.3 (0, 5) -1612416400: Socket error on client , disconnecting. -1612416420: New connection from 172.18.0.3 on port 1883. -1612416420: Sending CONNACK to 172.18.0.3 (0, 5) -1612416420: Socket error on client , disconnecting. -1612416440: New connection from 172.18.0.3 on port 1883. -1612416440: Sending CONNACK to 172.18.0.3 (0, 5) -1612416440: Socket error on client , disconnecting. -1612416460: New connection from 172.18.0.3 on port 1883. -1612416460: Sending CONNACK to 172.18.0.3 (0, 5) -1612416460: Socket error on client , disconnecting. -1612416480: New connection from 172.18.0.3 on port 1883. -1612416480: Sending CONNACK to 172.18.0.3 (0, 5) -1612416480: Socket error on client , disconnecting. -1612416500: New connection from 172.18.0.3 on port 1883. -1612416500: Sending CONNACK to 172.18.0.3 (0, 5) -1612416500: Socket error on client , disconnecting. -1612416520: New connection from 172.18.0.3 on port 1883. -1612416520: Sending CONNACK to 172.18.0.3 (0, 5) -1612416520: Socket error on client , disconnecting. -1612416540: New connection from 172.18.0.3 on port 1883. -1612416540: Sending CONNACK to 172.18.0.3 (0, 5) -1612416540: Socket error on client , disconnecting. -1612416560: New connection from 172.18.0.3 on port 1883. -1612416560: Sending CONNACK to 172.18.0.3 (0, 5) -1612416560: Socket error on client , disconnecting. -1612416580: New connection from 172.18.0.3 on port 1883. -1612416580: Sending CONNACK to 172.18.0.3 (0, 5) -1612416580: Socket error on client , disconnecting. -1612416600: New connection from 172.18.0.3 on port 1883. -1612416600: Sending CONNACK to 172.18.0.3 (0, 5) -1612416600: Socket error on client , disconnecting. -1612416620: New connection from 172.18.0.3 on port 1883. -1612416620: Sending CONNACK to 172.18.0.3 (0, 5) -1612416620: Socket error on client , disconnecting. -1612416640: New connection from 172.18.0.3 on port 1883. -1612416640: Sending CONNACK to 172.18.0.3 (0, 5) -1612416640: Socket error on client , disconnecting. -1612416660: New connection from 172.18.0.3 on port 1883. -1612416660: Sending CONNACK to 172.18.0.3 (0, 5) -1612416660: Socket error on client , disconnecting. -1612416680: New connection from 172.18.0.3 on port 1883. -1612416680: Sending CONNACK to 172.18.0.3 (0, 5) -1612416680: Socket error on client , disconnecting. -1612416700: New connection from 172.18.0.3 on port 1883. -1612416700: Sending CONNACK to 172.18.0.3 (0, 5) -1612416700: Socket error on client , disconnecting. -1612416720: New connection from 172.18.0.3 on port 1883. -1612416720: Sending CONNACK to 172.18.0.3 (0, 5) -1612416720: Socket error on client , disconnecting. -1612416740: New connection from 172.18.0.3 on port 1883. -1612416740: Sending CONNACK to 172.18.0.3 (0, 5) -1612416740: Socket error on client , disconnecting. -1612416760: New connection from 172.18.0.3 on port 1883. -1612416760: Sending CONNACK to 172.18.0.3 (0, 5) -1612416760: Socket error on client , disconnecting. -1612416780: New connection from 172.18.0.3 on port 1883. -1612416780: Sending CONNACK to 172.18.0.3 (0, 5) -1612416780: Socket error on client , disconnecting. -1612416800: New connection from 172.18.0.3 on port 1883. -1612416800: Sending CONNACK to 172.18.0.3 (0, 5) -1612416800: Socket error on client , disconnecting. -1612416820: New connection from 172.18.0.3 on port 1883. -1612416820: Sending CONNACK to 172.18.0.3 (0, 5) -1612416820: Socket error on client , disconnecting. -1612416840: New connection from 172.18.0.3 on port 1883. -1612416840: Sending CONNACK to 172.18.0.3 (0, 5) -1612416840: Socket error on client , disconnecting. -1612416860: New connection from 172.18.0.3 on port 1883. -1612416860: Sending CONNACK to 172.18.0.3 (0, 5) -1612416860: Socket error on client , disconnecting. -1612416880: New connection from 172.18.0.3 on port 1883. -1612416880: Sending CONNACK to 172.18.0.3 (0, 5) -1612416880: Socket error on client , disconnecting. -1612416900: New connection from 172.18.0.3 on port 1883. -1612416900: Sending CONNACK to 172.18.0.3 (0, 5) -1612416900: Socket error on client , disconnecting. -1612416920: New connection from 172.18.0.3 on port 1883. -1612416920: Sending CONNACK to 172.18.0.3 (0, 5) -1612416920: Socket error on client , disconnecting. -1612416940: New connection from 172.18.0.3 on port 1883. -1612416940: Sending CONNACK to 172.18.0.3 (0, 5) -1612416940: Socket error on client , disconnecting. -1612416960: New connection from 172.18.0.3 on port 1883. -1612416960: Sending CONNACK to 172.18.0.3 (0, 5) -1612416960: Socket error on client , disconnecting. -1612416980: New connection from 172.18.0.3 on port 1883. -1612416980: Sending CONNACK to 172.18.0.3 (0, 5) -1612416980: Socket error on client , disconnecting. -1612417000: New connection from 172.18.0.3 on port 1883. -1612417000: Sending CONNACK to 172.18.0.3 (0, 5) -1612417000: Socket error on client , disconnecting. -1612417020: New connection from 172.18.0.3 on port 1883. -1612417020: Sending CONNACK to 172.18.0.3 (0, 5) -1612417020: Socket error on client , disconnecting. -1612417040: New connection from 172.18.0.3 on port 1883. -1612417040: Sending CONNACK to 172.18.0.3 (0, 5) -1612417040: Socket error on client , disconnecting. -1612417060: New connection from 172.18.0.3 on port 1883. -1612417060: Sending CONNACK to 172.18.0.3 (0, 5) -1612417060: Socket error on client , disconnecting. -1612417080: New connection from 172.18.0.3 on port 1883. -1612417080: Sending CONNACK to 172.18.0.3 (0, 5) -1612417080: Socket error on client , disconnecting. -1612417100: New connection from 172.18.0.3 on port 1883. -1612417100: Sending CONNACK to 172.18.0.3 (0, 5) -1612417100: Socket error on client , disconnecting. -1612417120: New connection from 172.18.0.3 on port 1883. -1612417120: Sending CONNACK to 172.18.0.3 (0, 5) -1612417120: Socket error on client , disconnecting. -1612417140: New connection from 172.18.0.3 on port 1883. -1612417140: Sending CONNACK to 172.18.0.3 (0, 5) -1612417140: Socket error on client , disconnecting. -1612417160: New connection from 172.18.0.3 on port 1883. -1612417160: Sending CONNACK to 172.18.0.3 (0, 5) -1612417160: Socket error on client , disconnecting. -1612417180: New connection from 172.18.0.3 on port 1883. -1612417180: Sending CONNACK to 172.18.0.3 (0, 5) -1612417180: Socket error on client , disconnecting. -1612417200: New connection from 172.18.0.3 on port 1883. -1612417200: Sending CONNACK to 172.18.0.3 (0, 5) -1612417200: Socket error on client , disconnecting. -1612417220: New connection from 172.18.0.3 on port 1883. -1612417220: Sending CONNACK to 172.18.0.3 (0, 5) -1612417220: Socket error on client , disconnecting. -1612417240: New connection from 172.18.0.3 on port 1883. -1612417240: Sending CONNACK to 172.18.0.3 (0, 5) -1612417240: Socket error on client , disconnecting. -1612417260: New connection from 172.18.0.3 on port 1883. -1612417260: Sending CONNACK to 172.18.0.3 (0, 5) -1612417260: Socket error on client , disconnecting. -1612417280: New connection from 172.18.0.3 on port 1883. -1612417280: Sending CONNACK to 172.18.0.3 (0, 5) -1612417280: Socket error on client , disconnecting. -1612417300: New connection from 172.18.0.3 on port 1883. -1612417300: Sending CONNACK to 172.18.0.3 (0, 5) -1612417300: Socket error on client , disconnecting. -1612417320: New connection from 172.18.0.3 on port 1883. -1612417320: Sending CONNACK to 172.18.0.3 (0, 5) -1612417320: Socket error on client , disconnecting. -1612417340: New connection from 172.18.0.3 on port 1883. -1612417340: Sending CONNACK to 172.18.0.3 (0, 5) -1612417340: Socket error on client , disconnecting. -1612417360: New connection from 172.18.0.3 on port 1883. -1612417360: Sending CONNACK to 172.18.0.3 (0, 5) -1612417360: Socket error on client , disconnecting. -1612417380: New connection from 172.18.0.3 on port 1883. -1612417380: Sending CONNACK to 172.18.0.3 (0, 5) -1612417380: Socket error on client , disconnecting. -1612417400: New connection from 172.18.0.3 on port 1883. -1612417400: Sending CONNACK to 172.18.0.3 (0, 5) -1612417400: Socket error on client , disconnecting. -1612417420: New connection from 172.18.0.3 on port 1883. -1612417420: Sending CONNACK to 172.18.0.3 (0, 5) -1612417420: Socket error on client , disconnecting. -1612417440: New connection from 172.18.0.3 on port 1883. -1612417440: Sending CONNACK to 172.18.0.3 (0, 5) -1612417440: Socket error on client , disconnecting. -1612417460: New connection from 172.18.0.3 on port 1883. -1612417460: Sending CONNACK to 172.18.0.3 (0, 5) -1612417460: Socket error on client , disconnecting. -1612417480: New connection from 172.18.0.3 on port 1883. -1612417480: Sending CONNACK to 172.18.0.3 (0, 5) -1612417480: Socket error on client , disconnecting. -1612417500: New connection from 172.18.0.3 on port 1883. -1612417500: Sending CONNACK to 172.18.0.3 (0, 5) -1612417500: Socket error on client , disconnecting. -1612417520: New connection from 172.18.0.3 on port 1883. -1612417520: Sending CONNACK to 172.18.0.3 (0, 5) -1612417520: Socket error on client , disconnecting. -1612417540: New connection from 172.18.0.3 on port 1883. -1612417540: Sending CONNACK to 172.18.0.3 (0, 5) -1612417540: Socket error on client , disconnecting. -1612417560: New connection from 172.18.0.3 on port 1883. -1612417560: Sending CONNACK to 172.18.0.3 (0, 5) -1612417560: Socket error on client , disconnecting. -1612417580: New connection from 172.18.0.3 on port 1883. -1612417580: Sending CONNACK to 172.18.0.3 (0, 5) -1612417580: Socket error on client , disconnecting. -1612417600: New connection from 172.18.0.3 on port 1883. -1612417600: Sending CONNACK to 172.18.0.3 (0, 5) -1612417600: Socket error on client , disconnecting. -1612417601: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612417601: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612417601: Error: Permission denied. -1612417620: New connection from 172.18.0.3 on port 1883. -1612417620: Sending CONNACK to 172.18.0.3 (0, 5) -1612417620: Socket error on client , disconnecting. -1612417640: New connection from 172.18.0.3 on port 1883. -1612417640: Sending CONNACK to 172.18.0.3 (0, 5) -1612417640: Socket error on client , disconnecting. -1612417660: New connection from 172.18.0.3 on port 1883. -1612417660: Sending CONNACK to 172.18.0.3 (0, 5) -1612417660: Socket error on client , disconnecting. -1612417680: New connection from 172.18.0.3 on port 1883. -1612417680: Sending CONNACK to 172.18.0.3 (0, 5) -1612417680: Socket error on client , disconnecting. -1612417700: New connection from 172.18.0.3 on port 1883. -1612417700: Sending CONNACK to 172.18.0.3 (0, 5) -1612417700: Socket error on client , disconnecting. -1612417720: New connection from 172.18.0.3 on port 1883. -1612417720: Sending CONNACK to 172.18.0.3 (0, 5) -1612417720: Socket error on client , disconnecting. -1612417740: New connection from 172.18.0.3 on port 1883. -1612417740: Sending CONNACK to 172.18.0.3 (0, 5) -1612417740: Socket error on client , disconnecting. -1612417760: New connection from 172.18.0.3 on port 1883. -1612417760: Sending CONNACK to 172.18.0.3 (0, 5) -1612417760: Socket error on client , disconnecting. -1612417780: New connection from 172.18.0.3 on port 1883. -1612417780: Sending CONNACK to 172.18.0.3 (0, 5) -1612417780: Socket error on client , disconnecting. -1612417800: New connection from 172.18.0.3 on port 1883. -1612417800: Sending CONNACK to 172.18.0.3 (0, 5) -1612417800: Socket error on client , disconnecting. -1612417820: New connection from 172.18.0.3 on port 1883. -1612417820: Sending CONNACK to 172.18.0.3 (0, 5) -1612417820: Socket error on client , disconnecting. -1612417840: New connection from 172.18.0.3 on port 1883. -1612417840: Sending CONNACK to 172.18.0.3 (0, 5) -1612417840: Socket error on client , disconnecting. -1612417860: New connection from 172.18.0.3 on port 1883. -1612417860: Sending CONNACK to 172.18.0.3 (0, 5) -1612417860: Socket error on client , disconnecting. -1612417880: New connection from 172.18.0.3 on port 1883. -1612417880: Sending CONNACK to 172.18.0.3 (0, 5) -1612417880: Socket error on client , disconnecting. -1612417900: New connection from 172.18.0.3 on port 1883. -1612417900: Sending CONNACK to 172.18.0.3 (0, 5) -1612417900: Socket error on client , disconnecting. -1612417920: New connection from 172.18.0.3 on port 1883. -1612417920: Sending CONNACK to 172.18.0.3 (0, 5) -1612417920: Socket error on client , disconnecting. -1612417940: New connection from 172.18.0.3 on port 1883. -1612417940: Sending CONNACK to 172.18.0.3 (0, 5) -1612417940: Socket error on client , disconnecting. -1612417960: New connection from 172.18.0.3 on port 1883. -1612417960: Sending CONNACK to 172.18.0.3 (0, 5) -1612417960: Socket error on client , disconnecting. -1612417980: New connection from 172.18.0.3 on port 1883. -1612417980: Sending CONNACK to 172.18.0.3 (0, 5) -1612417980: Socket error on client , disconnecting. -1612418000: New connection from 172.18.0.3 on port 1883. -1612418000: Sending CONNACK to 172.18.0.3 (0, 5) -1612418000: Socket error on client , disconnecting. -1612418020: New connection from 172.18.0.3 on port 1883. -1612418020: Sending CONNACK to 172.18.0.3 (0, 5) -1612418020: Socket error on client , disconnecting. -1612418040: New connection from 172.18.0.3 on port 1883. -1612418040: Sending CONNACK to 172.18.0.3 (0, 5) -1612418040: Socket error on client , disconnecting. -1612418060: New connection from 172.18.0.3 on port 1883. -1612418060: Sending CONNACK to 172.18.0.3 (0, 5) -1612418060: Socket error on client , disconnecting. -1612418080: New connection from 172.18.0.3 on port 1883. -1612418080: Sending CONNACK to 172.18.0.3 (0, 5) -1612418080: Socket error on client , disconnecting. -1612418100: New connection from 172.18.0.3 on port 1883. -1612418100: Sending CONNACK to 172.18.0.3 (0, 5) -1612418100: Socket error on client , disconnecting. -1612418120: New connection from 172.18.0.3 on port 1883. -1612418120: Sending CONNACK to 172.18.0.3 (0, 5) -1612418120: Socket error on client , disconnecting. -1612418140: New connection from 172.18.0.3 on port 1883. -1612418140: Sending CONNACK to 172.18.0.3 (0, 5) -1612418140: Socket error on client , disconnecting. -1612418160: New connection from 172.18.0.3 on port 1883. -1612418160: Sending CONNACK to 172.18.0.3 (0, 5) -1612418160: Socket error on client , disconnecting. -1612418180: New connection from 172.18.0.3 on port 1883. -1612418180: Sending CONNACK to 172.18.0.3 (0, 5) -1612418180: Socket error on client , disconnecting. -1612418200: New connection from 172.18.0.3 on port 1883. -1612418200: Sending CONNACK to 172.18.0.3 (0, 5) -1612418200: Socket error on client , disconnecting. -1612418220: New connection from 172.18.0.3 on port 1883. -1612418220: Sending CONNACK to 172.18.0.3 (0, 5) -1612418220: Socket error on client , disconnecting. -1612418240: New connection from 172.18.0.3 on port 1883. -1612418240: Sending CONNACK to 172.18.0.3 (0, 5) -1612418240: Socket error on client , disconnecting. -1612418260: New connection from 172.18.0.3 on port 1883. -1612418260: Sending CONNACK to 172.18.0.3 (0, 5) -1612418260: Socket error on client , disconnecting. -1612418280: New connection from 172.18.0.3 on port 1883. -1612418280: Sending CONNACK to 172.18.0.3 (0, 5) -1612418280: Socket error on client , disconnecting. -1612418300: New connection from 172.18.0.3 on port 1883. -1612418300: Sending CONNACK to 172.18.0.3 (0, 5) -1612418300: Socket error on client , disconnecting. -1612418320: New connection from 172.18.0.3 on port 1883. -1612418320: Sending CONNACK to 172.18.0.3 (0, 5) -1612418320: Socket error on client , disconnecting. -1612418340: New connection from 172.18.0.3 on port 1883. -1612418340: Sending CONNACK to 172.18.0.3 (0, 5) -1612418340: Socket error on client , disconnecting. -1612418360: New connection from 172.18.0.3 on port 1883. -1612418360: Sending CONNACK to 172.18.0.3 (0, 5) -1612418360: Socket error on client , disconnecting. -1612418380: New connection from 172.18.0.3 on port 1883. -1612418380: Sending CONNACK to 172.18.0.3 (0, 5) -1612418380: Socket error on client , disconnecting. -1612418400: New connection from 172.18.0.3 on port 1883. -1612418400: Sending CONNACK to 172.18.0.3 (0, 5) -1612418400: Socket error on client , disconnecting. -1612418420: New connection from 172.18.0.3 on port 1883. -1612418420: Sending CONNACK to 172.18.0.3 (0, 5) -1612418420: Socket error on client , disconnecting. -1612418440: New connection from 172.18.0.3 on port 1883. -1612418440: Sending CONNACK to 172.18.0.3 (0, 5) -1612418440: Socket error on client , disconnecting. -1612418460: New connection from 172.18.0.3 on port 1883. -1612418460: Sending CONNACK to 172.18.0.3 (0, 5) -1612418460: Socket error on client , disconnecting. -1612418480: New connection from 172.18.0.3 on port 1883. -1612418480: Sending CONNACK to 172.18.0.3 (0, 5) -1612418480: Socket error on client , disconnecting. -1612418500: New connection from 172.18.0.3 on port 1883. -1612418500: Sending CONNACK to 172.18.0.3 (0, 5) -1612418500: Socket error on client , disconnecting. -1612418520: New connection from 172.18.0.3 on port 1883. -1612418520: Sending CONNACK to 172.18.0.3 (0, 5) -1612418520: Socket error on client , disconnecting. -1612418540: New connection from 172.18.0.3 on port 1883. -1612418540: Sending CONNACK to 172.18.0.3 (0, 5) -1612418540: Socket error on client , disconnecting. -1612418560: New connection from 172.18.0.3 on port 1883. -1612418560: Sending CONNACK to 172.18.0.3 (0, 5) -1612418560: Socket error on client , disconnecting. -1612418580: New connection from 172.18.0.3 on port 1883. -1612418580: Sending CONNACK to 172.18.0.3 (0, 5) -1612418580: Socket error on client , disconnecting. -1612418600: New connection from 172.18.0.3 on port 1883. -1612418600: Sending CONNACK to 172.18.0.3 (0, 5) -1612418600: Socket error on client , disconnecting. -1612418620: New connection from 172.18.0.3 on port 1883. -1612418620: Sending CONNACK to 172.18.0.3 (0, 5) -1612418620: Socket error on client , disconnecting. -1612418640: New connection from 172.18.0.3 on port 1883. -1612418640: Sending CONNACK to 172.18.0.3 (0, 5) -1612418640: Socket error on client , disconnecting. -1612418660: New connection from 172.18.0.3 on port 1883. -1612418660: Sending CONNACK to 172.18.0.3 (0, 5) -1612418660: Socket error on client , disconnecting. -1612418680: New connection from 172.18.0.3 on port 1883. -1612418680: Sending CONNACK to 172.18.0.3 (0, 5) -1612418680: Socket error on client , disconnecting. -1612418700: New connection from 172.18.0.3 on port 1883. -1612418700: Sending CONNACK to 172.18.0.3 (0, 5) -1612418700: Socket error on client , disconnecting. -1612418720: New connection from 172.18.0.3 on port 1883. -1612418720: Sending CONNACK to 172.18.0.3 (0, 5) -1612418720: Socket error on client , disconnecting. -1612418740: New connection from 172.18.0.3 on port 1883. -1612418740: Sending CONNACK to 172.18.0.3 (0, 5) -1612418740: Socket error on client , disconnecting. -1612418760: New connection from 172.18.0.3 on port 1883. -1612418760: Sending CONNACK to 172.18.0.3 (0, 5) -1612418760: Socket error on client , disconnecting. -1612418780: New connection from 172.18.0.3 on port 1883. -1612418780: Sending CONNACK to 172.18.0.3 (0, 5) -1612418780: Socket error on client , disconnecting. -1612418800: New connection from 172.18.0.3 on port 1883. -1612418800: Sending CONNACK to 172.18.0.3 (0, 5) -1612418800: Socket error on client , disconnecting. -1612418820: New connection from 172.18.0.3 on port 1883. -1612418820: Sending CONNACK to 172.18.0.3 (0, 5) -1612418820: Socket error on client , disconnecting. -1612418840: New connection from 172.18.0.3 on port 1883. -1612418840: Sending CONNACK to 172.18.0.3 (0, 5) -1612418840: Socket error on client , disconnecting. -1612418860: New connection from 172.18.0.3 on port 1883. -1612418860: Sending CONNACK to 172.18.0.3 (0, 5) -1612418860: Socket error on client , disconnecting. -1612418880: New connection from 172.18.0.3 on port 1883. -1612418880: Sending CONNACK to 172.18.0.3 (0, 5) -1612418880: Socket error on client , disconnecting. -1612418900: New connection from 172.18.0.3 on port 1883. -1612418900: Sending CONNACK to 172.18.0.3 (0, 5) -1612418900: Socket error on client , disconnecting. -1612418920: New connection from 172.18.0.3 on port 1883. -1612418920: Sending CONNACK to 172.18.0.3 (0, 5) -1612418920: Socket error on client , disconnecting. -1612418940: New connection from 172.18.0.3 on port 1883. -1612418940: Sending CONNACK to 172.18.0.3 (0, 5) -1612418940: Socket error on client , disconnecting. -1612418960: New connection from 172.18.0.3 on port 1883. -1612418960: Sending CONNACK to 172.18.0.3 (0, 5) -1612418960: Socket error on client , disconnecting. -1612418980: New connection from 172.18.0.3 on port 1883. -1612418980: Sending CONNACK to 172.18.0.3 (0, 5) -1612418980: Socket error on client , disconnecting. -1612419000: New connection from 172.18.0.3 on port 1883. -1612419000: Sending CONNACK to 172.18.0.3 (0, 5) -1612419000: Socket error on client , disconnecting. -1612419020: New connection from 172.18.0.3 on port 1883. -1612419020: Sending CONNACK to 172.18.0.3 (0, 5) -1612419020: Socket error on client , disconnecting. -1612419040: New connection from 172.18.0.3 on port 1883. -1612419040: Sending CONNACK to 172.18.0.3 (0, 5) -1612419040: Socket error on client , disconnecting. -1612419060: New connection from 172.18.0.3 on port 1883. -1612419060: Sending CONNACK to 172.18.0.3 (0, 5) -1612419060: Socket error on client , disconnecting. -1612419080: New connection from 172.18.0.3 on port 1883. -1612419080: Sending CONNACK to 172.18.0.3 (0, 5) -1612419080: Socket error on client , disconnecting. -1612419100: New connection from 172.18.0.3 on port 1883. -1612419100: Sending CONNACK to 172.18.0.3 (0, 5) -1612419100: Socket error on client , disconnecting. -1612419120: New connection from 172.18.0.3 on port 1883. -1612419120: Sending CONNACK to 172.18.0.3 (0, 5) -1612419120: Socket error on client , disconnecting. -1612419140: New connection from 172.18.0.3 on port 1883. -1612419140: Sending CONNACK to 172.18.0.3 (0, 5) -1612419140: Socket error on client , disconnecting. -1612419160: New connection from 172.18.0.3 on port 1883. -1612419160: Sending CONNACK to 172.18.0.3 (0, 5) -1612419160: Socket error on client , disconnecting. -1612419180: New connection from 172.18.0.3 on port 1883. -1612419180: Sending CONNACK to 172.18.0.3 (0, 5) -1612419180: Socket error on client , disconnecting. -1612419200: New connection from 172.18.0.3 on port 1883. -1612419200: Sending CONNACK to 172.18.0.3 (0, 5) -1612419200: Socket error on client , disconnecting. -1612419220: New connection from 172.18.0.3 on port 1883. -1612419220: Sending CONNACK to 172.18.0.3 (0, 5) -1612419220: Socket error on client , disconnecting. -1612419240: New connection from 172.18.0.3 on port 1883. -1612419240: Sending CONNACK to 172.18.0.3 (0, 5) -1612419240: Socket error on client , disconnecting. -1612419260: New connection from 172.18.0.3 on port 1883. -1612419260: Sending CONNACK to 172.18.0.3 (0, 5) -1612419260: Socket error on client , disconnecting. -1612419280: New connection from 172.18.0.3 on port 1883. -1612419280: Sending CONNACK to 172.18.0.3 (0, 5) -1612419280: Socket error on client , disconnecting. -1612419300: New connection from 172.18.0.3 on port 1883. -1612419300: Sending CONNACK to 172.18.0.3 (0, 5) -1612419300: Socket error on client , disconnecting. -1612419320: New connection from 172.18.0.3 on port 1883. -1612419320: Sending CONNACK to 172.18.0.3 (0, 5) -1612419320: Socket error on client , disconnecting. -1612419340: New connection from 172.18.0.3 on port 1883. -1612419340: Sending CONNACK to 172.18.0.3 (0, 5) -1612419340: Socket error on client , disconnecting. -1612419360: New connection from 172.18.0.3 on port 1883. -1612419360: Sending CONNACK to 172.18.0.3 (0, 5) -1612419360: Socket error on client , disconnecting. -1612419380: New connection from 172.18.0.3 on port 1883. -1612419380: Sending CONNACK to 172.18.0.3 (0, 5) -1612419380: Socket error on client , disconnecting. -1612419400: New connection from 172.18.0.3 on port 1883. -1612419400: Sending CONNACK to 172.18.0.3 (0, 5) -1612419400: Socket error on client , disconnecting. -1612419402: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612419402: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612419402: Error: Permission denied. -1612419420: New connection from 172.18.0.3 on port 1883. -1612419420: Sending CONNACK to 172.18.0.3 (0, 5) -1612419420: Socket error on client , disconnecting. -1612419440: New connection from 172.18.0.3 on port 1883. -1612419440: Sending CONNACK to 172.18.0.3 (0, 5) -1612419440: Socket error on client , disconnecting. -1612419460: New connection from 172.18.0.3 on port 1883. -1612419460: Sending CONNACK to 172.18.0.3 (0, 5) -1612419460: Socket error on client , disconnecting. -1612419480: New connection from 172.18.0.3 on port 1883. -1612419480: Sending CONNACK to 172.18.0.3 (0, 5) -1612419480: Socket error on client , disconnecting. -1612419500: New connection from 172.18.0.3 on port 1883. -1612419500: Sending CONNACK to 172.18.0.3 (0, 5) -1612419500: Socket error on client , disconnecting. -1612419520: New connection from 172.18.0.3 on port 1883. -1612419520: Sending CONNACK to 172.18.0.3 (0, 5) -1612419520: Socket error on client , disconnecting. -1612419540: New connection from 172.18.0.3 on port 1883. -1612419540: Sending CONNACK to 172.18.0.3 (0, 5) -1612419540: Socket error on client , disconnecting. -1612419560: New connection from 172.18.0.3 on port 1883. -1612419560: Sending CONNACK to 172.18.0.3 (0, 5) -1612419560: Socket error on client , disconnecting. -1612419580: New connection from 172.18.0.3 on port 1883. -1612419580: Sending CONNACK to 172.18.0.3 (0, 5) -1612419580: Socket error on client , disconnecting. -1612419600: New connection from 172.18.0.3 on port 1883. -1612419600: Sending CONNACK to 172.18.0.3 (0, 5) -1612419600: Socket error on client , disconnecting. -1612419620: New connection from 172.18.0.3 on port 1883. -1612419620: Sending CONNACK to 172.18.0.3 (0, 5) -1612419620: Socket error on client , disconnecting. -1612419640: New connection from 172.18.0.3 on port 1883. -1612419640: Sending CONNACK to 172.18.0.3 (0, 5) -1612419640: Socket error on client , disconnecting. -1612419660: New connection from 172.18.0.3 on port 1883. -1612419660: Sending CONNACK to 172.18.0.3 (0, 5) -1612419660: Socket error on client , disconnecting. -1612419680: New connection from 172.18.0.3 on port 1883. -1612419680: Sending CONNACK to 172.18.0.3 (0, 5) -1612419680: Socket error on client , disconnecting. -1612419700: New connection from 172.18.0.3 on port 1883. -1612419700: Sending CONNACK to 172.18.0.3 (0, 5) -1612419700: Socket error on client , disconnecting. -1612419720: New connection from 172.18.0.3 on port 1883. -1612419720: Sending CONNACK to 172.18.0.3 (0, 5) -1612419720: Socket error on client , disconnecting. -1612419740: New connection from 172.18.0.3 on port 1883. -1612419740: Sending CONNACK to 172.18.0.3 (0, 5) -1612419740: Socket error on client , disconnecting. -1612419760: New connection from 172.18.0.3 on port 1883. -1612419760: Sending CONNACK to 172.18.0.3 (0, 5) -1612419760: Socket error on client , disconnecting. -1612419780: New connection from 172.18.0.3 on port 1883. -1612419780: Sending CONNACK to 172.18.0.3 (0, 5) -1612419780: Socket error on client , disconnecting. -1612419800: New connection from 172.18.0.3 on port 1883. -1612419800: Sending CONNACK to 172.18.0.3 (0, 5) -1612419800: Socket error on client , disconnecting. -1612419820: New connection from 172.18.0.3 on port 1883. -1612419820: Sending CONNACK to 172.18.0.3 (0, 5) -1612419820: Socket error on client , disconnecting. -1612419840: New connection from 172.18.0.3 on port 1883. -1612419840: Sending CONNACK to 172.18.0.3 (0, 5) -1612419840: Socket error on client , disconnecting. -1612419860: New connection from 172.18.0.3 on port 1883. -1612419860: Sending CONNACK to 172.18.0.3 (0, 5) -1612419860: Socket error on client , disconnecting. -1612419880: New connection from 172.18.0.3 on port 1883. -1612419880: Sending CONNACK to 172.18.0.3 (0, 5) -1612419880: Socket error on client , disconnecting. -1612419900: New connection from 172.18.0.3 on port 1883. -1612419900: Sending CONNACK to 172.18.0.3 (0, 5) -1612419900: Socket error on client , disconnecting. -1612419920: New connection from 172.18.0.3 on port 1883. -1612419920: Sending CONNACK to 172.18.0.3 (0, 5) -1612419920: Socket error on client , disconnecting. -1612419940: New connection from 172.18.0.3 on port 1883. -1612419940: Sending CONNACK to 172.18.0.3 (0, 5) -1612419940: Socket error on client , disconnecting. -1612419960: New connection from 172.18.0.3 on port 1883. -1612419960: Sending CONNACK to 172.18.0.3 (0, 5) -1612419960: Socket error on client , disconnecting. -1612419980: New connection from 172.18.0.3 on port 1883. -1612419980: Sending CONNACK to 172.18.0.3 (0, 5) -1612419980: Socket error on client , disconnecting. -1612420000: New connection from 172.18.0.3 on port 1883. -1612420000: Sending CONNACK to 172.18.0.3 (0, 5) -1612420000: Socket error on client , disconnecting. -1612420020: New connection from 172.18.0.3 on port 1883. -1612420020: Sending CONNACK to 172.18.0.3 (0, 5) -1612420020: Socket error on client , disconnecting. -1612420040: New connection from 172.18.0.3 on port 1883. -1612420040: Sending CONNACK to 172.18.0.3 (0, 5) -1612420040: Socket error on client , disconnecting. -1612420060: New connection from 172.18.0.3 on port 1883. -1612420060: Sending CONNACK to 172.18.0.3 (0, 5) -1612420060: Socket error on client , disconnecting. -1612420080: New connection from 172.18.0.3 on port 1883. -1612420080: Sending CONNACK to 172.18.0.3 (0, 5) -1612420080: Socket error on client , disconnecting. -1612420100: New connection from 172.18.0.3 on port 1883. -1612420100: Sending CONNACK to 172.18.0.3 (0, 5) -1612420100: Socket error on client , disconnecting. -1612420120: New connection from 172.18.0.3 on port 1883. -1612420120: Sending CONNACK to 172.18.0.3 (0, 5) -1612420120: Socket error on client , disconnecting. -1612420140: New connection from 172.18.0.3 on port 1883. -1612420140: Sending CONNACK to 172.18.0.3 (0, 5) -1612420140: Socket error on client , disconnecting. -1612420160: New connection from 172.18.0.3 on port 1883. -1612420160: Sending CONNACK to 172.18.0.3 (0, 5) -1612420160: Socket error on client , disconnecting. -1612420180: New connection from 172.18.0.3 on port 1883. -1612420180: Sending CONNACK to 172.18.0.3 (0, 5) -1612420180: Socket error on client , disconnecting. -1612420200: New connection from 172.18.0.3 on port 1883. -1612420200: Sending CONNACK to 172.18.0.3 (0, 5) -1612420200: Socket error on client , disconnecting. -1612420220: New connection from 172.18.0.3 on port 1883. -1612420220: Sending CONNACK to 172.18.0.3 (0, 5) -1612420220: Socket error on client , disconnecting. -1612420240: New connection from 172.18.0.3 on port 1883. -1612420240: Sending CONNACK to 172.18.0.3 (0, 5) -1612420240: Socket error on client , disconnecting. -1612420260: New connection from 172.18.0.3 on port 1883. -1612420260: Sending CONNACK to 172.18.0.3 (0, 5) -1612420260: Socket error on client , disconnecting. -1612420280: New connection from 172.18.0.3 on port 1883. -1612420280: Sending CONNACK to 172.18.0.3 (0, 5) -1612420280: Socket error on client , disconnecting. -1612420300: New connection from 172.18.0.3 on port 1883. -1612420300: Sending CONNACK to 172.18.0.3 (0, 5) -1612420300: Socket error on client , disconnecting. -1612420320: New connection from 172.18.0.3 on port 1883. -1612420320: Sending CONNACK to 172.18.0.3 (0, 5) -1612420320: Socket error on client , disconnecting. -1612420340: New connection from 172.18.0.3 on port 1883. -1612420340: Sending CONNACK to 172.18.0.3 (0, 5) -1612420340: Socket error on client , disconnecting. -1612420360: New connection from 172.18.0.3 on port 1883. -1612420360: Sending CONNACK to 172.18.0.3 (0, 5) -1612420360: Socket error on client , disconnecting. -1612420380: New connection from 172.18.0.3 on port 1883. -1612420380: Sending CONNACK to 172.18.0.3 (0, 5) -1612420380: Socket error on client , disconnecting. -1612420400: New connection from 172.18.0.3 on port 1883. -1612420400: Sending CONNACK to 172.18.0.3 (0, 5) -1612420400: Socket error on client , disconnecting. -1612420420: New connection from 172.18.0.3 on port 1883. -1612420420: Sending CONNACK to 172.18.0.3 (0, 5) -1612420420: Socket error on client , disconnecting. -1612420440: New connection from 172.18.0.3 on port 1883. -1612420440: Sending CONNACK to 172.18.0.3 (0, 5) -1612420440: Socket error on client , disconnecting. -1612420460: New connection from 172.18.0.3 on port 1883. -1612420460: Sending CONNACK to 172.18.0.3 (0, 5) -1612420460: Socket error on client , disconnecting. -1612420480: New connection from 172.18.0.3 on port 1883. -1612420480: Sending CONNACK to 172.18.0.3 (0, 5) -1612420480: Socket error on client , disconnecting. -1612420500: New connection from 172.18.0.3 on port 1883. -1612420500: Sending CONNACK to 172.18.0.3 (0, 5) -1612420500: Socket error on client , disconnecting. -1612420520: New connection from 172.18.0.3 on port 1883. -1612420520: Sending CONNACK to 172.18.0.3 (0, 5) -1612420520: Socket error on client , disconnecting. -1612420540: New connection from 172.18.0.3 on port 1883. -1612420540: Sending CONNACK to 172.18.0.3 (0, 5) -1612420540: Socket error on client , disconnecting. -1612420560: New connection from 172.18.0.3 on port 1883. -1612420560: Sending CONNACK to 172.18.0.3 (0, 5) -1612420560: Socket error on client , disconnecting. -1612420580: New connection from 172.18.0.3 on port 1883. -1612420580: Sending CONNACK to 172.18.0.3 (0, 5) -1612420580: Socket error on client , disconnecting. -1612420600: New connection from 172.18.0.3 on port 1883. -1612420600: Sending CONNACK to 172.18.0.3 (0, 5) -1612420600: Socket error on client , disconnecting. -1612420620: New connection from 172.18.0.3 on port 1883. -1612420620: Sending CONNACK to 172.18.0.3 (0, 5) -1612420620: Socket error on client , disconnecting. -1612420640: New connection from 172.18.0.3 on port 1883. -1612420640: Sending CONNACK to 172.18.0.3 (0, 5) -1612420640: Socket error on client , disconnecting. -1612420660: New connection from 172.18.0.3 on port 1883. -1612420660: Sending CONNACK to 172.18.0.3 (0, 5) -1612420660: Socket error on client , disconnecting. -1612420680: New connection from 172.18.0.3 on port 1883. -1612420680: Sending CONNACK to 172.18.0.3 (0, 5) -1612420680: Socket error on client , disconnecting. -1612420700: New connection from 172.18.0.3 on port 1883. -1612420700: Sending CONNACK to 172.18.0.3 (0, 5) -1612420700: Socket error on client , disconnecting. -1612420720: New connection from 172.18.0.3 on port 1883. -1612420720: Sending CONNACK to 172.18.0.3 (0, 5) -1612420720: Socket error on client , disconnecting. -1612420740: New connection from 172.18.0.3 on port 1883. -1612420740: Sending CONNACK to 172.18.0.3 (0, 5) -1612420740: Socket error on client , disconnecting. -1612420760: New connection from 172.18.0.3 on port 1883. -1612420760: Sending CONNACK to 172.18.0.3 (0, 5) -1612420760: Socket error on client , disconnecting. -1612420780: New connection from 172.18.0.3 on port 1883. -1612420780: Sending CONNACK to 172.18.0.3 (0, 5) -1612420780: Socket error on client , disconnecting. -1612420800: New connection from 172.18.0.3 on port 1883. -1612420800: Sending CONNACK to 172.18.0.3 (0, 5) -1612420800: Socket error on client , disconnecting. -1612420820: New connection from 172.18.0.3 on port 1883. -1612420820: Sending CONNACK to 172.18.0.3 (0, 5) -1612420820: Socket error on client , disconnecting. -1612420840: New connection from 172.18.0.3 on port 1883. -1612420840: Sending CONNACK to 172.18.0.3 (0, 5) -1612420840: Socket error on client , disconnecting. -1612420860: New connection from 172.18.0.3 on port 1883. -1612420860: Sending CONNACK to 172.18.0.3 (0, 5) -1612420860: Socket error on client , disconnecting. -1612420880: New connection from 172.18.0.3 on port 1883. -1612420880: Sending CONNACK to 172.18.0.3 (0, 5) -1612420880: Socket error on client , disconnecting. -1612420900: New connection from 172.18.0.3 on port 1883. -1612420900: Sending CONNACK to 172.18.0.3 (0, 5) -1612420900: Socket error on client , disconnecting. -1612420920: New connection from 172.18.0.3 on port 1883. -1612420920: Sending CONNACK to 172.18.0.3 (0, 5) -1612420920: Socket error on client , disconnecting. -1612420940: New connection from 172.18.0.3 on port 1883. -1612420940: Sending CONNACK to 172.18.0.3 (0, 5) -1612420940: Socket error on client , disconnecting. -1612420960: New connection from 172.18.0.3 on port 1883. -1612420960: Sending CONNACK to 172.18.0.3 (0, 5) -1612420960: Socket error on client , disconnecting. -1612420980: New connection from 172.18.0.3 on port 1883. -1612420980: Sending CONNACK to 172.18.0.3 (0, 5) -1612420980: Socket error on client , disconnecting. -1612421000: New connection from 172.18.0.3 on port 1883. -1612421000: Sending CONNACK to 172.18.0.3 (0, 5) -1612421000: Socket error on client , disconnecting. -1612421020: New connection from 172.18.0.3 on port 1883. -1612421020: Sending CONNACK to 172.18.0.3 (0, 5) -1612421020: Socket error on client , disconnecting. -1612421040: New connection from 172.18.0.3 on port 1883. -1612421040: Sending CONNACK to 172.18.0.3 (0, 5) -1612421040: Socket error on client , disconnecting. -1612421060: New connection from 172.18.0.3 on port 1883. -1612421060: Sending CONNACK to 172.18.0.3 (0, 5) -1612421060: Socket error on client , disconnecting. -1612421080: New connection from 172.18.0.3 on port 1883. -1612421080: Sending CONNACK to 172.18.0.3 (0, 5) -1612421080: Socket error on client , disconnecting. -1612421100: New connection from 172.18.0.3 on port 1883. -1612421100: Sending CONNACK to 172.18.0.3 (0, 5) -1612421100: Socket error on client , disconnecting. -1612421120: New connection from 172.18.0.3 on port 1883. -1612421120: Sending CONNACK to 172.18.0.3 (0, 5) -1612421120: Socket error on client , disconnecting. -1612421140: New connection from 172.18.0.3 on port 1883. -1612421140: Sending CONNACK to 172.18.0.3 (0, 5) -1612421140: Socket error on client , disconnecting. -1612421160: New connection from 172.18.0.3 on port 1883. -1612421160: Sending CONNACK to 172.18.0.3 (0, 5) -1612421160: Socket error on client , disconnecting. -1612421180: New connection from 172.18.0.3 on port 1883. -1612421180: Sending CONNACK to 172.18.0.3 (0, 5) -1612421180: Socket error on client , disconnecting. -1612421200: New connection from 172.18.0.3 on port 1883. -1612421200: Sending CONNACK to 172.18.0.3 (0, 5) -1612421200: Socket error on client , disconnecting. -1612421203: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612421203: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612421203: Error: Permission denied. -1612421220: New connection from 172.18.0.3 on port 1883. -1612421220: Sending CONNACK to 172.18.0.3 (0, 5) -1612421220: Socket error on client , disconnecting. -1612421240: New connection from 172.18.0.3 on port 1883. -1612421240: Sending CONNACK to 172.18.0.3 (0, 5) -1612421240: Socket error on client , disconnecting. -1612421260: New connection from 172.18.0.3 on port 1883. -1612421260: Sending CONNACK to 172.18.0.3 (0, 5) -1612421260: Socket error on client , disconnecting. -1612421280: New connection from 172.18.0.3 on port 1883. -1612421280: Sending CONNACK to 172.18.0.3 (0, 5) -1612421280: Socket error on client , disconnecting. -1612421300: New connection from 172.18.0.3 on port 1883. -1612421300: Sending CONNACK to 172.18.0.3 (0, 5) -1612421300: Socket error on client , disconnecting. -1612421320: New connection from 172.18.0.3 on port 1883. -1612421320: Sending CONNACK to 172.18.0.3 (0, 5) -1612421320: Socket error on client , disconnecting. -1612421340: New connection from 172.18.0.3 on port 1883. -1612421340: Sending CONNACK to 172.18.0.3 (0, 5) -1612421340: Socket error on client , disconnecting. -1612421360: New connection from 172.18.0.3 on port 1883. -1612421360: Sending CONNACK to 172.18.0.3 (0, 5) -1612421360: Socket error on client , disconnecting. -1612421380: New connection from 172.18.0.3 on port 1883. -1612421380: Sending CONNACK to 172.18.0.3 (0, 5) -1612421380: Socket error on client , disconnecting. -1612421400: New connection from 172.18.0.3 on port 1883. -1612421400: Sending CONNACK to 172.18.0.3 (0, 5) -1612421400: Socket error on client , disconnecting. -1612421420: New connection from 172.18.0.3 on port 1883. -1612421420: Sending CONNACK to 172.18.0.3 (0, 5) -1612421420: Socket error on client , disconnecting. -1612421440: New connection from 172.18.0.3 on port 1883. -1612421440: Sending CONNACK to 172.18.0.3 (0, 5) -1612421440: Socket error on client , disconnecting. -1612421460: New connection from 172.18.0.3 on port 1883. -1612421460: Sending CONNACK to 172.18.0.3 (0, 5) -1612421460: Socket error on client , disconnecting. -1612421480: New connection from 172.18.0.3 on port 1883. -1612421480: Sending CONNACK to 172.18.0.3 (0, 5) -1612421480: Socket error on client , disconnecting. -1612421500: New connection from 172.18.0.3 on port 1883. -1612421500: Sending CONNACK to 172.18.0.3 (0, 5) -1612421500: Socket error on client , disconnecting. -1612421520: New connection from 172.18.0.3 on port 1883. -1612421520: Sending CONNACK to 172.18.0.3 (0, 5) -1612421520: Socket error on client , disconnecting. -1612421540: New connection from 172.18.0.3 on port 1883. -1612421540: Sending CONNACK to 172.18.0.3 (0, 5) -1612421540: Socket error on client , disconnecting. -1612421560: New connection from 172.18.0.3 on port 1883. -1612421560: Sending CONNACK to 172.18.0.3 (0, 5) -1612421560: Socket error on client , disconnecting. -1612421580: New connection from 172.18.0.3 on port 1883. -1612421580: Sending CONNACK to 172.18.0.3 (0, 5) -1612421580: Socket error on client , disconnecting. -1612421600: New connection from 172.18.0.3 on port 1883. -1612421600: Sending CONNACK to 172.18.0.3 (0, 5) -1612421600: Socket error on client , disconnecting. -1612421620: New connection from 172.18.0.3 on port 1883. -1612421620: Sending CONNACK to 172.18.0.3 (0, 5) -1612421620: Socket error on client , disconnecting. -1612421640: New connection from 172.18.0.3 on port 1883. -1612421640: Sending CONNACK to 172.18.0.3 (0, 5) -1612421640: Socket error on client , disconnecting. -1612421660: New connection from 172.18.0.3 on port 1883. -1612421660: Sending CONNACK to 172.18.0.3 (0, 5) -1612421660: Socket error on client , disconnecting. -1612421680: New connection from 172.18.0.3 on port 1883. -1612421680: Sending CONNACK to 172.18.0.3 (0, 5) -1612421680: Socket error on client , disconnecting. -1612421700: New connection from 172.18.0.3 on port 1883. -1612421700: Sending CONNACK to 172.18.0.3 (0, 5) -1612421700: Socket error on client , disconnecting. -1612421720: New connection from 172.18.0.3 on port 1883. -1612421720: Sending CONNACK to 172.18.0.3 (0, 5) -1612421720: Socket error on client , disconnecting. -1612421740: New connection from 172.18.0.3 on port 1883. -1612421740: Sending CONNACK to 172.18.0.3 (0, 5) -1612421740: Socket error on client , disconnecting. -1612421760: New connection from 172.18.0.3 on port 1883. -1612421760: Sending CONNACK to 172.18.0.3 (0, 5) -1612421760: Socket error on client , disconnecting. -1612421780: New connection from 172.18.0.3 on port 1883. -1612421780: Sending CONNACK to 172.18.0.3 (0, 5) -1612421780: Socket error on client , disconnecting. -1612421800: New connection from 172.18.0.3 on port 1883. -1612421800: Sending CONNACK to 172.18.0.3 (0, 5) -1612421800: Socket error on client , disconnecting. -1612421820: New connection from 172.18.0.3 on port 1883. -1612421820: Sending CONNACK to 172.18.0.3 (0, 5) -1612421820: Socket error on client , disconnecting. -1612421840: New connection from 172.18.0.3 on port 1883. -1612421840: Sending CONNACK to 172.18.0.3 (0, 5) -1612421840: Socket error on client , disconnecting. -1612421860: New connection from 172.18.0.3 on port 1883. -1612421860: Sending CONNACK to 172.18.0.3 (0, 5) -1612421860: Socket error on client , disconnecting. -1612421880: New connection from 172.18.0.3 on port 1883. -1612421880: Sending CONNACK to 172.18.0.3 (0, 5) -1612421880: Socket error on client , disconnecting. -1612421900: New connection from 172.18.0.3 on port 1883. -1612421900: Sending CONNACK to 172.18.0.3 (0, 5) -1612421900: Socket error on client , disconnecting. -1612421920: New connection from 172.18.0.3 on port 1883. -1612421920: Sending CONNACK to 172.18.0.3 (0, 5) -1612421920: Socket error on client , disconnecting. -1612421940: New connection from 172.18.0.3 on port 1883. -1612421940: Sending CONNACK to 172.18.0.3 (0, 5) -1612421940: Socket error on client , disconnecting. -1612421960: New connection from 172.18.0.3 on port 1883. -1612421960: Sending CONNACK to 172.18.0.3 (0, 5) -1612421960: Socket error on client , disconnecting. -1612421980: New connection from 172.18.0.3 on port 1883. -1612421980: Sending CONNACK to 172.18.0.3 (0, 5) -1612421980: Socket error on client , disconnecting. -1612422000: New connection from 172.18.0.3 on port 1883. -1612422000: Sending CONNACK to 172.18.0.3 (0, 5) -1612422000: Socket error on client , disconnecting. -1612422020: New connection from 172.18.0.3 on port 1883. -1612422020: Sending CONNACK to 172.18.0.3 (0, 5) -1612422020: Socket error on client , disconnecting. -1612422040: New connection from 172.18.0.3 on port 1883. -1612422040: Sending CONNACK to 172.18.0.3 (0, 5) -1612422040: Socket error on client , disconnecting. -1612422060: New connection from 172.18.0.3 on port 1883. -1612422060: Sending CONNACK to 172.18.0.3 (0, 5) -1612422060: Socket error on client , disconnecting. -1612422080: New connection from 172.18.0.3 on port 1883. -1612422080: Sending CONNACK to 172.18.0.3 (0, 5) -1612422080: Socket error on client , disconnecting. -1612422100: New connection from 172.18.0.3 on port 1883. -1612422100: Sending CONNACK to 172.18.0.3 (0, 5) -1612422100: Socket error on client , disconnecting. -1612422120: New connection from 172.18.0.3 on port 1883. -1612422120: Sending CONNACK to 172.18.0.3 (0, 5) -1612422120: Socket error on client , disconnecting. -1612422140: New connection from 172.18.0.3 on port 1883. -1612422140: Sending CONNACK to 172.18.0.3 (0, 5) -1612422140: Socket error on client , disconnecting. -1612422160: New connection from 172.18.0.3 on port 1883. -1612422160: Sending CONNACK to 172.18.0.3 (0, 5) -1612422160: Socket error on client , disconnecting. -1612422180: New connection from 172.18.0.3 on port 1883. -1612422180: Sending CONNACK to 172.18.0.3 (0, 5) -1612422180: Socket error on client , disconnecting. -1612422200: New connection from 172.18.0.3 on port 1883. -1612422200: Sending CONNACK to 172.18.0.3 (0, 5) -1612422200: Socket error on client , disconnecting. -1612422220: New connection from 172.18.0.3 on port 1883. -1612422220: Sending CONNACK to 172.18.0.3 (0, 5) -1612422220: Socket error on client , disconnecting. -1612422240: New connection from 172.18.0.3 on port 1883. -1612422240: Sending CONNACK to 172.18.0.3 (0, 5) -1612422240: Socket error on client , disconnecting. -1612422260: New connection from 172.18.0.3 on port 1883. -1612422260: Sending CONNACK to 172.18.0.3 (0, 5) -1612422260: Socket error on client , disconnecting. -1612422280: New connection from 172.18.0.3 on port 1883. -1612422280: Sending CONNACK to 172.18.0.3 (0, 5) -1612422280: Socket error on client , disconnecting. -1612422300: New connection from 172.18.0.3 on port 1883. -1612422300: Sending CONNACK to 172.18.0.3 (0, 5) -1612422300: Socket error on client , disconnecting. -1612422320: New connection from 172.18.0.3 on port 1883. -1612422320: Sending CONNACK to 172.18.0.3 (0, 5) -1612422320: Socket error on client , disconnecting. -1612422340: New connection from 172.18.0.3 on port 1883. -1612422340: Sending CONNACK to 172.18.0.3 (0, 5) -1612422340: Socket error on client , disconnecting. -1612422360: New connection from 172.18.0.3 on port 1883. -1612422360: Sending CONNACK to 172.18.0.3 (0, 5) -1612422360: Socket error on client , disconnecting. -1612422380: New connection from 172.18.0.3 on port 1883. -1612422380: Sending CONNACK to 172.18.0.3 (0, 5) -1612422380: Socket error on client , disconnecting. -1612422400: New connection from 172.18.0.3 on port 1883. -1612422400: Sending CONNACK to 172.18.0.3 (0, 5) -1612422400: Socket error on client , disconnecting. -1612422420: New connection from 172.18.0.3 on port 1883. -1612422420: Sending CONNACK to 172.18.0.3 (0, 5) -1612422420: Socket error on client , disconnecting. -1612422440: New connection from 172.18.0.3 on port 1883. -1612422440: Sending CONNACK to 172.18.0.3 (0, 5) -1612422440: Socket error on client , disconnecting. -1612422460: New connection from 172.18.0.3 on port 1883. -1612422460: Sending CONNACK to 172.18.0.3 (0, 5) -1612422460: Socket error on client , disconnecting. -1612422480: New connection from 172.18.0.3 on port 1883. -1612422480: Sending CONNACK to 172.18.0.3 (0, 5) -1612422480: Socket error on client , disconnecting. -1612422500: New connection from 172.18.0.3 on port 1883. -1612422500: Sending CONNACK to 172.18.0.3 (0, 5) -1612422500: Socket error on client , disconnecting. -1612422520: New connection from 172.18.0.3 on port 1883. -1612422520: Sending CONNACK to 172.18.0.3 (0, 5) -1612422520: Socket error on client , disconnecting. -1612422540: New connection from 172.18.0.3 on port 1883. -1612422540: Sending CONNACK to 172.18.0.3 (0, 5) -1612422540: Socket error on client , disconnecting. -1612422560: New connection from 172.18.0.3 on port 1883. -1612422560: Sending CONNACK to 172.18.0.3 (0, 5) -1612422560: Socket error on client , disconnecting. -1612422580: New connection from 172.18.0.3 on port 1883. -1612422580: Sending CONNACK to 172.18.0.3 (0, 5) -1612422580: Socket error on client , disconnecting. -1612422600: New connection from 172.18.0.3 on port 1883. -1612422600: Sending CONNACK to 172.18.0.3 (0, 5) -1612422600: Socket error on client , disconnecting. -1612422620: New connection from 172.18.0.3 on port 1883. -1612422620: Sending CONNACK to 172.18.0.3 (0, 5) -1612422620: Socket error on client , disconnecting. -1612422640: New connection from 172.18.0.3 on port 1883. -1612422640: Sending CONNACK to 172.18.0.3 (0, 5) -1612422640: Socket error on client , disconnecting. -1612422660: New connection from 172.18.0.3 on port 1883. -1612422660: Sending CONNACK to 172.18.0.3 (0, 5) -1612422660: Socket error on client , disconnecting. -1612422680: New connection from 172.18.0.3 on port 1883. -1612422680: Sending CONNACK to 172.18.0.3 (0, 5) -1612422680: Socket error on client , disconnecting. -1612422700: New connection from 172.18.0.3 on port 1883. -1612422700: Sending CONNACK to 172.18.0.3 (0, 5) -1612422700: Socket error on client , disconnecting. -1612422720: New connection from 172.18.0.3 on port 1883. -1612422720: Sending CONNACK to 172.18.0.3 (0, 5) -1612422720: Socket error on client , disconnecting. -1612422740: New connection from 172.18.0.3 on port 1883. -1612422740: Sending CONNACK to 172.18.0.3 (0, 5) -1612422740: Socket error on client , disconnecting. -1612422760: New connection from 172.18.0.3 on port 1883. -1612422760: Sending CONNACK to 172.18.0.3 (0, 5) -1612422760: Socket error on client , disconnecting. -1612422780: New connection from 172.18.0.3 on port 1883. -1612422780: Sending CONNACK to 172.18.0.3 (0, 5) -1612422780: Socket error on client , disconnecting. -1612422800: New connection from 172.18.0.3 on port 1883. -1612422800: Sending CONNACK to 172.18.0.3 (0, 5) -1612422800: Socket error on client , disconnecting. -1612422820: New connection from 172.18.0.3 on port 1883. -1612422820: Sending CONNACK to 172.18.0.3 (0, 5) -1612422820: Socket error on client , disconnecting. -1612422840: New connection from 172.18.0.3 on port 1883. -1612422840: Sending CONNACK to 172.18.0.3 (0, 5) -1612422840: Socket error on client , disconnecting. -1612422860: New connection from 172.18.0.3 on port 1883. -1612422860: Sending CONNACK to 172.18.0.3 (0, 5) -1612422860: Socket error on client , disconnecting. -1612422880: New connection from 172.18.0.3 on port 1883. -1612422880: Sending CONNACK to 172.18.0.3 (0, 5) -1612422880: Socket error on client , disconnecting. -1612422900: New connection from 172.18.0.3 on port 1883. -1612422900: Sending CONNACK to 172.18.0.3 (0, 5) -1612422900: Socket error on client , disconnecting. -1612422920: New connection from 172.18.0.3 on port 1883. -1612422920: Sending CONNACK to 172.18.0.3 (0, 5) -1612422920: Socket error on client , disconnecting. -1612422940: New connection from 172.18.0.3 on port 1883. -1612422940: Sending CONNACK to 172.18.0.3 (0, 5) -1612422940: Socket error on client , disconnecting. -1612422960: New connection from 172.18.0.3 on port 1883. -1612422960: Sending CONNACK to 172.18.0.3 (0, 5) -1612422960: Socket error on client , disconnecting. -1612422980: New connection from 172.18.0.3 on port 1883. -1612422980: Sending CONNACK to 172.18.0.3 (0, 5) -1612422980: Socket error on client , disconnecting. -1612423000: New connection from 172.18.0.3 on port 1883. -1612423000: Sending CONNACK to 172.18.0.3 (0, 5) -1612423000: Socket error on client , disconnecting. -1612423004: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612423004: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612423004: Error: Permission denied. -1612423020: New connection from 172.18.0.3 on port 1883. -1612423020: Sending CONNACK to 172.18.0.3 (0, 5) -1612423020: Socket error on client , disconnecting. -1612423040: New connection from 172.18.0.3 on port 1883. -1612423040: Sending CONNACK to 172.18.0.3 (0, 5) -1612423040: Socket error on client , disconnecting. -1612423060: New connection from 172.18.0.3 on port 1883. -1612423060: Sending CONNACK to 172.18.0.3 (0, 5) -1612423060: Socket error on client , disconnecting. -1612423080: New connection from 172.18.0.3 on port 1883. -1612423080: Sending CONNACK to 172.18.0.3 (0, 5) -1612423080: Socket error on client , disconnecting. -1612423100: New connection from 172.18.0.3 on port 1883. -1612423100: Sending CONNACK to 172.18.0.3 (0, 5) -1612423100: Socket error on client , disconnecting. -1612423120: New connection from 172.18.0.3 on port 1883. -1612423120: Sending CONNACK to 172.18.0.3 (0, 5) -1612423120: Socket error on client , disconnecting. -1612423140: New connection from 172.18.0.3 on port 1883. -1612423140: Sending CONNACK to 172.18.0.3 (0, 5) -1612423140: Socket error on client , disconnecting. -1612423160: New connection from 172.18.0.3 on port 1883. -1612423160: Sending CONNACK to 172.18.0.3 (0, 5) -1612423160: Socket error on client , disconnecting. -1612423180: New connection from 172.18.0.3 on port 1883. -1612423180: Sending CONNACK to 172.18.0.3 (0, 5) -1612423180: Socket error on client , disconnecting. -1612423200: New connection from 172.18.0.3 on port 1883. -1612423200: Sending CONNACK to 172.18.0.3 (0, 5) -1612423200: Socket error on client , disconnecting. -1612423220: New connection from 172.18.0.3 on port 1883. -1612423220: Sending CONNACK to 172.18.0.3 (0, 5) -1612423220: Socket error on client , disconnecting. -1612423240: New connection from 172.18.0.3 on port 1883. -1612423240: Sending CONNACK to 172.18.0.3 (0, 5) -1612423240: Socket error on client , disconnecting. -1612423260: New connection from 172.18.0.3 on port 1883. -1612423260: Sending CONNACK to 172.18.0.3 (0, 5) -1612423260: Socket error on client , disconnecting. -1612423280: New connection from 172.18.0.3 on port 1883. -1612423280: Sending CONNACK to 172.18.0.3 (0, 5) -1612423280: Socket error on client , disconnecting. -1612423300: New connection from 172.18.0.3 on port 1883. -1612423300: Sending CONNACK to 172.18.0.3 (0, 5) -1612423300: Socket error on client , disconnecting. -1612423320: New connection from 172.18.0.3 on port 1883. -1612423320: Sending CONNACK to 172.18.0.3 (0, 5) -1612423320: Socket error on client , disconnecting. -1612423340: New connection from 172.18.0.3 on port 1883. -1612423340: Sending CONNACK to 172.18.0.3 (0, 5) -1612423340: Socket error on client , disconnecting. -1612423360: New connection from 172.18.0.3 on port 1883. -1612423360: Sending CONNACK to 172.18.0.3 (0, 5) -1612423360: Socket error on client , disconnecting. -1612423380: New connection from 172.18.0.3 on port 1883. -1612423380: Sending CONNACK to 172.18.0.3 (0, 5) -1612423380: Socket error on client , disconnecting. -1612423400: New connection from 172.18.0.3 on port 1883. -1612423400: Sending CONNACK to 172.18.0.3 (0, 5) -1612423400: Socket error on client , disconnecting. -1612423420: New connection from 172.18.0.3 on port 1883. -1612423420: Sending CONNACK to 172.18.0.3 (0, 5) -1612423420: Socket error on client , disconnecting. -1612423440: New connection from 172.18.0.3 on port 1883. -1612423440: Sending CONNACK to 172.18.0.3 (0, 5) -1612423440: Socket error on client , disconnecting. -1612423460: New connection from 172.18.0.3 on port 1883. -1612423460: Sending CONNACK to 172.18.0.3 (0, 5) -1612423460: Socket error on client , disconnecting. -1612423480: New connection from 172.18.0.3 on port 1883. -1612423480: Sending CONNACK to 172.18.0.3 (0, 5) -1612423480: Socket error on client , disconnecting. -1612423500: New connection from 172.18.0.3 on port 1883. -1612423500: Sending CONNACK to 172.18.0.3 (0, 5) -1612423500: Socket error on client , disconnecting. -1612423520: New connection from 172.18.0.3 on port 1883. -1612423520: Sending CONNACK to 172.18.0.3 (0, 5) -1612423520: Socket error on client , disconnecting. -1612423540: New connection from 172.18.0.3 on port 1883. -1612423540: Sending CONNACK to 172.18.0.3 (0, 5) -1612423540: Socket error on client , disconnecting. -1612423560: New connection from 172.18.0.3 on port 1883. -1612423560: Sending CONNACK to 172.18.0.3 (0, 5) -1612423560: Socket error on client , disconnecting. -1612423580: New connection from 172.18.0.3 on port 1883. -1612423580: Sending CONNACK to 172.18.0.3 (0, 5) -1612423580: Socket error on client , disconnecting. -1612423600: New connection from 172.18.0.3 on port 1883. -1612423600: Sending CONNACK to 172.18.0.3 (0, 5) -1612423600: Socket error on client , disconnecting. -1612423620: New connection from 172.18.0.3 on port 1883. -1612423620: Sending CONNACK to 172.18.0.3 (0, 5) -1612423620: Socket error on client , disconnecting. -1612423640: New connection from 172.18.0.3 on port 1883. -1612423640: Sending CONNACK to 172.18.0.3 (0, 5) -1612423640: Socket error on client , disconnecting. -1612423660: New connection from 172.18.0.3 on port 1883. -1612423660: Sending CONNACK to 172.18.0.3 (0, 5) -1612423660: Socket error on client , disconnecting. -1612423680: New connection from 172.18.0.3 on port 1883. -1612423680: Sending CONNACK to 172.18.0.3 (0, 5) -1612423680: Socket error on client , disconnecting. -1612423700: New connection from 172.18.0.3 on port 1883. -1612423700: Sending CONNACK to 172.18.0.3 (0, 5) -1612423700: Socket error on client , disconnecting. -1612423720: New connection from 172.18.0.3 on port 1883. -1612423720: Sending CONNACK to 172.18.0.3 (0, 5) -1612423720: Socket error on client , disconnecting. -1612423740: New connection from 172.18.0.3 on port 1883. -1612423740: Sending CONNACK to 172.18.0.3 (0, 5) -1612423740: Socket error on client , disconnecting. -1612423760: New connection from 172.18.0.3 on port 1883. -1612423760: Sending CONNACK to 172.18.0.3 (0, 5) -1612423760: Socket error on client , disconnecting. -1612423780: New connection from 172.18.0.3 on port 1883. -1612423780: Sending CONNACK to 172.18.0.3 (0, 5) -1612423780: Socket error on client , disconnecting. -1612423800: New connection from 172.18.0.3 on port 1883. -1612423800: Sending CONNACK to 172.18.0.3 (0, 5) -1612423800: Socket error on client , disconnecting. -1612423820: New connection from 172.18.0.3 on port 1883. -1612423820: Sending CONNACK to 172.18.0.3 (0, 5) -1612423820: Socket error on client , disconnecting. -1612423840: New connection from 172.18.0.3 on port 1883. -1612423840: Sending CONNACK to 172.18.0.3 (0, 5) -1612423840: Socket error on client , disconnecting. -1612423860: New connection from 172.18.0.3 on port 1883. -1612423860: Sending CONNACK to 172.18.0.3 (0, 5) -1612423860: Socket error on client , disconnecting. -1612423880: New connection from 172.18.0.3 on port 1883. -1612423880: Sending CONNACK to 172.18.0.3 (0, 5) -1612423880: Socket error on client , disconnecting. -1612423900: New connection from 172.18.0.3 on port 1883. -1612423900: Sending CONNACK to 172.18.0.3 (0, 5) -1612423900: Socket error on client , disconnecting. -1612423920: New connection from 172.18.0.3 on port 1883. -1612423920: Sending CONNACK to 172.18.0.3 (0, 5) -1612423920: Socket error on client , disconnecting. -1612423940: New connection from 172.18.0.3 on port 1883. -1612423940: Sending CONNACK to 172.18.0.3 (0, 5) -1612423940: Socket error on client , disconnecting. -1612423960: New connection from 172.18.0.3 on port 1883. -1612423960: Sending CONNACK to 172.18.0.3 (0, 5) -1612423960: Socket error on client , disconnecting. -1612423980: New connection from 172.18.0.3 on port 1883. -1612423980: Sending CONNACK to 172.18.0.3 (0, 5) -1612423980: Socket error on client , disconnecting. -1612424000: New connection from 172.18.0.3 on port 1883. -1612424000: Sending CONNACK to 172.18.0.3 (0, 5) -1612424000: Socket error on client , disconnecting. -1612424020: New connection from 172.18.0.3 on port 1883. -1612424020: Sending CONNACK to 172.18.0.3 (0, 5) -1612424020: Socket error on client , disconnecting. -1612424040: New connection from 172.18.0.3 on port 1883. -1612424040: Sending CONNACK to 172.18.0.3 (0, 5) -1612424040: Socket error on client , disconnecting. -1612424060: New connection from 172.18.0.3 on port 1883. -1612424060: Sending CONNACK to 172.18.0.3 (0, 5) -1612424060: Socket error on client , disconnecting. -1612424080: New connection from 172.18.0.3 on port 1883. -1612424080: Sending CONNACK to 172.18.0.3 (0, 5) -1612424080: Socket error on client , disconnecting. -1612424100: New connection from 172.18.0.3 on port 1883. -1612424100: Sending CONNACK to 172.18.0.3 (0, 5) -1612424100: Socket error on client , disconnecting. -1612424120: New connection from 172.18.0.3 on port 1883. -1612424120: Sending CONNACK to 172.18.0.3 (0, 5) -1612424120: Socket error on client , disconnecting. -1612424140: New connection from 172.18.0.3 on port 1883. -1612424140: Sending CONNACK to 172.18.0.3 (0, 5) -1612424140: Socket error on client , disconnecting. -1612424160: New connection from 172.18.0.3 on port 1883. -1612424160: Sending CONNACK to 172.18.0.3 (0, 5) -1612424160: Socket error on client , disconnecting. -1612424180: New connection from 172.18.0.3 on port 1883. -1612424180: Sending CONNACK to 172.18.0.3 (0, 5) -1612424180: Socket error on client , disconnecting. -1612424200: New connection from 172.18.0.3 on port 1883. -1612424200: Sending CONNACK to 172.18.0.3 (0, 5) -1612424200: Socket error on client , disconnecting. -1612424220: New connection from 172.18.0.3 on port 1883. -1612424220: Sending CONNACK to 172.18.0.3 (0, 5) -1612424220: Socket error on client , disconnecting. -1612424240: New connection from 172.18.0.3 on port 1883. -1612424240: Sending CONNACK to 172.18.0.3 (0, 5) -1612424240: Socket error on client , disconnecting. -1612424260: New connection from 172.18.0.3 on port 1883. -1612424260: Sending CONNACK to 172.18.0.3 (0, 5) -1612424260: Socket error on client , disconnecting. -1612424280: New connection from 172.18.0.3 on port 1883. -1612424280: Sending CONNACK to 172.18.0.3 (0, 5) -1612424280: Socket error on client , disconnecting. -1612424300: New connection from 172.18.0.3 on port 1883. -1612424300: Sending CONNACK to 172.18.0.3 (0, 5) -1612424300: Socket error on client , disconnecting. -1612424320: New connection from 172.18.0.3 on port 1883. -1612424320: Sending CONNACK to 172.18.0.3 (0, 5) -1612424320: Socket error on client , disconnecting. -1612424340: New connection from 172.18.0.3 on port 1883. -1612424340: Sending CONNACK to 172.18.0.3 (0, 5) -1612424340: Socket error on client , disconnecting. -1612424360: New connection from 172.18.0.3 on port 1883. -1612424360: Sending CONNACK to 172.18.0.3 (0, 5) -1612424360: Socket error on client , disconnecting. -1612424380: New connection from 172.18.0.3 on port 1883. -1612424380: Sending CONNACK to 172.18.0.3 (0, 5) -1612424380: Socket error on client , disconnecting. -1612424400: New connection from 172.18.0.3 on port 1883. -1612424400: Sending CONNACK to 172.18.0.3 (0, 5) -1612424400: Socket error on client , disconnecting. -1612424420: New connection from 172.18.0.3 on port 1883. -1612424420: Sending CONNACK to 172.18.0.3 (0, 5) -1612424420: Socket error on client , disconnecting. -1612424440: New connection from 172.18.0.3 on port 1883. -1612424440: Sending CONNACK to 172.18.0.3 (0, 5) -1612424440: Socket error on client , disconnecting. -1612424460: New connection from 172.18.0.3 on port 1883. -1612424460: Sending CONNACK to 172.18.0.3 (0, 5) -1612424460: Socket error on client , disconnecting. -1612424480: New connection from 172.18.0.3 on port 1883. -1612424480: Sending CONNACK to 172.18.0.3 (0, 5) -1612424480: Socket error on client , disconnecting. -1612424500: New connection from 172.18.0.3 on port 1883. -1612424500: Sending CONNACK to 172.18.0.3 (0, 5) -1612424500: Socket error on client , disconnecting. -1612424520: New connection from 172.18.0.3 on port 1883. -1612424520: Sending CONNACK to 172.18.0.3 (0, 5) -1612424520: Socket error on client , disconnecting. -1612424540: New connection from 172.18.0.3 on port 1883. -1612424540: Sending CONNACK to 172.18.0.3 (0, 5) -1612424540: Socket error on client , disconnecting. -1612424560: New connection from 172.18.0.3 on port 1883. -1612424560: Sending CONNACK to 172.18.0.3 (0, 5) -1612424560: Socket error on client , disconnecting. -1612424580: New connection from 172.18.0.3 on port 1883. -1612424580: Sending CONNACK to 172.18.0.3 (0, 5) -1612424580: Socket error on client , disconnecting. -1612424600: New connection from 172.18.0.3 on port 1883. -1612424600: Sending CONNACK to 172.18.0.3 (0, 5) -1612424600: Socket error on client , disconnecting. -1612424620: New connection from 172.18.0.3 on port 1883. -1612424620: Sending CONNACK to 172.18.0.3 (0, 5) -1612424620: Socket error on client , disconnecting. -1612424640: New connection from 172.18.0.3 on port 1883. -1612424640: Sending CONNACK to 172.18.0.3 (0, 5) -1612424640: Socket error on client , disconnecting. -1612424660: New connection from 172.18.0.3 on port 1883. -1612424660: Sending CONNACK to 172.18.0.3 (0, 5) -1612424660: Socket error on client , disconnecting. -1612424680: New connection from 172.18.0.3 on port 1883. -1612424680: Sending CONNACK to 172.18.0.3 (0, 5) -1612424680: Socket error on client , disconnecting. -1612424700: New connection from 172.18.0.3 on port 1883. -1612424700: Sending CONNACK to 172.18.0.3 (0, 5) -1612424700: Socket error on client , disconnecting. -1612424720: New connection from 172.18.0.3 on port 1883. -1612424720: Sending CONNACK to 172.18.0.3 (0, 5) -1612424720: Socket error on client , disconnecting. -1612424740: New connection from 172.18.0.3 on port 1883. -1612424740: Sending CONNACK to 172.18.0.3 (0, 5) -1612424740: Socket error on client , disconnecting. -1612424760: New connection from 172.18.0.3 on port 1883. -1612424760: Sending CONNACK to 172.18.0.3 (0, 5) -1612424760: Socket error on client , disconnecting. -1612424780: New connection from 172.18.0.3 on port 1883. -1612424780: Sending CONNACK to 172.18.0.3 (0, 5) -1612424780: Socket error on client , disconnecting. -1612424800: New connection from 172.18.0.3 on port 1883. -1612424800: Sending CONNACK to 172.18.0.3 (0, 5) -1612424800: Socket error on client , disconnecting. -1612424805: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612424805: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612424805: Error: Permission denied. -1612424820: New connection from 172.18.0.3 on port 1883. -1612424820: Sending CONNACK to 172.18.0.3 (0, 5) -1612424820: Socket error on client , disconnecting. -1612424840: New connection from 172.18.0.3 on port 1883. -1612424840: Sending CONNACK to 172.18.0.3 (0, 5) -1612424840: Socket error on client , disconnecting. -1612424860: New connection from 172.18.0.3 on port 1883. -1612424860: Sending CONNACK to 172.18.0.3 (0, 5) -1612424860: Socket error on client , disconnecting. -1612424880: New connection from 172.18.0.3 on port 1883. -1612424880: Sending CONNACK to 172.18.0.3 (0, 5) -1612424880: Socket error on client , disconnecting. -1612424900: New connection from 172.18.0.3 on port 1883. -1612424900: Sending CONNACK to 172.18.0.3 (0, 5) -1612424900: Socket error on client , disconnecting. -1612424920: New connection from 172.18.0.3 on port 1883. -1612424920: Sending CONNACK to 172.18.0.3 (0, 5) -1612424920: Socket error on client , disconnecting. -1612424940: New connection from 172.18.0.3 on port 1883. -1612424940: Sending CONNACK to 172.18.0.3 (0, 5) -1612424940: Socket error on client , disconnecting. -1612424960: New connection from 172.18.0.3 on port 1883. -1612424960: Sending CONNACK to 172.18.0.3 (0, 5) -1612424960: Socket error on client , disconnecting. -1612424980: New connection from 172.18.0.3 on port 1883. -1612424980: Sending CONNACK to 172.18.0.3 (0, 5) -1612424980: Socket error on client , disconnecting. -1612425000: New connection from 172.18.0.3 on port 1883. -1612425000: Sending CONNACK to 172.18.0.3 (0, 5) -1612425000: Socket error on client , disconnecting. -1612425020: New connection from 172.18.0.3 on port 1883. -1612425020: Sending CONNACK to 172.18.0.3 (0, 5) -1612425020: Socket error on client , disconnecting. -1612425040: New connection from 172.18.0.3 on port 1883. -1612425040: Sending CONNACK to 172.18.0.3 (0, 5) -1612425040: Socket error on client , disconnecting. -1612425060: New connection from 172.18.0.3 on port 1883. -1612425060: Sending CONNACK to 172.18.0.3 (0, 5) -1612425060: Socket error on client , disconnecting. -1612425080: New connection from 172.18.0.3 on port 1883. -1612425080: Sending CONNACK to 172.18.0.3 (0, 5) -1612425080: Socket error on client , disconnecting. -1612425100: New connection from 172.18.0.3 on port 1883. -1612425100: Sending CONNACK to 172.18.0.3 (0, 5) -1612425100: Socket error on client , disconnecting. -1612425120: New connection from 172.18.0.3 on port 1883. -1612425120: Sending CONNACK to 172.18.0.3 (0, 5) -1612425120: Socket error on client , disconnecting. -1612425140: New connection from 172.18.0.3 on port 1883. -1612425140: Sending CONNACK to 172.18.0.3 (0, 5) -1612425140: Socket error on client , disconnecting. -1612425160: New connection from 172.18.0.3 on port 1883. -1612425160: Sending CONNACK to 172.18.0.3 (0, 5) -1612425160: Socket error on client , disconnecting. -1612425180: New connection from 172.18.0.3 on port 1883. -1612425180: Sending CONNACK to 172.18.0.3 (0, 5) -1612425180: Socket error on client , disconnecting. -1612425200: New connection from 172.18.0.3 on port 1883. -1612425200: Sending CONNACK to 172.18.0.3 (0, 5) -1612425200: Socket error on client , disconnecting. -1612425220: New connection from 172.18.0.3 on port 1883. -1612425220: Sending CONNACK to 172.18.0.3 (0, 5) -1612425220: Socket error on client , disconnecting. -1612425240: New connection from 172.18.0.3 on port 1883. -1612425240: Sending CONNACK to 172.18.0.3 (0, 5) -1612425240: Socket error on client , disconnecting. -1612425260: New connection from 172.18.0.3 on port 1883. -1612425260: Sending CONNACK to 172.18.0.3 (0, 5) -1612425260: Socket error on client , disconnecting. -1612425280: New connection from 172.18.0.3 on port 1883. -1612425280: Sending CONNACK to 172.18.0.3 (0, 5) -1612425280: Socket error on client , disconnecting. -1612425300: New connection from 172.18.0.3 on port 1883. -1612425300: Sending CONNACK to 172.18.0.3 (0, 5) -1612425300: Socket error on client , disconnecting. -1612425320: New connection from 172.18.0.3 on port 1883. -1612425320: Sending CONNACK to 172.18.0.3 (0, 5) -1612425320: Socket error on client , disconnecting. -1612425340: New connection from 172.18.0.3 on port 1883. -1612425340: Sending CONNACK to 172.18.0.3 (0, 5) -1612425340: Socket error on client , disconnecting. -1612425360: New connection from 172.18.0.3 on port 1883. -1612425360: Sending CONNACK to 172.18.0.3 (0, 5) -1612425360: Socket error on client , disconnecting. -1612425380: New connection from 172.18.0.3 on port 1883. -1612425380: Sending CONNACK to 172.18.0.3 (0, 5) -1612425380: Socket error on client , disconnecting. -1612425400: New connection from 172.18.0.3 on port 1883. -1612425400: Sending CONNACK to 172.18.0.3 (0, 5) -1612425400: Socket error on client , disconnecting. -1612425420: New connection from 172.18.0.3 on port 1883. -1612425420: Sending CONNACK to 172.18.0.3 (0, 5) -1612425420: Socket error on client , disconnecting. -1612425440: New connection from 172.18.0.3 on port 1883. -1612425440: Sending CONNACK to 172.18.0.3 (0, 5) -1612425440: Socket error on client , disconnecting. -1612425460: New connection from 172.18.0.3 on port 1883. -1612425460: Sending CONNACK to 172.18.0.3 (0, 5) -1612425460: Socket error on client , disconnecting. -1612425480: New connection from 172.18.0.3 on port 1883. -1612425480: Sending CONNACK to 172.18.0.3 (0, 5) -1612425480: Socket error on client , disconnecting. -1612425500: New connection from 172.18.0.3 on port 1883. -1612425500: Sending CONNACK to 172.18.0.3 (0, 5) -1612425500: Socket error on client , disconnecting. -1612425520: New connection from 172.18.0.3 on port 1883. -1612425520: Sending CONNACK to 172.18.0.3 (0, 5) -1612425520: Socket error on client , disconnecting. -1612425540: New connection from 172.18.0.3 on port 1883. -1612425540: Sending CONNACK to 172.18.0.3 (0, 5) -1612425540: Socket error on client , disconnecting. -1612425560: New connection from 172.18.0.3 on port 1883. -1612425560: Sending CONNACK to 172.18.0.3 (0, 5) -1612425560: Socket error on client , disconnecting. -1612425580: New connection from 172.18.0.3 on port 1883. -1612425580: Sending CONNACK to 172.18.0.3 (0, 5) -1612425580: Socket error on client , disconnecting. -1612425600: New connection from 172.18.0.3 on port 1883. -1612425600: Sending CONNACK to 172.18.0.3 (0, 5) -1612425600: Socket error on client , disconnecting. -1612425620: New connection from 172.18.0.3 on port 1883. -1612425620: Sending CONNACK to 172.18.0.3 (0, 5) -1612425620: Socket error on client , disconnecting. -1612425640: New connection from 172.18.0.3 on port 1883. -1612425640: Sending CONNACK to 172.18.0.3 (0, 5) -1612425640: Socket error on client , disconnecting. -1612425660: New connection from 172.18.0.3 on port 1883. -1612425660: Sending CONNACK to 172.18.0.3 (0, 5) -1612425660: Socket error on client , disconnecting. -1612425680: New connection from 172.18.0.3 on port 1883. -1612425680: Sending CONNACK to 172.18.0.3 (0, 5) -1612425680: Socket error on client , disconnecting. -1612425700: New connection from 172.18.0.3 on port 1883. -1612425700: Sending CONNACK to 172.18.0.3 (0, 5) -1612425700: Socket error on client , disconnecting. -1612425720: New connection from 172.18.0.3 on port 1883. -1612425720: Sending CONNACK to 172.18.0.3 (0, 5) -1612425720: Socket error on client , disconnecting. -1612425740: New connection from 172.18.0.3 on port 1883. -1612425740: Sending CONNACK to 172.18.0.3 (0, 5) -1612425740: Socket error on client , disconnecting. -1612425760: New connection from 172.18.0.3 on port 1883. -1612425760: Sending CONNACK to 172.18.0.3 (0, 5) -1612425760: Socket error on client , disconnecting. -1612425780: New connection from 172.18.0.3 on port 1883. -1612425780: Sending CONNACK to 172.18.0.3 (0, 5) -1612425780: Socket error on client , disconnecting. -1612425800: New connection from 172.18.0.3 on port 1883. -1612425800: Sending CONNACK to 172.18.0.3 (0, 5) -1612425800: Socket error on client , disconnecting. -1612425820: New connection from 172.18.0.3 on port 1883. -1612425820: Sending CONNACK to 172.18.0.3 (0, 5) -1612425820: Socket error on client , disconnecting. -1612425840: New connection from 172.18.0.3 on port 1883. -1612425840: Sending CONNACK to 172.18.0.3 (0, 5) -1612425840: Socket error on client , disconnecting. -1612425860: New connection from 172.18.0.3 on port 1883. -1612425860: Sending CONNACK to 172.18.0.3 (0, 5) -1612425860: Socket error on client , disconnecting. -1612425880: New connection from 172.18.0.3 on port 1883. -1612425880: Sending CONNACK to 172.18.0.3 (0, 5) -1612425880: Socket error on client , disconnecting. -1612425900: New connection from 172.18.0.3 on port 1883. -1612425900: Sending CONNACK to 172.18.0.3 (0, 5) -1612425900: Socket error on client , disconnecting. -1612425920: New connection from 172.18.0.3 on port 1883. -1612425920: Sending CONNACK to 172.18.0.3 (0, 5) -1612425920: Socket error on client , disconnecting. -1612425940: New connection from 172.18.0.3 on port 1883. -1612425940: Sending CONNACK to 172.18.0.3 (0, 5) -1612425940: Socket error on client , disconnecting. -1612425960: New connection from 172.18.0.3 on port 1883. -1612425960: Sending CONNACK to 172.18.0.3 (0, 5) -1612425960: Socket error on client , disconnecting. -1612425980: New connection from 172.18.0.3 on port 1883. -1612425980: Sending CONNACK to 172.18.0.3 (0, 5) -1612425980: Socket error on client , disconnecting. -1612426000: New connection from 172.18.0.3 on port 1883. -1612426000: Sending CONNACK to 172.18.0.3 (0, 5) -1612426000: Socket error on client , disconnecting. -1612426020: New connection from 172.18.0.3 on port 1883. -1612426020: Sending CONNACK to 172.18.0.3 (0, 5) -1612426020: Socket error on client , disconnecting. -1612426040: New connection from 172.18.0.3 on port 1883. -1612426040: Sending CONNACK to 172.18.0.3 (0, 5) -1612426040: Socket error on client , disconnecting. -1612426060: New connection from 172.18.0.3 on port 1883. -1612426060: Sending CONNACK to 172.18.0.3 (0, 5) -1612426060: Socket error on client , disconnecting. -1612426080: New connection from 172.18.0.3 on port 1883. -1612426080: Sending CONNACK to 172.18.0.3 (0, 5) -1612426080: Socket error on client , disconnecting. -1612426100: New connection from 172.18.0.3 on port 1883. -1612426100: Sending CONNACK to 172.18.0.3 (0, 5) -1612426100: Socket error on client , disconnecting. -1612426120: New connection from 172.18.0.3 on port 1883. -1612426120: Sending CONNACK to 172.18.0.3 (0, 5) -1612426120: Socket error on client , disconnecting. -1612426140: New connection from 172.18.0.3 on port 1883. -1612426140: Sending CONNACK to 172.18.0.3 (0, 5) -1612426140: Socket error on client , disconnecting. -1612426160: New connection from 172.18.0.3 on port 1883. -1612426160: Sending CONNACK to 172.18.0.3 (0, 5) -1612426160: Socket error on client , disconnecting. -1612426180: New connection from 172.18.0.3 on port 1883. -1612426180: Sending CONNACK to 172.18.0.3 (0, 5) -1612426180: Socket error on client , disconnecting. -1612426200: New connection from 172.18.0.3 on port 1883. -1612426200: Sending CONNACK to 172.18.0.3 (0, 5) -1612426200: Socket error on client , disconnecting. -1612426220: New connection from 172.18.0.3 on port 1883. -1612426220: Sending CONNACK to 172.18.0.3 (0, 5) -1612426220: Socket error on client , disconnecting. -1612426240: New connection from 172.18.0.3 on port 1883. -1612426240: Sending CONNACK to 172.18.0.3 (0, 5) -1612426240: Socket error on client , disconnecting. -1612426260: New connection from 172.18.0.3 on port 1883. -1612426260: Sending CONNACK to 172.18.0.3 (0, 5) -1612426260: Socket error on client , disconnecting. -1612426280: New connection from 172.18.0.3 on port 1883. -1612426280: Sending CONNACK to 172.18.0.3 (0, 5) -1612426280: Socket error on client , disconnecting. -1612426300: New connection from 172.18.0.3 on port 1883. -1612426300: Sending CONNACK to 172.18.0.3 (0, 5) -1612426300: Socket error on client , disconnecting. -1612426320: New connection from 172.18.0.3 on port 1883. -1612426320: Sending CONNACK to 172.18.0.3 (0, 5) -1612426320: Socket error on client , disconnecting. -1612426340: New connection from 172.18.0.3 on port 1883. -1612426340: Sending CONNACK to 172.18.0.3 (0, 5) -1612426340: Socket error on client , disconnecting. -1612426360: New connection from 172.18.0.3 on port 1883. -1612426360: Sending CONNACK to 172.18.0.3 (0, 5) -1612426360: Socket error on client , disconnecting. -1612426380: New connection from 172.18.0.3 on port 1883. -1612426380: Sending CONNACK to 172.18.0.3 (0, 5) -1612426380: Socket error on client , disconnecting. -1612426400: New connection from 172.18.0.3 on port 1883. -1612426400: Sending CONNACK to 172.18.0.3 (0, 5) -1612426400: Socket error on client , disconnecting. -1612426420: New connection from 172.18.0.3 on port 1883. -1612426420: Sending CONNACK to 172.18.0.3 (0, 5) -1612426420: Socket error on client , disconnecting. -1612426440: New connection from 172.18.0.3 on port 1883. -1612426440: Sending CONNACK to 172.18.0.3 (0, 5) -1612426440: Socket error on client , disconnecting. -1612426460: New connection from 172.18.0.3 on port 1883. -1612426460: Sending CONNACK to 172.18.0.3 (0, 5) -1612426460: Socket error on client , disconnecting. -1612426480: New connection from 172.18.0.3 on port 1883. -1612426480: Sending CONNACK to 172.18.0.3 (0, 5) -1612426480: Socket error on client , disconnecting. -1612426500: New connection from 172.18.0.3 on port 1883. -1612426500: Sending CONNACK to 172.18.0.3 (0, 5) -1612426500: Socket error on client , disconnecting. -1612426520: New connection from 172.18.0.3 on port 1883. -1612426520: Sending CONNACK to 172.18.0.3 (0, 5) -1612426520: Socket error on client , disconnecting. -1612426540: New connection from 172.18.0.3 on port 1883. -1612426540: Sending CONNACK to 172.18.0.3 (0, 5) -1612426540: Socket error on client , disconnecting. -1612426560: New connection from 172.18.0.3 on port 1883. -1612426560: Sending CONNACK to 172.18.0.3 (0, 5) -1612426560: Socket error on client , disconnecting. -1612426580: New connection from 172.18.0.3 on port 1883. -1612426580: Sending CONNACK to 172.18.0.3 (0, 5) -1612426580: Socket error on client , disconnecting. -1612426600: New connection from 172.18.0.3 on port 1883. -1612426600: Sending CONNACK to 172.18.0.3 (0, 5) -1612426600: Socket error on client , disconnecting. -1612426606: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612426606: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612426606: Error: Permission denied. -1612426620: New connection from 172.18.0.3 on port 1883. -1612426620: Sending CONNACK to 172.18.0.3 (0, 5) -1612426620: Socket error on client , disconnecting. -1612426640: New connection from 172.18.0.3 on port 1883. -1612426640: Sending CONNACK to 172.18.0.3 (0, 5) -1612426640: Socket error on client , disconnecting. -1612426660: New connection from 172.18.0.3 on port 1883. -1612426660: Sending CONNACK to 172.18.0.3 (0, 5) -1612426660: Socket error on client , disconnecting. -1612426680: New connection from 172.18.0.3 on port 1883. -1612426680: Sending CONNACK to 172.18.0.3 (0, 5) -1612426680: Socket error on client , disconnecting. -1612426700: New connection from 172.18.0.3 on port 1883. -1612426700: Sending CONNACK to 172.18.0.3 (0, 5) -1612426700: Socket error on client , disconnecting. -1612426720: New connection from 172.18.0.3 on port 1883. -1612426720: Sending CONNACK to 172.18.0.3 (0, 5) -1612426720: Socket error on client , disconnecting. -1612426740: New connection from 172.18.0.3 on port 1883. -1612426740: Sending CONNACK to 172.18.0.3 (0, 5) -1612426740: Socket error on client , disconnecting. -1612426760: New connection from 172.18.0.3 on port 1883. -1612426760: Sending CONNACK to 172.18.0.3 (0, 5) -1612426760: Socket error on client , disconnecting. -1612426780: New connection from 172.18.0.3 on port 1883. -1612426780: Sending CONNACK to 172.18.0.3 (0, 5) -1612426780: Socket error on client , disconnecting. -1612426800: New connection from 172.18.0.3 on port 1883. -1612426800: Sending CONNACK to 172.18.0.3 (0, 5) -1612426800: Socket error on client , disconnecting. -1612426820: New connection from 172.18.0.3 on port 1883. -1612426820: Sending CONNACK to 172.18.0.3 (0, 5) -1612426820: Socket error on client , disconnecting. -1612426840: New connection from 172.18.0.3 on port 1883. -1612426840: Sending CONNACK to 172.18.0.3 (0, 5) -1612426840: Socket error on client , disconnecting. -1612426860: New connection from 172.18.0.3 on port 1883. -1612426860: Sending CONNACK to 172.18.0.3 (0, 5) -1612426860: Socket error on client , disconnecting. -1612426880: New connection from 172.18.0.3 on port 1883. -1612426880: Sending CONNACK to 172.18.0.3 (0, 5) -1612426880: Socket error on client , disconnecting. -1612426900: New connection from 172.18.0.3 on port 1883. -1612426900: Sending CONNACK to 172.18.0.3 (0, 5) -1612426900: Socket error on client , disconnecting. -1612426920: New connection from 172.18.0.3 on port 1883. -1612426920: Sending CONNACK to 172.18.0.3 (0, 5) -1612426920: Socket error on client , disconnecting. -1612426940: New connection from 172.18.0.3 on port 1883. -1612426940: Sending CONNACK to 172.18.0.3 (0, 5) -1612426940: Socket error on client , disconnecting. -1612426960: New connection from 172.18.0.3 on port 1883. -1612426960: Sending CONNACK to 172.18.0.3 (0, 5) -1612426960: Socket error on client , disconnecting. -1612426980: New connection from 172.18.0.3 on port 1883. -1612426980: Sending CONNACK to 172.18.0.3 (0, 5) -1612426980: Socket error on client , disconnecting. -1612427000: New connection from 172.18.0.3 on port 1883. -1612427000: Sending CONNACK to 172.18.0.3 (0, 5) -1612427000: Socket error on client , disconnecting. -1612427020: New connection from 172.18.0.3 on port 1883. -1612427020: Sending CONNACK to 172.18.0.3 (0, 5) -1612427020: Socket error on client , disconnecting. -1612427040: New connection from 172.18.0.3 on port 1883. -1612427040: Sending CONNACK to 172.18.0.3 (0, 5) -1612427040: Socket error on client , disconnecting. -1612427060: New connection from 172.18.0.3 on port 1883. -1612427060: Sending CONNACK to 172.18.0.3 (0, 5) -1612427060: Socket error on client , disconnecting. -1612427080: New connection from 172.18.0.3 on port 1883. -1612427080: Sending CONNACK to 172.18.0.3 (0, 5) -1612427080: Socket error on client , disconnecting. -1612427100: New connection from 172.18.0.3 on port 1883. -1612427100: Sending CONNACK to 172.18.0.3 (0, 5) -1612427100: Socket error on client , disconnecting. -1612427120: New connection from 172.18.0.3 on port 1883. -1612427120: Sending CONNACK to 172.18.0.3 (0, 5) -1612427120: Socket error on client , disconnecting. -1612427140: New connection from 172.18.0.3 on port 1883. -1612427140: Sending CONNACK to 172.18.0.3 (0, 5) -1612427140: Socket error on client , disconnecting. -1612427160: New connection from 172.18.0.3 on port 1883. -1612427160: Sending CONNACK to 172.18.0.3 (0, 5) -1612427160: Socket error on client , disconnecting. -1612427180: New connection from 172.18.0.3 on port 1883. -1612427180: Sending CONNACK to 172.18.0.3 (0, 5) -1612427180: Socket error on client , disconnecting. -1612427200: New connection from 172.18.0.3 on port 1883. -1612427200: Sending CONNACK to 172.18.0.3 (0, 5) -1612427200: Socket error on client , disconnecting. -1612427220: New connection from 172.18.0.3 on port 1883. -1612427220: Sending CONNACK to 172.18.0.3 (0, 5) -1612427220: Socket error on client , disconnecting. -1612427240: New connection from 172.18.0.3 on port 1883. -1612427240: Sending CONNACK to 172.18.0.3 (0, 5) -1612427240: Socket error on client , disconnecting. -1612427260: New connection from 172.18.0.3 on port 1883. -1612427260: Sending CONNACK to 172.18.0.3 (0, 5) -1612427260: Socket error on client , disconnecting. -1612427280: New connection from 172.18.0.3 on port 1883. -1612427280: Sending CONNACK to 172.18.0.3 (0, 5) -1612427280: Socket error on client , disconnecting. -1612427300: New connection from 172.18.0.3 on port 1883. -1612427300: Sending CONNACK to 172.18.0.3 (0, 5) -1612427300: Socket error on client , disconnecting. -1612427320: New connection from 172.18.0.3 on port 1883. -1612427320: Sending CONNACK to 172.18.0.3 (0, 5) -1612427320: Socket error on client , disconnecting. -1612427340: New connection from 172.18.0.3 on port 1883. -1612427340: Sending CONNACK to 172.18.0.3 (0, 5) -1612427340: Socket error on client , disconnecting. -1612427360: New connection from 172.18.0.3 on port 1883. -1612427360: Sending CONNACK to 172.18.0.3 (0, 5) -1612427360: Socket error on client , disconnecting. -1612427380: New connection from 172.18.0.3 on port 1883. -1612427380: Sending CONNACK to 172.18.0.3 (0, 5) -1612427380: Socket error on client , disconnecting. -1612427400: New connection from 172.18.0.3 on port 1883. -1612427400: Sending CONNACK to 172.18.0.3 (0, 5) -1612427400: Socket error on client , disconnecting. -1612427420: New connection from 172.18.0.3 on port 1883. -1612427420: Sending CONNACK to 172.18.0.3 (0, 5) -1612427420: Socket error on client , disconnecting. -1612427440: New connection from 172.18.0.3 on port 1883. -1612427440: Sending CONNACK to 172.18.0.3 (0, 5) -1612427440: Socket error on client , disconnecting. -1612427460: New connection from 172.18.0.3 on port 1883. -1612427460: Sending CONNACK to 172.18.0.3 (0, 5) -1612427460: Socket error on client , disconnecting. -1612427480: New connection from 172.18.0.3 on port 1883. -1612427480: Sending CONNACK to 172.18.0.3 (0, 5) -1612427480: Socket error on client , disconnecting. -1612427500: New connection from 172.18.0.3 on port 1883. -1612427500: Sending CONNACK to 172.18.0.3 (0, 5) -1612427500: Socket error on client , disconnecting. -1612427520: New connection from 172.18.0.3 on port 1883. -1612427520: Sending CONNACK to 172.18.0.3 (0, 5) -1612427520: Socket error on client , disconnecting. -1612427540: New connection from 172.18.0.3 on port 1883. -1612427540: Sending CONNACK to 172.18.0.3 (0, 5) -1612427540: Socket error on client , disconnecting. -1612427560: New connection from 172.18.0.3 on port 1883. -1612427560: Sending CONNACK to 172.18.0.3 (0, 5) -1612427560: Socket error on client , disconnecting. -1612427580: New connection from 172.18.0.3 on port 1883. -1612427580: Sending CONNACK to 172.18.0.3 (0, 5) -1612427580: Socket error on client , disconnecting. -1612427600: New connection from 172.18.0.3 on port 1883. -1612427600: Sending CONNACK to 172.18.0.3 (0, 5) -1612427600: Socket error on client , disconnecting. -1612427620: New connection from 172.18.0.3 on port 1883. -1612427620: Sending CONNACK to 172.18.0.3 (0, 5) -1612427620: Socket error on client , disconnecting. -1612427640: New connection from 172.18.0.3 on port 1883. -1612427640: Sending CONNACK to 172.18.0.3 (0, 5) -1612427640: Socket error on client , disconnecting. -1612427660: New connection from 172.18.0.3 on port 1883. -1612427660: Sending CONNACK to 172.18.0.3 (0, 5) -1612427660: Socket error on client , disconnecting. -1612427680: New connection from 172.18.0.3 on port 1883. -1612427680: Sending CONNACK to 172.18.0.3 (0, 5) -1612427680: Socket error on client , disconnecting. -1612427700: New connection from 172.18.0.3 on port 1883. -1612427700: Sending CONNACK to 172.18.0.3 (0, 5) -1612427700: Socket error on client , disconnecting. -1612427720: New connection from 172.18.0.3 on port 1883. -1612427720: Sending CONNACK to 172.18.0.3 (0, 5) -1612427720: Socket error on client , disconnecting. -1612427740: New connection from 172.18.0.3 on port 1883. -1612427740: Sending CONNACK to 172.18.0.3 (0, 5) -1612427740: Socket error on client , disconnecting. -1612427760: New connection from 172.18.0.3 on port 1883. -1612427760: Sending CONNACK to 172.18.0.3 (0, 5) -1612427760: Socket error on client , disconnecting. -1612427780: New connection from 172.18.0.3 on port 1883. -1612427780: Sending CONNACK to 172.18.0.3 (0, 5) -1612427780: Socket error on client , disconnecting. -1612427800: New connection from 172.18.0.3 on port 1883. -1612427800: Sending CONNACK to 172.18.0.3 (0, 5) -1612427800: Socket error on client , disconnecting. -1612427820: New connection from 172.18.0.3 on port 1883. -1612427820: Sending CONNACK to 172.18.0.3 (0, 5) -1612427820: Socket error on client , disconnecting. -1612427840: New connection from 172.18.0.3 on port 1883. -1612427840: Sending CONNACK to 172.18.0.3 (0, 5) -1612427840: Socket error on client , disconnecting. -1612427860: New connection from 172.18.0.3 on port 1883. -1612427860: Sending CONNACK to 172.18.0.3 (0, 5) -1612427860: Socket error on client , disconnecting. -1612427880: New connection from 172.18.0.3 on port 1883. -1612427880: Sending CONNACK to 172.18.0.3 (0, 5) -1612427880: Socket error on client , disconnecting. -1612427900: New connection from 172.18.0.3 on port 1883. -1612427900: Sending CONNACK to 172.18.0.3 (0, 5) -1612427900: Socket error on client , disconnecting. -1612427920: New connection from 172.18.0.3 on port 1883. -1612427920: Sending CONNACK to 172.18.0.3 (0, 5) -1612427920: Socket error on client , disconnecting. -1612427940: New connection from 172.18.0.3 on port 1883. -1612427940: Sending CONNACK to 172.18.0.3 (0, 5) -1612427940: Socket error on client , disconnecting. -1612427960: New connection from 172.18.0.3 on port 1883. -1612427960: Sending CONNACK to 172.18.0.3 (0, 5) -1612427960: Socket error on client , disconnecting. -1612427980: New connection from 172.18.0.3 on port 1883. -1612427980: Sending CONNACK to 172.18.0.3 (0, 5) -1612427980: Socket error on client , disconnecting. -1612428000: New connection from 172.18.0.3 on port 1883. -1612428000: Sending CONNACK to 172.18.0.3 (0, 5) -1612428000: Socket error on client , disconnecting. -1612428020: New connection from 172.18.0.3 on port 1883. -1612428020: Sending CONNACK to 172.18.0.3 (0, 5) -1612428020: Socket error on client , disconnecting. -1612428040: New connection from 172.18.0.3 on port 1883. -1612428040: Sending CONNACK to 172.18.0.3 (0, 5) -1612428040: Socket error on client , disconnecting. -1612428060: New connection from 172.18.0.3 on port 1883. -1612428060: Sending CONNACK to 172.18.0.3 (0, 5) -1612428060: Socket error on client , disconnecting. -1612428080: New connection from 172.18.0.3 on port 1883. -1612428080: Sending CONNACK to 172.18.0.3 (0, 5) -1612428080: Socket error on client , disconnecting. -1612428100: New connection from 172.18.0.3 on port 1883. -1612428100: Sending CONNACK to 172.18.0.3 (0, 5) -1612428100: Socket error on client , disconnecting. -1612428120: New connection from 172.18.0.3 on port 1883. -1612428120: Sending CONNACK to 172.18.0.3 (0, 5) -1612428120: Socket error on client , disconnecting. -1612428140: New connection from 172.18.0.3 on port 1883. -1612428140: Sending CONNACK to 172.18.0.3 (0, 5) -1612428140: Socket error on client , disconnecting. -1612428160: New connection from 172.18.0.3 on port 1883. -1612428160: Sending CONNACK to 172.18.0.3 (0, 5) -1612428160: Socket error on client , disconnecting. -1612428180: New connection from 172.18.0.3 on port 1883. -1612428180: Sending CONNACK to 172.18.0.3 (0, 5) -1612428180: Socket error on client , disconnecting. -1612428200: New connection from 172.18.0.3 on port 1883. -1612428200: Sending CONNACK to 172.18.0.3 (0, 5) -1612428200: Socket error on client , disconnecting. -1612428220: New connection from 172.18.0.3 on port 1883. -1612428220: Sending CONNACK to 172.18.0.3 (0, 5) -1612428220: Socket error on client , disconnecting. -1612428240: New connection from 172.18.0.3 on port 1883. -1612428240: Sending CONNACK to 172.18.0.3 (0, 5) -1612428240: Socket error on client , disconnecting. -1612428260: New connection from 172.18.0.3 on port 1883. -1612428260: Sending CONNACK to 172.18.0.3 (0, 5) -1612428260: Socket error on client , disconnecting. -1612428280: New connection from 172.18.0.3 on port 1883. -1612428280: Sending CONNACK to 172.18.0.3 (0, 5) -1612428280: Socket error on client , disconnecting. -1612428300: New connection from 172.18.0.3 on port 1883. -1612428300: Sending CONNACK to 172.18.0.3 (0, 5) -1612428300: Socket error on client , disconnecting. -1612428320: New connection from 172.18.0.3 on port 1883. -1612428320: Sending CONNACK to 172.18.0.3 (0, 5) -1612428320: Socket error on client , disconnecting. -1612428340: New connection from 172.18.0.3 on port 1883. -1612428340: Sending CONNACK to 172.18.0.3 (0, 5) -1612428340: Socket error on client , disconnecting. -1612428360: New connection from 172.18.0.3 on port 1883. -1612428360: Sending CONNACK to 172.18.0.3 (0, 5) -1612428360: Socket error on client , disconnecting. -1612428380: New connection from 172.18.0.3 on port 1883. -1612428380: Sending CONNACK to 172.18.0.3 (0, 5) -1612428380: Socket error on client , disconnecting. -1612428400: New connection from 172.18.0.3 on port 1883. -1612428400: Sending CONNACK to 172.18.0.3 (0, 5) -1612428400: Socket error on client , disconnecting. -1612428407: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612428407: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612428407: Error: Permission denied. -1612428420: New connection from 172.18.0.3 on port 1883. -1612428420: Sending CONNACK to 172.18.0.3 (0, 5) -1612428420: Socket error on client , disconnecting. -1612428440: New connection from 172.18.0.3 on port 1883. -1612428440: Sending CONNACK to 172.18.0.3 (0, 5) -1612428440: Socket error on client , disconnecting. -1612428460: New connection from 172.18.0.3 on port 1883. -1612428460: Sending CONNACK to 172.18.0.3 (0, 5) -1612428460: Socket error on client , disconnecting. -1612428480: New connection from 172.18.0.3 on port 1883. -1612428480: Sending CONNACK to 172.18.0.3 (0, 5) -1612428480: Socket error on client , disconnecting. -1612428500: New connection from 172.18.0.3 on port 1883. -1612428500: Sending CONNACK to 172.18.0.3 (0, 5) -1612428500: Socket error on client , disconnecting. -1612428520: New connection from 172.18.0.3 on port 1883. -1612428520: Sending CONNACK to 172.18.0.3 (0, 5) -1612428520: Socket error on client , disconnecting. -1612428540: New connection from 172.18.0.3 on port 1883. -1612428540: Sending CONNACK to 172.18.0.3 (0, 5) -1612428540: Socket error on client , disconnecting. -1612428560: New connection from 172.18.0.3 on port 1883. -1612428560: Sending CONNACK to 172.18.0.3 (0, 5) -1612428560: Socket error on client , disconnecting. -1612428580: New connection from 172.18.0.3 on port 1883. -1612428580: Sending CONNACK to 172.18.0.3 (0, 5) -1612428580: Socket error on client , disconnecting. -1612428600: New connection from 172.18.0.3 on port 1883. -1612428600: Sending CONNACK to 172.18.0.3 (0, 5) -1612428600: Socket error on client , disconnecting. -1612428620: New connection from 172.18.0.3 on port 1883. -1612428620: Sending CONNACK to 172.18.0.3 (0, 5) -1612428620: Socket error on client , disconnecting. -1612428640: New connection from 172.18.0.3 on port 1883. -1612428640: Sending CONNACK to 172.18.0.3 (0, 5) -1612428640: Socket error on client , disconnecting. -1612428660: New connection from 172.18.0.3 on port 1883. -1612428660: Sending CONNACK to 172.18.0.3 (0, 5) -1612428660: Socket error on client , disconnecting. -1612428680: New connection from 172.18.0.3 on port 1883. -1612428680: Sending CONNACK to 172.18.0.3 (0, 5) -1612428680: Socket error on client , disconnecting. -1612428700: New connection from 172.18.0.3 on port 1883. -1612428700: Sending CONNACK to 172.18.0.3 (0, 5) -1612428700: Socket error on client , disconnecting. -1612428720: New connection from 172.18.0.3 on port 1883. -1612428720: Sending CONNACK to 172.18.0.3 (0, 5) -1612428720: Socket error on client , disconnecting. -1612428740: New connection from 172.18.0.3 on port 1883. -1612428740: Sending CONNACK to 172.18.0.3 (0, 5) -1612428740: Socket error on client , disconnecting. -1612428760: New connection from 172.18.0.3 on port 1883. -1612428760: Sending CONNACK to 172.18.0.3 (0, 5) -1612428760: Socket error on client , disconnecting. -1612428780: New connection from 172.18.0.3 on port 1883. -1612428780: Sending CONNACK to 172.18.0.3 (0, 5) -1612428780: Socket error on client , disconnecting. -1612428800: New connection from 172.18.0.3 on port 1883. -1612428800: Sending CONNACK to 172.18.0.3 (0, 5) -1612428800: Socket error on client , disconnecting. -1612428820: New connection from 172.18.0.3 on port 1883. -1612428820: Sending CONNACK to 172.18.0.3 (0, 5) -1612428820: Socket error on client , disconnecting. -1612428840: New connection from 172.18.0.3 on port 1883. -1612428840: Sending CONNACK to 172.18.0.3 (0, 5) -1612428840: Socket error on client , disconnecting. -1612428860: New connection from 172.18.0.3 on port 1883. -1612428860: Sending CONNACK to 172.18.0.3 (0, 5) -1612428860: Socket error on client , disconnecting. -1612428880: New connection from 172.18.0.3 on port 1883. -1612428880: Sending CONNACK to 172.18.0.3 (0, 5) -1612428880: Socket error on client , disconnecting. -1612428900: New connection from 172.18.0.3 on port 1883. -1612428900: Sending CONNACK to 172.18.0.3 (0, 5) -1612428900: Socket error on client , disconnecting. -1612428920: New connection from 172.18.0.3 on port 1883. -1612428920: Sending CONNACK to 172.18.0.3 (0, 5) -1612428920: Socket error on client , disconnecting. -1612428940: New connection from 172.18.0.3 on port 1883. -1612428940: Sending CONNACK to 172.18.0.3 (0, 5) -1612428940: Socket error on client , disconnecting. -1612428960: New connection from 172.18.0.3 on port 1883. -1612428960: Sending CONNACK to 172.18.0.3 (0, 5) -1612428960: Socket error on client , disconnecting. -1612428980: New connection from 172.18.0.3 on port 1883. -1612428980: Sending CONNACK to 172.18.0.3 (0, 5) -1612428980: Socket error on client , disconnecting. -1612429000: New connection from 172.18.0.3 on port 1883. -1612429000: Sending CONNACK to 172.18.0.3 (0, 5) -1612429000: Socket error on client , disconnecting. -1612429020: New connection from 172.18.0.3 on port 1883. -1612429020: Sending CONNACK to 172.18.0.3 (0, 5) -1612429020: Socket error on client , disconnecting. -1612429040: New connection from 172.18.0.3 on port 1883. -1612429040: Sending CONNACK to 172.18.0.3 (0, 5) -1612429040: Socket error on client , disconnecting. -1612429060: New connection from 172.18.0.3 on port 1883. -1612429060: Sending CONNACK to 172.18.0.3 (0, 5) -1612429060: Socket error on client , disconnecting. -1612429080: New connection from 172.18.0.3 on port 1883. -1612429080: Sending CONNACK to 172.18.0.3 (0, 5) -1612429080: Socket error on client , disconnecting. -1612429100: New connection from 172.18.0.3 on port 1883. -1612429100: Sending CONNACK to 172.18.0.3 (0, 5) -1612429100: Socket error on client , disconnecting. -1612429120: New connection from 172.18.0.3 on port 1883. -1612429120: Sending CONNACK to 172.18.0.3 (0, 5) -1612429120: Socket error on client , disconnecting. -1612429140: New connection from 172.18.0.3 on port 1883. -1612429140: Sending CONNACK to 172.18.0.3 (0, 5) -1612429140: Socket error on client , disconnecting. -1612429160: New connection from 172.18.0.3 on port 1883. -1612429160: Sending CONNACK to 172.18.0.3 (0, 5) -1612429160: Socket error on client , disconnecting. -1612429180: New connection from 172.18.0.3 on port 1883. -1612429180: Sending CONNACK to 172.18.0.3 (0, 5) -1612429180: Socket error on client , disconnecting. -1612429200: New connection from 172.18.0.3 on port 1883. -1612429200: Sending CONNACK to 172.18.0.3 (0, 5) -1612429200: Socket error on client , disconnecting. -1612429220: New connection from 172.18.0.3 on port 1883. -1612429220: Sending CONNACK to 172.18.0.3 (0, 5) -1612429220: Socket error on client , disconnecting. -1612429240: New connection from 172.18.0.3 on port 1883. -1612429240: Sending CONNACK to 172.18.0.3 (0, 5) -1612429240: Socket error on client , disconnecting. -1612429260: New connection from 172.18.0.3 on port 1883. -1612429260: Sending CONNACK to 172.18.0.3 (0, 5) -1612429260: Socket error on client , disconnecting. -1612429280: New connection from 172.18.0.3 on port 1883. -1612429280: Sending CONNACK to 172.18.0.3 (0, 5) -1612429280: Socket error on client , disconnecting. -1612429300: New connection from 172.18.0.3 on port 1883. -1612429300: Sending CONNACK to 172.18.0.3 (0, 5) -1612429300: Socket error on client , disconnecting. -1612429320: New connection from 172.18.0.3 on port 1883. -1612429320: Sending CONNACK to 172.18.0.3 (0, 5) -1612429320: Socket error on client , disconnecting. -1612429340: New connection from 172.18.0.3 on port 1883. -1612429340: Sending CONNACK to 172.18.0.3 (0, 5) -1612429340: Socket error on client , disconnecting. -1612429360: New connection from 172.18.0.3 on port 1883. -1612429360: Sending CONNACK to 172.18.0.3 (0, 5) -1612429360: Socket error on client , disconnecting. -1612429380: New connection from 172.18.0.3 on port 1883. -1612429380: Sending CONNACK to 172.18.0.3 (0, 5) -1612429380: Socket error on client , disconnecting. -1612429400: New connection from 172.18.0.3 on port 1883. -1612429400: Sending CONNACK to 172.18.0.3 (0, 5) -1612429400: Socket error on client , disconnecting. -1612429420: New connection from 172.18.0.3 on port 1883. -1612429420: Sending CONNACK to 172.18.0.3 (0, 5) -1612429420: Socket error on client , disconnecting. -1612429440: New connection from 172.18.0.3 on port 1883. -1612429440: Sending CONNACK to 172.18.0.3 (0, 5) -1612429440: Socket error on client , disconnecting. -1612429460: New connection from 172.18.0.3 on port 1883. -1612429460: Sending CONNACK to 172.18.0.3 (0, 5) -1612429460: Socket error on client , disconnecting. -1612429480: New connection from 172.18.0.3 on port 1883. -1612429480: Sending CONNACK to 172.18.0.3 (0, 5) -1612429480: Socket error on client , disconnecting. -1612429500: New connection from 172.18.0.3 on port 1883. -1612429500: Sending CONNACK to 172.18.0.3 (0, 5) -1612429500: Socket error on client , disconnecting. -1612429520: New connection from 172.18.0.3 on port 1883. -1612429520: Sending CONNACK to 172.18.0.3 (0, 5) -1612429520: Socket error on client , disconnecting. -1612429540: New connection from 172.18.0.3 on port 1883. -1612429540: Sending CONNACK to 172.18.0.3 (0, 5) -1612429540: Socket error on client , disconnecting. -1612429560: New connection from 172.18.0.3 on port 1883. -1612429560: Sending CONNACK to 172.18.0.3 (0, 5) -1612429560: Socket error on client , disconnecting. -1612429580: New connection from 172.18.0.3 on port 1883. -1612429580: Sending CONNACK to 172.18.0.3 (0, 5) -1612429580: Socket error on client , disconnecting. -1612429600: New connection from 172.18.0.3 on port 1883. -1612429600: Sending CONNACK to 172.18.0.3 (0, 5) -1612429600: Socket error on client , disconnecting. -1612429620: New connection from 172.18.0.3 on port 1883. -1612429620: Sending CONNACK to 172.18.0.3 (0, 5) -1612429620: Socket error on client , disconnecting. -1612429640: New connection from 172.18.0.3 on port 1883. -1612429640: Sending CONNACK to 172.18.0.3 (0, 5) -1612429640: Socket error on client , disconnecting. -1612429660: New connection from 172.18.0.3 on port 1883. -1612429660: Sending CONNACK to 172.18.0.3 (0, 5) -1612429660: Socket error on client , disconnecting. -1612429680: New connection from 172.18.0.3 on port 1883. -1612429680: Sending CONNACK to 172.18.0.3 (0, 5) -1612429680: Socket error on client , disconnecting. -1612429700: New connection from 172.18.0.3 on port 1883. -1612429700: Sending CONNACK to 172.18.0.3 (0, 5) -1612429700: Socket error on client , disconnecting. -1612429720: New connection from 172.18.0.3 on port 1883. -1612429720: Sending CONNACK to 172.18.0.3 (0, 5) -1612429720: Socket error on client , disconnecting. -1612429740: New connection from 172.18.0.3 on port 1883. -1612429740: Sending CONNACK to 172.18.0.3 (0, 5) -1612429740: Socket error on client , disconnecting. -1612429760: New connection from 172.18.0.3 on port 1883. -1612429760: Sending CONNACK to 172.18.0.3 (0, 5) -1612429760: Socket error on client , disconnecting. -1612429780: New connection from 172.18.0.3 on port 1883. -1612429780: Sending CONNACK to 172.18.0.3 (0, 5) -1612429780: Socket error on client , disconnecting. -1612429800: New connection from 172.18.0.3 on port 1883. -1612429800: Sending CONNACK to 172.18.0.3 (0, 5) -1612429800: Socket error on client , disconnecting. -1612429820: New connection from 172.18.0.3 on port 1883. -1612429820: Sending CONNACK to 172.18.0.3 (0, 5) -1612429820: Socket error on client , disconnecting. -1612429840: New connection from 172.18.0.3 on port 1883. -1612429840: Sending CONNACK to 172.18.0.3 (0, 5) -1612429840: Socket error on client , disconnecting. -1612429860: New connection from 172.18.0.3 on port 1883. -1612429860: Sending CONNACK to 172.18.0.3 (0, 5) -1612429860: Socket error on client , disconnecting. -1612429880: New connection from 172.18.0.3 on port 1883. -1612429880: Sending CONNACK to 172.18.0.3 (0, 5) -1612429880: Socket error on client , disconnecting. -1612429900: New connection from 172.18.0.3 on port 1883. -1612429900: Sending CONNACK to 172.18.0.3 (0, 5) -1612429900: Socket error on client , disconnecting. -1612429920: New connection from 172.18.0.3 on port 1883. -1612429920: Sending CONNACK to 172.18.0.3 (0, 5) -1612429920: Socket error on client , disconnecting. -1612429940: New connection from 172.18.0.3 on port 1883. -1612429940: Sending CONNACK to 172.18.0.3 (0, 5) -1612429940: Socket error on client , disconnecting. -1612429960: New connection from 172.18.0.3 on port 1883. -1612429960: Sending CONNACK to 172.18.0.3 (0, 5) -1612429960: Socket error on client , disconnecting. -1612429980: New connection from 172.18.0.3 on port 1883. -1612429980: Sending CONNACK to 172.18.0.3 (0, 5) -1612429980: Socket error on client , disconnecting. -1612430000: New connection from 172.18.0.3 on port 1883. -1612430000: Sending CONNACK to 172.18.0.3 (0, 5) -1612430000: Socket error on client , disconnecting. -1612430020: New connection from 172.18.0.3 on port 1883. -1612430020: Sending CONNACK to 172.18.0.3 (0, 5) -1612430020: Socket error on client , disconnecting. -1612430040: New connection from 172.18.0.3 on port 1883. -1612430040: Sending CONNACK to 172.18.0.3 (0, 5) -1612430040: Socket error on client , disconnecting. -1612430060: New connection from 172.18.0.3 on port 1883. -1612430060: Sending CONNACK to 172.18.0.3 (0, 5) -1612430060: Socket error on client , disconnecting. -1612430080: New connection from 172.18.0.3 on port 1883. -1612430080: Sending CONNACK to 172.18.0.3 (0, 5) -1612430080: Socket error on client , disconnecting. -1612430100: New connection from 172.18.0.3 on port 1883. -1612430100: Sending CONNACK to 172.18.0.3 (0, 5) -1612430100: Socket error on client , disconnecting. -1612430120: New connection from 172.18.0.3 on port 1883. -1612430120: Sending CONNACK to 172.18.0.3 (0, 5) -1612430120: Socket error on client , disconnecting. -1612430140: New connection from 172.18.0.3 on port 1883. -1612430140: Sending CONNACK to 172.18.0.3 (0, 5) -1612430140: Socket error on client , disconnecting. -1612430160: New connection from 172.18.0.3 on port 1883. -1612430160: Sending CONNACK to 172.18.0.3 (0, 5) -1612430160: Socket error on client , disconnecting. -1612430180: New connection from 172.18.0.3 on port 1883. -1612430180: Sending CONNACK to 172.18.0.3 (0, 5) -1612430180: Socket error on client , disconnecting. -1612430200: New connection from 172.18.0.3 on port 1883. -1612430200: Sending CONNACK to 172.18.0.3 (0, 5) -1612430200: Socket error on client , disconnecting. -1612430208: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612430208: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612430208: Error: Permission denied. -1612430220: New connection from 172.18.0.3 on port 1883. -1612430220: Sending CONNACK to 172.18.0.3 (0, 5) -1612430220: Socket error on client , disconnecting. -1612430240: New connection from 172.18.0.3 on port 1883. -1612430240: Sending CONNACK to 172.18.0.3 (0, 5) -1612430240: Socket error on client , disconnecting. -1612430260: New connection from 172.18.0.3 on port 1883. -1612430260: Sending CONNACK to 172.18.0.3 (0, 5) -1612430260: Socket error on client , disconnecting. -1612430280: New connection from 172.18.0.3 on port 1883. -1612430280: Sending CONNACK to 172.18.0.3 (0, 5) -1612430280: Socket error on client , disconnecting. -1612430300: New connection from 172.18.0.3 on port 1883. -1612430300: Sending CONNACK to 172.18.0.3 (0, 5) -1612430300: Socket error on client , disconnecting. -1612430320: New connection from 172.18.0.3 on port 1883. -1612430320: Sending CONNACK to 172.18.0.3 (0, 5) -1612430320: Socket error on client , disconnecting. -1612430340: New connection from 172.18.0.3 on port 1883. -1612430340: Sending CONNACK to 172.18.0.3 (0, 5) -1612430340: Socket error on client , disconnecting. -1612430360: New connection from 172.18.0.3 on port 1883. -1612430360: Sending CONNACK to 172.18.0.3 (0, 5) -1612430360: Socket error on client , disconnecting. -1612430380: New connection from 172.18.0.3 on port 1883. -1612430380: Sending CONNACK to 172.18.0.3 (0, 5) -1612430380: Socket error on client , disconnecting. -1612430400: New connection from 172.18.0.3 on port 1883. -1612430400: Sending CONNACK to 172.18.0.3 (0, 5) -1612430400: Socket error on client , disconnecting. -1612430420: New connection from 172.18.0.3 on port 1883. -1612430420: Sending CONNACK to 172.18.0.3 (0, 5) -1612430420: Socket error on client , disconnecting. -1612430440: New connection from 172.18.0.3 on port 1883. -1612430440: Sending CONNACK to 172.18.0.3 (0, 5) -1612430440: Socket error on client , disconnecting. -1612430460: New connection from 172.18.0.3 on port 1883. -1612430460: Sending CONNACK to 172.18.0.3 (0, 5) -1612430460: Socket error on client , disconnecting. -1612430480: New connection from 172.18.0.3 on port 1883. -1612430480: Sending CONNACK to 172.18.0.3 (0, 5) -1612430480: Socket error on client , disconnecting. -1612430500: New connection from 172.18.0.3 on port 1883. -1612430500: Sending CONNACK to 172.18.0.3 (0, 5) -1612430500: Socket error on client , disconnecting. -1612430520: New connection from 172.18.0.3 on port 1883. -1612430520: Sending CONNACK to 172.18.0.3 (0, 5) -1612430520: Socket error on client , disconnecting. -1612430540: New connection from 172.18.0.3 on port 1883. -1612430540: Sending CONNACK to 172.18.0.3 (0, 5) -1612430540: Socket error on client , disconnecting. -1612430560: New connection from 172.18.0.3 on port 1883. -1612430560: Sending CONNACK to 172.18.0.3 (0, 5) -1612430560: Socket error on client , disconnecting. -1612430580: New connection from 172.18.0.3 on port 1883. -1612430580: Sending CONNACK to 172.18.0.3 (0, 5) -1612430580: Socket error on client , disconnecting. -1612430600: New connection from 172.18.0.3 on port 1883. -1612430600: Sending CONNACK to 172.18.0.3 (0, 5) -1612430600: Socket error on client , disconnecting. -1612430620: New connection from 172.18.0.3 on port 1883. -1612430620: Sending CONNACK to 172.18.0.3 (0, 5) -1612430620: Socket error on client , disconnecting. -1612430640: New connection from 172.18.0.3 on port 1883. -1612430640: Sending CONNACK to 172.18.0.3 (0, 5) -1612430640: Socket error on client , disconnecting. -1612430660: New connection from 172.18.0.3 on port 1883. -1612430660: Sending CONNACK to 172.18.0.3 (0, 5) -1612430660: Socket error on client , disconnecting. -1612430680: New connection from 172.18.0.3 on port 1883. -1612430680: Sending CONNACK to 172.18.0.3 (0, 5) -1612430680: Socket error on client , disconnecting. -1612430700: New connection from 172.18.0.3 on port 1883. -1612430700: Sending CONNACK to 172.18.0.3 (0, 5) -1612430700: Socket error on client , disconnecting. -1612430720: New connection from 172.18.0.3 on port 1883. -1612430720: Sending CONNACK to 172.18.0.3 (0, 5) -1612430720: Socket error on client , disconnecting. -1612430740: New connection from 172.18.0.3 on port 1883. -1612430740: Sending CONNACK to 172.18.0.3 (0, 5) -1612430740: Socket error on client , disconnecting. -1612430760: New connection from 172.18.0.3 on port 1883. -1612430760: Sending CONNACK to 172.18.0.3 (0, 5) -1612430760: Socket error on client , disconnecting. -1612430780: New connection from 172.18.0.3 on port 1883. -1612430780: Sending CONNACK to 172.18.0.3 (0, 5) -1612430780: Socket error on client , disconnecting. -1612430800: New connection from 172.18.0.3 on port 1883. -1612430800: Sending CONNACK to 172.18.0.3 (0, 5) -1612430800: Socket error on client , disconnecting. -1612430820: New connection from 172.18.0.3 on port 1883. -1612430820: Sending CONNACK to 172.18.0.3 (0, 5) -1612430820: Socket error on client , disconnecting. -1612430840: New connection from 172.18.0.3 on port 1883. -1612430840: Sending CONNACK to 172.18.0.3 (0, 5) -1612430840: Socket error on client , disconnecting. -1612430860: New connection from 172.18.0.3 on port 1883. -1612430860: Sending CONNACK to 172.18.0.3 (0, 5) -1612430860: Socket error on client , disconnecting. -1612430880: New connection from 172.18.0.3 on port 1883. -1612430880: Sending CONNACK to 172.18.0.3 (0, 5) -1612430880: Socket error on client , disconnecting. -1612430900: New connection from 172.18.0.3 on port 1883. -1612430900: Sending CONNACK to 172.18.0.3 (0, 5) -1612430900: Socket error on client , disconnecting. -1612430920: New connection from 172.18.0.3 on port 1883. -1612430920: Sending CONNACK to 172.18.0.3 (0, 5) -1612430920: Socket error on client , disconnecting. -1612430940: New connection from 172.18.0.3 on port 1883. -1612430940: Sending CONNACK to 172.18.0.3 (0, 5) -1612430940: Socket error on client , disconnecting. -1612430960: New connection from 172.18.0.3 on port 1883. -1612430960: Sending CONNACK to 172.18.0.3 (0, 5) -1612430960: Socket error on client , disconnecting. -1612430980: New connection from 172.18.0.3 on port 1883. -1612430980: Sending CONNACK to 172.18.0.3 (0, 5) -1612430980: Socket error on client , disconnecting. -1612431000: New connection from 172.18.0.3 on port 1883. -1612431000: Sending CONNACK to 172.18.0.3 (0, 5) -1612431000: Socket error on client , disconnecting. -1612431020: New connection from 172.18.0.3 on port 1883. -1612431020: Sending CONNACK to 172.18.0.3 (0, 5) -1612431020: Socket error on client , disconnecting. -1612431040: New connection from 172.18.0.3 on port 1883. -1612431040: Sending CONNACK to 172.18.0.3 (0, 5) -1612431040: Socket error on client , disconnecting. -1612431060: New connection from 172.18.0.3 on port 1883. -1612431060: Sending CONNACK to 172.18.0.3 (0, 5) -1612431060: Socket error on client , disconnecting. -1612431080: New connection from 172.18.0.3 on port 1883. -1612431080: Sending CONNACK to 172.18.0.3 (0, 5) -1612431080: Socket error on client , disconnecting. -1612431100: New connection from 172.18.0.3 on port 1883. -1612431100: Sending CONNACK to 172.18.0.3 (0, 5) -1612431100: Socket error on client , disconnecting. -1612431120: New connection from 172.18.0.3 on port 1883. -1612431120: Sending CONNACK to 172.18.0.3 (0, 5) -1612431120: Socket error on client , disconnecting. -1612431140: New connection from 172.18.0.3 on port 1883. -1612431140: Sending CONNACK to 172.18.0.3 (0, 5) -1612431140: Socket error on client , disconnecting. -1612431160: New connection from 172.18.0.3 on port 1883. -1612431160: Sending CONNACK to 172.18.0.3 (0, 5) -1612431160: Socket error on client , disconnecting. -1612431180: New connection from 172.18.0.3 on port 1883. -1612431180: Sending CONNACK to 172.18.0.3 (0, 5) -1612431180: Socket error on client , disconnecting. -1612431200: New connection from 172.18.0.3 on port 1883. -1612431200: Sending CONNACK to 172.18.0.3 (0, 5) -1612431200: Socket error on client , disconnecting. -1612431220: New connection from 172.18.0.3 on port 1883. -1612431220: Sending CONNACK to 172.18.0.3 (0, 5) -1612431220: Socket error on client , disconnecting. -1612431240: New connection from 172.18.0.3 on port 1883. -1612431240: Sending CONNACK to 172.18.0.3 (0, 5) -1612431240: Socket error on client , disconnecting. -1612431260: New connection from 172.18.0.3 on port 1883. -1612431260: Sending CONNACK to 172.18.0.3 (0, 5) -1612431260: Socket error on client , disconnecting. -1612431280: New connection from 172.18.0.3 on port 1883. -1612431280: Sending CONNACK to 172.18.0.3 (0, 5) -1612431280: Socket error on client , disconnecting. -1612431300: New connection from 172.18.0.3 on port 1883. -1612431300: Sending CONNACK to 172.18.0.3 (0, 5) -1612431300: Socket error on client , disconnecting. -1612431320: New connection from 172.18.0.3 on port 1883. -1612431320: Sending CONNACK to 172.18.0.3 (0, 5) -1612431320: Socket error on client , disconnecting. -1612431340: New connection from 172.18.0.3 on port 1883. -1612431340: Sending CONNACK to 172.18.0.3 (0, 5) -1612431340: Socket error on client , disconnecting. -1612431360: New connection from 172.18.0.3 on port 1883. -1612431360: Sending CONNACK to 172.18.0.3 (0, 5) -1612431360: Socket error on client , disconnecting. -1612431380: New connection from 172.18.0.3 on port 1883. -1612431380: Sending CONNACK to 172.18.0.3 (0, 5) -1612431380: Socket error on client , disconnecting. -1612431400: New connection from 172.18.0.3 on port 1883. -1612431400: Sending CONNACK to 172.18.0.3 (0, 5) -1612431400: Socket error on client , disconnecting. -1612431420: New connection from 172.18.0.3 on port 1883. -1612431420: Sending CONNACK to 172.18.0.3 (0, 5) -1612431420: Socket error on client , disconnecting. -1612431440: New connection from 172.18.0.3 on port 1883. -1612431440: Sending CONNACK to 172.18.0.3 (0, 5) -1612431440: Socket error on client , disconnecting. -1612431460: New connection from 172.18.0.3 on port 1883. -1612431460: Sending CONNACK to 172.18.0.3 (0, 5) -1612431460: Socket error on client , disconnecting. -1612431480: New connection from 172.18.0.3 on port 1883. -1612431480: Sending CONNACK to 172.18.0.3 (0, 5) -1612431480: Socket error on client , disconnecting. -1612431500: New connection from 172.18.0.3 on port 1883. -1612431500: Sending CONNACK to 172.18.0.3 (0, 5) -1612431500: Socket error on client , disconnecting. -1612431520: New connection from 172.18.0.3 on port 1883. -1612431520: Sending CONNACK to 172.18.0.3 (0, 5) -1612431520: Socket error on client , disconnecting. -1612431540: New connection from 172.18.0.3 on port 1883. -1612431540: Sending CONNACK to 172.18.0.3 (0, 5) -1612431540: Socket error on client , disconnecting. -1612431560: New connection from 172.18.0.3 on port 1883. -1612431560: Sending CONNACK to 172.18.0.3 (0, 5) -1612431560: Socket error on client , disconnecting. -1612431580: New connection from 172.18.0.3 on port 1883. -1612431580: Sending CONNACK to 172.18.0.3 (0, 5) -1612431580: Socket error on client , disconnecting. -1612431600: New connection from 172.18.0.3 on port 1883. -1612431600: Sending CONNACK to 172.18.0.3 (0, 5) -1612431600: Socket error on client , disconnecting. -1612431620: New connection from 172.18.0.3 on port 1883. -1612431620: Sending CONNACK to 172.18.0.3 (0, 5) -1612431620: Socket error on client , disconnecting. -1612431640: New connection from 172.18.0.3 on port 1883. -1612431640: Sending CONNACK to 172.18.0.3 (0, 5) -1612431640: Socket error on client , disconnecting. -1612431660: New connection from 172.18.0.3 on port 1883. -1612431660: Sending CONNACK to 172.18.0.3 (0, 5) -1612431660: Socket error on client , disconnecting. -1612431680: New connection from 172.18.0.3 on port 1883. -1612431680: Sending CONNACK to 172.18.0.3 (0, 5) -1612431680: Socket error on client , disconnecting. -1612431700: New connection from 172.18.0.3 on port 1883. -1612431700: Sending CONNACK to 172.18.0.3 (0, 5) -1612431700: Socket error on client , disconnecting. -1612431720: New connection from 172.18.0.3 on port 1883. -1612431720: Sending CONNACK to 172.18.0.3 (0, 5) -1612431720: Socket error on client , disconnecting. -1612431740: New connection from 172.18.0.3 on port 1883. -1612431740: Sending CONNACK to 172.18.0.3 (0, 5) -1612431740: Socket error on client , disconnecting. -1612431760: New connection from 172.18.0.3 on port 1883. -1612431760: Sending CONNACK to 172.18.0.3 (0, 5) -1612431760: Socket error on client , disconnecting. -1612431780: New connection from 172.18.0.3 on port 1883. -1612431780: Sending CONNACK to 172.18.0.3 (0, 5) -1612431780: Socket error on client , disconnecting. -1612431800: New connection from 172.18.0.3 on port 1883. -1612431800: Sending CONNACK to 172.18.0.3 (0, 5) -1612431800: Socket error on client , disconnecting. -1612431820: New connection from 172.18.0.3 on port 1883. -1612431820: Sending CONNACK to 172.18.0.3 (0, 5) -1612431820: Socket error on client , disconnecting. -1612431840: New connection from 172.18.0.3 on port 1883. -1612431840: Sending CONNACK to 172.18.0.3 (0, 5) -1612431840: Socket error on client , disconnecting. -1612431860: New connection from 172.18.0.3 on port 1883. -1612431860: Sending CONNACK to 172.18.0.3 (0, 5) -1612431860: Socket error on client , disconnecting. -1612431880: New connection from 172.18.0.3 on port 1883. -1612431880: Sending CONNACK to 172.18.0.3 (0, 5) -1612431880: Socket error on client , disconnecting. -1612431900: New connection from 172.18.0.3 on port 1883. -1612431900: Sending CONNACK to 172.18.0.3 (0, 5) -1612431900: Socket error on client , disconnecting. -1612431920: New connection from 172.18.0.3 on port 1883. -1612431920: Sending CONNACK to 172.18.0.3 (0, 5) -1612431920: Socket error on client , disconnecting. -1612431940: New connection from 172.18.0.3 on port 1883. -1612431940: Sending CONNACK to 172.18.0.3 (0, 5) -1612431940: Socket error on client , disconnecting. -1612431960: New connection from 172.18.0.3 on port 1883. -1612431960: Sending CONNACK to 172.18.0.3 (0, 5) -1612431960: Socket error on client , disconnecting. -1612431980: New connection from 172.18.0.3 on port 1883. -1612431980: Sending CONNACK to 172.18.0.3 (0, 5) -1612431980: Socket error on client , disconnecting. -1612432000: New connection from 172.18.0.3 on port 1883. -1612432000: Sending CONNACK to 172.18.0.3 (0, 5) -1612432000: Socket error on client , disconnecting. -1612432009: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612432009: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612432009: Error: Permission denied. -1612432020: New connection from 172.18.0.3 on port 1883. -1612432020: Sending CONNACK to 172.18.0.3 (0, 5) -1612432020: Socket error on client , disconnecting. -1612432040: New connection from 172.18.0.3 on port 1883. -1612432040: Sending CONNACK to 172.18.0.3 (0, 5) -1612432040: Socket error on client , disconnecting. -1612432060: New connection from 172.18.0.3 on port 1883. -1612432060: Sending CONNACK to 172.18.0.3 (0, 5) -1612432060: Socket error on client , disconnecting. -1612432080: New connection from 172.18.0.3 on port 1883. -1612432080: Sending CONNACK to 172.18.0.3 (0, 5) -1612432080: Socket error on client , disconnecting. -1612432100: New connection from 172.18.0.3 on port 1883. -1612432100: Sending CONNACK to 172.18.0.3 (0, 5) -1612432100: Socket error on client , disconnecting. -1612432120: New connection from 172.18.0.3 on port 1883. -1612432120: Sending CONNACK to 172.18.0.3 (0, 5) -1612432120: Socket error on client , disconnecting. -1612432140: New connection from 172.18.0.3 on port 1883. -1612432140: Sending CONNACK to 172.18.0.3 (0, 5) -1612432140: Socket error on client , disconnecting. -1612432160: New connection from 172.18.0.3 on port 1883. -1612432160: Sending CONNACK to 172.18.0.3 (0, 5) -1612432160: Socket error on client , disconnecting. -1612432180: New connection from 172.18.0.3 on port 1883. -1612432180: Sending CONNACK to 172.18.0.3 (0, 5) -1612432180: Socket error on client , disconnecting. -1612432200: New connection from 172.18.0.3 on port 1883. -1612432200: Sending CONNACK to 172.18.0.3 (0, 5) -1612432200: Socket error on client , disconnecting. -1612432220: New connection from 172.18.0.3 on port 1883. -1612432220: Sending CONNACK to 172.18.0.3 (0, 5) -1612432220: Socket error on client , disconnecting. -1612432240: New connection from 172.18.0.3 on port 1883. -1612432240: Sending CONNACK to 172.18.0.3 (0, 5) -1612432240: Socket error on client , disconnecting. -1612432260: New connection from 172.18.0.3 on port 1883. -1612432260: Sending CONNACK to 172.18.0.3 (0, 5) -1612432260: Socket error on client , disconnecting. -1612432280: New connection from 172.18.0.3 on port 1883. -1612432280: Sending CONNACK to 172.18.0.3 (0, 5) -1612432280: Socket error on client , disconnecting. -1612432300: New connection from 172.18.0.3 on port 1883. -1612432300: Sending CONNACK to 172.18.0.3 (0, 5) -1612432300: Socket error on client , disconnecting. -1612432320: New connection from 172.18.0.3 on port 1883. -1612432320: Sending CONNACK to 172.18.0.3 (0, 5) -1612432320: Socket error on client , disconnecting. -1612432340: New connection from 172.18.0.3 on port 1883. -1612432340: Sending CONNACK to 172.18.0.3 (0, 5) -1612432340: Socket error on client , disconnecting. -1612432360: New connection from 172.18.0.3 on port 1883. -1612432360: Sending CONNACK to 172.18.0.3 (0, 5) -1612432360: Socket error on client , disconnecting. -1612432380: New connection from 172.18.0.3 on port 1883. -1612432380: Sending CONNACK to 172.18.0.3 (0, 5) -1612432380: Socket error on client , disconnecting. -1612432400: New connection from 172.18.0.3 on port 1883. -1612432400: Sending CONNACK to 172.18.0.3 (0, 5) -1612432400: Socket error on client , disconnecting. -1612432420: New connection from 172.18.0.3 on port 1883. -1612432420: Sending CONNACK to 172.18.0.3 (0, 5) -1612432420: Socket error on client , disconnecting. -1612432440: New connection from 172.18.0.3 on port 1883. -1612432440: Sending CONNACK to 172.18.0.3 (0, 5) -1612432440: Socket error on client , disconnecting. -1612432460: New connection from 172.18.0.3 on port 1883. -1612432460: Sending CONNACK to 172.18.0.3 (0, 5) -1612432460: Socket error on client , disconnecting. -1612432480: New connection from 172.18.0.3 on port 1883. -1612432480: Sending CONNACK to 172.18.0.3 (0, 5) -1612432480: Socket error on client , disconnecting. -1612432500: New connection from 172.18.0.3 on port 1883. -1612432500: Sending CONNACK to 172.18.0.3 (0, 5) -1612432500: Socket error on client , disconnecting. -1612432520: New connection from 172.18.0.3 on port 1883. -1612432520: Sending CONNACK to 172.18.0.3 (0, 5) -1612432520: Socket error on client , disconnecting. -1612432540: New connection from 172.18.0.3 on port 1883. -1612432540: Sending CONNACK to 172.18.0.3 (0, 5) -1612432540: Socket error on client , disconnecting. -1612432560: New connection from 172.18.0.3 on port 1883. -1612432560: Sending CONNACK to 172.18.0.3 (0, 5) -1612432560: Socket error on client , disconnecting. -1612432580: New connection from 172.18.0.3 on port 1883. -1612432580: Sending CONNACK to 172.18.0.3 (0, 5) -1612432580: Socket error on client , disconnecting. -1612432600: New connection from 172.18.0.3 on port 1883. -1612432600: Sending CONNACK to 172.18.0.3 (0, 5) -1612432600: Socket error on client , disconnecting. -1612432620: New connection from 172.18.0.3 on port 1883. -1612432620: Sending CONNACK to 172.18.0.3 (0, 5) -1612432620: Socket error on client , disconnecting. -1612432640: New connection from 172.18.0.3 on port 1883. -1612432640: Sending CONNACK to 172.18.0.3 (0, 5) -1612432640: Socket error on client , disconnecting. -1612432660: New connection from 172.18.0.3 on port 1883. -1612432660: Sending CONNACK to 172.18.0.3 (0, 5) -1612432660: Socket error on client , disconnecting. -1612432680: New connection from 172.18.0.3 on port 1883. -1612432680: Sending CONNACK to 172.18.0.3 (0, 5) -1612432680: Socket error on client , disconnecting. -1612432700: New connection from 172.18.0.3 on port 1883. -1612432700: Sending CONNACK to 172.18.0.3 (0, 5) -1612432700: Socket error on client , disconnecting. -1612432720: New connection from 172.18.0.3 on port 1883. -1612432720: Sending CONNACK to 172.18.0.3 (0, 5) -1612432720: Socket error on client , disconnecting. -1612432740: New connection from 172.18.0.3 on port 1883. -1612432740: Sending CONNACK to 172.18.0.3 (0, 5) -1612432740: Socket error on client , disconnecting. -1612432760: New connection from 172.18.0.3 on port 1883. -1612432760: Sending CONNACK to 172.18.0.3 (0, 5) -1612432760: Socket error on client , disconnecting. -1612432780: New connection from 172.18.0.3 on port 1883. -1612432780: Sending CONNACK to 172.18.0.3 (0, 5) -1612432780: Socket error on client , disconnecting. -1612432800: New connection from 172.18.0.3 on port 1883. -1612432800: Sending CONNACK to 172.18.0.3 (0, 5) -1612432800: Socket error on client , disconnecting. -1612432820: New connection from 172.18.0.3 on port 1883. -1612432820: Sending CONNACK to 172.18.0.3 (0, 5) -1612432820: Socket error on client , disconnecting. -1612432840: New connection from 172.18.0.3 on port 1883. -1612432840: Sending CONNACK to 172.18.0.3 (0, 5) -1612432840: Socket error on client , disconnecting. -1612432860: New connection from 172.18.0.3 on port 1883. -1612432860: Sending CONNACK to 172.18.0.3 (0, 5) -1612432860: Socket error on client , disconnecting. -1612432880: New connection from 172.18.0.3 on port 1883. -1612432880: Sending CONNACK to 172.18.0.3 (0, 5) -1612432880: Socket error on client , disconnecting. -1612432900: New connection from 172.18.0.3 on port 1883. -1612432900: Sending CONNACK to 172.18.0.3 (0, 5) -1612432900: Socket error on client , disconnecting. -1612432920: New connection from 172.18.0.3 on port 1883. -1612432920: Sending CONNACK to 172.18.0.3 (0, 5) -1612432920: Socket error on client , disconnecting. -1612432940: New connection from 172.18.0.3 on port 1883. -1612432940: Sending CONNACK to 172.18.0.3 (0, 5) -1612432940: Socket error on client , disconnecting. -1612432960: New connection from 172.18.0.3 on port 1883. -1612432960: Sending CONNACK to 172.18.0.3 (0, 5) -1612432960: Socket error on client , disconnecting. -1612432980: New connection from 172.18.0.3 on port 1883. -1612432980: Sending CONNACK to 172.18.0.3 (0, 5) -1612432980: Socket error on client , disconnecting. -1612433000: New connection from 172.18.0.3 on port 1883. -1612433000: Sending CONNACK to 172.18.0.3 (0, 5) -1612433000: Socket error on client , disconnecting. -1612433020: New connection from 172.18.0.3 on port 1883. -1612433020: Sending CONNACK to 172.18.0.3 (0, 5) -1612433020: Socket error on client , disconnecting. -1612433040: New connection from 172.18.0.3 on port 1883. -1612433040: Sending CONNACK to 172.18.0.3 (0, 5) -1612433040: Socket error on client , disconnecting. -1612433060: New connection from 172.18.0.3 on port 1883. -1612433060: Sending CONNACK to 172.18.0.3 (0, 5) -1612433060: Socket error on client , disconnecting. -1612433080: New connection from 172.18.0.3 on port 1883. -1612433080: Sending CONNACK to 172.18.0.3 (0, 5) -1612433080: Socket error on client , disconnecting. -1612433100: New connection from 172.18.0.3 on port 1883. -1612433100: Sending CONNACK to 172.18.0.3 (0, 5) -1612433100: Socket error on client , disconnecting. -1612433120: New connection from 172.18.0.3 on port 1883. -1612433120: Sending CONNACK to 172.18.0.3 (0, 5) -1612433120: Socket error on client , disconnecting. -1612433140: New connection from 172.18.0.3 on port 1883. -1612433140: Sending CONNACK to 172.18.0.3 (0, 5) -1612433140: Socket error on client , disconnecting. -1612433160: New connection from 172.18.0.3 on port 1883. -1612433160: Sending CONNACK to 172.18.0.3 (0, 5) -1612433160: Socket error on client , disconnecting. -1612433180: New connection from 172.18.0.3 on port 1883. -1612433180: Sending CONNACK to 172.18.0.3 (0, 5) -1612433180: Socket error on client , disconnecting. -1612433200: New connection from 172.18.0.3 on port 1883. -1612433200: Sending CONNACK to 172.18.0.3 (0, 5) -1612433200: Socket error on client , disconnecting. -1612433220: New connection from 172.18.0.3 on port 1883. -1612433220: Sending CONNACK to 172.18.0.3 (0, 5) -1612433220: Socket error on client , disconnecting. -1612433240: New connection from 172.18.0.3 on port 1883. -1612433240: Sending CONNACK to 172.18.0.3 (0, 5) -1612433240: Socket error on client , disconnecting. -1612433260: New connection from 172.18.0.3 on port 1883. -1612433260: Sending CONNACK to 172.18.0.3 (0, 5) -1612433260: Socket error on client , disconnecting. -1612433280: New connection from 172.18.0.3 on port 1883. -1612433280: Sending CONNACK to 172.18.0.3 (0, 5) -1612433280: Socket error on client , disconnecting. -1612433300: New connection from 172.18.0.3 on port 1883. -1612433300: Sending CONNACK to 172.18.0.3 (0, 5) -1612433300: Socket error on client , disconnecting. -1612433320: New connection from 172.18.0.3 on port 1883. -1612433320: Sending CONNACK to 172.18.0.3 (0, 5) -1612433320: Socket error on client , disconnecting. -1612433340: New connection from 172.18.0.3 on port 1883. -1612433340: Sending CONNACK to 172.18.0.3 (0, 5) -1612433340: Socket error on client , disconnecting. -1612433360: New connection from 172.18.0.3 on port 1883. -1612433360: Sending CONNACK to 172.18.0.3 (0, 5) -1612433360: Socket error on client , disconnecting. -1612433380: New connection from 172.18.0.3 on port 1883. -1612433380: Sending CONNACK to 172.18.0.3 (0, 5) -1612433380: Socket error on client , disconnecting. -1612433400: New connection from 172.18.0.3 on port 1883. -1612433400: Sending CONNACK to 172.18.0.3 (0, 5) -1612433400: Socket error on client , disconnecting. -1612433420: New connection from 172.18.0.3 on port 1883. -1612433420: Sending CONNACK to 172.18.0.3 (0, 5) -1612433420: Socket error on client , disconnecting. -1612433440: New connection from 172.18.0.3 on port 1883. -1612433440: Sending CONNACK to 172.18.0.3 (0, 5) -1612433440: Socket error on client , disconnecting. -1612433460: New connection from 172.18.0.3 on port 1883. -1612433460: Sending CONNACK to 172.18.0.3 (0, 5) -1612433460: Socket error on client , disconnecting. -1612433480: New connection from 172.18.0.3 on port 1883. -1612433480: Sending CONNACK to 172.18.0.3 (0, 5) -1612433480: Socket error on client , disconnecting. -1612433500: New connection from 172.18.0.3 on port 1883. -1612433500: Sending CONNACK to 172.18.0.3 (0, 5) -1612433500: Socket error on client , disconnecting. -1612433520: New connection from 172.18.0.3 on port 1883. -1612433520: Sending CONNACK to 172.18.0.3 (0, 5) -1612433520: Socket error on client , disconnecting. -1612433540: New connection from 172.18.0.3 on port 1883. -1612433540: Sending CONNACK to 172.18.0.3 (0, 5) -1612433540: Socket error on client , disconnecting. -1612433560: New connection from 172.18.0.3 on port 1883. -1612433560: Sending CONNACK to 172.18.0.3 (0, 5) -1612433560: Socket error on client , disconnecting. -1612433580: New connection from 172.18.0.3 on port 1883. -1612433580: Sending CONNACK to 172.18.0.3 (0, 5) -1612433580: Socket error on client , disconnecting. -1612433600: New connection from 172.18.0.3 on port 1883. -1612433600: Sending CONNACK to 172.18.0.3 (0, 5) -1612433600: Socket error on client , disconnecting. -1612433620: New connection from 172.18.0.3 on port 1883. -1612433620: Sending CONNACK to 172.18.0.3 (0, 5) -1612433620: Socket error on client , disconnecting. -1612433640: New connection from 172.18.0.3 on port 1883. -1612433640: Sending CONNACK to 172.18.0.3 (0, 5) -1612433640: Socket error on client , disconnecting. -1612433660: New connection from 172.18.0.3 on port 1883. -1612433660: Sending CONNACK to 172.18.0.3 (0, 5) -1612433660: Socket error on client , disconnecting. -1612433680: New connection from 172.18.0.3 on port 1883. -1612433680: Sending CONNACK to 172.18.0.3 (0, 5) -1612433680: Socket error on client , disconnecting. -1612433700: New connection from 172.18.0.3 on port 1883. -1612433700: Sending CONNACK to 172.18.0.3 (0, 5) -1612433700: Socket error on client , disconnecting. -1612433720: New connection from 172.18.0.3 on port 1883. -1612433720: Sending CONNACK to 172.18.0.3 (0, 5) -1612433720: Socket error on client , disconnecting. -1612433740: New connection from 172.18.0.3 on port 1883. -1612433740: Sending CONNACK to 172.18.0.3 (0, 5) -1612433740: Socket error on client , disconnecting. -1612433760: New connection from 172.18.0.3 on port 1883. -1612433760: Sending CONNACK to 172.18.0.3 (0, 5) -1612433760: Socket error on client , disconnecting. -1612433780: New connection from 172.18.0.3 on port 1883. -1612433780: Sending CONNACK to 172.18.0.3 (0, 5) -1612433780: Socket error on client , disconnecting. -1612433800: New connection from 172.18.0.3 on port 1883. -1612433800: Sending CONNACK to 172.18.0.3 (0, 5) -1612433800: Socket error on client , disconnecting. -1612433810: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612433810: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612433810: Error: Permission denied. -1612433820: New connection from 172.18.0.3 on port 1883. -1612433820: Sending CONNACK to 172.18.0.3 (0, 5) -1612433820: Socket error on client , disconnecting. -1612433840: New connection from 172.18.0.3 on port 1883. -1612433840: Sending CONNACK to 172.18.0.3 (0, 5) -1612433840: Socket error on client , disconnecting. -1612433860: New connection from 172.18.0.3 on port 1883. -1612433860: Sending CONNACK to 172.18.0.3 (0, 5) -1612433860: Socket error on client , disconnecting. -1612433880: New connection from 172.18.0.3 on port 1883. -1612433880: Sending CONNACK to 172.18.0.3 (0, 5) -1612433880: Socket error on client , disconnecting. -1612433900: New connection from 172.18.0.3 on port 1883. -1612433900: Sending CONNACK to 172.18.0.3 (0, 5) -1612433900: Socket error on client , disconnecting. -1612433920: New connection from 172.18.0.3 on port 1883. -1612433920: Sending CONNACK to 172.18.0.3 (0, 5) -1612433920: Socket error on client , disconnecting. -1612433940: New connection from 172.18.0.3 on port 1883. -1612433940: Sending CONNACK to 172.18.0.3 (0, 5) -1612433940: Socket error on client , disconnecting. -1612433960: New connection from 172.18.0.3 on port 1883. -1612433960: Sending CONNACK to 172.18.0.3 (0, 5) -1612433960: Socket error on client , disconnecting. -1612433980: New connection from 172.18.0.3 on port 1883. -1612433980: Sending CONNACK to 172.18.0.3 (0, 5) -1612433980: Socket error on client , disconnecting. -1612434000: New connection from 172.18.0.3 on port 1883. -1612434000: Sending CONNACK to 172.18.0.3 (0, 5) -1612434000: Socket error on client , disconnecting. -1612434020: New connection from 172.18.0.3 on port 1883. -1612434020: Sending CONNACK to 172.18.0.3 (0, 5) -1612434020: Socket error on client , disconnecting. -1612434040: New connection from 172.18.0.3 on port 1883. -1612434040: Sending CONNACK to 172.18.0.3 (0, 5) -1612434040: Socket error on client , disconnecting. -1612434060: New connection from 172.18.0.3 on port 1883. -1612434060: Sending CONNACK to 172.18.0.3 (0, 5) -1612434060: Socket error on client , disconnecting. -1612434080: New connection from 172.18.0.3 on port 1883. -1612434080: Sending CONNACK to 172.18.0.3 (0, 5) -1612434080: Socket error on client , disconnecting. -1612434100: New connection from 172.18.0.3 on port 1883. -1612434100: Sending CONNACK to 172.18.0.3 (0, 5) -1612434100: Socket error on client , disconnecting. -1612434120: New connection from 172.18.0.3 on port 1883. -1612434120: Sending CONNACK to 172.18.0.3 (0, 5) -1612434120: Socket error on client , disconnecting. -1612434140: New connection from 172.18.0.3 on port 1883. -1612434140: Sending CONNACK to 172.18.0.3 (0, 5) -1612434140: Socket error on client , disconnecting. -1612434160: New connection from 172.18.0.3 on port 1883. -1612434160: Sending CONNACK to 172.18.0.3 (0, 5) -1612434160: Socket error on client , disconnecting. -1612434180: New connection from 172.18.0.3 on port 1883. -1612434180: Sending CONNACK to 172.18.0.3 (0, 5) -1612434180: Socket error on client , disconnecting. -1612434200: New connection from 172.18.0.3 on port 1883. -1612434200: Sending CONNACK to 172.18.0.3 (0, 5) -1612434200: Socket error on client , disconnecting. -1612434220: New connection from 172.18.0.3 on port 1883. -1612434220: Sending CONNACK to 172.18.0.3 (0, 5) -1612434220: Socket error on client , disconnecting. -1612434240: New connection from 172.18.0.3 on port 1883. -1612434240: Sending CONNACK to 172.18.0.3 (0, 5) -1612434240: Socket error on client , disconnecting. -1612434260: New connection from 172.18.0.3 on port 1883. -1612434260: Sending CONNACK to 172.18.0.3 (0, 5) -1612434260: Socket error on client , disconnecting. -1612434280: New connection from 172.18.0.3 on port 1883. -1612434280: Sending CONNACK to 172.18.0.3 (0, 5) -1612434280: Socket error on client , disconnecting. -1612434300: New connection from 172.18.0.3 on port 1883. -1612434300: Sending CONNACK to 172.18.0.3 (0, 5) -1612434300: Socket error on client , disconnecting. -1612434320: New connection from 172.18.0.3 on port 1883. -1612434320: Sending CONNACK to 172.18.0.3 (0, 5) -1612434320: Socket error on client , disconnecting. -1612434340: New connection from 172.18.0.3 on port 1883. -1612434340: Sending CONNACK to 172.18.0.3 (0, 5) -1612434340: Socket error on client , disconnecting. -1612434360: New connection from 172.18.0.3 on port 1883. -1612434360: Sending CONNACK to 172.18.0.3 (0, 5) -1612434360: Socket error on client , disconnecting. -1612434380: New connection from 172.18.0.3 on port 1883. -1612434380: Sending CONNACK to 172.18.0.3 (0, 5) -1612434380: Socket error on client , disconnecting. -1612434400: New connection from 172.18.0.3 on port 1883. -1612434400: Sending CONNACK to 172.18.0.3 (0, 5) -1612434400: Socket error on client , disconnecting. -1612434420: New connection from 172.18.0.3 on port 1883. -1612434420: Sending CONNACK to 172.18.0.3 (0, 5) -1612434420: Socket error on client , disconnecting. -1612434440: New connection from 172.18.0.3 on port 1883. -1612434440: Sending CONNACK to 172.18.0.3 (0, 5) -1612434440: Socket error on client , disconnecting. -1612434460: New connection from 172.18.0.3 on port 1883. -1612434460: Sending CONNACK to 172.18.0.3 (0, 5) -1612434460: Socket error on client , disconnecting. -1612434480: New connection from 172.18.0.3 on port 1883. -1612434480: Sending CONNACK to 172.18.0.3 (0, 5) -1612434480: Socket error on client , disconnecting. -1612434500: New connection from 172.18.0.3 on port 1883. -1612434500: Sending CONNACK to 172.18.0.3 (0, 5) -1612434500: Socket error on client , disconnecting. -1612434520: New connection from 172.18.0.3 on port 1883. -1612434520: Sending CONNACK to 172.18.0.3 (0, 5) -1612434520: Socket error on client , disconnecting. -1612434540: New connection from 172.18.0.3 on port 1883. -1612434540: Sending CONNACK to 172.18.0.3 (0, 5) -1612434540: Socket error on client , disconnecting. -1612434560: New connection from 172.18.0.3 on port 1883. -1612434560: Sending CONNACK to 172.18.0.3 (0, 5) -1612434560: Socket error on client , disconnecting. -1612434580: New connection from 172.18.0.3 on port 1883. -1612434580: Sending CONNACK to 172.18.0.3 (0, 5) -1612434580: Socket error on client , disconnecting. -1612434600: New connection from 172.18.0.3 on port 1883. -1612434600: Sending CONNACK to 172.18.0.3 (0, 5) -1612434600: Socket error on client , disconnecting. -1612434620: New connection from 172.18.0.3 on port 1883. -1612434620: Sending CONNACK to 172.18.0.3 (0, 5) -1612434620: Socket error on client , disconnecting. -1612434640: New connection from 172.18.0.3 on port 1883. -1612434640: Sending CONNACK to 172.18.0.3 (0, 5) -1612434640: Socket error on client , disconnecting. -1612434660: New connection from 172.18.0.3 on port 1883. -1612434660: Sending CONNACK to 172.18.0.3 (0, 5) -1612434660: Socket error on client , disconnecting. -1612434680: New connection from 172.18.0.3 on port 1883. -1612434680: Sending CONNACK to 172.18.0.3 (0, 5) -1612434680: Socket error on client , disconnecting. -1612434700: New connection from 172.18.0.3 on port 1883. -1612434700: Sending CONNACK to 172.18.0.3 (0, 5) -1612434700: Socket error on client , disconnecting. -1612434720: New connection from 172.18.0.3 on port 1883. -1612434720: Sending CONNACK to 172.18.0.3 (0, 5) -1612434720: Socket error on client , disconnecting. -1612434740: New connection from 172.18.0.3 on port 1883. -1612434740: Sending CONNACK to 172.18.0.3 (0, 5) -1612434740: Socket error on client , disconnecting. -1612434760: New connection from 172.18.0.3 on port 1883. -1612434760: Sending CONNACK to 172.18.0.3 (0, 5) -1612434760: Socket error on client , disconnecting. -1612434780: New connection from 172.18.0.3 on port 1883. -1612434780: Sending CONNACK to 172.18.0.3 (0, 5) -1612434780: Socket error on client , disconnecting. -1612434800: New connection from 172.18.0.3 on port 1883. -1612434800: Sending CONNACK to 172.18.0.3 (0, 5) -1612434800: Socket error on client , disconnecting. -1612434820: New connection from 172.18.0.3 on port 1883. -1612434820: Sending CONNACK to 172.18.0.3 (0, 5) -1612434820: Socket error on client , disconnecting. -1612434840: New connection from 172.18.0.3 on port 1883. -1612434840: Sending CONNACK to 172.18.0.3 (0, 5) -1612434840: Socket error on client , disconnecting. -1612434860: New connection from 172.18.0.3 on port 1883. -1612434860: Sending CONNACK to 172.18.0.3 (0, 5) -1612434860: Socket error on client , disconnecting. -1612434880: New connection from 172.18.0.3 on port 1883. -1612434880: Sending CONNACK to 172.18.0.3 (0, 5) -1612434880: Socket error on client , disconnecting. -1612434900: New connection from 172.18.0.3 on port 1883. -1612434900: Sending CONNACK to 172.18.0.3 (0, 5) -1612434900: Socket error on client , disconnecting. -1612434920: New connection from 172.18.0.3 on port 1883. -1612434920: Sending CONNACK to 172.18.0.3 (0, 5) -1612434920: Socket error on client , disconnecting. -1612434940: New connection from 172.18.0.3 on port 1883. -1612434940: Sending CONNACK to 172.18.0.3 (0, 5) -1612434940: Socket error on client , disconnecting. -1612434960: New connection from 172.18.0.3 on port 1883. -1612434960: Sending CONNACK to 172.18.0.3 (0, 5) -1612434960: Socket error on client , disconnecting. -1612434980: New connection from 172.18.0.3 on port 1883. -1612434980: Sending CONNACK to 172.18.0.3 (0, 5) -1612434980: Socket error on client , disconnecting. -1612435000: New connection from 172.18.0.3 on port 1883. -1612435000: Sending CONNACK to 172.18.0.3 (0, 5) -1612435000: Socket error on client , disconnecting. -1612435020: New connection from 172.18.0.3 on port 1883. -1612435020: Sending CONNACK to 172.18.0.3 (0, 5) -1612435020: Socket error on client , disconnecting. -1612435040: New connection from 172.18.0.3 on port 1883. -1612435040: Sending CONNACK to 172.18.0.3 (0, 5) -1612435040: Socket error on client , disconnecting. -1612435060: New connection from 172.18.0.3 on port 1883. -1612435060: Sending CONNACK to 172.18.0.3 (0, 5) -1612435060: Socket error on client , disconnecting. -1612435080: New connection from 172.18.0.3 on port 1883. -1612435080: Sending CONNACK to 172.18.0.3 (0, 5) -1612435080: Socket error on client , disconnecting. -1612435100: New connection from 172.18.0.3 on port 1883. -1612435100: Sending CONNACK to 172.18.0.3 (0, 5) -1612435100: Socket error on client , disconnecting. -1612435120: New connection from 172.18.0.3 on port 1883. -1612435120: Sending CONNACK to 172.18.0.3 (0, 5) -1612435120: Socket error on client , disconnecting. -1612435140: New connection from 172.18.0.3 on port 1883. -1612435140: Sending CONNACK to 172.18.0.3 (0, 5) -1612435140: Socket error on client , disconnecting. -1612435160: New connection from 172.18.0.3 on port 1883. -1612435160: Sending CONNACK to 172.18.0.3 (0, 5) -1612435160: Socket error on client , disconnecting. -1612435180: New connection from 172.18.0.3 on port 1883. -1612435180: Sending CONNACK to 172.18.0.3 (0, 5) -1612435180: Socket error on client , disconnecting. -1612435200: New connection from 172.18.0.3 on port 1883. -1612435200: Sending CONNACK to 172.18.0.3 (0, 5) -1612435200: Socket error on client , disconnecting. -1612435220: New connection from 172.18.0.3 on port 1883. -1612435220: Sending CONNACK to 172.18.0.3 (0, 5) -1612435220: Socket error on client , disconnecting. -1612435240: New connection from 172.18.0.3 on port 1883. -1612435240: Sending CONNACK to 172.18.0.3 (0, 5) -1612435240: Socket error on client , disconnecting. -1612435260: New connection from 172.18.0.3 on port 1883. -1612435260: Sending CONNACK to 172.18.0.3 (0, 5) -1612435260: Socket error on client , disconnecting. -1612435280: New connection from 172.18.0.3 on port 1883. -1612435280: Sending CONNACK to 172.18.0.3 (0, 5) -1612435280: Socket error on client , disconnecting. -1612435300: New connection from 172.18.0.3 on port 1883. -1612435300: Sending CONNACK to 172.18.0.3 (0, 5) -1612435300: Socket error on client , disconnecting. -1612435320: New connection from 172.18.0.3 on port 1883. -1612435320: Sending CONNACK to 172.18.0.3 (0, 5) -1612435320: Socket error on client , disconnecting. -1612435340: New connection from 172.18.0.3 on port 1883. -1612435340: Sending CONNACK to 172.18.0.3 (0, 5) -1612435340: Socket error on client , disconnecting. -1612435360: New connection from 172.18.0.3 on port 1883. -1612435360: Sending CONNACK to 172.18.0.3 (0, 5) -1612435360: Socket error on client , disconnecting. -1612435380: New connection from 172.18.0.3 on port 1883. -1612435380: Sending CONNACK to 172.18.0.3 (0, 5) -1612435380: Socket error on client , disconnecting. -1612435400: New connection from 172.18.0.3 on port 1883. -1612435400: Sending CONNACK to 172.18.0.3 (0, 5) -1612435400: Socket error on client , disconnecting. -1612435420: New connection from 172.18.0.3 on port 1883. -1612435420: Sending CONNACK to 172.18.0.3 (0, 5) -1612435420: Socket error on client , disconnecting. -1612435440: New connection from 172.18.0.3 on port 1883. -1612435440: Sending CONNACK to 172.18.0.3 (0, 5) -1612435440: Socket error on client , disconnecting. -1612435460: New connection from 172.18.0.3 on port 1883. -1612435460: Sending CONNACK to 172.18.0.3 (0, 5) -1612435460: Socket error on client , disconnecting. -1612435480: New connection from 172.18.0.3 on port 1883. -1612435480: Sending CONNACK to 172.18.0.3 (0, 5) -1612435480: Socket error on client , disconnecting. -1612435500: New connection from 172.18.0.3 on port 1883. -1612435500: Sending CONNACK to 172.18.0.3 (0, 5) -1612435500: Socket error on client , disconnecting. -1612435520: New connection from 172.18.0.3 on port 1883. -1612435520: Sending CONNACK to 172.18.0.3 (0, 5) -1612435520: Socket error on client , disconnecting. -1612435540: New connection from 172.18.0.3 on port 1883. -1612435540: Sending CONNACK to 172.18.0.3 (0, 5) -1612435540: Socket error on client , disconnecting. -1612435560: New connection from 172.18.0.3 on port 1883. -1612435560: Sending CONNACK to 172.18.0.3 (0, 5) -1612435560: Socket error on client , disconnecting. -1612435580: New connection from 172.18.0.3 on port 1883. -1612435580: Sending CONNACK to 172.18.0.3 (0, 5) -1612435580: Socket error on client , disconnecting. -1612435600: New connection from 172.18.0.3 on port 1883. -1612435600: Sending CONNACK to 172.18.0.3 (0, 5) -1612435600: Socket error on client , disconnecting. -1612435611: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612435611: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612435611: Error: Permission denied. -1612435620: New connection from 172.18.0.3 on port 1883. -1612435620: Sending CONNACK to 172.18.0.3 (0, 5) -1612435620: Socket error on client , disconnecting. -1612435640: New connection from 172.18.0.3 on port 1883. -1612435640: Sending CONNACK to 172.18.0.3 (0, 5) -1612435640: Socket error on client , disconnecting. -1612435660: New connection from 172.18.0.3 on port 1883. -1612435660: Sending CONNACK to 172.18.0.3 (0, 5) -1612435660: Socket error on client , disconnecting. -1612435680: New connection from 172.18.0.3 on port 1883. -1612435680: Sending CONNACK to 172.18.0.3 (0, 5) -1612435680: Socket error on client , disconnecting. -1612435700: New connection from 172.18.0.3 on port 1883. -1612435700: Sending CONNACK to 172.18.0.3 (0, 5) -1612435700: Socket error on client , disconnecting. -1612435720: New connection from 172.18.0.3 on port 1883. -1612435720: Sending CONNACK to 172.18.0.3 (0, 5) -1612435720: Socket error on client , disconnecting. -1612435740: New connection from 172.18.0.3 on port 1883. -1612435740: Sending CONNACK to 172.18.0.3 (0, 5) -1612435740: Socket error on client , disconnecting. -1612435760: New connection from 172.18.0.3 on port 1883. -1612435760: Sending CONNACK to 172.18.0.3 (0, 5) -1612435760: Socket error on client , disconnecting. -1612435780: New connection from 172.18.0.3 on port 1883. -1612435780: Sending CONNACK to 172.18.0.3 (0, 5) -1612435780: Socket error on client , disconnecting. -1612435800: New connection from 172.18.0.3 on port 1883. -1612435800: Sending CONNACK to 172.18.0.3 (0, 5) -1612435800: Socket error on client , disconnecting. -1612435820: New connection from 172.18.0.3 on port 1883. -1612435820: Sending CONNACK to 172.18.0.3 (0, 5) -1612435820: Socket error on client , disconnecting. -1612435840: New connection from 172.18.0.3 on port 1883. -1612435840: Sending CONNACK to 172.18.0.3 (0, 5) -1612435840: Socket error on client , disconnecting. -1612435860: New connection from 172.18.0.3 on port 1883. -1612435860: Sending CONNACK to 172.18.0.3 (0, 5) -1612435860: Socket error on client , disconnecting. -1612435880: New connection from 172.18.0.3 on port 1883. -1612435880: Sending CONNACK to 172.18.0.3 (0, 5) -1612435880: Socket error on client , disconnecting. -1612435900: New connection from 172.18.0.3 on port 1883. -1612435900: Sending CONNACK to 172.18.0.3 (0, 5) -1612435900: Socket error on client , disconnecting. -1612435920: New connection from 172.18.0.3 on port 1883. -1612435920: Sending CONNACK to 172.18.0.3 (0, 5) -1612435920: Socket error on client , disconnecting. -1612435940: New connection from 172.18.0.3 on port 1883. -1612435940: Sending CONNACK to 172.18.0.3 (0, 5) -1612435940: Socket error on client , disconnecting. -1612435960: New connection from 172.18.0.3 on port 1883. -1612435960: Sending CONNACK to 172.18.0.3 (0, 5) -1612435960: Socket error on client , disconnecting. -1612435980: New connection from 172.18.0.3 on port 1883. -1612435980: Sending CONNACK to 172.18.0.3 (0, 5) -1612435980: Socket error on client , disconnecting. -1612436000: New connection from 172.18.0.3 on port 1883. -1612436000: Sending CONNACK to 172.18.0.3 (0, 5) -1612436000: Socket error on client , disconnecting. -1612436020: New connection from 172.18.0.3 on port 1883. -1612436020: Sending CONNACK to 172.18.0.3 (0, 5) -1612436020: Socket error on client , disconnecting. -1612436040: New connection from 172.18.0.3 on port 1883. -1612436040: Sending CONNACK to 172.18.0.3 (0, 5) -1612436040: Socket error on client , disconnecting. -1612436060: New connection from 172.18.0.3 on port 1883. -1612436060: Sending CONNACK to 172.18.0.3 (0, 5) -1612436060: Socket error on client , disconnecting. -1612436080: New connection from 172.18.0.3 on port 1883. -1612436080: Sending CONNACK to 172.18.0.3 (0, 5) -1612436080: Socket error on client , disconnecting. -1612436100: New connection from 172.18.0.3 on port 1883. -1612436100: Sending CONNACK to 172.18.0.3 (0, 5) -1612436100: Socket error on client , disconnecting. -1612436120: New connection from 172.18.0.3 on port 1883. -1612436120: Sending CONNACK to 172.18.0.3 (0, 5) -1612436120: Socket error on client , disconnecting. -1612436140: New connection from 172.18.0.3 on port 1883. -1612436140: Sending CONNACK to 172.18.0.3 (0, 5) -1612436140: Socket error on client , disconnecting. -1612436160: New connection from 172.18.0.3 on port 1883. -1612436160: Sending CONNACK to 172.18.0.3 (0, 5) -1612436160: Socket error on client , disconnecting. -1612436180: New connection from 172.18.0.3 on port 1883. -1612436180: Sending CONNACK to 172.18.0.3 (0, 5) -1612436180: Socket error on client , disconnecting. -1612436200: New connection from 172.18.0.3 on port 1883. -1612436200: Sending CONNACK to 172.18.0.3 (0, 5) -1612436200: Socket error on client , disconnecting. -1612436220: New connection from 172.18.0.3 on port 1883. -1612436220: Sending CONNACK to 172.18.0.3 (0, 5) -1612436220: Socket error on client , disconnecting. -1612436240: New connection from 172.18.0.3 on port 1883. -1612436240: Sending CONNACK to 172.18.0.3 (0, 5) -1612436240: Socket error on client , disconnecting. -1612436260: New connection from 172.18.0.3 on port 1883. -1612436260: Sending CONNACK to 172.18.0.3 (0, 5) -1612436260: Socket error on client , disconnecting. -1612436280: New connection from 172.18.0.3 on port 1883. -1612436280: Sending CONNACK to 172.18.0.3 (0, 5) -1612436280: Socket error on client , disconnecting. -1612436300: New connection from 172.18.0.3 on port 1883. -1612436300: Sending CONNACK to 172.18.0.3 (0, 5) -1612436300: Socket error on client , disconnecting. -1612436320: New connection from 172.18.0.3 on port 1883. -1612436320: Sending CONNACK to 172.18.0.3 (0, 5) -1612436320: Socket error on client , disconnecting. -1612436340: New connection from 172.18.0.3 on port 1883. -1612436340: Sending CONNACK to 172.18.0.3 (0, 5) -1612436340: Socket error on client , disconnecting. -1612436360: New connection from 172.18.0.3 on port 1883. -1612436360: Sending CONNACK to 172.18.0.3 (0, 5) -1612436360: Socket error on client , disconnecting. -1612436380: New connection from 172.18.0.3 on port 1883. -1612436380: Sending CONNACK to 172.18.0.3 (0, 5) -1612436380: Socket error on client , disconnecting. -1612436400: New connection from 172.18.0.3 on port 1883. -1612436400: Sending CONNACK to 172.18.0.3 (0, 5) -1612436400: Socket error on client , disconnecting. -1612436420: New connection from 172.18.0.3 on port 1883. -1612436420: Sending CONNACK to 172.18.0.3 (0, 5) -1612436420: Socket error on client , disconnecting. -1612436440: New connection from 172.18.0.3 on port 1883. -1612436440: Sending CONNACK to 172.18.0.3 (0, 5) -1612436440: Socket error on client , disconnecting. -1612436460: New connection from 172.18.0.3 on port 1883. -1612436460: Sending CONNACK to 172.18.0.3 (0, 5) -1612436460: Socket error on client , disconnecting. -1612436480: New connection from 172.18.0.3 on port 1883. -1612436480: Sending CONNACK to 172.18.0.3 (0, 5) -1612436480: Socket error on client , disconnecting. -1612436500: New connection from 172.18.0.3 on port 1883. -1612436500: Sending CONNACK to 172.18.0.3 (0, 5) -1612436500: Socket error on client , disconnecting. -1612436520: New connection from 172.18.0.3 on port 1883. -1612436520: Sending CONNACK to 172.18.0.3 (0, 5) -1612436520: Socket error on client , disconnecting. -1612436540: New connection from 172.18.0.3 on port 1883. -1612436540: Sending CONNACK to 172.18.0.3 (0, 5) -1612436540: Socket error on client , disconnecting. -1612436560: New connection from 172.18.0.3 on port 1883. -1612436560: Sending CONNACK to 172.18.0.3 (0, 5) -1612436560: Socket error on client , disconnecting. -1612436580: New connection from 172.18.0.3 on port 1883. -1612436580: Sending CONNACK to 172.18.0.3 (0, 5) -1612436580: Socket error on client , disconnecting. -1612436600: New connection from 172.18.0.3 on port 1883. -1612436600: Sending CONNACK to 172.18.0.3 (0, 5) -1612436600: Socket error on client , disconnecting. -1612436620: New connection from 172.18.0.3 on port 1883. -1612436620: Sending CONNACK to 172.18.0.3 (0, 5) -1612436620: Socket error on client , disconnecting. -1612436640: New connection from 172.18.0.3 on port 1883. -1612436640: Sending CONNACK to 172.18.0.3 (0, 5) -1612436640: Socket error on client , disconnecting. -1612436660: New connection from 172.18.0.3 on port 1883. -1612436660: Sending CONNACK to 172.18.0.3 (0, 5) -1612436660: Socket error on client , disconnecting. -1612436680: New connection from 172.18.0.3 on port 1883. -1612436680: Sending CONNACK to 172.18.0.3 (0, 5) -1612436680: Socket error on client , disconnecting. -1612436700: New connection from 172.18.0.3 on port 1883. -1612436700: Sending CONNACK to 172.18.0.3 (0, 5) -1612436700: Socket error on client , disconnecting. -1612436720: New connection from 172.18.0.3 on port 1883. -1612436720: Sending CONNACK to 172.18.0.3 (0, 5) -1612436720: Socket error on client , disconnecting. -1612436740: New connection from 172.18.0.3 on port 1883. -1612436740: Sending CONNACK to 172.18.0.3 (0, 5) -1612436740: Socket error on client , disconnecting. -1612436760: New connection from 172.18.0.3 on port 1883. -1612436760: Sending CONNACK to 172.18.0.3 (0, 5) -1612436760: Socket error on client , disconnecting. -1612436780: New connection from 172.18.0.3 on port 1883. -1612436780: Sending CONNACK to 172.18.0.3 (0, 5) -1612436780: Socket error on client , disconnecting. -1612436800: New connection from 172.18.0.3 on port 1883. -1612436800: Sending CONNACK to 172.18.0.3 (0, 5) -1612436800: Socket error on client , disconnecting. -1612436820: New connection from 172.18.0.3 on port 1883. -1612436820: Sending CONNACK to 172.18.0.3 (0, 5) -1612436820: Socket error on client , disconnecting. -1612436840: New connection from 172.18.0.3 on port 1883. -1612436840: Sending CONNACK to 172.18.0.3 (0, 5) -1612436840: Socket error on client , disconnecting. -1612436860: New connection from 172.18.0.3 on port 1883. -1612436860: Sending CONNACK to 172.18.0.3 (0, 5) -1612436860: Socket error on client , disconnecting. -1612436880: New connection from 172.18.0.3 on port 1883. -1612436880: Sending CONNACK to 172.18.0.3 (0, 5) -1612436880: Socket error on client , disconnecting. -1612436900: New connection from 172.18.0.3 on port 1883. -1612436900: Sending CONNACK to 172.18.0.3 (0, 5) -1612436900: Socket error on client , disconnecting. -1612436920: New connection from 172.18.0.3 on port 1883. -1612436920: Sending CONNACK to 172.18.0.3 (0, 5) -1612436920: Socket error on client , disconnecting. -1612436940: New connection from 172.18.0.3 on port 1883. -1612436940: Sending CONNACK to 172.18.0.3 (0, 5) -1612436940: Socket error on client , disconnecting. -1612436960: New connection from 172.18.0.3 on port 1883. -1612436960: Sending CONNACK to 172.18.0.3 (0, 5) -1612436960: Socket error on client , disconnecting. -1612436980: New connection from 172.18.0.3 on port 1883. -1612436980: Sending CONNACK to 172.18.0.3 (0, 5) -1612436980: Socket error on client , disconnecting. -1612437000: New connection from 172.18.0.3 on port 1883. -1612437000: Sending CONNACK to 172.18.0.3 (0, 5) -1612437000: Socket error on client , disconnecting. -1612437020: New connection from 172.18.0.3 on port 1883. -1612437020: Sending CONNACK to 172.18.0.3 (0, 5) -1612437020: Socket error on client , disconnecting. -1612437040: New connection from 172.18.0.3 on port 1883. -1612437040: Sending CONNACK to 172.18.0.3 (0, 5) -1612437040: Socket error on client , disconnecting. -1612437060: New connection from 172.18.0.3 on port 1883. -1612437060: Sending CONNACK to 172.18.0.3 (0, 5) -1612437060: Socket error on client , disconnecting. -1612437080: New connection from 172.18.0.3 on port 1883. -1612437080: Sending CONNACK to 172.18.0.3 (0, 5) -1612437080: Socket error on client , disconnecting. -1612437100: New connection from 172.18.0.3 on port 1883. -1612437100: Sending CONNACK to 172.18.0.3 (0, 5) -1612437100: Socket error on client , disconnecting. -1612437120: New connection from 172.18.0.3 on port 1883. -1612437120: Sending CONNACK to 172.18.0.3 (0, 5) -1612437120: Socket error on client , disconnecting. -1612437140: New connection from 172.18.0.3 on port 1883. -1612437140: Sending CONNACK to 172.18.0.3 (0, 5) -1612437140: Socket error on client , disconnecting. -1612437160: New connection from 172.18.0.3 on port 1883. -1612437160: Sending CONNACK to 172.18.0.3 (0, 5) -1612437160: Socket error on client , disconnecting. -1612437180: New connection from 172.18.0.3 on port 1883. -1612437180: Sending CONNACK to 172.18.0.3 (0, 5) -1612437180: Socket error on client , disconnecting. -1612437200: New connection from 172.18.0.3 on port 1883. -1612437200: Sending CONNACK to 172.18.0.3 (0, 5) -1612437200: Socket error on client , disconnecting. -1612437220: New connection from 172.18.0.3 on port 1883. -1612437220: Sending CONNACK to 172.18.0.3 (0, 5) -1612437220: Socket error on client , disconnecting. -1612437240: New connection from 172.18.0.3 on port 1883. -1612437240: Sending CONNACK to 172.18.0.3 (0, 5) -1612437240: Socket error on client , disconnecting. -1612437260: New connection from 172.18.0.3 on port 1883. -1612437260: Sending CONNACK to 172.18.0.3 (0, 5) -1612437260: Socket error on client , disconnecting. -1612437280: New connection from 172.18.0.3 on port 1883. -1612437280: Sending CONNACK to 172.18.0.3 (0, 5) -1612437280: Socket error on client , disconnecting. -1612437300: New connection from 172.18.0.3 on port 1883. -1612437300: Sending CONNACK to 172.18.0.3 (0, 5) -1612437300: Socket error on client , disconnecting. -1612437320: New connection from 172.18.0.3 on port 1883. -1612437320: Sending CONNACK to 172.18.0.3 (0, 5) -1612437320: Socket error on client , disconnecting. -1612437340: New connection from 172.18.0.3 on port 1883. -1612437340: Sending CONNACK to 172.18.0.3 (0, 5) -1612437340: Socket error on client , disconnecting. -1612437360: New connection from 172.18.0.3 on port 1883. -1612437360: Sending CONNACK to 172.18.0.3 (0, 5) -1612437360: Socket error on client , disconnecting. -1612437380: New connection from 172.18.0.3 on port 1883. -1612437380: Sending CONNACK to 172.18.0.3 (0, 5) -1612437380: Socket error on client , disconnecting. -1612437400: New connection from 172.18.0.3 on port 1883. -1612437400: Sending CONNACK to 172.18.0.3 (0, 5) -1612437400: Socket error on client , disconnecting. -1612437412: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612437412: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612437412: Error: Permission denied. -1612437420: New connection from 172.18.0.3 on port 1883. -1612437420: Sending CONNACK to 172.18.0.3 (0, 5) -1612437420: Socket error on client , disconnecting. -1612437440: New connection from 172.18.0.3 on port 1883. -1612437440: Sending CONNACK to 172.18.0.3 (0, 5) -1612437440: Socket error on client , disconnecting. -1612437460: New connection from 172.18.0.3 on port 1883. -1612437460: Sending CONNACK to 172.18.0.3 (0, 5) -1612437460: Socket error on client , disconnecting. -1612437480: New connection from 172.18.0.3 on port 1883. -1612437480: Sending CONNACK to 172.18.0.3 (0, 5) -1612437480: Socket error on client , disconnecting. -1612437500: New connection from 172.18.0.3 on port 1883. -1612437500: Sending CONNACK to 172.18.0.3 (0, 5) -1612437500: Socket error on client , disconnecting. -1612437520: New connection from 172.18.0.3 on port 1883. -1612437520: Sending CONNACK to 172.18.0.3 (0, 5) -1612437520: Socket error on client , disconnecting. -1612437540: New connection from 172.18.0.3 on port 1883. -1612437540: Sending CONNACK to 172.18.0.3 (0, 5) -1612437540: Socket error on client , disconnecting. -1612437560: New connection from 172.18.0.3 on port 1883. -1612437560: Sending CONNACK to 172.18.0.3 (0, 5) -1612437560: Socket error on client , disconnecting. -1612437580: New connection from 172.18.0.3 on port 1883. -1612437580: Sending CONNACK to 172.18.0.3 (0, 5) -1612437580: Socket error on client , disconnecting. -1612437600: New connection from 172.18.0.3 on port 1883. -1612437600: Sending CONNACK to 172.18.0.3 (0, 5) -1612437600: Socket error on client , disconnecting. -1612437620: New connection from 172.18.0.3 on port 1883. -1612437620: Sending CONNACK to 172.18.0.3 (0, 5) -1612437620: Socket error on client , disconnecting. -1612437640: New connection from 172.18.0.3 on port 1883. -1612437640: Sending CONNACK to 172.18.0.3 (0, 5) -1612437640: Socket error on client , disconnecting. -1612437660: New connection from 172.18.0.3 on port 1883. -1612437660: Sending CONNACK to 172.18.0.3 (0, 5) -1612437660: Socket error on client , disconnecting. -1612437680: New connection from 172.18.0.3 on port 1883. -1612437680: Sending CONNACK to 172.18.0.3 (0, 5) -1612437680: Socket error on client , disconnecting. -1612437700: New connection from 172.18.0.3 on port 1883. -1612437700: Sending CONNACK to 172.18.0.3 (0, 5) -1612437700: Socket error on client , disconnecting. -1612437720: New connection from 172.18.0.3 on port 1883. -1612437720: Sending CONNACK to 172.18.0.3 (0, 5) -1612437720: Socket error on client , disconnecting. -1612437740: New connection from 172.18.0.3 on port 1883. -1612437740: Sending CONNACK to 172.18.0.3 (0, 5) -1612437740: Socket error on client , disconnecting. -1612437760: New connection from 172.18.0.3 on port 1883. -1612437760: Sending CONNACK to 172.18.0.3 (0, 5) -1612437760: Socket error on client , disconnecting. -1612437780: New connection from 172.18.0.3 on port 1883. -1612437780: Sending CONNACK to 172.18.0.3 (0, 5) -1612437780: Socket error on client , disconnecting. -1612437800: New connection from 172.18.0.3 on port 1883. -1612437800: Sending CONNACK to 172.18.0.3 (0, 5) -1612437800: Socket error on client , disconnecting. -1612437820: New connection from 172.18.0.3 on port 1883. -1612437820: Sending CONNACK to 172.18.0.3 (0, 5) -1612437820: Socket error on client , disconnecting. -1612437840: New connection from 172.18.0.3 on port 1883. -1612437840: Sending CONNACK to 172.18.0.3 (0, 5) -1612437840: Socket error on client , disconnecting. -1612437860: New connection from 172.18.0.3 on port 1883. -1612437860: Sending CONNACK to 172.18.0.3 (0, 5) -1612437860: Socket error on client , disconnecting. -1612437880: New connection from 172.18.0.3 on port 1883. -1612437880: Sending CONNACK to 172.18.0.3 (0, 5) -1612437880: Socket error on client , disconnecting. -1612437900: New connection from 172.18.0.3 on port 1883. -1612437900: Sending CONNACK to 172.18.0.3 (0, 5) -1612437900: Socket error on client , disconnecting. -1612437920: New connection from 172.18.0.3 on port 1883. -1612437920: Sending CONNACK to 172.18.0.3 (0, 5) -1612437920: Socket error on client , disconnecting. -1612437940: New connection from 172.18.0.3 on port 1883. -1612437940: Sending CONNACK to 172.18.0.3 (0, 5) -1612437940: Socket error on client , disconnecting. -1612437960: New connection from 172.18.0.3 on port 1883. -1612437960: Sending CONNACK to 172.18.0.3 (0, 5) -1612437960: Socket error on client , disconnecting. -1612437980: New connection from 172.18.0.3 on port 1883. -1612437980: Sending CONNACK to 172.18.0.3 (0, 5) -1612437980: Socket error on client , disconnecting. -1612438000: New connection from 172.18.0.3 on port 1883. -1612438000: Sending CONNACK to 172.18.0.3 (0, 5) -1612438000: Socket error on client , disconnecting. -1612438020: New connection from 172.18.0.3 on port 1883. -1612438020: Sending CONNACK to 172.18.0.3 (0, 5) -1612438020: Socket error on client , disconnecting. -1612438040: New connection from 172.18.0.3 on port 1883. -1612438040: Sending CONNACK to 172.18.0.3 (0, 5) -1612438040: Socket error on client , disconnecting. -1612438060: New connection from 172.18.0.3 on port 1883. -1612438060: Sending CONNACK to 172.18.0.3 (0, 5) -1612438060: Socket error on client , disconnecting. -1612438080: New connection from 172.18.0.3 on port 1883. -1612438080: Sending CONNACK to 172.18.0.3 (0, 5) -1612438080: Socket error on client , disconnecting. -1612438100: New connection from 172.18.0.3 on port 1883. -1612438100: Sending CONNACK to 172.18.0.3 (0, 5) -1612438100: Socket error on client , disconnecting. -1612438120: New connection from 172.18.0.3 on port 1883. -1612438120: Sending CONNACK to 172.18.0.3 (0, 5) -1612438120: Socket error on client , disconnecting. -1612438140: New connection from 172.18.0.3 on port 1883. -1612438140: Sending CONNACK to 172.18.0.3 (0, 5) -1612438140: Socket error on client , disconnecting. -1612438160: New connection from 172.18.0.3 on port 1883. -1612438160: Sending CONNACK to 172.18.0.3 (0, 5) -1612438160: Socket error on client , disconnecting. -1612438180: New connection from 172.18.0.3 on port 1883. -1612438180: Sending CONNACK to 172.18.0.3 (0, 5) -1612438180: Socket error on client , disconnecting. -1612438200: New connection from 172.18.0.3 on port 1883. -1612438200: Sending CONNACK to 172.18.0.3 (0, 5) -1612438200: Socket error on client , disconnecting. -1612438220: New connection from 172.18.0.3 on port 1883. -1612438220: Sending CONNACK to 172.18.0.3 (0, 5) -1612438220: Socket error on client , disconnecting. -1612438240: New connection from 172.18.0.3 on port 1883. -1612438240: Sending CONNACK to 172.18.0.3 (0, 5) -1612438240: Socket error on client , disconnecting. -1612438260: New connection from 172.18.0.3 on port 1883. -1612438260: Sending CONNACK to 172.18.0.3 (0, 5) -1612438260: Socket error on client , disconnecting. -1612438280: New connection from 172.18.0.3 on port 1883. -1612438280: Sending CONNACK to 172.18.0.3 (0, 5) -1612438280: Socket error on client , disconnecting. -1612438300: New connection from 172.18.0.3 on port 1883. -1612438300: Sending CONNACK to 172.18.0.3 (0, 5) -1612438300: Socket error on client , disconnecting. -1612438320: New connection from 172.18.0.3 on port 1883. -1612438320: Sending CONNACK to 172.18.0.3 (0, 5) -1612438320: Socket error on client , disconnecting. -1612438340: New connection from 172.18.0.3 on port 1883. -1612438340: Sending CONNACK to 172.18.0.3 (0, 5) -1612438340: Socket error on client , disconnecting. -1612438360: New connection from 172.18.0.3 on port 1883. -1612438360: Sending CONNACK to 172.18.0.3 (0, 5) -1612438360: Socket error on client , disconnecting. -1612438380: New connection from 172.18.0.3 on port 1883. -1612438380: Sending CONNACK to 172.18.0.3 (0, 5) -1612438380: Socket error on client , disconnecting. -1612438400: New connection from 172.18.0.3 on port 1883. -1612438400: Sending CONNACK to 172.18.0.3 (0, 5) -1612438400: Socket error on client , disconnecting. -1612438420: New connection from 172.18.0.3 on port 1883. -1612438420: Sending CONNACK to 172.18.0.3 (0, 5) -1612438420: Socket error on client , disconnecting. -1612438440: New connection from 172.18.0.3 on port 1883. -1612438440: Sending CONNACK to 172.18.0.3 (0, 5) -1612438440: Socket error on client , disconnecting. -1612438460: New connection from 172.18.0.3 on port 1883. -1612438460: Sending CONNACK to 172.18.0.3 (0, 5) -1612438460: Socket error on client , disconnecting. -1612438480: New connection from 172.18.0.3 on port 1883. -1612438480: Sending CONNACK to 172.18.0.3 (0, 5) -1612438480: Socket error on client , disconnecting. -1612438500: New connection from 172.18.0.3 on port 1883. -1612438500: Sending CONNACK to 172.18.0.3 (0, 5) -1612438500: Socket error on client , disconnecting. -1612438520: New connection from 172.18.0.3 on port 1883. -1612438520: Sending CONNACK to 172.18.0.3 (0, 5) -1612438520: Socket error on client , disconnecting. -1612438540: New connection from 172.18.0.3 on port 1883. -1612438540: Sending CONNACK to 172.18.0.3 (0, 5) -1612438540: Socket error on client , disconnecting. -1612438560: New connection from 172.18.0.3 on port 1883. -1612438560: Sending CONNACK to 172.18.0.3 (0, 5) -1612438560: Socket error on client , disconnecting. -1612438580: New connection from 172.18.0.3 on port 1883. -1612438580: Sending CONNACK to 172.18.0.3 (0, 5) -1612438580: Socket error on client , disconnecting. -1612438600: New connection from 172.18.0.3 on port 1883. -1612438600: Sending CONNACK to 172.18.0.3 (0, 5) -1612438600: Socket error on client , disconnecting. -1612438620: New connection from 172.18.0.3 on port 1883. -1612438620: Sending CONNACK to 172.18.0.3 (0, 5) -1612438620: Socket error on client , disconnecting. -1612438640: New connection from 172.18.0.3 on port 1883. -1612438640: Sending CONNACK to 172.18.0.3 (0, 5) -1612438640: Socket error on client , disconnecting. -1612438660: New connection from 172.18.0.3 on port 1883. -1612438660: Sending CONNACK to 172.18.0.3 (0, 5) -1612438660: Socket error on client , disconnecting. -1612438680: New connection from 172.18.0.3 on port 1883. -1612438680: Sending CONNACK to 172.18.0.3 (0, 5) -1612438680: Socket error on client , disconnecting. -1612438700: New connection from 172.18.0.3 on port 1883. -1612438700: Sending CONNACK to 172.18.0.3 (0, 5) -1612438700: Socket error on client , disconnecting. -1612438720: New connection from 172.18.0.3 on port 1883. -1612438720: Sending CONNACK to 172.18.0.3 (0, 5) -1612438720: Socket error on client , disconnecting. -1612438740: New connection from 172.18.0.3 on port 1883. -1612438740: Sending CONNACK to 172.18.0.3 (0, 5) -1612438740: Socket error on client , disconnecting. -1612438760: New connection from 172.18.0.3 on port 1883. -1612438760: Sending CONNACK to 172.18.0.3 (0, 5) -1612438760: Socket error on client , disconnecting. -1612438780: New connection from 172.18.0.3 on port 1883. -1612438780: Sending CONNACK to 172.18.0.3 (0, 5) -1612438780: Socket error on client , disconnecting. -1612438800: New connection from 172.18.0.3 on port 1883. -1612438800: Sending CONNACK to 172.18.0.3 (0, 5) -1612438800: Socket error on client , disconnecting. -1612438820: New connection from 172.18.0.3 on port 1883. -1612438820: Sending CONNACK to 172.18.0.3 (0, 5) -1612438820: Socket error on client , disconnecting. -1612438840: New connection from 172.18.0.3 on port 1883. -1612438840: Sending CONNACK to 172.18.0.3 (0, 5) -1612438840: Socket error on client , disconnecting. -1612438860: New connection from 172.18.0.3 on port 1883. -1612438860: Sending CONNACK to 172.18.0.3 (0, 5) -1612438860: Socket error on client , disconnecting. -1612438880: New connection from 172.18.0.3 on port 1883. -1612438880: Sending CONNACK to 172.18.0.3 (0, 5) -1612438880: Socket error on client , disconnecting. -1612438900: New connection from 172.18.0.3 on port 1883. -1612438900: Sending CONNACK to 172.18.0.3 (0, 5) -1612438900: Socket error on client , disconnecting. -1612438920: New connection from 172.18.0.3 on port 1883. -1612438920: Sending CONNACK to 172.18.0.3 (0, 5) -1612438920: Socket error on client , disconnecting. -1612438940: New connection from 172.18.0.3 on port 1883. -1612438940: Sending CONNACK to 172.18.0.3 (0, 5) -1612438940: Socket error on client , disconnecting. -1612438960: New connection from 172.18.0.3 on port 1883. -1612438960: Sending CONNACK to 172.18.0.3 (0, 5) -1612438960: Socket error on client , disconnecting. -1612438980: New connection from 172.18.0.3 on port 1883. -1612438980: Sending CONNACK to 172.18.0.3 (0, 5) -1612438980: Socket error on client , disconnecting. -1612439000: New connection from 172.18.0.3 on port 1883. -1612439000: Sending CONNACK to 172.18.0.3 (0, 5) -1612439000: Socket error on client , disconnecting. -1612439020: New connection from 172.18.0.3 on port 1883. -1612439020: Sending CONNACK to 172.18.0.3 (0, 5) -1612439020: Socket error on client , disconnecting. -1612439040: New connection from 172.18.0.3 on port 1883. -1612439040: Sending CONNACK to 172.18.0.3 (0, 5) -1612439040: Socket error on client , disconnecting. -1612439060: New connection from 172.18.0.3 on port 1883. -1612439060: Sending CONNACK to 172.18.0.3 (0, 5) -1612439060: Socket error on client , disconnecting. -1612439080: New connection from 172.18.0.3 on port 1883. -1612439080: Sending CONNACK to 172.18.0.3 (0, 5) -1612439080: Socket error on client , disconnecting. -1612439100: New connection from 172.18.0.3 on port 1883. -1612439100: Sending CONNACK to 172.18.0.3 (0, 5) -1612439100: Socket error on client , disconnecting. -1612439120: New connection from 172.18.0.3 on port 1883. -1612439120: Sending CONNACK to 172.18.0.3 (0, 5) -1612439120: Socket error on client , disconnecting. -1612439140: New connection from 172.18.0.3 on port 1883. -1612439140: Sending CONNACK to 172.18.0.3 (0, 5) -1612439140: Socket error on client , disconnecting. -1612439160: New connection from 172.18.0.3 on port 1883. -1612439160: Sending CONNACK to 172.18.0.3 (0, 5) -1612439160: Socket error on client , disconnecting. -1612439180: New connection from 172.18.0.3 on port 1883. -1612439180: Sending CONNACK to 172.18.0.3 (0, 5) -1612439180: Socket error on client , disconnecting. -1612439200: New connection from 172.18.0.3 on port 1883. -1612439200: Sending CONNACK to 172.18.0.3 (0, 5) -1612439200: Socket error on client , disconnecting. -1612439213: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612439213: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612439213: Error: Permission denied. -1612439220: New connection from 172.18.0.3 on port 1883. -1612439220: Sending CONNACK to 172.18.0.3 (0, 5) -1612439220: Socket error on client , disconnecting. -1612439240: New connection from 172.18.0.3 on port 1883. -1612439240: Sending CONNACK to 172.18.0.3 (0, 5) -1612439240: Socket error on client , disconnecting. -1612439260: New connection from 172.18.0.3 on port 1883. -1612439260: Sending CONNACK to 172.18.0.3 (0, 5) -1612439260: Socket error on client , disconnecting. -1612439280: New connection from 172.18.0.3 on port 1883. -1612439280: Sending CONNACK to 172.18.0.3 (0, 5) -1612439280: Socket error on client , disconnecting. -1612439300: New connection from 172.18.0.3 on port 1883. -1612439300: Sending CONNACK to 172.18.0.3 (0, 5) -1612439300: Socket error on client , disconnecting. -1612439320: New connection from 172.18.0.3 on port 1883. -1612439320: Sending CONNACK to 172.18.0.3 (0, 5) -1612439320: Socket error on client , disconnecting. -1612439340: New connection from 172.18.0.3 on port 1883. -1612439340: Sending CONNACK to 172.18.0.3 (0, 5) -1612439340: Socket error on client , disconnecting. -1612439360: New connection from 172.18.0.3 on port 1883. -1612439360: Sending CONNACK to 172.18.0.3 (0, 5) -1612439360: Socket error on client , disconnecting. -1612439380: New connection from 172.18.0.3 on port 1883. -1612439380: Sending CONNACK to 172.18.0.3 (0, 5) -1612439380: Socket error on client , disconnecting. -1612439400: New connection from 172.18.0.3 on port 1883. -1612439400: Sending CONNACK to 172.18.0.3 (0, 5) -1612439400: Socket error on client , disconnecting. -1612439420: New connection from 172.18.0.3 on port 1883. -1612439420: Sending CONNACK to 172.18.0.3 (0, 5) -1612439420: Socket error on client , disconnecting. -1612439440: New connection from 172.18.0.3 on port 1883. -1612439440: Sending CONNACK to 172.18.0.3 (0, 5) -1612439440: Socket error on client , disconnecting. -1612439460: New connection from 172.18.0.3 on port 1883. -1612439460: Sending CONNACK to 172.18.0.3 (0, 5) -1612439460: Socket error on client , disconnecting. -1612439480: New connection from 172.18.0.3 on port 1883. -1612439480: Sending CONNACK to 172.18.0.3 (0, 5) -1612439480: Socket error on client , disconnecting. -1612439500: New connection from 172.18.0.3 on port 1883. -1612439500: Sending CONNACK to 172.18.0.3 (0, 5) -1612439500: Socket error on client , disconnecting. -1612439520: New connection from 172.18.0.3 on port 1883. -1612439520: Sending CONNACK to 172.18.0.3 (0, 5) -1612439520: Socket error on client , disconnecting. -1612439540: New connection from 172.18.0.3 on port 1883. -1612439540: Sending CONNACK to 172.18.0.3 (0, 5) -1612439540: Socket error on client , disconnecting. -1612439560: New connection from 172.18.0.3 on port 1883. -1612439560: Sending CONNACK to 172.18.0.3 (0, 5) -1612439560: Socket error on client , disconnecting. -1612439580: New connection from 172.18.0.3 on port 1883. -1612439580: Sending CONNACK to 172.18.0.3 (0, 5) -1612439580: Socket error on client , disconnecting. -1612439600: New connection from 172.18.0.3 on port 1883. -1612439600: Sending CONNACK to 172.18.0.3 (0, 5) -1612439600: Socket error on client , disconnecting. -1612439620: New connection from 172.18.0.3 on port 1883. -1612439620: Sending CONNACK to 172.18.0.3 (0, 5) -1612439620: Socket error on client , disconnecting. -1612439640: New connection from 172.18.0.3 on port 1883. -1612439640: Sending CONNACK to 172.18.0.3 (0, 5) -1612439640: Socket error on client , disconnecting. -1612439660: New connection from 172.18.0.3 on port 1883. -1612439660: Sending CONNACK to 172.18.0.3 (0, 5) -1612439660: Socket error on client , disconnecting. -1612439680: New connection from 172.18.0.3 on port 1883. -1612439680: Sending CONNACK to 172.18.0.3 (0, 5) -1612439680: Socket error on client , disconnecting. -1612439700: New connection from 172.18.0.3 on port 1883. -1612439700: Sending CONNACK to 172.18.0.3 (0, 5) -1612439700: Socket error on client , disconnecting. -1612439720: New connection from 172.18.0.3 on port 1883. -1612439720: Sending CONNACK to 172.18.0.3 (0, 5) -1612439720: Socket error on client , disconnecting. -1612439740: New connection from 172.18.0.3 on port 1883. -1612439740: Sending CONNACK to 172.18.0.3 (0, 5) -1612439740: Socket error on client , disconnecting. -1612439760: New connection from 172.18.0.3 on port 1883. -1612439760: Sending CONNACK to 172.18.0.3 (0, 5) -1612439760: Socket error on client , disconnecting. -1612439780: New connection from 172.18.0.3 on port 1883. -1612439780: Sending CONNACK to 172.18.0.3 (0, 5) -1612439780: Socket error on client , disconnecting. -1612439800: New connection from 172.18.0.3 on port 1883. -1612439800: Sending CONNACK to 172.18.0.3 (0, 5) -1612439800: Socket error on client , disconnecting. -1612439820: New connection from 172.18.0.3 on port 1883. -1612439820: Sending CONNACK to 172.18.0.3 (0, 5) -1612439820: Socket error on client , disconnecting. -1612439840: New connection from 172.18.0.3 on port 1883. -1612439840: Sending CONNACK to 172.18.0.3 (0, 5) -1612439840: Socket error on client , disconnecting. -1612439860: New connection from 172.18.0.3 on port 1883. -1612439860: Sending CONNACK to 172.18.0.3 (0, 5) -1612439860: Socket error on client , disconnecting. -1612439880: New connection from 172.18.0.3 on port 1883. -1612439880: Sending CONNACK to 172.18.0.3 (0, 5) -1612439880: Socket error on client , disconnecting. -1612439900: New connection from 172.18.0.3 on port 1883. -1612439900: Sending CONNACK to 172.18.0.3 (0, 5) -1612439900: Socket error on client , disconnecting. -1612439920: New connection from 172.18.0.3 on port 1883. -1612439920: Sending CONNACK to 172.18.0.3 (0, 5) -1612439920: Socket error on client , disconnecting. -1612439940: New connection from 172.18.0.3 on port 1883. -1612439940: Sending CONNACK to 172.18.0.3 (0, 5) -1612439940: Socket error on client , disconnecting. -1612439960: New connection from 172.18.0.3 on port 1883. -1612439960: Sending CONNACK to 172.18.0.3 (0, 5) -1612439960: Socket error on client , disconnecting. -1612439980: New connection from 172.18.0.3 on port 1883. -1612439980: Sending CONNACK to 172.18.0.3 (0, 5) -1612439980: Socket error on client , disconnecting. -1612440000: New connection from 172.18.0.3 on port 1883. -1612440000: Sending CONNACK to 172.18.0.3 (0, 5) -1612440000: Socket error on client , disconnecting. -1612440020: New connection from 172.18.0.3 on port 1883. -1612440020: Sending CONNACK to 172.18.0.3 (0, 5) -1612440020: Socket error on client , disconnecting. -1612440040: New connection from 172.18.0.3 on port 1883. -1612440040: Sending CONNACK to 172.18.0.3 (0, 5) -1612440040: Socket error on client , disconnecting. -1612440060: New connection from 172.18.0.3 on port 1883. -1612440060: Sending CONNACK to 172.18.0.3 (0, 5) -1612440060: Socket error on client , disconnecting. -1612440080: New connection from 172.18.0.3 on port 1883. -1612440080: Sending CONNACK to 172.18.0.3 (0, 5) -1612440080: Socket error on client , disconnecting. -1612440100: New connection from 172.18.0.3 on port 1883. -1612440100: Sending CONNACK to 172.18.0.3 (0, 5) -1612440100: Socket error on client , disconnecting. -1612440120: New connection from 172.18.0.3 on port 1883. -1612440120: Sending CONNACK to 172.18.0.3 (0, 5) -1612440120: Socket error on client , disconnecting. -1612440140: New connection from 172.18.0.3 on port 1883. -1612440140: Sending CONNACK to 172.18.0.3 (0, 5) -1612440140: Socket error on client , disconnecting. -1612440160: New connection from 172.18.0.3 on port 1883. -1612440160: Sending CONNACK to 172.18.0.3 (0, 5) -1612440160: Socket error on client , disconnecting. -1612440180: New connection from 172.18.0.3 on port 1883. -1612440180: Sending CONNACK to 172.18.0.3 (0, 5) -1612440180: Socket error on client , disconnecting. -1612440200: New connection from 172.18.0.3 on port 1883. -1612440200: Sending CONNACK to 172.18.0.3 (0, 5) -1612440200: Socket error on client , disconnecting. -1612440220: New connection from 172.18.0.3 on port 1883. -1612440220: Sending CONNACK to 172.18.0.3 (0, 5) -1612440220: Socket error on client , disconnecting. -1612440240: New connection from 172.18.0.3 on port 1883. -1612440240: Sending CONNACK to 172.18.0.3 (0, 5) -1612440240: Socket error on client , disconnecting. -1612440260: New connection from 172.18.0.3 on port 1883. -1612440260: Sending CONNACK to 172.18.0.3 (0, 5) -1612440260: Socket error on client , disconnecting. -1612440280: New connection from 172.18.0.3 on port 1883. -1612440280: Sending CONNACK to 172.18.0.3 (0, 5) -1612440280: Socket error on client , disconnecting. -1612440300: New connection from 172.18.0.3 on port 1883. -1612440300: Sending CONNACK to 172.18.0.3 (0, 5) -1612440300: Socket error on client , disconnecting. -1612440320: New connection from 172.18.0.3 on port 1883. -1612440320: Sending CONNACK to 172.18.0.3 (0, 5) -1612440320: Socket error on client , disconnecting. -1612440340: New connection from 172.18.0.3 on port 1883. -1612440340: Sending CONNACK to 172.18.0.3 (0, 5) -1612440340: Socket error on client , disconnecting. -1612440360: New connection from 172.18.0.3 on port 1883. -1612440360: Sending CONNACK to 172.18.0.3 (0, 5) -1612440360: Socket error on client , disconnecting. -1612440380: New connection from 172.18.0.3 on port 1883. -1612440380: Sending CONNACK to 172.18.0.3 (0, 5) -1612440380: Socket error on client , disconnecting. -1612440400: New connection from 172.18.0.3 on port 1883. -1612440400: Sending CONNACK to 172.18.0.3 (0, 5) -1612440400: Socket error on client , disconnecting. -1612440420: New connection from 172.18.0.3 on port 1883. -1612440420: Sending CONNACK to 172.18.0.3 (0, 5) -1612440420: Socket error on client , disconnecting. -1612440440: New connection from 172.18.0.3 on port 1883. -1612440440: Sending CONNACK to 172.18.0.3 (0, 5) -1612440440: Socket error on client , disconnecting. -1612440460: New connection from 172.18.0.3 on port 1883. -1612440460: Sending CONNACK to 172.18.0.3 (0, 5) -1612440460: Socket error on client , disconnecting. -1612440480: New connection from 172.18.0.3 on port 1883. -1612440480: Sending CONNACK to 172.18.0.3 (0, 5) -1612440480: Socket error on client , disconnecting. -1612440500: New connection from 172.18.0.3 on port 1883. -1612440500: Sending CONNACK to 172.18.0.3 (0, 5) -1612440500: Socket error on client , disconnecting. -1612440520: New connection from 172.18.0.3 on port 1883. -1612440520: Sending CONNACK to 172.18.0.3 (0, 5) -1612440520: Socket error on client , disconnecting. -1612440540: New connection from 172.18.0.3 on port 1883. -1612440540: Sending CONNACK to 172.18.0.3 (0, 5) -1612440540: Socket error on client , disconnecting. -1612440560: New connection from 172.18.0.3 on port 1883. -1612440560: Sending CONNACK to 172.18.0.3 (0, 5) -1612440560: Socket error on client , disconnecting. -1612440580: New connection from 172.18.0.3 on port 1883. -1612440580: Sending CONNACK to 172.18.0.3 (0, 5) -1612440580: Socket error on client , disconnecting. -1612440600: New connection from 172.18.0.3 on port 1883. -1612440600: Sending CONNACK to 172.18.0.3 (0, 5) -1612440600: Socket error on client , disconnecting. -1612440620: New connection from 172.18.0.3 on port 1883. -1612440620: Sending CONNACK to 172.18.0.3 (0, 5) -1612440620: Socket error on client , disconnecting. -1612440640: New connection from 172.18.0.3 on port 1883. -1612440640: Sending CONNACK to 172.18.0.3 (0, 5) -1612440640: Socket error on client , disconnecting. -1612440660: New connection from 172.18.0.3 on port 1883. -1612440660: Sending CONNACK to 172.18.0.3 (0, 5) -1612440660: Socket error on client , disconnecting. -1612440680: New connection from 172.18.0.3 on port 1883. -1612440680: Sending CONNACK to 172.18.0.3 (0, 5) -1612440680: Socket error on client , disconnecting. -1612440700: New connection from 172.18.0.3 on port 1883. -1612440700: Sending CONNACK to 172.18.0.3 (0, 5) -1612440700: Socket error on client , disconnecting. -1612440720: New connection from 172.18.0.3 on port 1883. -1612440720: Sending CONNACK to 172.18.0.3 (0, 5) -1612440720: Socket error on client , disconnecting. -1612440740: New connection from 172.18.0.3 on port 1883. -1612440740: Sending CONNACK to 172.18.0.3 (0, 5) -1612440740: Socket error on client , disconnecting. -1612440760: New connection from 172.18.0.3 on port 1883. -1612440760: Sending CONNACK to 172.18.0.3 (0, 5) -1612440760: Socket error on client , disconnecting. -1612440780: New connection from 172.18.0.3 on port 1883. -1612440780: Sending CONNACK to 172.18.0.3 (0, 5) -1612440780: Socket error on client , disconnecting. -1612440800: New connection from 172.18.0.3 on port 1883. -1612440800: Sending CONNACK to 172.18.0.3 (0, 5) -1612440800: Socket error on client , disconnecting. -1612440820: New connection from 172.18.0.3 on port 1883. -1612440820: Sending CONNACK to 172.18.0.3 (0, 5) -1612440820: Socket error on client , disconnecting. -1612440840: New connection from 172.18.0.3 on port 1883. -1612440840: Sending CONNACK to 172.18.0.3 (0, 5) -1612440840: Socket error on client , disconnecting. -1612440860: New connection from 172.18.0.3 on port 1883. -1612440860: Sending CONNACK to 172.18.0.3 (0, 5) -1612440860: Socket error on client , disconnecting. -1612440880: New connection from 172.18.0.3 on port 1883. -1612440880: Sending CONNACK to 172.18.0.3 (0, 5) -1612440880: Socket error on client , disconnecting. -1612440900: New connection from 172.18.0.3 on port 1883. -1612440900: Sending CONNACK to 172.18.0.3 (0, 5) -1612440900: Socket error on client , disconnecting. -1612440920: New connection from 172.18.0.3 on port 1883. -1612440920: Sending CONNACK to 172.18.0.3 (0, 5) -1612440920: Socket error on client , disconnecting. -1612440940: New connection from 172.18.0.3 on port 1883. -1612440940: Sending CONNACK to 172.18.0.3 (0, 5) -1612440940: Socket error on client , disconnecting. -1612440960: New connection from 172.18.0.3 on port 1883. -1612440960: Sending CONNACK to 172.18.0.3 (0, 5) -1612440960: Socket error on client , disconnecting. -1612440980: New connection from 172.18.0.3 on port 1883. -1612440980: Sending CONNACK to 172.18.0.3 (0, 5) -1612440980: Socket error on client , disconnecting. -1612441000: New connection from 172.18.0.3 on port 1883. -1612441000: Sending CONNACK to 172.18.0.3 (0, 5) -1612441000: Socket error on client , disconnecting. -1612441014: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612441014: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612441014: Error: Permission denied. -1612441020: New connection from 172.18.0.3 on port 1883. -1612441020: Sending CONNACK to 172.18.0.3 (0, 5) -1612441020: Socket error on client , disconnecting. -1612441040: New connection from 172.18.0.3 on port 1883. -1612441040: Sending CONNACK to 172.18.0.3 (0, 5) -1612441040: Socket error on client , disconnecting. -1612441060: New connection from 172.18.0.3 on port 1883. -1612441060: Sending CONNACK to 172.18.0.3 (0, 5) -1612441060: Socket error on client , disconnecting. -1612441080: New connection from 172.18.0.3 on port 1883. -1612441080: Sending CONNACK to 172.18.0.3 (0, 5) -1612441080: Socket error on client , disconnecting. -1612441100: New connection from 172.18.0.3 on port 1883. -1612441100: Sending CONNACK to 172.18.0.3 (0, 5) -1612441100: Socket error on client , disconnecting. -1612441120: New connection from 172.18.0.3 on port 1883. -1612441120: Sending CONNACK to 172.18.0.3 (0, 5) -1612441120: Socket error on client , disconnecting. -1612441140: New connection from 172.18.0.3 on port 1883. -1612441140: Sending CONNACK to 172.18.0.3 (0, 5) -1612441140: Socket error on client , disconnecting. -1612441160: New connection from 172.18.0.3 on port 1883. -1612441160: Sending CONNACK to 172.18.0.3 (0, 5) -1612441160: Socket error on client , disconnecting. -1612441180: New connection from 172.18.0.3 on port 1883. -1612441180: Sending CONNACK to 172.18.0.3 (0, 5) -1612441180: Socket error on client , disconnecting. -1612441200: New connection from 172.18.0.3 on port 1883. -1612441200: Sending CONNACK to 172.18.0.3 (0, 5) -1612441200: Socket error on client , disconnecting. -1612441220: New connection from 172.18.0.3 on port 1883. -1612441220: Sending CONNACK to 172.18.0.3 (0, 5) -1612441220: Socket error on client , disconnecting. -1612441240: New connection from 172.18.0.3 on port 1883. -1612441240: Sending CONNACK to 172.18.0.3 (0, 5) -1612441240: Socket error on client , disconnecting. -1612441260: New connection from 172.18.0.3 on port 1883. -1612441260: Sending CONNACK to 172.18.0.3 (0, 5) -1612441260: Socket error on client , disconnecting. -1612441280: New connection from 172.18.0.3 on port 1883. -1612441280: Sending CONNACK to 172.18.0.3 (0, 5) -1612441280: Socket error on client , disconnecting. -1612441300: New connection from 172.18.0.3 on port 1883. -1612441300: Sending CONNACK to 172.18.0.3 (0, 5) -1612441300: Socket error on client , disconnecting. -1612441320: New connection from 172.18.0.3 on port 1883. -1612441320: Sending CONNACK to 172.18.0.3 (0, 5) -1612441320: Socket error on client , disconnecting. -1612441340: New connection from 172.18.0.3 on port 1883. -1612441340: Sending CONNACK to 172.18.0.3 (0, 5) -1612441340: Socket error on client , disconnecting. -1612441360: New connection from 172.18.0.3 on port 1883. -1612441360: Sending CONNACK to 172.18.0.3 (0, 5) -1612441360: Socket error on client , disconnecting. -1612441380: New connection from 172.18.0.3 on port 1883. -1612441380: Sending CONNACK to 172.18.0.3 (0, 5) -1612441380: Socket error on client , disconnecting. -1612441400: New connection from 172.18.0.3 on port 1883. -1612441400: Sending CONNACK to 172.18.0.3 (0, 5) -1612441400: Socket error on client , disconnecting. -1612441420: New connection from 172.18.0.3 on port 1883. -1612441420: Sending CONNACK to 172.18.0.3 (0, 5) -1612441420: Socket error on client , disconnecting. -1612441440: New connection from 172.18.0.3 on port 1883. -1612441440: Sending CONNACK to 172.18.0.3 (0, 5) -1612441440: Socket error on client , disconnecting. -1612441460: New connection from 172.18.0.3 on port 1883. -1612441460: Sending CONNACK to 172.18.0.3 (0, 5) -1612441460: Socket error on client , disconnecting. -1612441480: New connection from 172.18.0.3 on port 1883. -1612441480: Sending CONNACK to 172.18.0.3 (0, 5) -1612441480: Socket error on client , disconnecting. -1612441500: New connection from 172.18.0.3 on port 1883. -1612441500: Sending CONNACK to 172.18.0.3 (0, 5) -1612441500: Socket error on client , disconnecting. -1612441520: New connection from 172.18.0.3 on port 1883. -1612441520: Sending CONNACK to 172.18.0.3 (0, 5) -1612441520: Socket error on client , disconnecting. -1612441540: New connection from 172.18.0.3 on port 1883. -1612441540: Sending CONNACK to 172.18.0.3 (0, 5) -1612441540: Socket error on client , disconnecting. -1612441560: New connection from 172.18.0.3 on port 1883. -1612441560: Sending CONNACK to 172.18.0.3 (0, 5) -1612441560: Socket error on client , disconnecting. -1612441580: New connection from 172.18.0.3 on port 1883. -1612441580: Sending CONNACK to 172.18.0.3 (0, 5) -1612441580: Socket error on client , disconnecting. -1612441600: New connection from 172.18.0.3 on port 1883. -1612441600: Sending CONNACK to 172.18.0.3 (0, 5) -1612441600: Socket error on client , disconnecting. -1612441620: New connection from 172.18.0.3 on port 1883. -1612441620: Sending CONNACK to 172.18.0.3 (0, 5) -1612441620: Socket error on client , disconnecting. -1612441640: New connection from 172.18.0.3 on port 1883. -1612441640: Sending CONNACK to 172.18.0.3 (0, 5) -1612441640: Socket error on client , disconnecting. -1612441660: New connection from 172.18.0.3 on port 1883. -1612441660: Sending CONNACK to 172.18.0.3 (0, 5) -1612441660: Socket error on client , disconnecting. -1612441680: New connection from 172.18.0.3 on port 1883. -1612441680: Sending CONNACK to 172.18.0.3 (0, 5) -1612441680: Socket error on client , disconnecting. -1612441700: New connection from 172.18.0.3 on port 1883. -1612441700: Sending CONNACK to 172.18.0.3 (0, 5) -1612441700: Socket error on client , disconnecting. -1612441720: New connection from 172.18.0.3 on port 1883. -1612441720: Sending CONNACK to 172.18.0.3 (0, 5) -1612441720: Socket error on client , disconnecting. -1612441740: New connection from 172.18.0.3 on port 1883. -1612441740: Sending CONNACK to 172.18.0.3 (0, 5) -1612441740: Socket error on client , disconnecting. -1612441760: New connection from 172.18.0.3 on port 1883. -1612441760: Sending CONNACK to 172.18.0.3 (0, 5) -1612441760: Socket error on client , disconnecting. -1612441780: New connection from 172.18.0.3 on port 1883. -1612441780: Sending CONNACK to 172.18.0.3 (0, 5) -1612441780: Socket error on client , disconnecting. -1612441800: New connection from 172.18.0.3 on port 1883. -1612441800: Sending CONNACK to 172.18.0.3 (0, 5) -1612441800: Socket error on client , disconnecting. -1612441820: New connection from 172.18.0.3 on port 1883. -1612441820: Sending CONNACK to 172.18.0.3 (0, 5) -1612441820: Socket error on client , disconnecting. -1612441840: New connection from 172.18.0.3 on port 1883. -1612441840: Sending CONNACK to 172.18.0.3 (0, 5) -1612441840: Socket error on client , disconnecting. -1612441860: New connection from 172.18.0.3 on port 1883. -1612441860: Sending CONNACK to 172.18.0.3 (0, 5) -1612441860: Socket error on client , disconnecting. -1612441880: New connection from 172.18.0.3 on port 1883. -1612441880: Sending CONNACK to 172.18.0.3 (0, 5) -1612441880: Socket error on client , disconnecting. -1612441900: New connection from 172.18.0.3 on port 1883. -1612441900: Sending CONNACK to 172.18.0.3 (0, 5) -1612441900: Socket error on client , disconnecting. -1612441920: New connection from 172.18.0.3 on port 1883. -1612441920: Sending CONNACK to 172.18.0.3 (0, 5) -1612441920: Socket error on client , disconnecting. -1612441940: New connection from 172.18.0.3 on port 1883. -1612441940: Sending CONNACK to 172.18.0.3 (0, 5) -1612441940: Socket error on client , disconnecting. -1612441960: New connection from 172.18.0.3 on port 1883. -1612441960: Sending CONNACK to 172.18.0.3 (0, 5) -1612441960: Socket error on client , disconnecting. -1612441980: New connection from 172.18.0.3 on port 1883. -1612441980: Sending CONNACK to 172.18.0.3 (0, 5) -1612441980: Socket error on client , disconnecting. -1612442000: New connection from 172.18.0.3 on port 1883. -1612442000: Sending CONNACK to 172.18.0.3 (0, 5) -1612442000: Socket error on client , disconnecting. -1612442020: New connection from 172.18.0.3 on port 1883. -1612442020: Sending CONNACK to 172.18.0.3 (0, 5) -1612442020: Socket error on client , disconnecting. -1612442040: New connection from 172.18.0.3 on port 1883. -1612442040: Sending CONNACK to 172.18.0.3 (0, 5) -1612442040: Socket error on client , disconnecting. -1612442060: New connection from 172.18.0.3 on port 1883. -1612442060: Sending CONNACK to 172.18.0.3 (0, 5) -1612442060: Socket error on client , disconnecting. -1612442080: New connection from 172.18.0.3 on port 1883. -1612442080: Sending CONNACK to 172.18.0.3 (0, 5) -1612442080: Socket error on client , disconnecting. -1612442100: New connection from 172.18.0.3 on port 1883. -1612442100: Sending CONNACK to 172.18.0.3 (0, 5) -1612442100: Socket error on client , disconnecting. -1612442120: New connection from 172.18.0.3 on port 1883. -1612442120: Sending CONNACK to 172.18.0.3 (0, 5) -1612442120: Socket error on client , disconnecting. -1612442140: New connection from 172.18.0.3 on port 1883. -1612442140: Sending CONNACK to 172.18.0.3 (0, 5) -1612442140: Socket error on client , disconnecting. -1612442160: New connection from 172.18.0.3 on port 1883. -1612442160: Sending CONNACK to 172.18.0.3 (0, 5) -1612442160: Socket error on client , disconnecting. -1612442180: New connection from 172.18.0.3 on port 1883. -1612442180: Sending CONNACK to 172.18.0.3 (0, 5) -1612442180: Socket error on client , disconnecting. -1612442200: New connection from 172.18.0.3 on port 1883. -1612442200: Sending CONNACK to 172.18.0.3 (0, 5) -1612442200: Socket error on client , disconnecting. -1612442220: New connection from 172.18.0.3 on port 1883. -1612442220: Sending CONNACK to 172.18.0.3 (0, 5) -1612442220: Socket error on client , disconnecting. -1612442240: New connection from 172.18.0.3 on port 1883. -1612442240: Sending CONNACK to 172.18.0.3 (0, 5) -1612442240: Socket error on client , disconnecting. -1612442260: New connection from 172.18.0.3 on port 1883. -1612442260: Sending CONNACK to 172.18.0.3 (0, 5) -1612442260: Socket error on client , disconnecting. -1612442280: New connection from 172.18.0.3 on port 1883. -1612442280: Sending CONNACK to 172.18.0.3 (0, 5) -1612442280: Socket error on client , disconnecting. -1612442300: New connection from 172.18.0.3 on port 1883. -1612442300: Sending CONNACK to 172.18.0.3 (0, 5) -1612442300: Socket error on client , disconnecting. -1612442320: New connection from 172.18.0.3 on port 1883. -1612442320: Sending CONNACK to 172.18.0.3 (0, 5) -1612442320: Socket error on client , disconnecting. -1612442340: New connection from 172.18.0.3 on port 1883. -1612442340: Sending CONNACK to 172.18.0.3 (0, 5) -1612442340: Socket error on client , disconnecting. -1612442360: New connection from 172.18.0.3 on port 1883. -1612442360: Sending CONNACK to 172.18.0.3 (0, 5) -1612442360: Socket error on client , disconnecting. -1612442380: New connection from 172.18.0.3 on port 1883. -1612442380: Sending CONNACK to 172.18.0.3 (0, 5) -1612442380: Socket error on client , disconnecting. -1612442400: New connection from 172.18.0.3 on port 1883. -1612442400: Sending CONNACK to 172.18.0.3 (0, 5) -1612442400: Socket error on client , disconnecting. -1612442420: New connection from 172.18.0.3 on port 1883. -1612442420: Sending CONNACK to 172.18.0.3 (0, 5) -1612442420: Socket error on client , disconnecting. -1612442440: New connection from 172.18.0.3 on port 1883. -1612442440: Sending CONNACK to 172.18.0.3 (0, 5) -1612442440: Socket error on client , disconnecting. -1612442460: New connection from 172.18.0.3 on port 1883. -1612442460: Sending CONNACK to 172.18.0.3 (0, 5) -1612442460: Socket error on client , disconnecting. -1612442480: New connection from 172.18.0.3 on port 1883. -1612442480: Sending CONNACK to 172.18.0.3 (0, 5) -1612442480: Socket error on client , disconnecting. -1612442500: New connection from 172.18.0.3 on port 1883. -1612442500: Sending CONNACK to 172.18.0.3 (0, 5) -1612442500: Socket error on client , disconnecting. -1612442520: New connection from 172.18.0.3 on port 1883. -1612442520: Sending CONNACK to 172.18.0.3 (0, 5) -1612442520: Socket error on client , disconnecting. -1612442540: New connection from 172.18.0.3 on port 1883. -1612442540: Sending CONNACK to 172.18.0.3 (0, 5) -1612442540: Socket error on client , disconnecting. -1612442560: New connection from 172.18.0.3 on port 1883. -1612442560: Sending CONNACK to 172.18.0.3 (0, 5) -1612442560: Socket error on client , disconnecting. -1612442580: New connection from 172.18.0.3 on port 1883. -1612442580: Sending CONNACK to 172.18.0.3 (0, 5) -1612442580: Socket error on client , disconnecting. -1612442600: New connection from 172.18.0.3 on port 1883. -1612442600: Sending CONNACK to 172.18.0.3 (0, 5) -1612442600: Socket error on client , disconnecting. -1612442620: New connection from 172.18.0.3 on port 1883. -1612442620: Sending CONNACK to 172.18.0.3 (0, 5) -1612442620: Socket error on client , disconnecting. -1612442640: New connection from 172.18.0.3 on port 1883. -1612442640: Sending CONNACK to 172.18.0.3 (0, 5) -1612442640: Socket error on client , disconnecting. -1612442660: New connection from 172.18.0.3 on port 1883. -1612442660: Sending CONNACK to 172.18.0.3 (0, 5) -1612442660: Socket error on client , disconnecting. -1612442680: New connection from 172.18.0.3 on port 1883. -1612442680: Sending CONNACK to 172.18.0.3 (0, 5) -1612442680: Socket error on client , disconnecting. -1612442700: New connection from 172.18.0.3 on port 1883. -1612442700: Sending CONNACK to 172.18.0.3 (0, 5) -1612442700: Socket error on client , disconnecting. -1612442720: New connection from 172.18.0.3 on port 1883. -1612442720: Sending CONNACK to 172.18.0.3 (0, 5) -1612442720: Socket error on client , disconnecting. -1612442740: New connection from 172.18.0.3 on port 1883. -1612442740: Sending CONNACK to 172.18.0.3 (0, 5) -1612442740: Socket error on client , disconnecting. -1612442760: New connection from 172.18.0.3 on port 1883. -1612442760: Sending CONNACK to 172.18.0.3 (0, 5) -1612442760: Socket error on client , disconnecting. -1612442780: New connection from 172.18.0.3 on port 1883. -1612442780: Sending CONNACK to 172.18.0.3 (0, 5) -1612442780: Socket error on client , disconnecting. -1612442800: New connection from 172.18.0.3 on port 1883. -1612442800: Sending CONNACK to 172.18.0.3 (0, 5) -1612442800: Socket error on client , disconnecting. -1612442815: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612442815: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612442815: Error: Permission denied. -1612442820: New connection from 172.18.0.3 on port 1883. -1612442820: Sending CONNACK to 172.18.0.3 (0, 5) -1612442820: Socket error on client , disconnecting. -1612442840: New connection from 172.18.0.3 on port 1883. -1612442840: Sending CONNACK to 172.18.0.3 (0, 5) -1612442840: Socket error on client , disconnecting. -1612442860: New connection from 172.18.0.3 on port 1883. -1612442860: Sending CONNACK to 172.18.0.3 (0, 5) -1612442860: Socket error on client , disconnecting. -1612442880: New connection from 172.18.0.3 on port 1883. -1612442880: Sending CONNACK to 172.18.0.3 (0, 5) -1612442880: Socket error on client , disconnecting. -1612442900: New connection from 172.18.0.3 on port 1883. -1612442900: Sending CONNACK to 172.18.0.3 (0, 5) -1612442900: Socket error on client , disconnecting. -1612442920: New connection from 172.18.0.3 on port 1883. -1612442920: Sending CONNACK to 172.18.0.3 (0, 5) -1612442920: Socket error on client , disconnecting. -1612442940: New connection from 172.18.0.3 on port 1883. -1612442940: Sending CONNACK to 172.18.0.3 (0, 5) -1612442940: Socket error on client , disconnecting. -1612442960: New connection from 172.18.0.3 on port 1883. -1612442960: Sending CONNACK to 172.18.0.3 (0, 5) -1612442960: Socket error on client , disconnecting. -1612442980: New connection from 172.18.0.3 on port 1883. -1612442980: Sending CONNACK to 172.18.0.3 (0, 5) -1612442980: Socket error on client , disconnecting. -1612443000: New connection from 172.18.0.3 on port 1883. -1612443000: Sending CONNACK to 172.18.0.3 (0, 5) -1612443000: Socket error on client , disconnecting. -1612443020: New connection from 172.18.0.3 on port 1883. -1612443020: Sending CONNACK to 172.18.0.3 (0, 5) -1612443020: Socket error on client , disconnecting. -1612443040: New connection from 172.18.0.3 on port 1883. -1612443040: Sending CONNACK to 172.18.0.3 (0, 5) -1612443040: Socket error on client , disconnecting. -1612443060: New connection from 172.18.0.3 on port 1883. -1612443060: Sending CONNACK to 172.18.0.3 (0, 5) -1612443060: Socket error on client , disconnecting. -1612443080: New connection from 172.18.0.3 on port 1883. -1612443080: Sending CONNACK to 172.18.0.3 (0, 5) -1612443080: Socket error on client , disconnecting. -1612443100: New connection from 172.18.0.3 on port 1883. -1612443100: Sending CONNACK to 172.18.0.3 (0, 5) -1612443100: Socket error on client , disconnecting. -1612443120: New connection from 172.18.0.3 on port 1883. -1612443120: Sending CONNACK to 172.18.0.3 (0, 5) -1612443120: Socket error on client , disconnecting. -1612443140: New connection from 172.18.0.3 on port 1883. -1612443140: Sending CONNACK to 172.18.0.3 (0, 5) -1612443140: Socket error on client , disconnecting. -1612443160: New connection from 172.18.0.3 on port 1883. -1612443160: Sending CONNACK to 172.18.0.3 (0, 5) -1612443160: Socket error on client , disconnecting. -1612443180: New connection from 172.18.0.3 on port 1883. -1612443180: Sending CONNACK to 172.18.0.3 (0, 5) -1612443180: Socket error on client , disconnecting. -1612443200: New connection from 172.18.0.3 on port 1883. -1612443200: Sending CONNACK to 172.18.0.3 (0, 5) -1612443200: Socket error on client , disconnecting. -1612443220: New connection from 172.18.0.3 on port 1883. -1612443220: Sending CONNACK to 172.18.0.3 (0, 5) -1612443220: Socket error on client , disconnecting. -1612443240: New connection from 172.18.0.3 on port 1883. -1612443240: Sending CONNACK to 172.18.0.3 (0, 5) -1612443240: Socket error on client , disconnecting. -1612443260: New connection from 172.18.0.3 on port 1883. -1612443260: Sending CONNACK to 172.18.0.3 (0, 5) -1612443260: Socket error on client , disconnecting. -1612443280: New connection from 172.18.0.3 on port 1883. -1612443280: Sending CONNACK to 172.18.0.3 (0, 5) -1612443280: Socket error on client , disconnecting. -1612443300: New connection from 172.18.0.3 on port 1883. -1612443300: Sending CONNACK to 172.18.0.3 (0, 5) -1612443300: Socket error on client , disconnecting. -1612443320: New connection from 172.18.0.3 on port 1883. -1612443320: Sending CONNACK to 172.18.0.3 (0, 5) -1612443320: Socket error on client , disconnecting. -1612443340: New connection from 172.18.0.3 on port 1883. -1612443340: Sending CONNACK to 172.18.0.3 (0, 5) -1612443340: Socket error on client , disconnecting. -1612443360: New connection from 172.18.0.3 on port 1883. -1612443360: Sending CONNACK to 172.18.0.3 (0, 5) -1612443360: Socket error on client , disconnecting. -1612443380: New connection from 172.18.0.3 on port 1883. -1612443380: Sending CONNACK to 172.18.0.3 (0, 5) -1612443380: Socket error on client , disconnecting. -1612443400: New connection from 172.18.0.3 on port 1883. -1612443400: Sending CONNACK to 172.18.0.3 (0, 5) -1612443400: Socket error on client , disconnecting. -1612443420: New connection from 172.18.0.3 on port 1883. -1612443420: Sending CONNACK to 172.18.0.3 (0, 5) -1612443420: Socket error on client , disconnecting. -1612443440: New connection from 172.18.0.3 on port 1883. -1612443440: Sending CONNACK to 172.18.0.3 (0, 5) -1612443440: Socket error on client , disconnecting. -1612443460: New connection from 172.18.0.3 on port 1883. -1612443460: Sending CONNACK to 172.18.0.3 (0, 5) -1612443460: Socket error on client , disconnecting. -1612443480: New connection from 172.18.0.3 on port 1883. -1612443480: Sending CONNACK to 172.18.0.3 (0, 5) -1612443480: Socket error on client , disconnecting. -1612443500: New connection from 172.18.0.3 on port 1883. -1612443500: Sending CONNACK to 172.18.0.3 (0, 5) -1612443500: Socket error on client , disconnecting. -1612443520: New connection from 172.18.0.3 on port 1883. -1612443520: Sending CONNACK to 172.18.0.3 (0, 5) -1612443520: Socket error on client , disconnecting. -1612443540: New connection from 172.18.0.3 on port 1883. -1612443540: Sending CONNACK to 172.18.0.3 (0, 5) -1612443540: Socket error on client , disconnecting. -1612443560: New connection from 172.18.0.3 on port 1883. -1612443560: Sending CONNACK to 172.18.0.3 (0, 5) -1612443560: Socket error on client , disconnecting. -1612443580: New connection from 172.18.0.3 on port 1883. -1612443580: Sending CONNACK to 172.18.0.3 (0, 5) -1612443580: Socket error on client , disconnecting. -1612443600: New connection from 172.18.0.3 on port 1883. -1612443600: Sending CONNACK to 172.18.0.3 (0, 5) -1612443600: Socket error on client , disconnecting. -1612443620: New connection from 172.18.0.3 on port 1883. -1612443620: Sending CONNACK to 172.18.0.3 (0, 5) -1612443620: Socket error on client , disconnecting. -1612443640: New connection from 172.18.0.3 on port 1883. -1612443640: Sending CONNACK to 172.18.0.3 (0, 5) -1612443640: Socket error on client , disconnecting. -1612443660: New connection from 172.18.0.3 on port 1883. -1612443660: Sending CONNACK to 172.18.0.3 (0, 5) -1612443660: Socket error on client , disconnecting. -1612443680: New connection from 172.18.0.3 on port 1883. -1612443680: Sending CONNACK to 172.18.0.3 (0, 5) -1612443680: Socket error on client , disconnecting. -1612443700: New connection from 172.18.0.3 on port 1883. -1612443700: Sending CONNACK to 172.18.0.3 (0, 5) -1612443700: Socket error on client , disconnecting. -1612443720: New connection from 172.18.0.3 on port 1883. -1612443720: Sending CONNACK to 172.18.0.3 (0, 5) -1612443720: Socket error on client , disconnecting. -1612443740: New connection from 172.18.0.3 on port 1883. -1612443740: Sending CONNACK to 172.18.0.3 (0, 5) -1612443740: Socket error on client , disconnecting. -1612443760: New connection from 172.18.0.3 on port 1883. -1612443760: Sending CONNACK to 172.18.0.3 (0, 5) -1612443760: Socket error on client , disconnecting. -1612443780: New connection from 172.18.0.3 on port 1883. -1612443780: Sending CONNACK to 172.18.0.3 (0, 5) -1612443780: Socket error on client , disconnecting. -1612443800: New connection from 172.18.0.3 on port 1883. -1612443800: Sending CONNACK to 172.18.0.3 (0, 5) -1612443800: Socket error on client , disconnecting. -1612443820: New connection from 172.18.0.3 on port 1883. -1612443820: Sending CONNACK to 172.18.0.3 (0, 5) -1612443820: Socket error on client , disconnecting. -1612443840: New connection from 172.18.0.3 on port 1883. -1612443840: Sending CONNACK to 172.18.0.3 (0, 5) -1612443840: Socket error on client , disconnecting. -1612443860: New connection from 172.18.0.3 on port 1883. -1612443860: Sending CONNACK to 172.18.0.3 (0, 5) -1612443860: Socket error on client , disconnecting. -1612443880: New connection from 172.18.0.3 on port 1883. -1612443880: Sending CONNACK to 172.18.0.3 (0, 5) -1612443880: Socket error on client , disconnecting. -1612443900: New connection from 172.18.0.3 on port 1883. -1612443900: Sending CONNACK to 172.18.0.3 (0, 5) -1612443900: Socket error on client , disconnecting. -1612443920: New connection from 172.18.0.3 on port 1883. -1612443920: Sending CONNACK to 172.18.0.3 (0, 5) -1612443920: Socket error on client , disconnecting. -1612443940: New connection from 172.18.0.3 on port 1883. -1612443940: Sending CONNACK to 172.18.0.3 (0, 5) -1612443940: Socket error on client , disconnecting. -1612443960: New connection from 172.18.0.3 on port 1883. -1612443960: Sending CONNACK to 172.18.0.3 (0, 5) -1612443960: Socket error on client , disconnecting. -1612443980: New connection from 172.18.0.3 on port 1883. -1612443980: Sending CONNACK to 172.18.0.3 (0, 5) -1612443980: Socket error on client , disconnecting. -1612444000: New connection from 172.18.0.3 on port 1883. -1612444000: Sending CONNACK to 172.18.0.3 (0, 5) -1612444000: Socket error on client , disconnecting. -1612444020: New connection from 172.18.0.3 on port 1883. -1612444020: Sending CONNACK to 172.18.0.3 (0, 5) -1612444020: Socket error on client , disconnecting. -1612444040: New connection from 172.18.0.3 on port 1883. -1612444040: Sending CONNACK to 172.18.0.3 (0, 5) -1612444040: Socket error on client , disconnecting. -1612444060: New connection from 172.18.0.3 on port 1883. -1612444060: Sending CONNACK to 172.18.0.3 (0, 5) -1612444060: Socket error on client , disconnecting. -1612444080: New connection from 172.18.0.3 on port 1883. -1612444080: Sending CONNACK to 172.18.0.3 (0, 5) -1612444080: Socket error on client , disconnecting. -1612444100: New connection from 172.18.0.3 on port 1883. -1612444100: Sending CONNACK to 172.18.0.3 (0, 5) -1612444100: Socket error on client , disconnecting. -1612444120: New connection from 172.18.0.3 on port 1883. -1612444120: Sending CONNACK to 172.18.0.3 (0, 5) -1612444120: Socket error on client , disconnecting. -1612444140: New connection from 172.18.0.3 on port 1883. -1612444140: Sending CONNACK to 172.18.0.3 (0, 5) -1612444140: Socket error on client , disconnecting. -1612444160: New connection from 172.18.0.3 on port 1883. -1612444160: Sending CONNACK to 172.18.0.3 (0, 5) -1612444160: Socket error on client , disconnecting. -1612444180: New connection from 172.18.0.3 on port 1883. -1612444180: Sending CONNACK to 172.18.0.3 (0, 5) -1612444180: Socket error on client , disconnecting. -1612444200: New connection from 172.18.0.3 on port 1883. -1612444200: Sending CONNACK to 172.18.0.3 (0, 5) -1612444200: Socket error on client , disconnecting. -1612444220: New connection from 172.18.0.3 on port 1883. -1612444220: Sending CONNACK to 172.18.0.3 (0, 5) -1612444220: Socket error on client , disconnecting. -1612444240: New connection from 172.18.0.3 on port 1883. -1612444240: Sending CONNACK to 172.18.0.3 (0, 5) -1612444240: Socket error on client , disconnecting. -1612444260: New connection from 172.18.0.3 on port 1883. -1612444260: Sending CONNACK to 172.18.0.3 (0, 5) -1612444260: Socket error on client , disconnecting. -1612444280: New connection from 172.18.0.3 on port 1883. -1612444280: Sending CONNACK to 172.18.0.3 (0, 5) -1612444280: Socket error on client , disconnecting. -1612444300: New connection from 172.18.0.3 on port 1883. -1612444300: Sending CONNACK to 172.18.0.3 (0, 5) -1612444300: Socket error on client , disconnecting. -1612444320: New connection from 172.18.0.3 on port 1883. -1612444320: Sending CONNACK to 172.18.0.3 (0, 5) -1612444320: Socket error on client , disconnecting. -1612444340: New connection from 172.18.0.3 on port 1883. -1612444340: Sending CONNACK to 172.18.0.3 (0, 5) -1612444340: Socket error on client , disconnecting. -1612444360: New connection from 172.18.0.3 on port 1883. -1612444360: Sending CONNACK to 172.18.0.3 (0, 5) -1612444360: Socket error on client , disconnecting. -1612444380: New connection from 172.18.0.3 on port 1883. -1612444380: Sending CONNACK to 172.18.0.3 (0, 5) -1612444380: Socket error on client , disconnecting. -1612444400: New connection from 172.18.0.3 on port 1883. -1612444400: Sending CONNACK to 172.18.0.3 (0, 5) -1612444400: Socket error on client , disconnecting. -1612444420: New connection from 172.18.0.3 on port 1883. -1612444420: Sending CONNACK to 172.18.0.3 (0, 5) -1612444420: Socket error on client , disconnecting. -1612444440: New connection from 172.18.0.3 on port 1883. -1612444440: Sending CONNACK to 172.18.0.3 (0, 5) -1612444440: Socket error on client , disconnecting. -1612444460: New connection from 172.18.0.3 on port 1883. -1612444460: Sending CONNACK to 172.18.0.3 (0, 5) -1612444460: Socket error on client , disconnecting. -1612444480: New connection from 172.18.0.3 on port 1883. -1612444480: Sending CONNACK to 172.18.0.3 (0, 5) -1612444480: Socket error on client , disconnecting. -1612444500: New connection from 172.18.0.3 on port 1883. -1612444500: Sending CONNACK to 172.18.0.3 (0, 5) -1612444500: Socket error on client , disconnecting. -1612444520: New connection from 172.18.0.3 on port 1883. -1612444520: Sending CONNACK to 172.18.0.3 (0, 5) -1612444520: Socket error on client , disconnecting. -1612444540: New connection from 172.18.0.3 on port 1883. -1612444540: Sending CONNACK to 172.18.0.3 (0, 5) -1612444540: Socket error on client , disconnecting. -1612444560: New connection from 172.18.0.3 on port 1883. -1612444560: Sending CONNACK to 172.18.0.3 (0, 5) -1612444560: Socket error on client , disconnecting. -1612444580: New connection from 172.18.0.3 on port 1883. -1612444580: Sending CONNACK to 172.18.0.3 (0, 5) -1612444580: Socket error on client , disconnecting. -1612444600: New connection from 172.18.0.3 on port 1883. -1612444600: Sending CONNACK to 172.18.0.3 (0, 5) -1612444600: Socket error on client , disconnecting. -1612444616: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612444616: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612444616: Error: Permission denied. -1612444620: New connection from 172.18.0.3 on port 1883. -1612444620: Sending CONNACK to 172.18.0.3 (0, 5) -1612444620: Socket error on client , disconnecting. -1612444640: New connection from 172.18.0.3 on port 1883. -1612444640: Sending CONNACK to 172.18.0.3 (0, 5) -1612444640: Socket error on client , disconnecting. -1612444660: New connection from 172.18.0.3 on port 1883. -1612444660: Sending CONNACK to 172.18.0.3 (0, 5) -1612444660: Socket error on client , disconnecting. -1612444680: New connection from 172.18.0.3 on port 1883. -1612444680: Sending CONNACK to 172.18.0.3 (0, 5) -1612444680: Socket error on client , disconnecting. -1612444700: New connection from 172.18.0.3 on port 1883. -1612444700: Sending CONNACK to 172.18.0.3 (0, 5) -1612444700: Socket error on client , disconnecting. -1612444720: New connection from 172.18.0.3 on port 1883. -1612444720: Sending CONNACK to 172.18.0.3 (0, 5) -1612444720: Socket error on client , disconnecting. -1612444740: New connection from 172.18.0.3 on port 1883. -1612444740: Sending CONNACK to 172.18.0.3 (0, 5) -1612444740: Socket error on client , disconnecting. -1612444760: New connection from 172.18.0.3 on port 1883. -1612444760: Sending CONNACK to 172.18.0.3 (0, 5) -1612444760: Socket error on client , disconnecting. -1612444780: New connection from 172.18.0.3 on port 1883. -1612444780: Sending CONNACK to 172.18.0.3 (0, 5) -1612444780: Socket error on client , disconnecting. -1612444800: New connection from 172.18.0.3 on port 1883. -1612444800: Sending CONNACK to 172.18.0.3 (0, 5) -1612444800: Socket error on client , disconnecting. -1612444820: New connection from 172.18.0.3 on port 1883. -1612444820: Sending CONNACK to 172.18.0.3 (0, 5) -1612444820: Socket error on client , disconnecting. -1612444840: New connection from 172.18.0.3 on port 1883. -1612444840: Sending CONNACK to 172.18.0.3 (0, 5) -1612444840: Socket error on client , disconnecting. -1612444860: New connection from 172.18.0.3 on port 1883. -1612444860: Sending CONNACK to 172.18.0.3 (0, 5) -1612444860: Socket error on client , disconnecting. -1612444880: New connection from 172.18.0.3 on port 1883. -1612444880: Sending CONNACK to 172.18.0.3 (0, 5) -1612444880: Socket error on client , disconnecting. -1612444900: New connection from 172.18.0.3 on port 1883. -1612444900: Sending CONNACK to 172.18.0.3 (0, 5) -1612444900: Socket error on client , disconnecting. -1612444920: New connection from 172.18.0.3 on port 1883. -1612444920: Sending CONNACK to 172.18.0.3 (0, 5) -1612444920: Socket error on client , disconnecting. -1612444940: New connection from 172.18.0.3 on port 1883. -1612444940: Sending CONNACK to 172.18.0.3 (0, 5) -1612444940: Socket error on client , disconnecting. -1612444960: New connection from 172.18.0.3 on port 1883. -1612444960: Sending CONNACK to 172.18.0.3 (0, 5) -1612444960: Socket error on client , disconnecting. -1612444980: New connection from 172.18.0.3 on port 1883. -1612444980: Sending CONNACK to 172.18.0.3 (0, 5) -1612444980: Socket error on client , disconnecting. -1612445000: New connection from 172.18.0.3 on port 1883. -1612445000: Sending CONNACK to 172.18.0.3 (0, 5) -1612445000: Socket error on client , disconnecting. -1612445020: New connection from 172.18.0.3 on port 1883. -1612445020: Sending CONNACK to 172.18.0.3 (0, 5) -1612445020: Socket error on client , disconnecting. -1612445040: New connection from 172.18.0.3 on port 1883. -1612445040: Sending CONNACK to 172.18.0.3 (0, 5) -1612445040: Socket error on client , disconnecting. -1612445060: New connection from 172.18.0.3 on port 1883. -1612445060: Sending CONNACK to 172.18.0.3 (0, 5) -1612445060: Socket error on client , disconnecting. -1612445080: New connection from 172.18.0.3 on port 1883. -1612445080: Sending CONNACK to 172.18.0.3 (0, 5) -1612445080: Socket error on client , disconnecting. -1612445100: New connection from 172.18.0.3 on port 1883. -1612445100: Sending CONNACK to 172.18.0.3 (0, 5) -1612445100: Socket error on client , disconnecting. -1612445120: New connection from 172.18.0.3 on port 1883. -1612445120: Sending CONNACK to 172.18.0.3 (0, 5) -1612445120: Socket error on client , disconnecting. -1612445140: New connection from 172.18.0.3 on port 1883. -1612445140: Sending CONNACK to 172.18.0.3 (0, 5) -1612445140: Socket error on client , disconnecting. -1612445160: New connection from 172.18.0.3 on port 1883. -1612445160: Sending CONNACK to 172.18.0.3 (0, 5) -1612445160: Socket error on client , disconnecting. -1612445180: New connection from 172.18.0.3 on port 1883. -1612445180: Sending CONNACK to 172.18.0.3 (0, 5) -1612445180: Socket error on client , disconnecting. -1612445200: New connection from 172.18.0.3 on port 1883. -1612445200: Sending CONNACK to 172.18.0.3 (0, 5) -1612445200: Socket error on client , disconnecting. -1612445220: New connection from 172.18.0.3 on port 1883. -1612445220: Sending CONNACK to 172.18.0.3 (0, 5) -1612445220: Socket error on client , disconnecting. -1612445240: New connection from 172.18.0.3 on port 1883. -1612445240: Sending CONNACK to 172.18.0.3 (0, 5) -1612445240: Socket error on client , disconnecting. -1612445260: New connection from 172.18.0.3 on port 1883. -1612445260: Sending CONNACK to 172.18.0.3 (0, 5) -1612445260: Socket error on client , disconnecting. -1612445280: New connection from 172.18.0.3 on port 1883. -1612445280: Sending CONNACK to 172.18.0.3 (0, 5) -1612445280: Socket error on client , disconnecting. -1612445300: New connection from 172.18.0.3 on port 1883. -1612445300: Sending CONNACK to 172.18.0.3 (0, 5) -1612445300: Socket error on client , disconnecting. -1612445320: New connection from 172.18.0.3 on port 1883. -1612445320: Sending CONNACK to 172.18.0.3 (0, 5) -1612445320: Socket error on client , disconnecting. -1612445340: New connection from 172.18.0.3 on port 1883. -1612445340: Sending CONNACK to 172.18.0.3 (0, 5) -1612445340: Socket error on client , disconnecting. -1612445360: New connection from 172.18.0.3 on port 1883. -1612445360: Sending CONNACK to 172.18.0.3 (0, 5) -1612445360: Socket error on client , disconnecting. -1612445380: New connection from 172.18.0.3 on port 1883. -1612445380: Sending CONNACK to 172.18.0.3 (0, 5) -1612445380: Socket error on client , disconnecting. -1612445400: New connection from 172.18.0.3 on port 1883. -1612445400: Sending CONNACK to 172.18.0.3 (0, 5) -1612445400: Socket error on client , disconnecting. -1612445420: New connection from 172.18.0.3 on port 1883. -1612445420: Sending CONNACK to 172.18.0.3 (0, 5) -1612445420: Socket error on client , disconnecting. -1612445440: New connection from 172.18.0.3 on port 1883. -1612445440: Sending CONNACK to 172.18.0.3 (0, 5) -1612445440: Socket error on client , disconnecting. -1612445460: New connection from 172.18.0.3 on port 1883. -1612445460: Sending CONNACK to 172.18.0.3 (0, 5) -1612445460: Socket error on client , disconnecting. -1612445480: New connection from 172.18.0.3 on port 1883. -1612445480: Sending CONNACK to 172.18.0.3 (0, 5) -1612445480: Socket error on client , disconnecting. -1612445500: New connection from 172.18.0.3 on port 1883. -1612445500: Sending CONNACK to 172.18.0.3 (0, 5) -1612445500: Socket error on client , disconnecting. -1612445520: New connection from 172.18.0.3 on port 1883. -1612445520: Sending CONNACK to 172.18.0.3 (0, 5) -1612445520: Socket error on client , disconnecting. -1612445540: New connection from 172.18.0.3 on port 1883. -1612445540: Sending CONNACK to 172.18.0.3 (0, 5) -1612445540: Socket error on client , disconnecting. -1612445560: New connection from 172.18.0.3 on port 1883. -1612445560: Sending CONNACK to 172.18.0.3 (0, 5) -1612445560: Socket error on client , disconnecting. -1612445580: New connection from 172.18.0.3 on port 1883. -1612445580: Sending CONNACK to 172.18.0.3 (0, 5) -1612445580: Socket error on client , disconnecting. -1612445600: New connection from 172.18.0.3 on port 1883. -1612445600: Sending CONNACK to 172.18.0.3 (0, 5) -1612445600: Socket error on client , disconnecting. -1612445620: New connection from 172.18.0.3 on port 1883. -1612445620: Sending CONNACK to 172.18.0.3 (0, 5) -1612445620: Socket error on client , disconnecting. -1612445640: New connection from 172.18.0.3 on port 1883. -1612445640: Sending CONNACK to 172.18.0.3 (0, 5) -1612445640: Socket error on client , disconnecting. -1612445660: New connection from 172.18.0.3 on port 1883. -1612445660: Sending CONNACK to 172.18.0.3 (0, 5) -1612445660: Socket error on client , disconnecting. -1612445680: New connection from 172.18.0.3 on port 1883. -1612445680: Sending CONNACK to 172.18.0.3 (0, 5) -1612445680: Socket error on client , disconnecting. -1612445700: New connection from 172.18.0.3 on port 1883. -1612445700: Sending CONNACK to 172.18.0.3 (0, 5) -1612445700: Socket error on client , disconnecting. -1612445720: New connection from 172.18.0.3 on port 1883. -1612445720: Sending CONNACK to 172.18.0.3 (0, 5) -1612445720: Socket error on client , disconnecting. -1612445740: New connection from 172.18.0.3 on port 1883. -1612445740: Sending CONNACK to 172.18.0.3 (0, 5) -1612445740: Socket error on client , disconnecting. -1612445760: New connection from 172.18.0.3 on port 1883. -1612445760: Sending CONNACK to 172.18.0.3 (0, 5) -1612445760: Socket error on client , disconnecting. -1612445780: New connection from 172.18.0.3 on port 1883. -1612445780: Sending CONNACK to 172.18.0.3 (0, 5) -1612445780: Socket error on client , disconnecting. -1612445800: New connection from 172.18.0.3 on port 1883. -1612445800: Sending CONNACK to 172.18.0.3 (0, 5) -1612445800: Socket error on client , disconnecting. -1612445820: New connection from 172.18.0.3 on port 1883. -1612445820: Sending CONNACK to 172.18.0.3 (0, 5) -1612445820: Socket error on client , disconnecting. -1612445840: New connection from 172.18.0.3 on port 1883. -1612445840: Sending CONNACK to 172.18.0.3 (0, 5) -1612445840: Socket error on client , disconnecting. -1612445860: New connection from 172.18.0.3 on port 1883. -1612445860: Sending CONNACK to 172.18.0.3 (0, 5) -1612445860: Socket error on client , disconnecting. -1612445880: New connection from 172.18.0.3 on port 1883. -1612445880: Sending CONNACK to 172.18.0.3 (0, 5) -1612445880: Socket error on client , disconnecting. -1612445900: New connection from 172.18.0.3 on port 1883. -1612445900: Sending CONNACK to 172.18.0.3 (0, 5) -1612445900: Socket error on client , disconnecting. -1612445920: New connection from 172.18.0.3 on port 1883. -1612445920: Sending CONNACK to 172.18.0.3 (0, 5) -1612445920: Socket error on client , disconnecting. -1612445940: New connection from 172.18.0.3 on port 1883. -1612445940: Sending CONNACK to 172.18.0.3 (0, 5) -1612445940: Socket error on client , disconnecting. -1612445960: New connection from 172.18.0.3 on port 1883. -1612445960: Sending CONNACK to 172.18.0.3 (0, 5) -1612445960: Socket error on client , disconnecting. -1612445980: New connection from 172.18.0.3 on port 1883. -1612445980: Sending CONNACK to 172.18.0.3 (0, 5) -1612445980: Socket error on client , disconnecting. -1612446000: New connection from 172.18.0.3 on port 1883. -1612446000: Sending CONNACK to 172.18.0.3 (0, 5) -1612446000: Socket error on client , disconnecting. -1612446020: New connection from 172.18.0.3 on port 1883. -1612446020: Sending CONNACK to 172.18.0.3 (0, 5) -1612446020: Socket error on client , disconnecting. -1612446040: New connection from 172.18.0.3 on port 1883. -1612446040: Sending CONNACK to 172.18.0.3 (0, 5) -1612446040: Socket error on client , disconnecting. -1612446060: New connection from 172.18.0.3 on port 1883. -1612446060: Sending CONNACK to 172.18.0.3 (0, 5) -1612446060: Socket error on client , disconnecting. -1612446080: New connection from 172.18.0.3 on port 1883. -1612446080: Sending CONNACK to 172.18.0.3 (0, 5) -1612446080: Socket error on client , disconnecting. -1612446100: New connection from 172.18.0.3 on port 1883. -1612446100: Sending CONNACK to 172.18.0.3 (0, 5) -1612446100: Socket error on client , disconnecting. -1612446120: New connection from 172.18.0.3 on port 1883. -1612446120: Sending CONNACK to 172.18.0.3 (0, 5) -1612446120: Socket error on client , disconnecting. -1612446140: New connection from 172.18.0.3 on port 1883. -1612446140: Sending CONNACK to 172.18.0.3 (0, 5) -1612446140: Socket error on client , disconnecting. -1612446160: New connection from 172.18.0.3 on port 1883. -1612446160: Sending CONNACK to 172.18.0.3 (0, 5) -1612446160: Socket error on client , disconnecting. -1612446180: New connection from 172.18.0.3 on port 1883. -1612446180: Sending CONNACK to 172.18.0.3 (0, 5) -1612446180: Socket error on client , disconnecting. -1612446200: New connection from 172.18.0.3 on port 1883. -1612446200: Sending CONNACK to 172.18.0.3 (0, 5) -1612446200: Socket error on client , disconnecting. -1612446220: New connection from 172.18.0.3 on port 1883. -1612446220: Sending CONNACK to 172.18.0.3 (0, 5) -1612446220: Socket error on client , disconnecting. -1612446240: New connection from 172.18.0.3 on port 1883. -1612446240: Sending CONNACK to 172.18.0.3 (0, 5) -1612446240: Socket error on client , disconnecting. -1612446260: New connection from 172.18.0.3 on port 1883. -1612446260: Sending CONNACK to 172.18.0.3 (0, 5) -1612446260: Socket error on client , disconnecting. -1612446280: New connection from 172.18.0.3 on port 1883. -1612446280: Sending CONNACK to 172.18.0.3 (0, 5) -1612446280: Socket error on client , disconnecting. -1612446300: New connection from 172.18.0.3 on port 1883. -1612446300: Sending CONNACK to 172.18.0.3 (0, 5) -1612446300: Socket error on client , disconnecting. -1612446320: New connection from 172.18.0.3 on port 1883. -1612446320: Sending CONNACK to 172.18.0.3 (0, 5) -1612446320: Socket error on client , disconnecting. -1612446340: New connection from 172.18.0.3 on port 1883. -1612446340: Sending CONNACK to 172.18.0.3 (0, 5) -1612446340: Socket error on client , disconnecting. -1612446360: New connection from 172.18.0.3 on port 1883. -1612446360: Sending CONNACK to 172.18.0.3 (0, 5) -1612446360: Socket error on client , disconnecting. -1612446380: New connection from 172.18.0.3 on port 1883. -1612446380: Sending CONNACK to 172.18.0.3 (0, 5) -1612446380: Socket error on client , disconnecting. -1612446400: New connection from 172.18.0.3 on port 1883. -1612446400: Sending CONNACK to 172.18.0.3 (0, 5) -1612446400: Socket error on client , disconnecting. -1612446417: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612446417: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612446417: Error: Permission denied. -1612446420: New connection from 172.18.0.3 on port 1883. -1612446420: Sending CONNACK to 172.18.0.3 (0, 5) -1612446420: Socket error on client , disconnecting. -1612446440: New connection from 172.18.0.3 on port 1883. -1612446440: Sending CONNACK to 172.18.0.3 (0, 5) -1612446440: Socket error on client , disconnecting. -1612446460: New connection from 172.18.0.3 on port 1883. -1612446460: Sending CONNACK to 172.18.0.3 (0, 5) -1612446460: Socket error on client , disconnecting. -1612446480: New connection from 172.18.0.3 on port 1883. -1612446480: Sending CONNACK to 172.18.0.3 (0, 5) -1612446480: Socket error on client , disconnecting. -1612446500: New connection from 172.18.0.3 on port 1883. -1612446500: Sending CONNACK to 172.18.0.3 (0, 5) -1612446500: Socket error on client , disconnecting. -1612446520: New connection from 172.18.0.3 on port 1883. -1612446520: Sending CONNACK to 172.18.0.3 (0, 5) -1612446520: Socket error on client , disconnecting. -1612446540: New connection from 172.18.0.3 on port 1883. -1612446540: Sending CONNACK to 172.18.0.3 (0, 5) -1612446540: Socket error on client , disconnecting. -1612446560: New connection from 172.18.0.3 on port 1883. -1612446560: Sending CONNACK to 172.18.0.3 (0, 5) -1612446560: Socket error on client , disconnecting. -1612446580: New connection from 172.18.0.3 on port 1883. -1612446580: Sending CONNACK to 172.18.0.3 (0, 5) -1612446580: Socket error on client , disconnecting. -1612446600: New connection from 172.18.0.3 on port 1883. -1612446600: Sending CONNACK to 172.18.0.3 (0, 5) -1612446600: Socket error on client , disconnecting. -1612446620: New connection from 172.18.0.3 on port 1883. -1612446620: Sending CONNACK to 172.18.0.3 (0, 5) -1612446620: Socket error on client , disconnecting. -1612446640: New connection from 172.18.0.3 on port 1883. -1612446640: Sending CONNACK to 172.18.0.3 (0, 5) -1612446640: Socket error on client , disconnecting. -1612446660: New connection from 172.18.0.3 on port 1883. -1612446660: Sending CONNACK to 172.18.0.3 (0, 5) -1612446660: Socket error on client , disconnecting. -1612446680: New connection from 172.18.0.3 on port 1883. -1612446680: Sending CONNACK to 172.18.0.3 (0, 5) -1612446680: Socket error on client , disconnecting. -1612446700: New connection from 172.18.0.3 on port 1883. -1612446700: Sending CONNACK to 172.18.0.3 (0, 5) -1612446700: Socket error on client , disconnecting. -1612446720: New connection from 172.18.0.3 on port 1883. -1612446720: Sending CONNACK to 172.18.0.3 (0, 5) -1612446720: Socket error on client , disconnecting. -1612446740: New connection from 172.18.0.3 on port 1883. -1612446740: Sending CONNACK to 172.18.0.3 (0, 5) -1612446740: Socket error on client , disconnecting. -1612446760: New connection from 172.18.0.3 on port 1883. -1612446760: Sending CONNACK to 172.18.0.3 (0, 5) -1612446760: Socket error on client , disconnecting. -1612446780: New connection from 172.18.0.3 on port 1883. -1612446780: Sending CONNACK to 172.18.0.3 (0, 5) -1612446780: Socket error on client , disconnecting. -1612446800: New connection from 172.18.0.3 on port 1883. -1612446800: Sending CONNACK to 172.18.0.3 (0, 5) -1612446800: Socket error on client , disconnecting. -1612446820: New connection from 172.18.0.3 on port 1883. -1612446820: Sending CONNACK to 172.18.0.3 (0, 5) -1612446820: Socket error on client , disconnecting. -1612446840: New connection from 172.18.0.3 on port 1883. -1612446840: Sending CONNACK to 172.18.0.3 (0, 5) -1612446840: Socket error on client , disconnecting. -1612446860: New connection from 172.18.0.3 on port 1883. -1612446860: Sending CONNACK to 172.18.0.3 (0, 5) -1612446860: Socket error on client , disconnecting. -1612446880: New connection from 172.18.0.3 on port 1883. -1612446880: Sending CONNACK to 172.18.0.3 (0, 5) -1612446880: Socket error on client , disconnecting. -1612446900: New connection from 172.18.0.3 on port 1883. -1612446900: Sending CONNACK to 172.18.0.3 (0, 5) -1612446900: Socket error on client , disconnecting. -1612446920: New connection from 172.18.0.3 on port 1883. -1612446920: Sending CONNACK to 172.18.0.3 (0, 5) -1612446920: Socket error on client , disconnecting. -1612446940: New connection from 172.18.0.3 on port 1883. -1612446940: Sending CONNACK to 172.18.0.3 (0, 5) -1612446940: Socket error on client , disconnecting. -1612446960: New connection from 172.18.0.3 on port 1883. -1612446960: Sending CONNACK to 172.18.0.3 (0, 5) -1612446960: Socket error on client , disconnecting. -1612446980: New connection from 172.18.0.3 on port 1883. -1612446980: Sending CONNACK to 172.18.0.3 (0, 5) -1612446980: Socket error on client , disconnecting. -1612447000: New connection from 172.18.0.3 on port 1883. -1612447000: Sending CONNACK to 172.18.0.3 (0, 5) -1612447000: Socket error on client , disconnecting. -1612447020: New connection from 172.18.0.3 on port 1883. -1612447020: Sending CONNACK to 172.18.0.3 (0, 5) -1612447020: Socket error on client , disconnecting. -1612447040: New connection from 172.18.0.3 on port 1883. -1612447040: Sending CONNACK to 172.18.0.3 (0, 5) -1612447040: Socket error on client , disconnecting. -1612447060: New connection from 172.18.0.3 on port 1883. -1612447060: Sending CONNACK to 172.18.0.3 (0, 5) -1612447060: Socket error on client , disconnecting. -1612447080: New connection from 172.18.0.3 on port 1883. -1612447080: Sending CONNACK to 172.18.0.3 (0, 5) -1612447080: Socket error on client , disconnecting. -1612447100: New connection from 172.18.0.3 on port 1883. -1612447100: Sending CONNACK to 172.18.0.3 (0, 5) -1612447100: Socket error on client , disconnecting. -1612447120: New connection from 172.18.0.3 on port 1883. -1612447120: Sending CONNACK to 172.18.0.3 (0, 5) -1612447120: Socket error on client , disconnecting. -1612447140: New connection from 172.18.0.3 on port 1883. -1612447140: Sending CONNACK to 172.18.0.3 (0, 5) -1612447140: Socket error on client , disconnecting. -1612447160: New connection from 172.18.0.3 on port 1883. -1612447160: Sending CONNACK to 172.18.0.3 (0, 5) -1612447160: Socket error on client , disconnecting. -1612447180: New connection from 172.18.0.3 on port 1883. -1612447180: Sending CONNACK to 172.18.0.3 (0, 5) -1612447180: Socket error on client , disconnecting. -1612447200: New connection from 172.18.0.3 on port 1883. -1612447200: Sending CONNACK to 172.18.0.3 (0, 5) -1612447200: Socket error on client , disconnecting. -1612447220: New connection from 172.18.0.3 on port 1883. -1612447220: Sending CONNACK to 172.18.0.3 (0, 5) -1612447220: Socket error on client , disconnecting. -1612447240: New connection from 172.18.0.3 on port 1883. -1612447240: Sending CONNACK to 172.18.0.3 (0, 5) -1612447240: Socket error on client , disconnecting. -1612447260: New connection from 172.18.0.3 on port 1883. -1612447260: Sending CONNACK to 172.18.0.3 (0, 5) -1612447260: Socket error on client , disconnecting. -1612447280: New connection from 172.18.0.3 on port 1883. -1612447280: Sending CONNACK to 172.18.0.3 (0, 5) -1612447280: Socket error on client , disconnecting. -1612447300: New connection from 172.18.0.3 on port 1883. -1612447300: Sending CONNACK to 172.18.0.3 (0, 5) -1612447300: Socket error on client , disconnecting. -1612447320: New connection from 172.18.0.3 on port 1883. -1612447320: Sending CONNACK to 172.18.0.3 (0, 5) -1612447320: Socket error on client , disconnecting. -1612447340: New connection from 172.18.0.3 on port 1883. -1612447340: Sending CONNACK to 172.18.0.3 (0, 5) -1612447340: Socket error on client , disconnecting. -1612447360: New connection from 172.18.0.3 on port 1883. -1612447360: Sending CONNACK to 172.18.0.3 (0, 5) -1612447360: Socket error on client , disconnecting. -1612447380: New connection from 172.18.0.3 on port 1883. -1612447380: Sending CONNACK to 172.18.0.3 (0, 5) -1612447380: Socket error on client , disconnecting. -1612447400: New connection from 172.18.0.3 on port 1883. -1612447400: Sending CONNACK to 172.18.0.3 (0, 5) -1612447400: Socket error on client , disconnecting. -1612447420: New connection from 172.18.0.3 on port 1883. -1612447420: Sending CONNACK to 172.18.0.3 (0, 5) -1612447420: Socket error on client , disconnecting. -1612447440: New connection from 172.18.0.3 on port 1883. -1612447440: Sending CONNACK to 172.18.0.3 (0, 5) -1612447440: Socket error on client , disconnecting. -1612447460: New connection from 172.18.0.3 on port 1883. -1612447460: Sending CONNACK to 172.18.0.3 (0, 5) -1612447460: Socket error on client , disconnecting. -1612447480: New connection from 172.18.0.3 on port 1883. -1612447480: Sending CONNACK to 172.18.0.3 (0, 5) -1612447480: Socket error on client , disconnecting. -1612447500: New connection from 172.18.0.3 on port 1883. -1612447500: Sending CONNACK to 172.18.0.3 (0, 5) -1612447500: Socket error on client , disconnecting. -1612447520: New connection from 172.18.0.3 on port 1883. -1612447520: Sending CONNACK to 172.18.0.3 (0, 5) -1612447520: Socket error on client , disconnecting. -1612447540: New connection from 172.18.0.3 on port 1883. -1612447540: Sending CONNACK to 172.18.0.3 (0, 5) -1612447540: Socket error on client , disconnecting. -1612447560: New connection from 172.18.0.3 on port 1883. -1612447560: Sending CONNACK to 172.18.0.3 (0, 5) -1612447560: Socket error on client , disconnecting. -1612447580: New connection from 172.18.0.3 on port 1883. -1612447580: Sending CONNACK to 172.18.0.3 (0, 5) -1612447580: Socket error on client , disconnecting. -1612447600: New connection from 172.18.0.3 on port 1883. -1612447600: Sending CONNACK to 172.18.0.3 (0, 5) -1612447600: Socket error on client , disconnecting. -1612447620: New connection from 172.18.0.3 on port 1883. -1612447620: Sending CONNACK to 172.18.0.3 (0, 5) -1612447620: Socket error on client , disconnecting. -1612447640: New connection from 172.18.0.3 on port 1883. -1612447640: Sending CONNACK to 172.18.0.3 (0, 5) -1612447640: Socket error on client , disconnecting. -1612447660: New connection from 172.18.0.3 on port 1883. -1612447660: Sending CONNACK to 172.18.0.3 (0, 5) -1612447660: Socket error on client , disconnecting. -1612447680: New connection from 172.18.0.3 on port 1883. -1612447680: Sending CONNACK to 172.18.0.3 (0, 5) -1612447680: Socket error on client , disconnecting. -1612447700: New connection from 172.18.0.3 on port 1883. -1612447700: Sending CONNACK to 172.18.0.3 (0, 5) -1612447700: Socket error on client , disconnecting. -1612447720: New connection from 172.18.0.3 on port 1883. -1612447720: Sending CONNACK to 172.18.0.3 (0, 5) -1612447720: Socket error on client , disconnecting. -1612447740: New connection from 172.18.0.3 on port 1883. -1612447740: Sending CONNACK to 172.18.0.3 (0, 5) -1612447740: Socket error on client , disconnecting. -1612447760: New connection from 172.18.0.3 on port 1883. -1612447760: Sending CONNACK to 172.18.0.3 (0, 5) -1612447760: Socket error on client , disconnecting. -1612447780: New connection from 172.18.0.3 on port 1883. -1612447780: Sending CONNACK to 172.18.0.3 (0, 5) -1612447780: Socket error on client , disconnecting. -1612447800: New connection from 172.18.0.3 on port 1883. -1612447800: Sending CONNACK to 172.18.0.3 (0, 5) -1612447800: Socket error on client , disconnecting. -1612447820: New connection from 172.18.0.3 on port 1883. -1612447820: Sending CONNACK to 172.18.0.3 (0, 5) -1612447820: Socket error on client , disconnecting. -1612447840: New connection from 172.18.0.3 on port 1883. -1612447840: Sending CONNACK to 172.18.0.3 (0, 5) -1612447840: Socket error on client , disconnecting. -1612447860: New connection from 172.18.0.3 on port 1883. -1612447860: Sending CONNACK to 172.18.0.3 (0, 5) -1612447860: Socket error on client , disconnecting. -1612447880: New connection from 172.18.0.3 on port 1883. -1612447880: Sending CONNACK to 172.18.0.3 (0, 5) -1612447880: Socket error on client , disconnecting. -1612447900: New connection from 172.18.0.3 on port 1883. -1612447900: Sending CONNACK to 172.18.0.3 (0, 5) -1612447900: Socket error on client , disconnecting. -1612447920: New connection from 172.18.0.3 on port 1883. -1612447920: Sending CONNACK to 172.18.0.3 (0, 5) -1612447920: Socket error on client , disconnecting. -1612447940: New connection from 172.18.0.3 on port 1883. -1612447940: Sending CONNACK to 172.18.0.3 (0, 5) -1612447940: Socket error on client , disconnecting. -1612447960: New connection from 172.18.0.3 on port 1883. -1612447960: Sending CONNACK to 172.18.0.3 (0, 5) -1612447960: Socket error on client , disconnecting. -1612447980: New connection from 172.18.0.3 on port 1883. -1612447980: Sending CONNACK to 172.18.0.3 (0, 5) -1612447980: Socket error on client , disconnecting. -1612448000: New connection from 172.18.0.3 on port 1883. -1612448000: Sending CONNACK to 172.18.0.3 (0, 5) -1612448000: Socket error on client , disconnecting. -1612448020: New connection from 172.18.0.3 on port 1883. -1612448020: Sending CONNACK to 172.18.0.3 (0, 5) -1612448020: Socket error on client , disconnecting. -1612448040: New connection from 172.18.0.3 on port 1883. -1612448040: Sending CONNACK to 172.18.0.3 (0, 5) -1612448040: Socket error on client , disconnecting. -1612448060: New connection from 172.18.0.3 on port 1883. -1612448060: Sending CONNACK to 172.18.0.3 (0, 5) -1612448060: Socket error on client , disconnecting. -1612448080: New connection from 172.18.0.3 on port 1883. -1612448080: Sending CONNACK to 172.18.0.3 (0, 5) -1612448080: Socket error on client , disconnecting. -1612448100: New connection from 172.18.0.3 on port 1883. -1612448100: Sending CONNACK to 172.18.0.3 (0, 5) -1612448100: Socket error on client , disconnecting. -1612448120: New connection from 172.18.0.3 on port 1883. -1612448120: Sending CONNACK to 172.18.0.3 (0, 5) -1612448120: Socket error on client , disconnecting. -1612448140: New connection from 172.18.0.3 on port 1883. -1612448140: Sending CONNACK to 172.18.0.3 (0, 5) -1612448140: Socket error on client , disconnecting. -1612448160: New connection from 172.18.0.3 on port 1883. -1612448160: Sending CONNACK to 172.18.0.3 (0, 5) -1612448160: Socket error on client , disconnecting. -1612448180: New connection from 172.18.0.3 on port 1883. -1612448180: Sending CONNACK to 172.18.0.3 (0, 5) -1612448180: Socket error on client , disconnecting. -1612448200: New connection from 172.18.0.3 on port 1883. -1612448200: Sending CONNACK to 172.18.0.3 (0, 5) -1612448200: Socket error on client , disconnecting. -1612448218: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612448218: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612448218: Error: Permission denied. -1612448220: New connection from 172.18.0.3 on port 1883. -1612448220: Sending CONNACK to 172.18.0.3 (0, 5) -1612448220: Socket error on client , disconnecting. -1612448240: New connection from 172.18.0.3 on port 1883. -1612448240: Sending CONNACK to 172.18.0.3 (0, 5) -1612448240: Socket error on client , disconnecting. -1612448260: New connection from 172.18.0.3 on port 1883. -1612448260: Sending CONNACK to 172.18.0.3 (0, 5) -1612448260: Socket error on client , disconnecting. -1612448280: New connection from 172.18.0.3 on port 1883. -1612448280: Sending CONNACK to 172.18.0.3 (0, 5) -1612448280: Socket error on client , disconnecting. -1612448300: New connection from 172.18.0.3 on port 1883. -1612448300: Sending CONNACK to 172.18.0.3 (0, 5) -1612448300: Socket error on client , disconnecting. -1612448320: New connection from 172.18.0.3 on port 1883. -1612448320: Sending CONNACK to 172.18.0.3 (0, 5) -1612448320: Socket error on client , disconnecting. -1612448340: New connection from 172.18.0.3 on port 1883. -1612448340: Sending CONNACK to 172.18.0.3 (0, 5) -1612448340: Socket error on client , disconnecting. -1612448360: New connection from 172.18.0.3 on port 1883. -1612448360: Sending CONNACK to 172.18.0.3 (0, 5) -1612448360: Socket error on client , disconnecting. -1612448380: New connection from 172.18.0.3 on port 1883. -1612448380: Sending CONNACK to 172.18.0.3 (0, 5) -1612448380: Socket error on client , disconnecting. -1612448400: New connection from 172.18.0.3 on port 1883. -1612448400: Sending CONNACK to 172.18.0.3 (0, 5) -1612448400: Socket error on client , disconnecting. -1612448420: New connection from 172.18.0.3 on port 1883. -1612448420: Sending CONNACK to 172.18.0.3 (0, 5) -1612448420: Socket error on client , disconnecting. -1612448440: New connection from 172.18.0.3 on port 1883. -1612448440: Sending CONNACK to 172.18.0.3 (0, 5) -1612448440: Socket error on client , disconnecting. -1612448460: New connection from 172.18.0.3 on port 1883. -1612448460: Sending CONNACK to 172.18.0.3 (0, 5) -1612448460: Socket error on client , disconnecting. -1612448480: New connection from 172.18.0.3 on port 1883. -1612448480: Sending CONNACK to 172.18.0.3 (0, 5) -1612448480: Socket error on client , disconnecting. -1612448500: New connection from 172.18.0.3 on port 1883. -1612448500: Sending CONNACK to 172.18.0.3 (0, 5) -1612448500: Socket error on client , disconnecting. -1612448520: New connection from 172.18.0.3 on port 1883. -1612448520: Sending CONNACK to 172.18.0.3 (0, 5) -1612448520: Socket error on client , disconnecting. -1612448540: New connection from 172.18.0.3 on port 1883. -1612448540: Sending CONNACK to 172.18.0.3 (0, 5) -1612448540: Socket error on client , disconnecting. -1612448560: New connection from 172.18.0.3 on port 1883. -1612448560: Sending CONNACK to 172.18.0.3 (0, 5) -1612448560: Socket error on client , disconnecting. -1612448580: New connection from 172.18.0.3 on port 1883. -1612448580: Sending CONNACK to 172.18.0.3 (0, 5) -1612448580: Socket error on client , disconnecting. -1612448600: New connection from 172.18.0.3 on port 1883. -1612448600: Sending CONNACK to 172.18.0.3 (0, 5) -1612448600: Socket error on client , disconnecting. -1612448620: New connection from 172.18.0.3 on port 1883. -1612448620: Sending CONNACK to 172.18.0.3 (0, 5) -1612448620: Socket error on client , disconnecting. -1612448640: New connection from 172.18.0.3 on port 1883. -1612448640: Sending CONNACK to 172.18.0.3 (0, 5) -1612448640: Socket error on client , disconnecting. -1612448660: New connection from 172.18.0.3 on port 1883. -1612448660: Sending CONNACK to 172.18.0.3 (0, 5) -1612448660: Socket error on client , disconnecting. -1612448680: New connection from 172.18.0.3 on port 1883. -1612448680: Sending CONNACK to 172.18.0.3 (0, 5) -1612448680: Socket error on client , disconnecting. -1612448700: New connection from 172.18.0.3 on port 1883. -1612448700: Sending CONNACK to 172.18.0.3 (0, 5) -1612448700: Socket error on client , disconnecting. -1612448720: New connection from 172.18.0.3 on port 1883. -1612448720: Sending CONNACK to 172.18.0.3 (0, 5) -1612448720: Socket error on client , disconnecting. -1612448740: New connection from 172.18.0.3 on port 1883. -1612448740: Sending CONNACK to 172.18.0.3 (0, 5) -1612448740: Socket error on client , disconnecting. -1612448760: New connection from 172.18.0.3 on port 1883. -1612448760: Sending CONNACK to 172.18.0.3 (0, 5) -1612448760: Socket error on client , disconnecting. -1612448780: New connection from 172.18.0.3 on port 1883. -1612448780: Sending CONNACK to 172.18.0.3 (0, 5) -1612448780: Socket error on client , disconnecting. -1612448800: New connection from 172.18.0.3 on port 1883. -1612448800: Sending CONNACK to 172.18.0.3 (0, 5) -1612448800: Socket error on client , disconnecting. -1612448820: New connection from 172.18.0.3 on port 1883. -1612448820: Sending CONNACK to 172.18.0.3 (0, 5) -1612448820: Socket error on client , disconnecting. -1612448840: New connection from 172.18.0.3 on port 1883. -1612448840: Sending CONNACK to 172.18.0.3 (0, 5) -1612448840: Socket error on client , disconnecting. -1612448860: New connection from 172.18.0.3 on port 1883. -1612448860: Sending CONNACK to 172.18.0.3 (0, 5) -1612448860: Socket error on client , disconnecting. -1612448880: New connection from 172.18.0.3 on port 1883. -1612448880: Sending CONNACK to 172.18.0.3 (0, 5) -1612448880: Socket error on client , disconnecting. -1612448900: New connection from 172.18.0.3 on port 1883. -1612448900: Sending CONNACK to 172.18.0.3 (0, 5) -1612448900: Socket error on client , disconnecting. -1612448920: New connection from 172.18.0.3 on port 1883. -1612448920: Sending CONNACK to 172.18.0.3 (0, 5) -1612448920: Socket error on client , disconnecting. -1612448940: New connection from 172.18.0.3 on port 1883. -1612448940: Sending CONNACK to 172.18.0.3 (0, 5) -1612448940: Socket error on client , disconnecting. -1612448960: New connection from 172.18.0.3 on port 1883. -1612448960: Sending CONNACK to 172.18.0.3 (0, 5) -1612448960: Socket error on client , disconnecting. -1612448980: New connection from 172.18.0.3 on port 1883. -1612448980: Sending CONNACK to 172.18.0.3 (0, 5) -1612448980: Socket error on client , disconnecting. -1612449000: New connection from 172.18.0.3 on port 1883. -1612449000: Sending CONNACK to 172.18.0.3 (0, 5) -1612449000: Socket error on client , disconnecting. -1612449020: New connection from 172.18.0.3 on port 1883. -1612449020: Sending CONNACK to 172.18.0.3 (0, 5) -1612449020: Socket error on client , disconnecting. -1612449040: New connection from 172.18.0.3 on port 1883. -1612449040: Sending CONNACK to 172.18.0.3 (0, 5) -1612449040: Socket error on client , disconnecting. -1612449060: New connection from 172.18.0.3 on port 1883. -1612449060: Sending CONNACK to 172.18.0.3 (0, 5) -1612449060: Socket error on client , disconnecting. -1612449080: New connection from 172.18.0.3 on port 1883. -1612449080: Sending CONNACK to 172.18.0.3 (0, 5) -1612449080: Socket error on client , disconnecting. -1612449100: New connection from 172.18.0.3 on port 1883. -1612449100: Sending CONNACK to 172.18.0.3 (0, 5) -1612449100: Socket error on client , disconnecting. -1612449120: New connection from 172.18.0.3 on port 1883. -1612449120: Sending CONNACK to 172.18.0.3 (0, 5) -1612449120: Socket error on client , disconnecting. -1612449140: New connection from 172.18.0.3 on port 1883. -1612449140: Sending CONNACK to 172.18.0.3 (0, 5) -1612449140: Socket error on client , disconnecting. -1612449160: New connection from 172.18.0.3 on port 1883. -1612449160: Sending CONNACK to 172.18.0.3 (0, 5) -1612449160: Socket error on client , disconnecting. -1612449180: New connection from 172.18.0.3 on port 1883. -1612449180: Sending CONNACK to 172.18.0.3 (0, 5) -1612449180: Socket error on client , disconnecting. -1612449200: New connection from 172.18.0.3 on port 1883. -1612449200: Sending CONNACK to 172.18.0.3 (0, 5) -1612449200: Socket error on client , disconnecting. -1612449220: New connection from 172.18.0.3 on port 1883. -1612449220: Sending CONNACK to 172.18.0.3 (0, 5) -1612449220: Socket error on client , disconnecting. -1612449240: New connection from 172.18.0.3 on port 1883. -1612449240: Sending CONNACK to 172.18.0.3 (0, 5) -1612449240: Socket error on client , disconnecting. -1612449260: New connection from 172.18.0.3 on port 1883. -1612449260: Sending CONNACK to 172.18.0.3 (0, 5) -1612449260: Socket error on client , disconnecting. -1612449280: New connection from 172.18.0.3 on port 1883. -1612449280: Sending CONNACK to 172.18.0.3 (0, 5) -1612449280: Socket error on client , disconnecting. -1612449300: New connection from 172.18.0.3 on port 1883. -1612449300: Sending CONNACK to 172.18.0.3 (0, 5) -1612449300: Socket error on client , disconnecting. -1612449320: New connection from 172.18.0.3 on port 1883. -1612449320: Sending CONNACK to 172.18.0.3 (0, 5) -1612449320: Socket error on client , disconnecting. -1612449340: New connection from 172.18.0.3 on port 1883. -1612449340: Sending CONNACK to 172.18.0.3 (0, 5) -1612449340: Socket error on client , disconnecting. -1612449360: New connection from 172.18.0.3 on port 1883. -1612449360: Sending CONNACK to 172.18.0.3 (0, 5) -1612449360: Socket error on client , disconnecting. -1612449380: New connection from 172.18.0.3 on port 1883. -1612449380: Sending CONNACK to 172.18.0.3 (0, 5) -1612449380: Socket error on client , disconnecting. -1612449400: New connection from 172.18.0.3 on port 1883. -1612449400: Sending CONNACK to 172.18.0.3 (0, 5) -1612449400: Socket error on client , disconnecting. -1612449420: New connection from 172.18.0.3 on port 1883. -1612449420: Sending CONNACK to 172.18.0.3 (0, 5) -1612449420: Socket error on client , disconnecting. -1612449440: New connection from 172.18.0.3 on port 1883. -1612449440: Sending CONNACK to 172.18.0.3 (0, 5) -1612449440: Socket error on client , disconnecting. -1612449460: New connection from 172.18.0.3 on port 1883. -1612449460: Sending CONNACK to 172.18.0.3 (0, 5) -1612449460: Socket error on client , disconnecting. -1612449480: New connection from 172.18.0.3 on port 1883. -1612449480: Sending CONNACK to 172.18.0.3 (0, 5) -1612449480: Socket error on client , disconnecting. -1612449500: New connection from 172.18.0.3 on port 1883. -1612449500: Sending CONNACK to 172.18.0.3 (0, 5) -1612449500: Socket error on client , disconnecting. -1612449520: New connection from 172.18.0.3 on port 1883. -1612449520: Sending CONNACK to 172.18.0.3 (0, 5) -1612449520: Socket error on client , disconnecting. -1612449540: New connection from 172.18.0.3 on port 1883. -1612449540: Sending CONNACK to 172.18.0.3 (0, 5) -1612449540: Socket error on client , disconnecting. -1612449560: New connection from 172.18.0.3 on port 1883. -1612449560: Sending CONNACK to 172.18.0.3 (0, 5) -1612449560: Socket error on client , disconnecting. -1612449580: New connection from 172.18.0.3 on port 1883. -1612449580: Sending CONNACK to 172.18.0.3 (0, 5) -1612449580: Socket error on client , disconnecting. -1612449600: New connection from 172.18.0.3 on port 1883. -1612449600: Sending CONNACK to 172.18.0.3 (0, 5) -1612449600: Socket error on client , disconnecting. -1612449620: New connection from 172.18.0.3 on port 1883. -1612449620: Sending CONNACK to 172.18.0.3 (0, 5) -1612449620: Socket error on client , disconnecting. -1612449640: New connection from 172.18.0.3 on port 1883. -1612449640: Sending CONNACK to 172.18.0.3 (0, 5) -1612449640: Socket error on client , disconnecting. -1612449660: New connection from 172.18.0.3 on port 1883. -1612449660: Sending CONNACK to 172.18.0.3 (0, 5) -1612449660: Socket error on client , disconnecting. -1612449680: New connection from 172.18.0.3 on port 1883. -1612449680: Sending CONNACK to 172.18.0.3 (0, 5) -1612449680: Socket error on client , disconnecting. -1612449700: New connection from 172.18.0.3 on port 1883. -1612449700: Sending CONNACK to 172.18.0.3 (0, 5) -1612449700: Socket error on client , disconnecting. -1612449720: New connection from 172.18.0.3 on port 1883. -1612449720: Sending CONNACK to 172.18.0.3 (0, 5) -1612449720: Socket error on client , disconnecting. -1612449740: New connection from 172.18.0.3 on port 1883. -1612449740: Sending CONNACK to 172.18.0.3 (0, 5) -1612449740: Socket error on client , disconnecting. -1612449760: New connection from 172.18.0.3 on port 1883. -1612449760: Sending CONNACK to 172.18.0.3 (0, 5) -1612449760: Socket error on client , disconnecting. -1612449780: New connection from 172.18.0.3 on port 1883. -1612449780: Sending CONNACK to 172.18.0.3 (0, 5) -1612449780: Socket error on client , disconnecting. -1612449800: New connection from 172.18.0.3 on port 1883. -1612449800: Sending CONNACK to 172.18.0.3 (0, 5) -1612449800: Socket error on client , disconnecting. -1612449820: New connection from 172.18.0.3 on port 1883. -1612449820: Sending CONNACK to 172.18.0.3 (0, 5) -1612449820: Socket error on client , disconnecting. -1612449840: New connection from 172.18.0.3 on port 1883. -1612449840: Sending CONNACK to 172.18.0.3 (0, 5) -1612449840: Socket error on client , disconnecting. -1612449860: New connection from 172.18.0.3 on port 1883. -1612449860: Sending CONNACK to 172.18.0.3 (0, 5) -1612449860: Socket error on client , disconnecting. -1612449880: New connection from 172.18.0.3 on port 1883. -1612449880: Sending CONNACK to 172.18.0.3 (0, 5) -1612449880: Socket error on client , disconnecting. -1612449900: New connection from 172.18.0.3 on port 1883. -1612449900: Sending CONNACK to 172.18.0.3 (0, 5) -1612449900: Socket error on client , disconnecting. -1612449920: New connection from 172.18.0.3 on port 1883. -1612449920: Sending CONNACK to 172.18.0.3 (0, 5) -1612449920: Socket error on client , disconnecting. -1612449940: New connection from 172.18.0.3 on port 1883. -1612449940: Sending CONNACK to 172.18.0.3 (0, 5) -1612449940: Socket error on client , disconnecting. -1612449960: New connection from 172.18.0.3 on port 1883. -1612449960: Sending CONNACK to 172.18.0.3 (0, 5) -1612449960: Socket error on client , disconnecting. -1612449980: New connection from 172.18.0.3 on port 1883. -1612449980: Sending CONNACK to 172.18.0.3 (0, 5) -1612449980: Socket error on client , disconnecting. -1612450000: New connection from 172.18.0.3 on port 1883. -1612450000: Sending CONNACK to 172.18.0.3 (0, 5) -1612450000: Socket error on client , disconnecting. -1612450019: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612450019: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612450019: Error: Permission denied. -1612450020: New connection from 172.18.0.3 on port 1883. -1612450020: Sending CONNACK to 172.18.0.3 (0, 5) -1612450020: Socket error on client , disconnecting. -1612450040: New connection from 172.18.0.3 on port 1883. -1612450040: Sending CONNACK to 172.18.0.3 (0, 5) -1612450040: Socket error on client , disconnecting. -1612450060: New connection from 172.18.0.3 on port 1883. -1612450060: Sending CONNACK to 172.18.0.3 (0, 5) -1612450060: Socket error on client , disconnecting. -1612450080: New connection from 172.18.0.3 on port 1883. -1612450080: Sending CONNACK to 172.18.0.3 (0, 5) -1612450080: Socket error on client , disconnecting. -1612450100: New connection from 172.18.0.3 on port 1883. -1612450100: Sending CONNACK to 172.18.0.3 (0, 5) -1612450100: Socket error on client , disconnecting. -1612450120: New connection from 172.18.0.3 on port 1883. -1612450120: Sending CONNACK to 172.18.0.3 (0, 5) -1612450120: Socket error on client , disconnecting. -1612450140: New connection from 172.18.0.3 on port 1883. -1612450140: Sending CONNACK to 172.18.0.3 (0, 5) -1612450140: Socket error on client , disconnecting. -1612450160: New connection from 172.18.0.3 on port 1883. -1612450160: Sending CONNACK to 172.18.0.3 (0, 5) -1612450160: Socket error on client , disconnecting. -1612450180: New connection from 172.18.0.3 on port 1883. -1612450180: Sending CONNACK to 172.18.0.3 (0, 5) -1612450180: Socket error on client , disconnecting. -1612450200: New connection from 172.18.0.3 on port 1883. -1612450200: Sending CONNACK to 172.18.0.3 (0, 5) -1612450200: Socket error on client , disconnecting. -1612450220: New connection from 172.18.0.3 on port 1883. -1612450220: Sending CONNACK to 172.18.0.3 (0, 5) -1612450220: Socket error on client , disconnecting. -1612450240: New connection from 172.18.0.3 on port 1883. -1612450240: Sending CONNACK to 172.18.0.3 (0, 5) -1612450240: Socket error on client , disconnecting. -1612450260: New connection from 172.18.0.3 on port 1883. -1612450260: Sending CONNACK to 172.18.0.3 (0, 5) -1612450260: Socket error on client , disconnecting. -1612450280: New connection from 172.18.0.3 on port 1883. -1612450280: Sending CONNACK to 172.18.0.3 (0, 5) -1612450280: Socket error on client , disconnecting. -1612450300: New connection from 172.18.0.3 on port 1883. -1612450300: Sending CONNACK to 172.18.0.3 (0, 5) -1612450300: Socket error on client , disconnecting. -1612450320: New connection from 172.18.0.3 on port 1883. -1612450320: Sending CONNACK to 172.18.0.3 (0, 5) -1612450320: Socket error on client , disconnecting. -1612450340: New connection from 172.18.0.3 on port 1883. -1612450340: Sending CONNACK to 172.18.0.3 (0, 5) -1612450340: Socket error on client , disconnecting. -1612450360: New connection from 172.18.0.3 on port 1883. -1612450360: Sending CONNACK to 172.18.0.3 (0, 5) -1612450360: Socket error on client , disconnecting. -1612450380: New connection from 172.18.0.3 on port 1883. -1612450380: Sending CONNACK to 172.18.0.3 (0, 5) -1612450380: Socket error on client , disconnecting. -1612450400: New connection from 172.18.0.3 on port 1883. -1612450400: Sending CONNACK to 172.18.0.3 (0, 5) -1612450400: Socket error on client , disconnecting. -1612450420: New connection from 172.18.0.3 on port 1883. -1612450420: Sending CONNACK to 172.18.0.3 (0, 5) -1612450420: Socket error on client , disconnecting. -1612450440: New connection from 172.18.0.3 on port 1883. -1612450440: Sending CONNACK to 172.18.0.3 (0, 5) -1612450440: Socket error on client , disconnecting. -1612450460: New connection from 172.18.0.3 on port 1883. -1612450460: Sending CONNACK to 172.18.0.3 (0, 5) -1612450460: Socket error on client , disconnecting. -1612450480: New connection from 172.18.0.3 on port 1883. -1612450480: Sending CONNACK to 172.18.0.3 (0, 5) -1612450480: Socket error on client , disconnecting. -1612450500: New connection from 172.18.0.3 on port 1883. -1612450500: Sending CONNACK to 172.18.0.3 (0, 5) -1612450500: Socket error on client , disconnecting. -1612450520: New connection from 172.18.0.3 on port 1883. -1612450520: Sending CONNACK to 172.18.0.3 (0, 5) -1612450520: Socket error on client , disconnecting. -1612450540: New connection from 172.18.0.3 on port 1883. -1612450540: Sending CONNACK to 172.18.0.3 (0, 5) -1612450540: Socket error on client , disconnecting. -1612450560: New connection from 172.18.0.3 on port 1883. -1612450560: Sending CONNACK to 172.18.0.3 (0, 5) -1612450560: Socket error on client , disconnecting. -1612450580: New connection from 172.18.0.3 on port 1883. -1612450580: Sending CONNACK to 172.18.0.3 (0, 5) -1612450580: Socket error on client , disconnecting. -1612450600: New connection from 172.18.0.3 on port 1883. -1612450600: Sending CONNACK to 172.18.0.3 (0, 5) -1612450600: Socket error on client , disconnecting. -1612450620: New connection from 172.18.0.3 on port 1883. -1612450620: Sending CONNACK to 172.18.0.3 (0, 5) -1612450620: Socket error on client , disconnecting. -1612450640: New connection from 172.18.0.3 on port 1883. -1612450640: Sending CONNACK to 172.18.0.3 (0, 5) -1612450640: Socket error on client , disconnecting. -1612450660: New connection from 172.18.0.3 on port 1883. -1612450660: Sending CONNACK to 172.18.0.3 (0, 5) -1612450660: Socket error on client , disconnecting. -1612450680: New connection from 172.18.0.3 on port 1883. -1612450680: Sending CONNACK to 172.18.0.3 (0, 5) -1612450680: Socket error on client , disconnecting. -1612450700: New connection from 172.18.0.3 on port 1883. -1612450700: Sending CONNACK to 172.18.0.3 (0, 5) -1612450700: Socket error on client , disconnecting. -1612450720: New connection from 172.18.0.3 on port 1883. -1612450720: Sending CONNACK to 172.18.0.3 (0, 5) -1612450720: Socket error on client , disconnecting. -1612450740: New connection from 172.18.0.3 on port 1883. -1612450740: Sending CONNACK to 172.18.0.3 (0, 5) -1612450740: Socket error on client , disconnecting. -1612450760: New connection from 172.18.0.3 on port 1883. -1612450760: Sending CONNACK to 172.18.0.3 (0, 5) -1612450760: Socket error on client , disconnecting. -1612450780: New connection from 172.18.0.3 on port 1883. -1612450780: Sending CONNACK to 172.18.0.3 (0, 5) -1612450780: Socket error on client , disconnecting. -1612450800: New connection from 172.18.0.3 on port 1883. -1612450800: Sending CONNACK to 172.18.0.3 (0, 5) -1612450800: Socket error on client , disconnecting. -1612450820: New connection from 172.18.0.3 on port 1883. -1612450820: Sending CONNACK to 172.18.0.3 (0, 5) -1612450820: Socket error on client , disconnecting. -1612450840: New connection from 172.18.0.3 on port 1883. -1612450840: Sending CONNACK to 172.18.0.3 (0, 5) -1612450840: Socket error on client , disconnecting. -1612450860: New connection from 172.18.0.3 on port 1883. -1612450860: Sending CONNACK to 172.18.0.3 (0, 5) -1612450860: Socket error on client , disconnecting. -1612450880: New connection from 172.18.0.3 on port 1883. -1612450880: Sending CONNACK to 172.18.0.3 (0, 5) -1612450880: Socket error on client , disconnecting. -1612450900: New connection from 172.18.0.3 on port 1883. -1612450900: Sending CONNACK to 172.18.0.3 (0, 5) -1612450900: Socket error on client , disconnecting. -1612450920: New connection from 172.18.0.3 on port 1883. -1612450920: Sending CONNACK to 172.18.0.3 (0, 5) -1612450920: Socket error on client , disconnecting. -1612450940: New connection from 172.18.0.3 on port 1883. -1612450940: Sending CONNACK to 172.18.0.3 (0, 5) -1612450940: Socket error on client , disconnecting. -1612450960: New connection from 172.18.0.3 on port 1883. -1612450960: Sending CONNACK to 172.18.0.3 (0, 5) -1612450960: Socket error on client , disconnecting. -1612450980: New connection from 172.18.0.3 on port 1883. -1612450980: Sending CONNACK to 172.18.0.3 (0, 5) -1612450980: Socket error on client , disconnecting. -1612451000: New connection from 172.18.0.3 on port 1883. -1612451000: Sending CONNACK to 172.18.0.3 (0, 5) -1612451000: Socket error on client , disconnecting. -1612451020: New connection from 172.18.0.3 on port 1883. -1612451020: Sending CONNACK to 172.18.0.3 (0, 5) -1612451020: Socket error on client , disconnecting. -1612451040: New connection from 172.18.0.3 on port 1883. -1612451040: Sending CONNACK to 172.18.0.3 (0, 5) -1612451040: Socket error on client , disconnecting. -1612451060: New connection from 172.18.0.3 on port 1883. -1612451060: Sending CONNACK to 172.18.0.3 (0, 5) -1612451060: Socket error on client , disconnecting. -1612451080: New connection from 172.18.0.3 on port 1883. -1612451080: Sending CONNACK to 172.18.0.3 (0, 5) -1612451080: Socket error on client , disconnecting. -1612451100: New connection from 172.18.0.3 on port 1883. -1612451100: Sending CONNACK to 172.18.0.3 (0, 5) -1612451100: Socket error on client , disconnecting. -1612451120: New connection from 172.18.0.3 on port 1883. -1612451120: Sending CONNACK to 172.18.0.3 (0, 5) -1612451120: Socket error on client , disconnecting. -1612451140: New connection from 172.18.0.3 on port 1883. -1612451140: Sending CONNACK to 172.18.0.3 (0, 5) -1612451140: Socket error on client , disconnecting. -1612451160: New connection from 172.18.0.3 on port 1883. -1612451160: Sending CONNACK to 172.18.0.3 (0, 5) -1612451160: Socket error on client , disconnecting. -1612451180: New connection from 172.18.0.3 on port 1883. -1612451180: Sending CONNACK to 172.18.0.3 (0, 5) -1612451180: Socket error on client , disconnecting. -1612451200: New connection from 172.18.0.3 on port 1883. -1612451200: Sending CONNACK to 172.18.0.3 (0, 5) -1612451200: Socket error on client , disconnecting. -1612451220: New connection from 172.18.0.3 on port 1883. -1612451220: Sending CONNACK to 172.18.0.3 (0, 5) -1612451220: Socket error on client , disconnecting. -1612451240: New connection from 172.18.0.3 on port 1883. -1612451240: Sending CONNACK to 172.18.0.3 (0, 5) -1612451240: Socket error on client , disconnecting. -1612451260: New connection from 172.18.0.3 on port 1883. -1612451260: Sending CONNACK to 172.18.0.3 (0, 5) -1612451260: Socket error on client , disconnecting. -1612451280: New connection from 172.18.0.3 on port 1883. -1612451280: Sending CONNACK to 172.18.0.3 (0, 5) -1612451280: Socket error on client , disconnecting. -1612451300: New connection from 172.18.0.3 on port 1883. -1612451300: Sending CONNACK to 172.18.0.3 (0, 5) -1612451300: Socket error on client , disconnecting. -1612451320: New connection from 172.18.0.3 on port 1883. -1612451320: Sending CONNACK to 172.18.0.3 (0, 5) -1612451320: Socket error on client , disconnecting. -1612451340: New connection from 172.18.0.3 on port 1883. -1612451340: Sending CONNACK to 172.18.0.3 (0, 5) -1612451340: Socket error on client , disconnecting. -1612451360: New connection from 172.18.0.3 on port 1883. -1612451360: Sending CONNACK to 172.18.0.3 (0, 5) -1612451360: Socket error on client , disconnecting. -1612451380: New connection from 172.18.0.3 on port 1883. -1612451380: Sending CONNACK to 172.18.0.3 (0, 5) -1612451380: Socket error on client , disconnecting. -1612451400: New connection from 172.18.0.3 on port 1883. -1612451400: Sending CONNACK to 172.18.0.3 (0, 5) -1612451400: Socket error on client , disconnecting. -1612451420: New connection from 172.18.0.3 on port 1883. -1612451420: Sending CONNACK to 172.18.0.3 (0, 5) -1612451420: Socket error on client , disconnecting. -1612451440: New connection from 172.18.0.3 on port 1883. -1612451440: Sending CONNACK to 172.18.0.3 (0, 5) -1612451440: Socket error on client , disconnecting. -1612451460: New connection from 172.18.0.3 on port 1883. -1612451460: Sending CONNACK to 172.18.0.3 (0, 5) -1612451460: Socket error on client , disconnecting. -1612451480: New connection from 172.18.0.3 on port 1883. -1612451480: Sending CONNACK to 172.18.0.3 (0, 5) -1612451480: Socket error on client , disconnecting. -1612451500: New connection from 172.18.0.3 on port 1883. -1612451500: Sending CONNACK to 172.18.0.3 (0, 5) -1612451500: Socket error on client , disconnecting. -1612451520: New connection from 172.18.0.3 on port 1883. -1612451520: Sending CONNACK to 172.18.0.3 (0, 5) -1612451520: Socket error on client , disconnecting. -1612451540: New connection from 172.18.0.3 on port 1883. -1612451540: Sending CONNACK to 172.18.0.3 (0, 5) -1612451540: Socket error on client , disconnecting. -1612451560: New connection from 172.18.0.3 on port 1883. -1612451560: Sending CONNACK to 172.18.0.3 (0, 5) -1612451560: Socket error on client , disconnecting. -1612451580: New connection from 172.18.0.3 on port 1883. -1612451580: Sending CONNACK to 172.18.0.3 (0, 5) -1612451580: Socket error on client , disconnecting. -1612451600: New connection from 172.18.0.3 on port 1883. -1612451600: Sending CONNACK to 172.18.0.3 (0, 5) -1612451600: Socket error on client , disconnecting. -1612451620: New connection from 172.18.0.3 on port 1883. -1612451620: Sending CONNACK to 172.18.0.3 (0, 5) -1612451620: Socket error on client , disconnecting. -1612451640: New connection from 172.18.0.3 on port 1883. -1612451640: Sending CONNACK to 172.18.0.3 (0, 5) -1612451640: Socket error on client , disconnecting. -1612451660: New connection from 172.18.0.3 on port 1883. -1612451660: Sending CONNACK to 172.18.0.3 (0, 5) -1612451660: Socket error on client , disconnecting. -1612451680: New connection from 172.18.0.3 on port 1883. -1612451680: Sending CONNACK to 172.18.0.3 (0, 5) -1612451680: Socket error on client , disconnecting. -1612451700: New connection from 172.18.0.3 on port 1883. -1612451700: Sending CONNACK to 172.18.0.3 (0, 5) -1612451700: Socket error on client , disconnecting. -1612451720: New connection from 172.18.0.3 on port 1883. -1612451720: Sending CONNACK to 172.18.0.3 (0, 5) -1612451720: Socket error on client , disconnecting. -1612451740: New connection from 172.18.0.3 on port 1883. -1612451740: Sending CONNACK to 172.18.0.3 (0, 5) -1612451740: Socket error on client , disconnecting. -1612451760: New connection from 172.18.0.3 on port 1883. -1612451760: Sending CONNACK to 172.18.0.3 (0, 5) -1612451760: Socket error on client , disconnecting. -1612451780: New connection from 172.18.0.3 on port 1883. -1612451780: Sending CONNACK to 172.18.0.3 (0, 5) -1612451780: Socket error on client , disconnecting. -1612451800: New connection from 172.18.0.3 on port 1883. -1612451800: Sending CONNACK to 172.18.0.3 (0, 5) -1612451800: Socket error on client , disconnecting. -1612451820: New connection from 172.18.0.3 on port 1883. -1612451820: Sending CONNACK to 172.18.0.3 (0, 5) -1612451820: Socket error on client , disconnecting. -1612451820: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612451820: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612451820: Error: Permission denied. -1612451840: New connection from 172.18.0.3 on port 1883. -1612451840: Sending CONNACK to 172.18.0.3 (0, 5) -1612451840: Socket error on client , disconnecting. -1612451860: New connection from 172.18.0.3 on port 1883. -1612451860: Sending CONNACK to 172.18.0.3 (0, 5) -1612451860: Socket error on client , disconnecting. -1612451880: New connection from 172.18.0.3 on port 1883. -1612451880: Sending CONNACK to 172.18.0.3 (0, 5) -1612451880: Socket error on client , disconnecting. -1612451900: New connection from 172.18.0.3 on port 1883. -1612451900: Sending CONNACK to 172.18.0.3 (0, 5) -1612451900: Socket error on client , disconnecting. -1612451920: New connection from 172.18.0.3 on port 1883. -1612451920: Sending CONNACK to 172.18.0.3 (0, 5) -1612451920: Socket error on client , disconnecting. -1612451940: New connection from 172.18.0.3 on port 1883. -1612451940: Sending CONNACK to 172.18.0.3 (0, 5) -1612451940: Socket error on client , disconnecting. -1612451960: New connection from 172.18.0.3 on port 1883. -1612451960: Sending CONNACK to 172.18.0.3 (0, 5) -1612451960: Socket error on client , disconnecting. -1612451980: New connection from 172.18.0.3 on port 1883. -1612451980: Sending CONNACK to 172.18.0.3 (0, 5) -1612451980: Socket error on client , disconnecting. -1612452000: New connection from 172.18.0.3 on port 1883. -1612452000: Sending CONNACK to 172.18.0.3 (0, 5) -1612452000: Socket error on client , disconnecting. -1612452020: New connection from 172.18.0.3 on port 1883. -1612452020: Sending CONNACK to 172.18.0.3 (0, 5) -1612452020: Socket error on client , disconnecting. -1612452040: New connection from 172.18.0.3 on port 1883. -1612452040: Sending CONNACK to 172.18.0.3 (0, 5) -1612452040: Socket error on client , disconnecting. -1612452060: New connection from 172.18.0.3 on port 1883. -1612452060: Sending CONNACK to 172.18.0.3 (0, 5) -1612452060: Socket error on client , disconnecting. -1612452080: New connection from 172.18.0.3 on port 1883. -1612452080: Sending CONNACK to 172.18.0.3 (0, 5) -1612452080: Socket error on client , disconnecting. -1612452100: New connection from 172.18.0.3 on port 1883. -1612452100: Sending CONNACK to 172.18.0.3 (0, 5) -1612452100: Socket error on client , disconnecting. -1612452120: New connection from 172.18.0.3 on port 1883. -1612452120: Sending CONNACK to 172.18.0.3 (0, 5) -1612452120: Socket error on client , disconnecting. -1612452140: New connection from 172.18.0.3 on port 1883. -1612452140: Sending CONNACK to 172.18.0.3 (0, 5) -1612452140: Socket error on client , disconnecting. -1612452160: New connection from 172.18.0.3 on port 1883. -1612452160: Sending CONNACK to 172.18.0.3 (0, 5) -1612452160: Socket error on client , disconnecting. -1612452180: New connection from 172.18.0.3 on port 1883. -1612452180: Sending CONNACK to 172.18.0.3 (0, 5) -1612452180: Socket error on client , disconnecting. -1612452200: New connection from 172.18.0.3 on port 1883. -1612452200: Sending CONNACK to 172.18.0.3 (0, 5) -1612452200: Socket error on client , disconnecting. -1612452220: New connection from 172.18.0.3 on port 1883. -1612452220: Sending CONNACK to 172.18.0.3 (0, 5) -1612452220: Socket error on client , disconnecting. -1612452240: New connection from 172.18.0.3 on port 1883. -1612452240: Sending CONNACK to 172.18.0.3 (0, 5) -1612452240: Socket error on client , disconnecting. -1612452260: New connection from 172.18.0.3 on port 1883. -1612452260: Sending CONNACK to 172.18.0.3 (0, 5) -1612452260: Socket error on client , disconnecting. -1612452280: New connection from 172.18.0.3 on port 1883. -1612452280: Sending CONNACK to 172.18.0.3 (0, 5) -1612452280: Socket error on client , disconnecting. -1612452300: New connection from 172.18.0.3 on port 1883. -1612452300: Sending CONNACK to 172.18.0.3 (0, 5) -1612452300: Socket error on client , disconnecting. -1612452320: New connection from 172.18.0.3 on port 1883. -1612452320: Sending CONNACK to 172.18.0.3 (0, 5) -1612452320: Socket error on client , disconnecting. -1612452340: New connection from 172.18.0.3 on port 1883. -1612452340: Sending CONNACK to 172.18.0.3 (0, 5) -1612452340: Socket error on client , disconnecting. -1612452360: New connection from 172.18.0.3 on port 1883. -1612452360: Sending CONNACK to 172.18.0.3 (0, 5) -1612452360: Socket error on client , disconnecting. -1612452380: New connection from 172.18.0.3 on port 1883. -1612452380: Sending CONNACK to 172.18.0.3 (0, 5) -1612452380: Socket error on client , disconnecting. -1612452400: New connection from 172.18.0.3 on port 1883. -1612452400: Sending CONNACK to 172.18.0.3 (0, 5) -1612452400: Socket error on client , disconnecting. -1612452420: New connection from 172.18.0.3 on port 1883. -1612452420: Sending CONNACK to 172.18.0.3 (0, 5) -1612452420: Socket error on client , disconnecting. -1612452440: New connection from 172.18.0.3 on port 1883. -1612452440: Sending CONNACK to 172.18.0.3 (0, 5) -1612452440: Socket error on client , disconnecting. -1612452460: New connection from 172.18.0.3 on port 1883. -1612452460: Sending CONNACK to 172.18.0.3 (0, 5) -1612452460: Socket error on client , disconnecting. -1612452480: New connection from 172.18.0.3 on port 1883. -1612452480: Sending CONNACK to 172.18.0.3 (0, 5) -1612452480: Socket error on client , disconnecting. -1612452500: New connection from 172.18.0.3 on port 1883. -1612452500: Sending CONNACK to 172.18.0.3 (0, 5) -1612452500: Socket error on client , disconnecting. -1612452520: New connection from 172.18.0.3 on port 1883. -1612452520: Sending CONNACK to 172.18.0.3 (0, 5) -1612452520: Socket error on client , disconnecting. -1612452540: New connection from 172.18.0.3 on port 1883. -1612452540: Sending CONNACK to 172.18.0.3 (0, 5) -1612452540: Socket error on client , disconnecting. -1612452560: New connection from 172.18.0.3 on port 1883. -1612452560: Sending CONNACK to 172.18.0.3 (0, 5) -1612452560: Socket error on client , disconnecting. -1612452580: New connection from 172.18.0.3 on port 1883. -1612452580: Sending CONNACK to 172.18.0.3 (0, 5) -1612452580: Socket error on client , disconnecting. -1612452600: New connection from 172.18.0.3 on port 1883. -1612452600: Sending CONNACK to 172.18.0.3 (0, 5) -1612452600: Socket error on client , disconnecting. -1612452620: New connection from 172.18.0.3 on port 1883. -1612452620: Sending CONNACK to 172.18.0.3 (0, 5) -1612452620: Socket error on client , disconnecting. -1612452640: New connection from 172.18.0.3 on port 1883. -1612452640: Sending CONNACK to 172.18.0.3 (0, 5) -1612452640: Socket error on client , disconnecting. -1612452660: New connection from 172.18.0.3 on port 1883. -1612452660: Sending CONNACK to 172.18.0.3 (0, 5) -1612452660: Socket error on client , disconnecting. -1612452680: New connection from 172.18.0.3 on port 1883. -1612452680: Sending CONNACK to 172.18.0.3 (0, 5) -1612452680: Socket error on client , disconnecting. -1612452700: New connection from 172.18.0.3 on port 1883. -1612452700: Sending CONNACK to 172.18.0.3 (0, 5) -1612452700: Socket error on client , disconnecting. -1612452720: New connection from 172.18.0.3 on port 1883. -1612452720: Sending CONNACK to 172.18.0.3 (0, 5) -1612452720: Socket error on client , disconnecting. -1612452740: New connection from 172.18.0.3 on port 1883. -1612452740: Sending CONNACK to 172.18.0.3 (0, 5) -1612452740: Socket error on client , disconnecting. -1612452760: New connection from 172.18.0.3 on port 1883. -1612452760: Sending CONNACK to 172.18.0.3 (0, 5) -1612452760: Socket error on client , disconnecting. -1612452780: New connection from 172.18.0.3 on port 1883. -1612452780: Sending CONNACK to 172.18.0.3 (0, 5) -1612452780: Socket error on client , disconnecting. -1612452800: New connection from 172.18.0.3 on port 1883. -1612452800: Sending CONNACK to 172.18.0.3 (0, 5) -1612452800: Socket error on client , disconnecting. -1612452820: New connection from 172.18.0.3 on port 1883. -1612452820: Sending CONNACK to 172.18.0.3 (0, 5) -1612452820: Socket error on client , disconnecting. -1612452840: New connection from 172.18.0.3 on port 1883. -1612452840: Sending CONNACK to 172.18.0.3 (0, 5) -1612452840: Socket error on client , disconnecting. -1612452860: New connection from 172.18.0.3 on port 1883. -1612452860: Sending CONNACK to 172.18.0.3 (0, 5) -1612452860: Socket error on client , disconnecting. -1612452880: New connection from 172.18.0.3 on port 1883. -1612452880: Sending CONNACK to 172.18.0.3 (0, 5) -1612452880: Socket error on client , disconnecting. -1612452900: New connection from 172.18.0.3 on port 1883. -1612452900: Sending CONNACK to 172.18.0.3 (0, 5) -1612452900: Socket error on client , disconnecting. -1612452920: New connection from 172.18.0.3 on port 1883. -1612452920: Sending CONNACK to 172.18.0.3 (0, 5) -1612452920: Socket error on client , disconnecting. -1612452940: New connection from 172.18.0.3 on port 1883. -1612452940: Sending CONNACK to 172.18.0.3 (0, 5) -1612452940: Socket error on client , disconnecting. -1612452960: New connection from 172.18.0.3 on port 1883. -1612452960: Sending CONNACK to 172.18.0.3 (0, 5) -1612452960: Socket error on client , disconnecting. -1612452980: New connection from 172.18.0.3 on port 1883. -1612452980: Sending CONNACK to 172.18.0.3 (0, 5) -1612452980: Socket error on client , disconnecting. -1612453000: New connection from 172.18.0.3 on port 1883. -1612453000: Sending CONNACK to 172.18.0.3 (0, 5) -1612453000: Socket error on client , disconnecting. -1612453020: New connection from 172.18.0.3 on port 1883. -1612453020: Sending CONNACK to 172.18.0.3 (0, 5) -1612453020: Socket error on client , disconnecting. -1612453040: New connection from 172.18.0.3 on port 1883. -1612453040: Sending CONNACK to 172.18.0.3 (0, 5) -1612453040: Socket error on client , disconnecting. -1612453060: New connection from 172.18.0.3 on port 1883. -1612453060: Sending CONNACK to 172.18.0.3 (0, 5) -1612453060: Socket error on client , disconnecting. -1612453080: New connection from 172.18.0.3 on port 1883. -1612453080: Sending CONNACK to 172.18.0.3 (0, 5) -1612453080: Socket error on client , disconnecting. -1612453100: New connection from 172.18.0.3 on port 1883. -1612453100: Sending CONNACK to 172.18.0.3 (0, 5) -1612453100: Socket error on client , disconnecting. -1612453120: New connection from 172.18.0.3 on port 1883. -1612453120: Sending CONNACK to 172.18.0.3 (0, 5) -1612453120: Socket error on client , disconnecting. -1612453140: New connection from 172.18.0.3 on port 1883. -1612453140: Sending CONNACK to 172.18.0.3 (0, 5) -1612453140: Socket error on client , disconnecting. -1612453160: New connection from 172.18.0.3 on port 1883. -1612453160: Sending CONNACK to 172.18.0.3 (0, 5) -1612453160: Socket error on client , disconnecting. -1612453180: New connection from 172.18.0.3 on port 1883. -1612453180: Sending CONNACK to 172.18.0.3 (0, 5) -1612453180: Socket error on client , disconnecting. -1612453200: New connection from 172.18.0.3 on port 1883. -1612453200: Sending CONNACK to 172.18.0.3 (0, 5) -1612453200: Socket error on client , disconnecting. -1612453220: New connection from 172.18.0.3 on port 1883. -1612453220: Sending CONNACK to 172.18.0.3 (0, 5) -1612453220: Socket error on client , disconnecting. -1612453240: New connection from 172.18.0.3 on port 1883. -1612453240: Sending CONNACK to 172.18.0.3 (0, 5) -1612453240: Socket error on client , disconnecting. -1612453260: New connection from 172.18.0.3 on port 1883. -1612453260: Sending CONNACK to 172.18.0.3 (0, 5) -1612453260: Socket error on client , disconnecting. -1612453280: New connection from 172.18.0.3 on port 1883. -1612453280: Sending CONNACK to 172.18.0.3 (0, 5) -1612453280: Socket error on client , disconnecting. -1612453300: New connection from 172.18.0.3 on port 1883. -1612453300: Sending CONNACK to 172.18.0.3 (0, 5) -1612453300: Socket error on client , disconnecting. -1612453320: New connection from 172.18.0.3 on port 1883. -1612453320: Sending CONNACK to 172.18.0.3 (0, 5) -1612453320: Socket error on client , disconnecting. -1612453340: New connection from 172.18.0.3 on port 1883. -1612453340: Sending CONNACK to 172.18.0.3 (0, 5) -1612453340: Socket error on client , disconnecting. -1612453360: New connection from 172.18.0.3 on port 1883. -1612453360: Sending CONNACK to 172.18.0.3 (0, 5) -1612453360: Socket error on client , disconnecting. -1612453380: New connection from 172.18.0.3 on port 1883. -1612453380: Sending CONNACK to 172.18.0.3 (0, 5) -1612453380: Socket error on client , disconnecting. -1612453400: New connection from 172.18.0.3 on port 1883. -1612453400: Sending CONNACK to 172.18.0.3 (0, 5) -1612453400: Socket error on client , disconnecting. -1612453420: New connection from 172.18.0.3 on port 1883. -1612453420: Sending CONNACK to 172.18.0.3 (0, 5) -1612453420: Socket error on client , disconnecting. -1612453440: New connection from 172.18.0.3 on port 1883. -1612453440: Sending CONNACK to 172.18.0.3 (0, 5) -1612453440: Socket error on client , disconnecting. -1612453460: New connection from 172.18.0.3 on port 1883. -1612453460: Sending CONNACK to 172.18.0.3 (0, 5) -1612453460: Socket error on client , disconnecting. -1612453480: New connection from 172.18.0.3 on port 1883. -1612453480: Sending CONNACK to 172.18.0.3 (0, 5) -1612453480: Socket error on client , disconnecting. -1612453500: New connection from 172.18.0.3 on port 1883. -1612453500: Sending CONNACK to 172.18.0.3 (0, 5) -1612453500: Socket error on client , disconnecting. -1612453520: New connection from 172.18.0.3 on port 1883. -1612453520: Sending CONNACK to 172.18.0.3 (0, 5) -1612453520: Socket error on client , disconnecting. -1612453540: New connection from 172.18.0.3 on port 1883. -1612453540: Sending CONNACK to 172.18.0.3 (0, 5) -1612453540: Socket error on client , disconnecting. -1612453560: New connection from 172.18.0.3 on port 1883. -1612453560: Sending CONNACK to 172.18.0.3 (0, 5) -1612453560: Socket error on client , disconnecting. -1612453580: New connection from 172.18.0.3 on port 1883. -1612453580: Sending CONNACK to 172.18.0.3 (0, 5) -1612453580: Socket error on client , disconnecting. -1612453600: New connection from 172.18.0.3 on port 1883. -1612453600: Sending CONNACK to 172.18.0.3 (0, 5) -1612453600: Socket error on client , disconnecting. -1612453620: New connection from 172.18.0.3 on port 1883. -1612453620: Sending CONNACK to 172.18.0.3 (0, 5) -1612453620: Socket error on client , disconnecting. -1612453621: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612453621: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612453621: Error: Permission denied. -1612453640: New connection from 172.18.0.3 on port 1883. -1612453640: Sending CONNACK to 172.18.0.3 (0, 5) -1612453640: Socket error on client , disconnecting. -1612453660: New connection from 172.18.0.3 on port 1883. -1612453660: Sending CONNACK to 172.18.0.3 (0, 5) -1612453660: Socket error on client , disconnecting. -1612453680: New connection from 172.18.0.3 on port 1883. -1612453680: Sending CONNACK to 172.18.0.3 (0, 5) -1612453680: Socket error on client , disconnecting. -1612453700: New connection from 172.18.0.3 on port 1883. -1612453700: Sending CONNACK to 172.18.0.3 (0, 5) -1612453700: Socket error on client , disconnecting. -1612453720: New connection from 172.18.0.3 on port 1883. -1612453720: Sending CONNACK to 172.18.0.3 (0, 5) -1612453720: Socket error on client , disconnecting. -1612453740: New connection from 172.18.0.3 on port 1883. -1612453740: Sending CONNACK to 172.18.0.3 (0, 5) -1612453740: Socket error on client , disconnecting. -1612453760: New connection from 172.18.0.3 on port 1883. -1612453760: Sending CONNACK to 172.18.0.3 (0, 5) -1612453760: Socket error on client , disconnecting. -1612453780: New connection from 172.18.0.3 on port 1883. -1612453780: Sending CONNACK to 172.18.0.3 (0, 5) -1612453780: Socket error on client , disconnecting. -1612453800: New connection from 172.18.0.3 on port 1883. -1612453800: Sending CONNACK to 172.18.0.3 (0, 5) -1612453800: Socket error on client , disconnecting. -1612453820: New connection from 172.18.0.3 on port 1883. -1612453820: Sending CONNACK to 172.18.0.3 (0, 5) -1612453820: Socket error on client , disconnecting. -1612453840: New connection from 172.18.0.3 on port 1883. -1612453840: Sending CONNACK to 172.18.0.3 (0, 5) -1612453840: Socket error on client , disconnecting. -1612453860: New connection from 172.18.0.3 on port 1883. -1612453860: Sending CONNACK to 172.18.0.3 (0, 5) -1612453860: Socket error on client , disconnecting. -1612453880: New connection from 172.18.0.3 on port 1883. -1612453880: Sending CONNACK to 172.18.0.3 (0, 5) -1612453880: Socket error on client , disconnecting. -1612453900: New connection from 172.18.0.3 on port 1883. -1612453900: Sending CONNACK to 172.18.0.3 (0, 5) -1612453900: Socket error on client , disconnecting. -1612453920: New connection from 172.18.0.3 on port 1883. -1612453920: Sending CONNACK to 172.18.0.3 (0, 5) -1612453920: Socket error on client , disconnecting. -1612453940: New connection from 172.18.0.3 on port 1883. -1612453940: Sending CONNACK to 172.18.0.3 (0, 5) -1612453940: Socket error on client , disconnecting. -1612453960: New connection from 172.18.0.3 on port 1883. -1612453960: Sending CONNACK to 172.18.0.3 (0, 5) -1612453960: Socket error on client , disconnecting. -1612453980: New connection from 172.18.0.3 on port 1883. -1612453980: Sending CONNACK to 172.18.0.3 (0, 5) -1612453980: Socket error on client , disconnecting. -1612454000: New connection from 172.18.0.3 on port 1883. -1612454000: Sending CONNACK to 172.18.0.3 (0, 5) -1612454000: Socket error on client , disconnecting. -1612454020: New connection from 172.18.0.3 on port 1883. -1612454020: Sending CONNACK to 172.18.0.3 (0, 5) -1612454020: Socket error on client , disconnecting. -1612454040: New connection from 172.18.0.3 on port 1883. -1612454040: Sending CONNACK to 172.18.0.3 (0, 5) -1612454040: Socket error on client , disconnecting. -1612454060: New connection from 172.18.0.3 on port 1883. -1612454060: Sending CONNACK to 172.18.0.3 (0, 5) -1612454060: Socket error on client , disconnecting. -1612454080: New connection from 172.18.0.3 on port 1883. -1612454080: Sending CONNACK to 172.18.0.3 (0, 5) -1612454080: Socket error on client , disconnecting. -1612454100: New connection from 172.18.0.3 on port 1883. -1612454100: Sending CONNACK to 172.18.0.3 (0, 5) -1612454100: Socket error on client , disconnecting. -1612454120: New connection from 172.18.0.3 on port 1883. -1612454120: Sending CONNACK to 172.18.0.3 (0, 5) -1612454120: Socket error on client , disconnecting. -1612454140: New connection from 172.18.0.3 on port 1883. -1612454140: Sending CONNACK to 172.18.0.3 (0, 5) -1612454140: Socket error on client , disconnecting. -1612454160: New connection from 172.18.0.3 on port 1883. -1612454160: Sending CONNACK to 172.18.0.3 (0, 5) -1612454160: Socket error on client , disconnecting. -1612454180: New connection from 172.18.0.3 on port 1883. -1612454180: Sending CONNACK to 172.18.0.3 (0, 5) -1612454180: Socket error on client , disconnecting. -1612454200: New connection from 172.18.0.3 on port 1883. -1612454200: Sending CONNACK to 172.18.0.3 (0, 5) -1612454200: Socket error on client , disconnecting. -1612454220: New connection from 172.18.0.3 on port 1883. -1612454220: Sending CONNACK to 172.18.0.3 (0, 5) -1612454220: Socket error on client , disconnecting. -1612454240: New connection from 172.18.0.3 on port 1883. -1612454240: Sending CONNACK to 172.18.0.3 (0, 5) -1612454240: Socket error on client , disconnecting. -1612454260: New connection from 172.18.0.3 on port 1883. -1612454260: Sending CONNACK to 172.18.0.3 (0, 5) -1612454260: Socket error on client , disconnecting. -1612454280: New connection from 172.18.0.3 on port 1883. -1612454280: Sending CONNACK to 172.18.0.3 (0, 5) -1612454280: Socket error on client , disconnecting. -1612454300: New connection from 172.18.0.3 on port 1883. -1612454300: Sending CONNACK to 172.18.0.3 (0, 5) -1612454300: Socket error on client , disconnecting. -1612454320: New connection from 172.18.0.3 on port 1883. -1612454320: Sending CONNACK to 172.18.0.3 (0, 5) -1612454320: Socket error on client , disconnecting. -1612454340: New connection from 172.18.0.3 on port 1883. -1612454340: Sending CONNACK to 172.18.0.3 (0, 5) -1612454340: Socket error on client , disconnecting. -1612454360: New connection from 172.18.0.3 on port 1883. -1612454360: Sending CONNACK to 172.18.0.3 (0, 5) -1612454360: Socket error on client , disconnecting. -1612454380: New connection from 172.18.0.3 on port 1883. -1612454380: Sending CONNACK to 172.18.0.3 (0, 5) -1612454380: Socket error on client , disconnecting. -1612454400: New connection from 172.18.0.3 on port 1883. -1612454400: Sending CONNACK to 172.18.0.3 (0, 5) -1612454400: Socket error on client , disconnecting. -1612454420: New connection from 172.18.0.3 on port 1883. -1612454420: Sending CONNACK to 172.18.0.3 (0, 5) -1612454420: Socket error on client , disconnecting. -1612454440: New connection from 172.18.0.3 on port 1883. -1612454440: Sending CONNACK to 172.18.0.3 (0, 5) -1612454440: Socket error on client , disconnecting. -1612454460: New connection from 172.18.0.3 on port 1883. -1612454460: Sending CONNACK to 172.18.0.3 (0, 5) -1612454460: Socket error on client , disconnecting. -1612454480: New connection from 172.18.0.3 on port 1883. -1612454480: Sending CONNACK to 172.18.0.3 (0, 5) -1612454480: Socket error on client , disconnecting. -1612454500: New connection from 172.18.0.3 on port 1883. -1612454500: Sending CONNACK to 172.18.0.3 (0, 5) -1612454500: Socket error on client , disconnecting. -1612454520: New connection from 172.18.0.3 on port 1883. -1612454520: Sending CONNACK to 172.18.0.3 (0, 5) -1612454520: Socket error on client , disconnecting. -1612454540: New connection from 172.18.0.3 on port 1883. -1612454540: Sending CONNACK to 172.18.0.3 (0, 5) -1612454540: Socket error on client , disconnecting. -1612454560: New connection from 172.18.0.3 on port 1883. -1612454560: Sending CONNACK to 172.18.0.3 (0, 5) -1612454560: Socket error on client , disconnecting. -1612454580: New connection from 172.18.0.3 on port 1883. -1612454580: Sending CONNACK to 172.18.0.3 (0, 5) -1612454580: Socket error on client , disconnecting. -1612454600: New connection from 172.18.0.3 on port 1883. -1612454600: Sending CONNACK to 172.18.0.3 (0, 5) -1612454600: Socket error on client , disconnecting. -1612454620: New connection from 172.18.0.3 on port 1883. -1612454620: Sending CONNACK to 172.18.0.3 (0, 5) -1612454620: Socket error on client , disconnecting. -1612454640: New connection from 172.18.0.3 on port 1883. -1612454640: Sending CONNACK to 172.18.0.3 (0, 5) -1612454640: Socket error on client , disconnecting. -1612454660: New connection from 172.18.0.3 on port 1883. -1612454660: Sending CONNACK to 172.18.0.3 (0, 5) -1612454660: Socket error on client , disconnecting. -1612454680: New connection from 172.18.0.3 on port 1883. -1612454680: Sending CONNACK to 172.18.0.3 (0, 5) -1612454680: Socket error on client , disconnecting. -1612454700: New connection from 172.18.0.3 on port 1883. -1612454700: Sending CONNACK to 172.18.0.3 (0, 5) -1612454700: Socket error on client , disconnecting. -1612454720: New connection from 172.18.0.3 on port 1883. -1612454720: Sending CONNACK to 172.18.0.3 (0, 5) -1612454720: Socket error on client , disconnecting. -1612454740: New connection from 172.18.0.3 on port 1883. -1612454740: Sending CONNACK to 172.18.0.3 (0, 5) -1612454740: Socket error on client , disconnecting. -1612454760: New connection from 172.18.0.3 on port 1883. -1612454760: Sending CONNACK to 172.18.0.3 (0, 5) -1612454760: Socket error on client , disconnecting. -1612454780: New connection from 172.18.0.3 on port 1883. -1612454780: Sending CONNACK to 172.18.0.3 (0, 5) -1612454780: Socket error on client , disconnecting. -1612454800: New connection from 172.18.0.3 on port 1883. -1612454800: Sending CONNACK to 172.18.0.3 (0, 5) -1612454800: Socket error on client , disconnecting. -1612454820: New connection from 172.18.0.3 on port 1883. -1612454820: Sending CONNACK to 172.18.0.3 (0, 5) -1612454820: Socket error on client , disconnecting. -1612454840: New connection from 172.18.0.3 on port 1883. -1612454840: Sending CONNACK to 172.18.0.3 (0, 5) -1612454840: Socket error on client , disconnecting. -1612454860: New connection from 172.18.0.3 on port 1883. -1612454860: Sending CONNACK to 172.18.0.3 (0, 5) -1612454860: Socket error on client , disconnecting. -1612454880: New connection from 172.18.0.3 on port 1883. -1612454880: Sending CONNACK to 172.18.0.3 (0, 5) -1612454880: Socket error on client , disconnecting. -1612454900: New connection from 172.18.0.3 on port 1883. -1612454900: Sending CONNACK to 172.18.0.3 (0, 5) -1612454900: Socket error on client , disconnecting. -1612454920: New connection from 172.18.0.3 on port 1883. -1612454920: Sending CONNACK to 172.18.0.3 (0, 5) -1612454920: Socket error on client , disconnecting. -1612454940: New connection from 172.18.0.3 on port 1883. -1612454940: Sending CONNACK to 172.18.0.3 (0, 5) -1612454940: Socket error on client , disconnecting. -1612454960: New connection from 172.18.0.3 on port 1883. -1612454960: Sending CONNACK to 172.18.0.3 (0, 5) -1612454960: Socket error on client , disconnecting. -1612454980: New connection from 172.18.0.3 on port 1883. -1612454980: Sending CONNACK to 172.18.0.3 (0, 5) -1612454980: Socket error on client , disconnecting. -1612455000: New connection from 172.18.0.3 on port 1883. -1612455000: Sending CONNACK to 172.18.0.3 (0, 5) -1612455000: Socket error on client , disconnecting. -1612455020: New connection from 172.18.0.3 on port 1883. -1612455020: Sending CONNACK to 172.18.0.3 (0, 5) -1612455020: Socket error on client , disconnecting. -1612455040: New connection from 172.18.0.3 on port 1883. -1612455040: Sending CONNACK to 172.18.0.3 (0, 5) -1612455040: Socket error on client , disconnecting. -1612455060: New connection from 172.18.0.3 on port 1883. -1612455060: Sending CONNACK to 172.18.0.3 (0, 5) -1612455060: Socket error on client , disconnecting. -1612455080: New connection from 172.18.0.3 on port 1883. -1612455080: Sending CONNACK to 172.18.0.3 (0, 5) -1612455080: Socket error on client , disconnecting. -1612455100: New connection from 172.18.0.3 on port 1883. -1612455100: Sending CONNACK to 172.18.0.3 (0, 5) -1612455100: Socket error on client , disconnecting. -1612455120: New connection from 172.18.0.3 on port 1883. -1612455120: Sending CONNACK to 172.18.0.3 (0, 5) -1612455120: Socket error on client , disconnecting. -1612455140: New connection from 172.18.0.3 on port 1883. -1612455140: Sending CONNACK to 172.18.0.3 (0, 5) -1612455140: Socket error on client , disconnecting. -1612455160: New connection from 172.18.0.3 on port 1883. -1612455160: Sending CONNACK to 172.18.0.3 (0, 5) -1612455160: Socket error on client , disconnecting. -1612455180: New connection from 172.18.0.3 on port 1883. -1612455180: Sending CONNACK to 172.18.0.3 (0, 5) -1612455180: Socket error on client , disconnecting. -1612455200: New connection from 172.18.0.3 on port 1883. -1612455200: Sending CONNACK to 172.18.0.3 (0, 5) -1612455200: Socket error on client , disconnecting. -1612455220: New connection from 172.18.0.3 on port 1883. -1612455220: Sending CONNACK to 172.18.0.3 (0, 5) -1612455220: Socket error on client , disconnecting. -1612455240: New connection from 172.18.0.3 on port 1883. -1612455240: Sending CONNACK to 172.18.0.3 (0, 5) -1612455240: Socket error on client , disconnecting. -1612455260: New connection from 172.18.0.3 on port 1883. -1612455260: Sending CONNACK to 172.18.0.3 (0, 5) -1612455260: Socket error on client , disconnecting. -1612455280: New connection from 172.18.0.3 on port 1883. -1612455280: Sending CONNACK to 172.18.0.3 (0, 5) -1612455280: Socket error on client , disconnecting. -1612455300: New connection from 172.18.0.3 on port 1883. -1612455300: Sending CONNACK to 172.18.0.3 (0, 5) -1612455300: Socket error on client , disconnecting. -1612455320: New connection from 172.18.0.3 on port 1883. -1612455320: Sending CONNACK to 172.18.0.3 (0, 5) -1612455320: Socket error on client , disconnecting. -1612455340: New connection from 172.18.0.3 on port 1883. -1612455340: Sending CONNACK to 172.18.0.3 (0, 5) -1612455340: Socket error on client , disconnecting. -1612455360: New connection from 172.18.0.3 on port 1883. -1612455360: Sending CONNACK to 172.18.0.3 (0, 5) -1612455360: Socket error on client , disconnecting. -1612455380: New connection from 172.18.0.3 on port 1883. -1612455380: Sending CONNACK to 172.18.0.3 (0, 5) -1612455380: Socket error on client , disconnecting. -1612455400: New connection from 172.18.0.3 on port 1883. -1612455400: Sending CONNACK to 172.18.0.3 (0, 5) -1612455400: Socket error on client , disconnecting. -1612455420: New connection from 172.18.0.3 on port 1883. -1612455420: Sending CONNACK to 172.18.0.3 (0, 5) -1612455420: Socket error on client , disconnecting. -1612455422: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612455422: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612455422: Error: Permission denied. -1612455440: New connection from 172.18.0.3 on port 1883. -1612455440: Sending CONNACK to 172.18.0.3 (0, 5) -1612455440: Socket error on client , disconnecting. -1612455460: New connection from 172.18.0.3 on port 1883. -1612455460: Sending CONNACK to 172.18.0.3 (0, 5) -1612455460: Socket error on client , disconnecting. -1612455480: New connection from 172.18.0.3 on port 1883. -1612455480: Sending CONNACK to 172.18.0.3 (0, 5) -1612455480: Socket error on client , disconnecting. -1612455500: New connection from 172.18.0.3 on port 1883. -1612455500: Sending CONNACK to 172.18.0.3 (0, 5) -1612455500: Socket error on client , disconnecting. -1612455520: New connection from 172.18.0.3 on port 1883. -1612455520: Sending CONNACK to 172.18.0.3 (0, 5) -1612455520: Socket error on client , disconnecting. -1612455540: New connection from 172.18.0.3 on port 1883. -1612455540: Sending CONNACK to 172.18.0.3 (0, 5) -1612455540: Socket error on client , disconnecting. -1612455560: New connection from 172.18.0.3 on port 1883. -1612455560: Sending CONNACK to 172.18.0.3 (0, 5) -1612455560: Socket error on client , disconnecting. -1612455580: New connection from 172.18.0.3 on port 1883. -1612455580: Sending CONNACK to 172.18.0.3 (0, 5) -1612455580: Socket error on client , disconnecting. -1612455600: New connection from 172.18.0.3 on port 1883. -1612455600: Sending CONNACK to 172.18.0.3 (0, 5) -1612455600: Socket error on client , disconnecting. -1612455620: New connection from 172.18.0.3 on port 1883. -1612455620: Sending CONNACK to 172.18.0.3 (0, 5) -1612455620: Socket error on client , disconnecting. -1612455640: New connection from 172.18.0.3 on port 1883. -1612455640: Sending CONNACK to 172.18.0.3 (0, 5) -1612455640: Socket error on client , disconnecting. -1612455660: New connection from 172.18.0.3 on port 1883. -1612455660: Sending CONNACK to 172.18.0.3 (0, 5) -1612455660: Socket error on client , disconnecting. -1612455680: New connection from 172.18.0.3 on port 1883. -1612455680: Sending CONNACK to 172.18.0.3 (0, 5) -1612455680: Socket error on client , disconnecting. -1612455700: New connection from 172.18.0.3 on port 1883. -1612455700: Sending CONNACK to 172.18.0.3 (0, 5) -1612455700: Socket error on client , disconnecting. -1612455720: New connection from 172.18.0.3 on port 1883. -1612455720: Sending CONNACK to 172.18.0.3 (0, 5) -1612455720: Socket error on client , disconnecting. -1612455740: New connection from 172.18.0.3 on port 1883. -1612455740: Sending CONNACK to 172.18.0.3 (0, 5) -1612455740: Socket error on client , disconnecting. -1612455760: New connection from 172.18.0.3 on port 1883. -1612455760: Sending CONNACK to 172.18.0.3 (0, 5) -1612455760: Socket error on client , disconnecting. -1612455780: New connection from 172.18.0.3 on port 1883. -1612455780: Sending CONNACK to 172.18.0.3 (0, 5) -1612455780: Socket error on client , disconnecting. -1612455800: New connection from 172.18.0.3 on port 1883. -1612455800: Sending CONNACK to 172.18.0.3 (0, 5) -1612455800: Socket error on client , disconnecting. -1612455820: New connection from 172.18.0.3 on port 1883. -1612455820: Sending CONNACK to 172.18.0.3 (0, 5) -1612455820: Socket error on client , disconnecting. -1612455840: New connection from 172.18.0.3 on port 1883. -1612455840: Sending CONNACK to 172.18.0.3 (0, 5) -1612455840: Socket error on client , disconnecting. -1612455860: New connection from 172.18.0.3 on port 1883. -1612455860: Sending CONNACK to 172.18.0.3 (0, 5) -1612455860: Socket error on client , disconnecting. -1612455880: New connection from 172.18.0.3 on port 1883. -1612455880: Sending CONNACK to 172.18.0.3 (0, 5) -1612455880: Socket error on client , disconnecting. -1612455900: New connection from 172.18.0.3 on port 1883. -1612455900: Sending CONNACK to 172.18.0.3 (0, 5) -1612455900: Socket error on client , disconnecting. -1612455920: New connection from 172.18.0.3 on port 1883. -1612455920: Sending CONNACK to 172.18.0.3 (0, 5) -1612455920: Socket error on client , disconnecting. -1612455940: New connection from 172.18.0.3 on port 1883. -1612455940: Sending CONNACK to 172.18.0.3 (0, 5) -1612455940: Socket error on client , disconnecting. -1612455960: New connection from 172.18.0.3 on port 1883. -1612455960: Sending CONNACK to 172.18.0.3 (0, 5) -1612455960: Socket error on client , disconnecting. -1612455980: New connection from 172.18.0.3 on port 1883. -1612455980: Sending CONNACK to 172.18.0.3 (0, 5) -1612455980: Socket error on client , disconnecting. -1612456000: New connection from 172.18.0.3 on port 1883. -1612456000: Sending CONNACK to 172.18.0.3 (0, 5) -1612456000: Socket error on client , disconnecting. -1612456020: New connection from 172.18.0.3 on port 1883. -1612456020: Sending CONNACK to 172.18.0.3 (0, 5) -1612456020: Socket error on client , disconnecting. -1612456040: New connection from 172.18.0.3 on port 1883. -1612456040: Sending CONNACK to 172.18.0.3 (0, 5) -1612456040: Socket error on client , disconnecting. -1612456060: New connection from 172.18.0.3 on port 1883. -1612456060: Sending CONNACK to 172.18.0.3 (0, 5) -1612456060: Socket error on client , disconnecting. -1612456080: New connection from 172.18.0.3 on port 1883. -1612456080: Sending CONNACK to 172.18.0.3 (0, 5) -1612456080: Socket error on client , disconnecting. -1612456100: New connection from 172.18.0.3 on port 1883. -1612456100: Sending CONNACK to 172.18.0.3 (0, 5) -1612456100: Socket error on client , disconnecting. -1612456120: New connection from 172.18.0.3 on port 1883. -1612456120: Sending CONNACK to 172.18.0.3 (0, 5) -1612456120: Socket error on client , disconnecting. -1612456140: New connection from 172.18.0.3 on port 1883. -1612456140: Sending CONNACK to 172.18.0.3 (0, 5) -1612456140: Socket error on client , disconnecting. -1612456160: New connection from 172.18.0.3 on port 1883. -1612456160: Sending CONNACK to 172.18.0.3 (0, 5) -1612456160: Socket error on client , disconnecting. -1612456180: New connection from 172.18.0.3 on port 1883. -1612456180: Sending CONNACK to 172.18.0.3 (0, 5) -1612456180: Socket error on client , disconnecting. -1612456200: New connection from 172.18.0.3 on port 1883. -1612456200: Sending CONNACK to 172.18.0.3 (0, 5) -1612456200: Socket error on client , disconnecting. -1612456220: New connection from 172.18.0.3 on port 1883. -1612456220: Sending CONNACK to 172.18.0.3 (0, 5) -1612456220: Socket error on client , disconnecting. -1612456240: New connection from 172.18.0.3 on port 1883. -1612456240: Sending CONNACK to 172.18.0.3 (0, 5) -1612456240: Socket error on client , disconnecting. -1612456260: New connection from 172.18.0.3 on port 1883. -1612456260: Sending CONNACK to 172.18.0.3 (0, 5) -1612456260: Socket error on client , disconnecting. -1612456280: New connection from 172.18.0.3 on port 1883. -1612456280: Sending CONNACK to 172.18.0.3 (0, 5) -1612456280: Socket error on client , disconnecting. -1612456300: New connection from 172.18.0.3 on port 1883. -1612456300: Sending CONNACK to 172.18.0.3 (0, 5) -1612456300: Socket error on client , disconnecting. -1612456320: New connection from 172.18.0.3 on port 1883. -1612456320: Sending CONNACK to 172.18.0.3 (0, 5) -1612456320: Socket error on client , disconnecting. -1612456340: New connection from 172.18.0.3 on port 1883. -1612456340: Sending CONNACK to 172.18.0.3 (0, 5) -1612456340: Socket error on client , disconnecting. -1612456360: New connection from 172.18.0.3 on port 1883. -1612456360: Sending CONNACK to 172.18.0.3 (0, 5) -1612456360: Socket error on client , disconnecting. -1612456380: New connection from 172.18.0.3 on port 1883. -1612456380: Sending CONNACK to 172.18.0.3 (0, 5) -1612456380: Socket error on client , disconnecting. -1612456400: New connection from 172.18.0.3 on port 1883. -1612456400: Sending CONNACK to 172.18.0.3 (0, 5) -1612456400: Socket error on client , disconnecting. -1612456420: New connection from 172.18.0.3 on port 1883. -1612456420: Sending CONNACK to 172.18.0.3 (0, 5) -1612456420: Socket error on client , disconnecting. -1612456440: New connection from 172.18.0.3 on port 1883. -1612456440: Sending CONNACK to 172.18.0.3 (0, 5) -1612456440: Socket error on client , disconnecting. -1612456460: New connection from 172.18.0.3 on port 1883. -1612456460: Sending CONNACK to 172.18.0.3 (0, 5) -1612456460: Socket error on client , disconnecting. -1612456480: New connection from 172.18.0.3 on port 1883. -1612456480: Sending CONNACK to 172.18.0.3 (0, 5) -1612456480: Socket error on client , disconnecting. -1612456500: New connection from 172.18.0.3 on port 1883. -1612456500: Sending CONNACK to 172.18.0.3 (0, 5) -1612456500: Socket error on client , disconnecting. -1612456520: New connection from 172.18.0.3 on port 1883. -1612456520: Sending CONNACK to 172.18.0.3 (0, 5) -1612456520: Socket error on client , disconnecting. -1612456540: New connection from 172.18.0.3 on port 1883. -1612456540: Sending CONNACK to 172.18.0.3 (0, 5) -1612456540: Socket error on client , disconnecting. -1612456560: New connection from 172.18.0.3 on port 1883. -1612456560: Sending CONNACK to 172.18.0.3 (0, 5) -1612456560: Socket error on client , disconnecting. -1612456580: New connection from 172.18.0.3 on port 1883. -1612456580: Sending CONNACK to 172.18.0.3 (0, 5) -1612456580: Socket error on client , disconnecting. -1612456600: New connection from 172.18.0.3 on port 1883. -1612456600: Sending CONNACK to 172.18.0.3 (0, 5) -1612456600: Socket error on client , disconnecting. -1612456620: New connection from 172.18.0.3 on port 1883. -1612456620: Sending CONNACK to 172.18.0.3 (0, 5) -1612456620: Socket error on client , disconnecting. -1612456640: New connection from 172.18.0.3 on port 1883. -1612456640: Sending CONNACK to 172.18.0.3 (0, 5) -1612456640: Socket error on client , disconnecting. -1612456660: New connection from 172.18.0.3 on port 1883. -1612456660: Sending CONNACK to 172.18.0.3 (0, 5) -1612456660: Socket error on client , disconnecting. -1612456680: New connection from 172.18.0.3 on port 1883. -1612456680: Sending CONNACK to 172.18.0.3 (0, 5) -1612456680: Socket error on client , disconnecting. -1612456700: New connection from 172.18.0.3 on port 1883. -1612456700: Sending CONNACK to 172.18.0.3 (0, 5) -1612456700: Socket error on client , disconnecting. -1612456720: New connection from 172.18.0.3 on port 1883. -1612456720: Sending CONNACK to 172.18.0.3 (0, 5) -1612456720: Socket error on client , disconnecting. -1612456740: New connection from 172.18.0.3 on port 1883. -1612456740: Sending CONNACK to 172.18.0.3 (0, 5) -1612456740: Socket error on client , disconnecting. -1612456760: New connection from 172.18.0.3 on port 1883. -1612456760: Sending CONNACK to 172.18.0.3 (0, 5) -1612456760: Socket error on client , disconnecting. -1612456780: New connection from 172.18.0.3 on port 1883. -1612456780: Sending CONNACK to 172.18.0.3 (0, 5) -1612456780: Socket error on client , disconnecting. -1612456800: New connection from 172.18.0.3 on port 1883. -1612456800: Sending CONNACK to 172.18.0.3 (0, 5) -1612456800: Socket error on client , disconnecting. -1612456820: New connection from 172.18.0.3 on port 1883. -1612456820: Sending CONNACK to 172.18.0.3 (0, 5) -1612456820: Socket error on client , disconnecting. -1612456840: New connection from 172.18.0.3 on port 1883. -1612456840: Sending CONNACK to 172.18.0.3 (0, 5) -1612456840: Socket error on client , disconnecting. -1612456860: New connection from 172.18.0.3 on port 1883. -1612456860: Sending CONNACK to 172.18.0.3 (0, 5) -1612456860: Socket error on client , disconnecting. -1612456880: New connection from 172.18.0.3 on port 1883. -1612456880: Sending CONNACK to 172.18.0.3 (0, 5) -1612456880: Socket error on client , disconnecting. -1612456900: New connection from 172.18.0.3 on port 1883. -1612456900: Sending CONNACK to 172.18.0.3 (0, 5) -1612456900: Socket error on client , disconnecting. -1612456920: New connection from 172.18.0.3 on port 1883. -1612456920: Sending CONNACK to 172.18.0.3 (0, 5) -1612456920: Socket error on client , disconnecting. -1612456940: New connection from 172.18.0.3 on port 1883. -1612456940: Sending CONNACK to 172.18.0.3 (0, 5) -1612456940: Socket error on client , disconnecting. -1612456960: New connection from 172.18.0.3 on port 1883. -1612456960: Sending CONNACK to 172.18.0.3 (0, 5) -1612456960: Socket error on client , disconnecting. -1612456980: New connection from 172.18.0.3 on port 1883. -1612456980: Sending CONNACK to 172.18.0.3 (0, 5) -1612456980: Socket error on client , disconnecting. -1612457000: New connection from 172.18.0.3 on port 1883. -1612457000: Sending CONNACK to 172.18.0.3 (0, 5) -1612457000: Socket error on client , disconnecting. -1612457020: New connection from 172.18.0.3 on port 1883. -1612457020: Sending CONNACK to 172.18.0.3 (0, 5) -1612457020: Socket error on client , disconnecting. -1612457040: New connection from 172.18.0.3 on port 1883. -1612457040: Sending CONNACK to 172.18.0.3 (0, 5) -1612457040: Socket error on client , disconnecting. -1612457060: New connection from 172.18.0.3 on port 1883. -1612457060: Sending CONNACK to 172.18.0.3 (0, 5) -1612457060: Socket error on client , disconnecting. -1612457080: New connection from 172.18.0.3 on port 1883. -1612457080: Sending CONNACK to 172.18.0.3 (0, 5) -1612457080: Socket error on client , disconnecting. -1612457100: New connection from 172.18.0.3 on port 1883. -1612457100: Sending CONNACK to 172.18.0.3 (0, 5) -1612457100: Socket error on client , disconnecting. -1612457120: New connection from 172.18.0.3 on port 1883. -1612457120: Sending CONNACK to 172.18.0.3 (0, 5) -1612457120: Socket error on client , disconnecting. -1612457140: New connection from 172.18.0.3 on port 1883. -1612457140: Sending CONNACK to 172.18.0.3 (0, 5) -1612457140: Socket error on client , disconnecting. -1612457160: New connection from 172.18.0.3 on port 1883. -1612457160: Sending CONNACK to 172.18.0.3 (0, 5) -1612457160: Socket error on client , disconnecting. -1612457180: New connection from 172.18.0.3 on port 1883. -1612457180: Sending CONNACK to 172.18.0.3 (0, 5) -1612457180: Socket error on client , disconnecting. -1612457200: New connection from 172.18.0.3 on port 1883. -1612457200: Sending CONNACK to 172.18.0.3 (0, 5) -1612457200: Socket error on client , disconnecting. -1612457220: New connection from 172.18.0.3 on port 1883. -1612457220: Sending CONNACK to 172.18.0.3 (0, 5) -1612457220: Socket error on client , disconnecting. -1612457223: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612457223: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612457223: Error: Permission denied. -1612457240: New connection from 172.18.0.3 on port 1883. -1612457240: Sending CONNACK to 172.18.0.3 (0, 5) -1612457240: Socket error on client , disconnecting. -1612457260: New connection from 172.18.0.3 on port 1883. -1612457260: Sending CONNACK to 172.18.0.3 (0, 5) -1612457260: Socket error on client , disconnecting. -1612457280: New connection from 172.18.0.3 on port 1883. -1612457280: Sending CONNACK to 172.18.0.3 (0, 5) -1612457280: Socket error on client , disconnecting. -1612457300: New connection from 172.18.0.3 on port 1883. -1612457300: Sending CONNACK to 172.18.0.3 (0, 5) -1612457300: Socket error on client , disconnecting. -1612457320: New connection from 172.18.0.3 on port 1883. -1612457320: Sending CONNACK to 172.18.0.3 (0, 5) -1612457320: Socket error on client , disconnecting. -1612457340: New connection from 172.18.0.3 on port 1883. -1612457340: Sending CONNACK to 172.18.0.3 (0, 5) -1612457340: Socket error on client , disconnecting. -1612457360: New connection from 172.18.0.3 on port 1883. -1612457360: Sending CONNACK to 172.18.0.3 (0, 5) -1612457360: Socket error on client , disconnecting. -1612457380: New connection from 172.18.0.3 on port 1883. -1612457380: Sending CONNACK to 172.18.0.3 (0, 5) -1612457380: Socket error on client , disconnecting. -1612457400: New connection from 172.18.0.3 on port 1883. -1612457400: Sending CONNACK to 172.18.0.3 (0, 5) -1612457400: Socket error on client , disconnecting. -1612457420: New connection from 172.18.0.3 on port 1883. -1612457420: Sending CONNACK to 172.18.0.3 (0, 5) -1612457420: Socket error on client , disconnecting. -1612457440: New connection from 172.18.0.3 on port 1883. -1612457440: Sending CONNACK to 172.18.0.3 (0, 5) -1612457440: Socket error on client , disconnecting. -1612457460: New connection from 172.18.0.3 on port 1883. -1612457460: Sending CONNACK to 172.18.0.3 (0, 5) -1612457460: Socket error on client , disconnecting. -1612457480: New connection from 172.18.0.3 on port 1883. -1612457480: Sending CONNACK to 172.18.0.3 (0, 5) -1612457480: Socket error on client , disconnecting. -1612457500: New connection from 172.18.0.3 on port 1883. -1612457500: Sending CONNACK to 172.18.0.3 (0, 5) -1612457500: Socket error on client , disconnecting. -1612457520: New connection from 172.18.0.3 on port 1883. -1612457520: Sending CONNACK to 172.18.0.3 (0, 5) -1612457520: Socket error on client , disconnecting. -1612457540: New connection from 172.18.0.3 on port 1883. -1612457540: Sending CONNACK to 172.18.0.3 (0, 5) -1612457540: Socket error on client , disconnecting. -1612457560: New connection from 172.18.0.3 on port 1883. -1612457560: Sending CONNACK to 172.18.0.3 (0, 5) -1612457560: Socket error on client , disconnecting. -1612457580: New connection from 172.18.0.3 on port 1883. -1612457580: Sending CONNACK to 172.18.0.3 (0, 5) -1612457580: Socket error on client , disconnecting. -1612457600: New connection from 172.18.0.3 on port 1883. -1612457600: Sending CONNACK to 172.18.0.3 (0, 5) -1612457600: Socket error on client , disconnecting. -1612457620: New connection from 172.18.0.3 on port 1883. -1612457620: Sending CONNACK to 172.18.0.3 (0, 5) -1612457620: Socket error on client , disconnecting. -1612457640: New connection from 172.18.0.3 on port 1883. -1612457640: Sending CONNACK to 172.18.0.3 (0, 5) -1612457640: Socket error on client , disconnecting. -1612457660: New connection from 172.18.0.3 on port 1883. -1612457660: Sending CONNACK to 172.18.0.3 (0, 5) -1612457660: Socket error on client , disconnecting. -1612457680: New connection from 172.18.0.3 on port 1883. -1612457680: Sending CONNACK to 172.18.0.3 (0, 5) -1612457680: Socket error on client , disconnecting. -1612457700: New connection from 172.18.0.3 on port 1883. -1612457700: Sending CONNACK to 172.18.0.3 (0, 5) -1612457700: Socket error on client , disconnecting. -1612457720: New connection from 172.18.0.3 on port 1883. -1612457720: Sending CONNACK to 172.18.0.3 (0, 5) -1612457720: Socket error on client , disconnecting. -1612457740: New connection from 172.18.0.3 on port 1883. -1612457740: Sending CONNACK to 172.18.0.3 (0, 5) -1612457740: Socket error on client , disconnecting. -1612457760: New connection from 172.18.0.3 on port 1883. -1612457760: Sending CONNACK to 172.18.0.3 (0, 5) -1612457760: Socket error on client , disconnecting. -1612457780: New connection from 172.18.0.3 on port 1883. -1612457780: Sending CONNACK to 172.18.0.3 (0, 5) -1612457780: Socket error on client , disconnecting. -1612457800: New connection from 172.18.0.3 on port 1883. -1612457800: Sending CONNACK to 172.18.0.3 (0, 5) -1612457800: Socket error on client , disconnecting. -1612457820: New connection from 172.18.0.3 on port 1883. -1612457820: Sending CONNACK to 172.18.0.3 (0, 5) -1612457820: Socket error on client , disconnecting. -1612457840: New connection from 172.18.0.3 on port 1883. -1612457840: Sending CONNACK to 172.18.0.3 (0, 5) -1612457840: Socket error on client , disconnecting. -1612457860: New connection from 172.18.0.3 on port 1883. -1612457860: Sending CONNACK to 172.18.0.3 (0, 5) -1612457860: Socket error on client , disconnecting. -1612457880: New connection from 172.18.0.3 on port 1883. -1612457880: Sending CONNACK to 172.18.0.3 (0, 5) -1612457880: Socket error on client , disconnecting. -1612457900: New connection from 172.18.0.3 on port 1883. -1612457900: Sending CONNACK to 172.18.0.3 (0, 5) -1612457900: Socket error on client , disconnecting. -1612457920: New connection from 172.18.0.3 on port 1883. -1612457920: Sending CONNACK to 172.18.0.3 (0, 5) -1612457920: Socket error on client , disconnecting. -1612457940: New connection from 172.18.0.3 on port 1883. -1612457940: Sending CONNACK to 172.18.0.3 (0, 5) -1612457940: Socket error on client , disconnecting. -1612457960: New connection from 172.18.0.3 on port 1883. -1612457960: Sending CONNACK to 172.18.0.3 (0, 5) -1612457960: Socket error on client , disconnecting. -1612457980: New connection from 172.18.0.3 on port 1883. -1612457980: Sending CONNACK to 172.18.0.3 (0, 5) -1612457980: Socket error on client , disconnecting. -1612458000: New connection from 172.18.0.3 on port 1883. -1612458000: Sending CONNACK to 172.18.0.3 (0, 5) -1612458000: Socket error on client , disconnecting. -1612458020: New connection from 172.18.0.3 on port 1883. -1612458020: Sending CONNACK to 172.18.0.3 (0, 5) -1612458020: Socket error on client , disconnecting. -1612458040: New connection from 172.18.0.3 on port 1883. -1612458040: Sending CONNACK to 172.18.0.3 (0, 5) -1612458040: Socket error on client , disconnecting. -1612458060: New connection from 172.18.0.3 on port 1883. -1612458060: Sending CONNACK to 172.18.0.3 (0, 5) -1612458060: Socket error on client , disconnecting. -1612458080: New connection from 172.18.0.3 on port 1883. -1612458080: Sending CONNACK to 172.18.0.3 (0, 5) -1612458080: Socket error on client , disconnecting. -1612458100: New connection from 172.18.0.3 on port 1883. -1612458100: Sending CONNACK to 172.18.0.3 (0, 5) -1612458100: Socket error on client , disconnecting. -1612458120: New connection from 172.18.0.3 on port 1883. -1612458120: Sending CONNACK to 172.18.0.3 (0, 5) -1612458120: Socket error on client , disconnecting. -1612458140: New connection from 172.18.0.3 on port 1883. -1612458140: Sending CONNACK to 172.18.0.3 (0, 5) -1612458140: Socket error on client , disconnecting. -1612458160: New connection from 172.18.0.3 on port 1883. -1612458160: Sending CONNACK to 172.18.0.3 (0, 5) -1612458160: Socket error on client , disconnecting. -1612458180: New connection from 172.18.0.3 on port 1883. -1612458180: Sending CONNACK to 172.18.0.3 (0, 5) -1612458180: Socket error on client , disconnecting. -1612458200: New connection from 172.18.0.3 on port 1883. -1612458200: Sending CONNACK to 172.18.0.3 (0, 5) -1612458200: Socket error on client , disconnecting. -1612458220: New connection from 172.18.0.3 on port 1883. -1612458220: Sending CONNACK to 172.18.0.3 (0, 5) -1612458220: Socket error on client , disconnecting. -1612458240: New connection from 172.18.0.3 on port 1883. -1612458240: Sending CONNACK to 172.18.0.3 (0, 5) -1612458240: Socket error on client , disconnecting. -1612458260: New connection from 172.18.0.3 on port 1883. -1612458260: Sending CONNACK to 172.18.0.3 (0, 5) -1612458260: Socket error on client , disconnecting. -1612458280: New connection from 172.18.0.3 on port 1883. -1612458280: Sending CONNACK to 172.18.0.3 (0, 5) -1612458280: Socket error on client , disconnecting. -1612458300: New connection from 172.18.0.3 on port 1883. -1612458300: Sending CONNACK to 172.18.0.3 (0, 5) -1612458300: Socket error on client , disconnecting. -1612458320: New connection from 172.18.0.3 on port 1883. -1612458320: Sending CONNACK to 172.18.0.3 (0, 5) -1612458320: Socket error on client , disconnecting. -1612458340: New connection from 172.18.0.3 on port 1883. -1612458340: Sending CONNACK to 172.18.0.3 (0, 5) -1612458340: Socket error on client , disconnecting. -1612458360: New connection from 172.18.0.3 on port 1883. -1612458360: Sending CONNACK to 172.18.0.3 (0, 5) -1612458360: Socket error on client , disconnecting. -1612458380: New connection from 172.18.0.3 on port 1883. -1612458380: Sending CONNACK to 172.18.0.3 (0, 5) -1612458380: Socket error on client , disconnecting. -1612458400: New connection from 172.18.0.3 on port 1883. -1612458400: Sending CONNACK to 172.18.0.3 (0, 5) -1612458400: Socket error on client , disconnecting. -1612458420: New connection from 172.18.0.3 on port 1883. -1612458420: Sending CONNACK to 172.18.0.3 (0, 5) -1612458420: Socket error on client , disconnecting. -1612458440: New connection from 172.18.0.3 on port 1883. -1612458440: Sending CONNACK to 172.18.0.3 (0, 5) -1612458440: Socket error on client , disconnecting. -1612458460: New connection from 172.18.0.3 on port 1883. -1612458460: Sending CONNACK to 172.18.0.3 (0, 5) -1612458460: Socket error on client , disconnecting. -1612458480: New connection from 172.18.0.3 on port 1883. -1612458480: Sending CONNACK to 172.18.0.3 (0, 5) -1612458480: Socket error on client , disconnecting. -1612458500: New connection from 172.18.0.3 on port 1883. -1612458500: Sending CONNACK to 172.18.0.3 (0, 5) -1612458500: Socket error on client , disconnecting. -1612458520: New connection from 172.18.0.3 on port 1883. -1612458520: Sending CONNACK to 172.18.0.3 (0, 5) -1612458520: Socket error on client , disconnecting. -1612458540: New connection from 172.18.0.3 on port 1883. -1612458540: Sending CONNACK to 172.18.0.3 (0, 5) -1612458540: Socket error on client , disconnecting. -1612458560: New connection from 172.18.0.3 on port 1883. -1612458560: Sending CONNACK to 172.18.0.3 (0, 5) -1612458560: Socket error on client , disconnecting. -1612458580: New connection from 172.18.0.3 on port 1883. -1612458580: Sending CONNACK to 172.18.0.3 (0, 5) -1612458580: Socket error on client , disconnecting. -1612458600: New connection from 172.18.0.3 on port 1883. -1612458600: Sending CONNACK to 172.18.0.3 (0, 5) -1612458600: Socket error on client , disconnecting. -1612458620: New connection from 172.18.0.3 on port 1883. -1612458620: Sending CONNACK to 172.18.0.3 (0, 5) -1612458620: Socket error on client , disconnecting. -1612458640: New connection from 172.18.0.3 on port 1883. -1612458640: Sending CONNACK to 172.18.0.3 (0, 5) -1612458640: Socket error on client , disconnecting. -1612458660: New connection from 172.18.0.3 on port 1883. -1612458660: Sending CONNACK to 172.18.0.3 (0, 5) -1612458660: Socket error on client , disconnecting. -1612458680: New connection from 172.18.0.3 on port 1883. -1612458680: Sending CONNACK to 172.18.0.3 (0, 5) -1612458680: Socket error on client , disconnecting. -1612458700: New connection from 172.18.0.3 on port 1883. -1612458700: Sending CONNACK to 172.18.0.3 (0, 5) -1612458700: Socket error on client , disconnecting. -1612458720: New connection from 172.18.0.3 on port 1883. -1612458720: Sending CONNACK to 172.18.0.3 (0, 5) -1612458720: Socket error on client , disconnecting. -1612458740: New connection from 172.18.0.3 on port 1883. -1612458740: Sending CONNACK to 172.18.0.3 (0, 5) -1612458740: Socket error on client , disconnecting. -1612458760: New connection from 172.18.0.3 on port 1883. -1612458760: Sending CONNACK to 172.18.0.3 (0, 5) -1612458760: Socket error on client , disconnecting. -1612458780: New connection from 172.18.0.3 on port 1883. -1612458780: Sending CONNACK to 172.18.0.3 (0, 5) -1612458780: Socket error on client , disconnecting. -1612458800: New connection from 172.18.0.3 on port 1883. -1612458800: Sending CONNACK to 172.18.0.3 (0, 5) -1612458800: Socket error on client , disconnecting. -1612458820: New connection from 172.18.0.3 on port 1883. -1612458820: Sending CONNACK to 172.18.0.3 (0, 5) -1612458820: Socket error on client , disconnecting. -1612458840: New connection from 172.18.0.3 on port 1883. -1612458840: Sending CONNACK to 172.18.0.3 (0, 5) -1612458840: Socket error on client , disconnecting. -1612458860: New connection from 172.18.0.3 on port 1883. -1612458860: Sending CONNACK to 172.18.0.3 (0, 5) -1612458860: Socket error on client , disconnecting. -1612458880: New connection from 172.18.0.3 on port 1883. -1612458880: Sending CONNACK to 172.18.0.3 (0, 5) -1612458880: Socket error on client , disconnecting. -1612458900: New connection from 172.18.0.3 on port 1883. -1612458900: Sending CONNACK to 172.18.0.3 (0, 5) -1612458900: Socket error on client , disconnecting. -1612458920: New connection from 172.18.0.3 on port 1883. -1612458920: Sending CONNACK to 172.18.0.3 (0, 5) -1612458920: Socket error on client , disconnecting. -1612458940: New connection from 172.18.0.3 on port 1883. -1612458940: Sending CONNACK to 172.18.0.3 (0, 5) -1612458940: Socket error on client , disconnecting. -1612458960: New connection from 172.18.0.3 on port 1883. -1612458960: Sending CONNACK to 172.18.0.3 (0, 5) -1612458960: Socket error on client , disconnecting. -1612458980: New connection from 172.18.0.3 on port 1883. -1612458980: Sending CONNACK to 172.18.0.3 (0, 5) -1612458980: Socket error on client , disconnecting. -1612459000: New connection from 172.18.0.3 on port 1883. -1612459000: Sending CONNACK to 172.18.0.3 (0, 5) -1612459000: Socket error on client , disconnecting. -1612459020: New connection from 172.18.0.3 on port 1883. -1612459020: Sending CONNACK to 172.18.0.3 (0, 5) -1612459020: Socket error on client , disconnecting. -1612459024: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612459024: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612459024: Error: Permission denied. -1612459040: New connection from 172.18.0.3 on port 1883. -1612459040: Sending CONNACK to 172.18.0.3 (0, 5) -1612459040: Socket error on client , disconnecting. -1612459060: New connection from 172.18.0.3 on port 1883. -1612459060: Sending CONNACK to 172.18.0.3 (0, 5) -1612459060: Socket error on client , disconnecting. -1612459080: New connection from 172.18.0.3 on port 1883. -1612459080: Sending CONNACK to 172.18.0.3 (0, 5) -1612459080: Socket error on client , disconnecting. -1612459100: New connection from 172.18.0.3 on port 1883. -1612459100: Sending CONNACK to 172.18.0.3 (0, 5) -1612459100: Socket error on client , disconnecting. -1612459120: New connection from 172.18.0.3 on port 1883. -1612459120: Sending CONNACK to 172.18.0.3 (0, 5) -1612459120: Socket error on client , disconnecting. -1612459140: New connection from 172.18.0.3 on port 1883. -1612459140: Sending CONNACK to 172.18.0.3 (0, 5) -1612459140: Socket error on client , disconnecting. -1612459160: New connection from 172.18.0.3 on port 1883. -1612459160: Sending CONNACK to 172.18.0.3 (0, 5) -1612459160: Socket error on client , disconnecting. -1612459180: New connection from 172.18.0.3 on port 1883. -1612459180: Sending CONNACK to 172.18.0.3 (0, 5) -1612459180: Socket error on client , disconnecting. -1612459200: New connection from 172.18.0.3 on port 1883. -1612459200: Sending CONNACK to 172.18.0.3 (0, 5) -1612459200: Socket error on client , disconnecting. -1612459220: New connection from 172.18.0.3 on port 1883. -1612459220: Sending CONNACK to 172.18.0.3 (0, 5) -1612459220: Socket error on client , disconnecting. -1612459240: New connection from 172.18.0.3 on port 1883. -1612459240: Sending CONNACK to 172.18.0.3 (0, 5) -1612459240: Socket error on client , disconnecting. -1612459260: New connection from 172.18.0.3 on port 1883. -1612459260: Sending CONNACK to 172.18.0.3 (0, 5) -1612459260: Socket error on client , disconnecting. -1612459280: New connection from 172.18.0.3 on port 1883. -1612459280: Sending CONNACK to 172.18.0.3 (0, 5) -1612459280: Socket error on client , disconnecting. -1612459300: New connection from 172.18.0.3 on port 1883. -1612459300: Sending CONNACK to 172.18.0.3 (0, 5) -1612459300: Socket error on client , disconnecting. -1612459320: New connection from 172.18.0.3 on port 1883. -1612459320: Sending CONNACK to 172.18.0.3 (0, 5) -1612459320: Socket error on client , disconnecting. -1612459340: New connection from 172.18.0.3 on port 1883. -1612459340: Sending CONNACK to 172.18.0.3 (0, 5) -1612459340: Socket error on client , disconnecting. -1612459360: New connection from 172.18.0.3 on port 1883. -1612459360: Sending CONNACK to 172.18.0.3 (0, 5) -1612459360: Socket error on client , disconnecting. -1612459380: New connection from 172.18.0.3 on port 1883. -1612459380: Sending CONNACK to 172.18.0.3 (0, 5) -1612459380: Socket error on client , disconnecting. -1612459400: New connection from 172.18.0.3 on port 1883. -1612459400: Sending CONNACK to 172.18.0.3 (0, 5) -1612459400: Socket error on client , disconnecting. -1612459420: New connection from 172.18.0.3 on port 1883. -1612459420: Sending CONNACK to 172.18.0.3 (0, 5) -1612459420: Socket error on client , disconnecting. -1612459440: New connection from 172.18.0.3 on port 1883. -1612459440: Sending CONNACK to 172.18.0.3 (0, 5) -1612459440: Socket error on client , disconnecting. -1612459460: New connection from 172.18.0.3 on port 1883. -1612459460: Sending CONNACK to 172.18.0.3 (0, 5) -1612459460: Socket error on client , disconnecting. -1612459480: New connection from 172.18.0.3 on port 1883. -1612459480: Sending CONNACK to 172.18.0.3 (0, 5) -1612459480: Socket error on client , disconnecting. -1612459500: New connection from 172.18.0.3 on port 1883. -1612459500: Sending CONNACK to 172.18.0.3 (0, 5) -1612459500: Socket error on client , disconnecting. -1612459520: New connection from 172.18.0.3 on port 1883. -1612459520: Sending CONNACK to 172.18.0.3 (0, 5) -1612459520: Socket error on client , disconnecting. -1612459540: New connection from 172.18.0.3 on port 1883. -1612459540: Sending CONNACK to 172.18.0.3 (0, 5) -1612459540: Socket error on client , disconnecting. -1612459560: New connection from 172.18.0.3 on port 1883. -1612459560: Sending CONNACK to 172.18.0.3 (0, 5) -1612459560: Socket error on client , disconnecting. -1612459580: New connection from 172.18.0.3 on port 1883. -1612459580: Sending CONNACK to 172.18.0.3 (0, 5) -1612459580: Socket error on client , disconnecting. -1612459600: New connection from 172.18.0.3 on port 1883. -1612459600: Sending CONNACK to 172.18.0.3 (0, 5) -1612459600: Socket error on client , disconnecting. -1612459620: New connection from 172.18.0.3 on port 1883. -1612459620: Sending CONNACK to 172.18.0.3 (0, 5) -1612459620: Socket error on client , disconnecting. -1612459640: New connection from 172.18.0.3 on port 1883. -1612459640: Sending CONNACK to 172.18.0.3 (0, 5) -1612459640: Socket error on client , disconnecting. -1612459660: New connection from 172.18.0.3 on port 1883. -1612459660: Sending CONNACK to 172.18.0.3 (0, 5) -1612459660: Socket error on client , disconnecting. -1612459680: New connection from 172.18.0.3 on port 1883. -1612459680: Sending CONNACK to 172.18.0.3 (0, 5) -1612459680: Socket error on client , disconnecting. -1612459700: New connection from 172.18.0.3 on port 1883. -1612459700: Sending CONNACK to 172.18.0.3 (0, 5) -1612459700: Socket error on client , disconnecting. -1612459720: New connection from 172.18.0.3 on port 1883. -1612459720: Sending CONNACK to 172.18.0.3 (0, 5) -1612459720: Socket error on client , disconnecting. -1612459740: New connection from 172.18.0.3 on port 1883. -1612459740: Sending CONNACK to 172.18.0.3 (0, 5) -1612459740: Socket error on client , disconnecting. -1612459760: New connection from 172.18.0.3 on port 1883. -1612459760: Sending CONNACK to 172.18.0.3 (0, 5) -1612459760: Socket error on client , disconnecting. -1612459780: New connection from 172.18.0.3 on port 1883. -1612459780: Sending CONNACK to 172.18.0.3 (0, 5) -1612459780: Socket error on client , disconnecting. -1612459800: New connection from 172.18.0.3 on port 1883. -1612459800: Sending CONNACK to 172.18.0.3 (0, 5) -1612459800: Socket error on client , disconnecting. -1612459820: New connection from 172.18.0.3 on port 1883. -1612459820: Sending CONNACK to 172.18.0.3 (0, 5) -1612459820: Socket error on client , disconnecting. -1612459840: New connection from 172.18.0.3 on port 1883. -1612459840: Sending CONNACK to 172.18.0.3 (0, 5) -1612459840: Socket error on client , disconnecting. -1612459860: New connection from 172.18.0.3 on port 1883. -1612459860: Sending CONNACK to 172.18.0.3 (0, 5) -1612459860: Socket error on client , disconnecting. -1612459880: New connection from 172.18.0.3 on port 1883. -1612459880: Sending CONNACK to 172.18.0.3 (0, 5) -1612459880: Socket error on client , disconnecting. -1612459900: New connection from 172.18.0.3 on port 1883. -1612459900: Sending CONNACK to 172.18.0.3 (0, 5) -1612459900: Socket error on client , disconnecting. -1612459920: New connection from 172.18.0.3 on port 1883. -1612459920: Sending CONNACK to 172.18.0.3 (0, 5) -1612459920: Socket error on client , disconnecting. -1612459940: New connection from 172.18.0.3 on port 1883. -1612459940: Sending CONNACK to 172.18.0.3 (0, 5) -1612459940: Socket error on client , disconnecting. -1612459960: New connection from 172.18.0.3 on port 1883. -1612459960: Sending CONNACK to 172.18.0.3 (0, 5) -1612459960: Socket error on client , disconnecting. -1612459980: New connection from 172.18.0.3 on port 1883. -1612459980: Sending CONNACK to 172.18.0.3 (0, 5) -1612459980: Socket error on client , disconnecting. -1612460000: New connection from 172.18.0.3 on port 1883. -1612460000: Sending CONNACK to 172.18.0.3 (0, 5) -1612460000: Socket error on client , disconnecting. -1612460020: New connection from 172.18.0.3 on port 1883. -1612460020: Sending CONNACK to 172.18.0.3 (0, 5) -1612460020: Socket error on client , disconnecting. -1612460040: New connection from 172.18.0.3 on port 1883. -1612460040: Sending CONNACK to 172.18.0.3 (0, 5) -1612460040: Socket error on client , disconnecting. -1612460060: New connection from 172.18.0.3 on port 1883. -1612460060: Sending CONNACK to 172.18.0.3 (0, 5) -1612460060: Socket error on client , disconnecting. -1612460080: New connection from 172.18.0.3 on port 1883. -1612460080: Sending CONNACK to 172.18.0.3 (0, 5) -1612460080: Socket error on client , disconnecting. -1612460100: New connection from 172.18.0.3 on port 1883. -1612460100: Sending CONNACK to 172.18.0.3 (0, 5) -1612460100: Socket error on client , disconnecting. -1612460120: New connection from 172.18.0.3 on port 1883. -1612460120: Sending CONNACK to 172.18.0.3 (0, 5) -1612460120: Socket error on client , disconnecting. -1612460140: New connection from 172.18.0.3 on port 1883. -1612460140: Sending CONNACK to 172.18.0.3 (0, 5) -1612460140: Socket error on client , disconnecting. -1612460160: New connection from 172.18.0.3 on port 1883. -1612460160: Sending CONNACK to 172.18.0.3 (0, 5) -1612460160: Socket error on client , disconnecting. -1612460180: New connection from 172.18.0.3 on port 1883. -1612460180: Sending CONNACK to 172.18.0.3 (0, 5) -1612460180: Socket error on client , disconnecting. -1612460200: New connection from 172.18.0.3 on port 1883. -1612460200: Sending CONNACK to 172.18.0.3 (0, 5) -1612460200: Socket error on client , disconnecting. -1612460220: New connection from 172.18.0.3 on port 1883. -1612460220: Sending CONNACK to 172.18.0.3 (0, 5) -1612460220: Socket error on client , disconnecting. -1612460240: New connection from 172.18.0.3 on port 1883. -1612460240: Sending CONNACK to 172.18.0.3 (0, 5) -1612460240: Socket error on client , disconnecting. -1612460260: New connection from 172.18.0.3 on port 1883. -1612460260: Sending CONNACK to 172.18.0.3 (0, 5) -1612460260: Socket error on client , disconnecting. -1612460280: New connection from 172.18.0.3 on port 1883. -1612460280: Sending CONNACK to 172.18.0.3 (0, 5) -1612460280: Socket error on client , disconnecting. -1612460300: New connection from 172.18.0.3 on port 1883. -1612460300: Sending CONNACK to 172.18.0.3 (0, 5) -1612460300: Socket error on client , disconnecting. -1612460320: New connection from 172.18.0.3 on port 1883. -1612460320: Sending CONNACK to 172.18.0.3 (0, 5) -1612460320: Socket error on client , disconnecting. -1612460340: New connection from 172.18.0.3 on port 1883. -1612460340: Sending CONNACK to 172.18.0.3 (0, 5) -1612460340: Socket error on client , disconnecting. -1612460360: New connection from 172.18.0.3 on port 1883. -1612460360: Sending CONNACK to 172.18.0.3 (0, 5) -1612460360: Socket error on client , disconnecting. -1612460380: New connection from 172.18.0.3 on port 1883. -1612460380: Sending CONNACK to 172.18.0.3 (0, 5) -1612460380: Socket error on client , disconnecting. -1612460400: New connection from 172.18.0.3 on port 1883. -1612460400: Sending CONNACK to 172.18.0.3 (0, 5) -1612460400: Socket error on client , disconnecting. -1612460420: New connection from 172.18.0.3 on port 1883. -1612460420: Sending CONNACK to 172.18.0.3 (0, 5) -1612460420: Socket error on client , disconnecting. -1612460440: New connection from 172.18.0.3 on port 1883. -1612460440: Sending CONNACK to 172.18.0.3 (0, 5) -1612460440: Socket error on client , disconnecting. -1612460460: New connection from 172.18.0.3 on port 1883. -1612460460: Sending CONNACK to 172.18.0.3 (0, 5) -1612460460: Socket error on client , disconnecting. -1612460480: New connection from 172.18.0.3 on port 1883. -1612460480: Sending CONNACK to 172.18.0.3 (0, 5) -1612460480: Socket error on client , disconnecting. -1612460500: New connection from 172.18.0.3 on port 1883. -1612460500: Sending CONNACK to 172.18.0.3 (0, 5) -1612460500: Socket error on client , disconnecting. -1612460520: New connection from 172.18.0.3 on port 1883. -1612460520: Sending CONNACK to 172.18.0.3 (0, 5) -1612460520: Socket error on client , disconnecting. -1612460540: New connection from 172.18.0.3 on port 1883. -1612460540: Sending CONNACK to 172.18.0.3 (0, 5) -1612460540: Socket error on client , disconnecting. -1612460560: New connection from 172.18.0.3 on port 1883. -1612460560: Sending CONNACK to 172.18.0.3 (0, 5) -1612460560: Socket error on client , disconnecting. -1612460580: New connection from 172.18.0.3 on port 1883. -1612460580: Sending CONNACK to 172.18.0.3 (0, 5) -1612460580: Socket error on client , disconnecting. -1612460600: New connection from 172.18.0.3 on port 1883. -1612460600: Sending CONNACK to 172.18.0.3 (0, 5) -1612460600: Socket error on client , disconnecting. -1612460620: New connection from 172.18.0.3 on port 1883. -1612460620: Sending CONNACK to 172.18.0.3 (0, 5) -1612460620: Socket error on client , disconnecting. -1612460640: New connection from 172.18.0.3 on port 1883. -1612460640: Sending CONNACK to 172.18.0.3 (0, 5) -1612460640: Socket error on client , disconnecting. -1612460660: New connection from 172.18.0.3 on port 1883. -1612460660: Sending CONNACK to 172.18.0.3 (0, 5) -1612460660: Socket error on client , disconnecting. -1612460680: New connection from 172.18.0.3 on port 1883. -1612460680: Sending CONNACK to 172.18.0.3 (0, 5) -1612460680: Socket error on client , disconnecting. -1612460700: New connection from 172.18.0.3 on port 1883. -1612460700: Sending CONNACK to 172.18.0.3 (0, 5) -1612460700: Socket error on client , disconnecting. -1612460720: New connection from 172.18.0.3 on port 1883. -1612460720: Sending CONNACK to 172.18.0.3 (0, 5) -1612460720: Socket error on client , disconnecting. -1612460740: New connection from 172.18.0.3 on port 1883. -1612460740: Sending CONNACK to 172.18.0.3 (0, 5) -1612460740: Socket error on client , disconnecting. -1612460760: New connection from 172.18.0.3 on port 1883. -1612460760: Sending CONNACK to 172.18.0.3 (0, 5) -1612460760: Socket error on client , disconnecting. -1612460780: New connection from 172.18.0.3 on port 1883. -1612460780: Sending CONNACK to 172.18.0.3 (0, 5) -1612460780: Socket error on client , disconnecting. -1612460800: New connection from 172.18.0.3 on port 1883. -1612460800: Sending CONNACK to 172.18.0.3 (0, 5) -1612460800: Socket error on client , disconnecting. -1612460820: New connection from 172.18.0.3 on port 1883. -1612460820: Sending CONNACK to 172.18.0.3 (0, 5) -1612460820: Socket error on client , disconnecting. -1612460825: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612460825: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612460825: Error: Permission denied. -1612460840: New connection from 172.18.0.3 on port 1883. -1612460840: Sending CONNACK to 172.18.0.3 (0, 5) -1612460840: Socket error on client , disconnecting. -1612460860: New connection from 172.18.0.3 on port 1883. -1612460860: Sending CONNACK to 172.18.0.3 (0, 5) -1612460860: Socket error on client , disconnecting. -1612460880: New connection from 172.18.0.3 on port 1883. -1612460880: Sending CONNACK to 172.18.0.3 (0, 5) -1612460880: Socket error on client , disconnecting. -1612460900: New connection from 172.18.0.3 on port 1883. -1612460900: Sending CONNACK to 172.18.0.3 (0, 5) -1612460900: Socket error on client , disconnecting. -1612460920: New connection from 172.18.0.3 on port 1883. -1612460920: Sending CONNACK to 172.18.0.3 (0, 5) -1612460920: Socket error on client , disconnecting. -1612460940: New connection from 172.18.0.3 on port 1883. -1612460940: Sending CONNACK to 172.18.0.3 (0, 5) -1612460940: Socket error on client , disconnecting. -1612460960: New connection from 172.18.0.3 on port 1883. -1612460960: Sending CONNACK to 172.18.0.3 (0, 5) -1612460960: Socket error on client , disconnecting. -1612460980: New connection from 172.18.0.3 on port 1883. -1612460980: Sending CONNACK to 172.18.0.3 (0, 5) -1612460980: Socket error on client , disconnecting. -1612461000: New connection from 172.18.0.3 on port 1883. -1612461000: Sending CONNACK to 172.18.0.3 (0, 5) -1612461000: Socket error on client , disconnecting. -1612461020: New connection from 172.18.0.3 on port 1883. -1612461020: Sending CONNACK to 172.18.0.3 (0, 5) -1612461020: Socket error on client , disconnecting. -1612461040: New connection from 172.18.0.3 on port 1883. -1612461040: Sending CONNACK to 172.18.0.3 (0, 5) -1612461040: Socket error on client , disconnecting. -1612461060: New connection from 172.18.0.3 on port 1883. -1612461060: Sending CONNACK to 172.18.0.3 (0, 5) -1612461060: Socket error on client , disconnecting. -1612461080: New connection from 172.18.0.3 on port 1883. -1612461080: Sending CONNACK to 172.18.0.3 (0, 5) -1612461080: Socket error on client , disconnecting. -1612461100: New connection from 172.18.0.3 on port 1883. -1612461100: Sending CONNACK to 172.18.0.3 (0, 5) -1612461100: Socket error on client , disconnecting. -1612461120: New connection from 172.18.0.3 on port 1883. -1612461120: Sending CONNACK to 172.18.0.3 (0, 5) -1612461120: Socket error on client , disconnecting. -1612461140: New connection from 172.18.0.3 on port 1883. -1612461140: Sending CONNACK to 172.18.0.3 (0, 5) -1612461140: Socket error on client , disconnecting. -1612461160: New connection from 172.18.0.3 on port 1883. -1612461160: Sending CONNACK to 172.18.0.3 (0, 5) -1612461160: Socket error on client , disconnecting. -1612461180: New connection from 172.18.0.3 on port 1883. -1612461180: Sending CONNACK to 172.18.0.3 (0, 5) -1612461180: Socket error on client , disconnecting. -1612461200: New connection from 172.18.0.3 on port 1883. -1612461200: Sending CONNACK to 172.18.0.3 (0, 5) -1612461200: Socket error on client , disconnecting. -1612461220: New connection from 172.18.0.3 on port 1883. -1612461220: Sending CONNACK to 172.18.0.3 (0, 5) -1612461220: Socket error on client , disconnecting. -1612461240: New connection from 172.18.0.3 on port 1883. -1612461240: Sending CONNACK to 172.18.0.3 (0, 5) -1612461240: Socket error on client , disconnecting. -1612461260: New connection from 172.18.0.3 on port 1883. -1612461260: Sending CONNACK to 172.18.0.3 (0, 5) -1612461260: Socket error on client , disconnecting. -1612461280: New connection from 172.18.0.3 on port 1883. -1612461280: Sending CONNACK to 172.18.0.3 (0, 5) -1612461280: Socket error on client , disconnecting. -1612461300: New connection from 172.18.0.3 on port 1883. -1612461300: Sending CONNACK to 172.18.0.3 (0, 5) -1612461300: Socket error on client , disconnecting. -1612461320: New connection from 172.18.0.3 on port 1883. -1612461320: Sending CONNACK to 172.18.0.3 (0, 5) -1612461320: Socket error on client , disconnecting. -1612461340: New connection from 172.18.0.3 on port 1883. -1612461340: Sending CONNACK to 172.18.0.3 (0, 5) -1612461340: Socket error on client , disconnecting. -1612461360: New connection from 172.18.0.3 on port 1883. -1612461360: Sending CONNACK to 172.18.0.3 (0, 5) -1612461360: Socket error on client , disconnecting. -1612461380: New connection from 172.18.0.3 on port 1883. -1612461380: Sending CONNACK to 172.18.0.3 (0, 5) -1612461380: Socket error on client , disconnecting. -1612461400: New connection from 172.18.0.3 on port 1883. -1612461400: Sending CONNACK to 172.18.0.3 (0, 5) -1612461400: Socket error on client , disconnecting. -1612461420: New connection from 172.18.0.3 on port 1883. -1612461420: Sending CONNACK to 172.18.0.3 (0, 5) -1612461420: Socket error on client , disconnecting. -1612461440: New connection from 172.18.0.3 on port 1883. -1612461440: Sending CONNACK to 172.18.0.3 (0, 5) -1612461440: Socket error on client , disconnecting. -1612461460: New connection from 172.18.0.3 on port 1883. -1612461460: Sending CONNACK to 172.18.0.3 (0, 5) -1612461460: Socket error on client , disconnecting. -1612461480: New connection from 172.18.0.3 on port 1883. -1612461480: Sending CONNACK to 172.18.0.3 (0, 5) -1612461480: Socket error on client , disconnecting. -1612461500: New connection from 172.18.0.3 on port 1883. -1612461500: Sending CONNACK to 172.18.0.3 (0, 5) -1612461500: Socket error on client , disconnecting. -1612461520: New connection from 172.18.0.3 on port 1883. -1612461520: Sending CONNACK to 172.18.0.3 (0, 5) -1612461520: Socket error on client , disconnecting. -1612461540: New connection from 172.18.0.3 on port 1883. -1612461540: Sending CONNACK to 172.18.0.3 (0, 5) -1612461540: Socket error on client , disconnecting. -1612461560: New connection from 172.18.0.3 on port 1883. -1612461560: Sending CONNACK to 172.18.0.3 (0, 5) -1612461560: Socket error on client , disconnecting. -1612461580: New connection from 172.18.0.3 on port 1883. -1612461580: Sending CONNACK to 172.18.0.3 (0, 5) -1612461580: Socket error on client , disconnecting. -1612461600: New connection from 172.18.0.3 on port 1883. -1612461600: Sending CONNACK to 172.18.0.3 (0, 5) -1612461600: Socket error on client , disconnecting. -1612461620: New connection from 172.18.0.3 on port 1883. -1612461620: Sending CONNACK to 172.18.0.3 (0, 5) -1612461620: Socket error on client , disconnecting. -1612461640: New connection from 172.18.0.3 on port 1883. -1612461640: Sending CONNACK to 172.18.0.3 (0, 5) -1612461640: Socket error on client , disconnecting. -1612461660: New connection from 172.18.0.3 on port 1883. -1612461660: Sending CONNACK to 172.18.0.3 (0, 5) -1612461660: Socket error on client , disconnecting. -1612461680: New connection from 172.18.0.3 on port 1883. -1612461680: Sending CONNACK to 172.18.0.3 (0, 5) -1612461680: Socket error on client , disconnecting. -1612461700: New connection from 172.18.0.3 on port 1883. -1612461700: Sending CONNACK to 172.18.0.3 (0, 5) -1612461700: Socket error on client , disconnecting. -1612461720: New connection from 172.18.0.3 on port 1883. -1612461720: Sending CONNACK to 172.18.0.3 (0, 5) -1612461720: Socket error on client , disconnecting. -1612461740: New connection from 172.18.0.3 on port 1883. -1612461740: Sending CONNACK to 172.18.0.3 (0, 5) -1612461740: Socket error on client , disconnecting. -1612461760: New connection from 172.18.0.3 on port 1883. -1612461760: Sending CONNACK to 172.18.0.3 (0, 5) -1612461760: Socket error on client , disconnecting. -1612461780: New connection from 172.18.0.3 on port 1883. -1612461780: Sending CONNACK to 172.18.0.3 (0, 5) -1612461780: Socket error on client , disconnecting. -1612461800: New connection from 172.18.0.3 on port 1883. -1612461800: Sending CONNACK to 172.18.0.3 (0, 5) -1612461800: Socket error on client , disconnecting. -1612461820: New connection from 172.18.0.3 on port 1883. -1612461820: Sending CONNACK to 172.18.0.3 (0, 5) -1612461820: Socket error on client , disconnecting. -1612461840: New connection from 172.18.0.3 on port 1883. -1612461840: Sending CONNACK to 172.18.0.3 (0, 5) -1612461840: Socket error on client , disconnecting. -1612461860: New connection from 172.18.0.3 on port 1883. -1612461860: Sending CONNACK to 172.18.0.3 (0, 5) -1612461860: Socket error on client , disconnecting. -1612461880: New connection from 172.18.0.3 on port 1883. -1612461880: Sending CONNACK to 172.18.0.3 (0, 5) -1612461880: Socket error on client , disconnecting. -1612461900: New connection from 172.18.0.3 on port 1883. -1612461900: Sending CONNACK to 172.18.0.3 (0, 5) -1612461900: Socket error on client , disconnecting. -1612461920: New connection from 172.18.0.3 on port 1883. -1612461920: Sending CONNACK to 172.18.0.3 (0, 5) -1612461920: Socket error on client , disconnecting. -1612461940: New connection from 172.18.0.3 on port 1883. -1612461940: Sending CONNACK to 172.18.0.3 (0, 5) -1612461940: Socket error on client , disconnecting. -1612461960: New connection from 172.18.0.3 on port 1883. -1612461960: Sending CONNACK to 172.18.0.3 (0, 5) -1612461960: Socket error on client , disconnecting. -1612461980: New connection from 172.18.0.3 on port 1883. -1612461980: Sending CONNACK to 172.18.0.3 (0, 5) -1612461980: Socket error on client , disconnecting. -1612462000: New connection from 172.18.0.3 on port 1883. -1612462000: Sending CONNACK to 172.18.0.3 (0, 5) -1612462000: Socket error on client , disconnecting. -1612462020: New connection from 172.18.0.3 on port 1883. -1612462020: Sending CONNACK to 172.18.0.3 (0, 5) -1612462020: Socket error on client , disconnecting. -1612462040: New connection from 172.18.0.3 on port 1883. -1612462040: Sending CONNACK to 172.18.0.3 (0, 5) -1612462040: Socket error on client , disconnecting. -1612462060: New connection from 172.18.0.3 on port 1883. -1612462060: Sending CONNACK to 172.18.0.3 (0, 5) -1612462060: Socket error on client , disconnecting. -1612462080: New connection from 172.18.0.3 on port 1883. -1612462080: Sending CONNACK to 172.18.0.3 (0, 5) -1612462080: Socket error on client , disconnecting. -1612462100: New connection from 172.18.0.3 on port 1883. -1612462100: Sending CONNACK to 172.18.0.3 (0, 5) -1612462100: Socket error on client , disconnecting. -1612462120: New connection from 172.18.0.3 on port 1883. -1612462120: Sending CONNACK to 172.18.0.3 (0, 5) -1612462120: Socket error on client , disconnecting. -1612462140: New connection from 172.18.0.3 on port 1883. -1612462140: Sending CONNACK to 172.18.0.3 (0, 5) -1612462140: Socket error on client , disconnecting. -1612462160: New connection from 172.18.0.3 on port 1883. -1612462160: Sending CONNACK to 172.18.0.3 (0, 5) -1612462160: Socket error on client , disconnecting. -1612462180: New connection from 172.18.0.3 on port 1883. -1612462180: Sending CONNACK to 172.18.0.3 (0, 5) -1612462180: Socket error on client , disconnecting. -1612462200: New connection from 172.18.0.3 on port 1883. -1612462200: Sending CONNACK to 172.18.0.3 (0, 5) -1612462200: Socket error on client , disconnecting. -1612462220: New connection from 172.18.0.3 on port 1883. -1612462220: Sending CONNACK to 172.18.0.3 (0, 5) -1612462220: Socket error on client , disconnecting. -1612462240: New connection from 172.18.0.3 on port 1883. -1612462240: Sending CONNACK to 172.18.0.3 (0, 5) -1612462240: Socket error on client , disconnecting. -1612462260: New connection from 172.18.0.3 on port 1883. -1612462260: Sending CONNACK to 172.18.0.3 (0, 5) -1612462260: Socket error on client , disconnecting. -1612462280: New connection from 172.18.0.3 on port 1883. -1612462280: Sending CONNACK to 172.18.0.3 (0, 5) -1612462280: Socket error on client , disconnecting. -1612462300: New connection from 172.18.0.3 on port 1883. -1612462300: Sending CONNACK to 172.18.0.3 (0, 5) -1612462300: Socket error on client , disconnecting. -1612462320: New connection from 172.18.0.3 on port 1883. -1612462320: Sending CONNACK to 172.18.0.3 (0, 5) -1612462320: Socket error on client , disconnecting. -1612462340: New connection from 172.18.0.3 on port 1883. -1612462340: Sending CONNACK to 172.18.0.3 (0, 5) -1612462340: Socket error on client , disconnecting. -1612462360: New connection from 172.18.0.3 on port 1883. -1612462360: Sending CONNACK to 172.18.0.3 (0, 5) -1612462360: Socket error on client , disconnecting. -1612462380: New connection from 172.18.0.3 on port 1883. -1612462380: Sending CONNACK to 172.18.0.3 (0, 5) -1612462380: Socket error on client , disconnecting. -1612462400: New connection from 172.18.0.3 on port 1883. -1612462400: Sending CONNACK to 172.18.0.3 (0, 5) -1612462400: Socket error on client , disconnecting. -1612462420: New connection from 172.18.0.3 on port 1883. -1612462420: Sending CONNACK to 172.18.0.3 (0, 5) -1612462420: Socket error on client , disconnecting. -1612462440: New connection from 172.18.0.3 on port 1883. -1612462440: Sending CONNACK to 172.18.0.3 (0, 5) -1612462440: Socket error on client , disconnecting. -1612462460: New connection from 172.18.0.3 on port 1883. -1612462460: Sending CONNACK to 172.18.0.3 (0, 5) -1612462460: Socket error on client , disconnecting. -1612462480: New connection from 172.18.0.3 on port 1883. -1612462480: Sending CONNACK to 172.18.0.3 (0, 5) -1612462480: Socket error on client , disconnecting. -1612462500: New connection from 172.18.0.3 on port 1883. -1612462500: Sending CONNACK to 172.18.0.3 (0, 5) -1612462500: Socket error on client , disconnecting. -1612462520: New connection from 172.18.0.3 on port 1883. -1612462520: Sending CONNACK to 172.18.0.3 (0, 5) -1612462520: Socket error on client , disconnecting. -1612462540: New connection from 172.18.0.3 on port 1883. -1612462540: Sending CONNACK to 172.18.0.3 (0, 5) -1612462540: Socket error on client , disconnecting. -1612462560: New connection from 172.18.0.3 on port 1883. -1612462560: Sending CONNACK to 172.18.0.3 (0, 5) -1612462560: Socket error on client , disconnecting. -1612462580: New connection from 172.18.0.3 on port 1883. -1612462580: Sending CONNACK to 172.18.0.3 (0, 5) -1612462580: Socket error on client , disconnecting. -1612462600: New connection from 172.18.0.3 on port 1883. -1612462600: Sending CONNACK to 172.18.0.3 (0, 5) -1612462600: Socket error on client , disconnecting. -1612462620: New connection from 172.18.0.3 on port 1883. -1612462620: Sending CONNACK to 172.18.0.3 (0, 5) -1612462620: Socket error on client , disconnecting. -1612462626: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612462626: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612462626: Error: Permission denied. -1612462640: New connection from 172.18.0.3 on port 1883. -1612462640: Sending CONNACK to 172.18.0.3 (0, 5) -1612462640: Socket error on client , disconnecting. -1612462660: New connection from 172.18.0.3 on port 1883. -1612462660: Sending CONNACK to 172.18.0.3 (0, 5) -1612462660: Socket error on client , disconnecting. -1612462680: New connection from 172.18.0.3 on port 1883. -1612462680: Sending CONNACK to 172.18.0.3 (0, 5) -1612462680: Socket error on client , disconnecting. -1612462700: New connection from 172.18.0.3 on port 1883. -1612462700: Sending CONNACK to 172.18.0.3 (0, 5) -1612462700: Socket error on client , disconnecting. -1612462720: New connection from 172.18.0.3 on port 1883. -1612462720: Sending CONNACK to 172.18.0.3 (0, 5) -1612462720: Socket error on client , disconnecting. -1612462740: New connection from 172.18.0.3 on port 1883. -1612462740: Sending CONNACK to 172.18.0.3 (0, 5) -1612462740: Socket error on client , disconnecting. -1612462760: New connection from 172.18.0.3 on port 1883. -1612462760: Sending CONNACK to 172.18.0.3 (0, 5) -1612462760: Socket error on client , disconnecting. -1612462780: New connection from 172.18.0.3 on port 1883. -1612462780: Sending CONNACK to 172.18.0.3 (0, 5) -1612462780: Socket error on client , disconnecting. -1612462800: New connection from 172.18.0.3 on port 1883. -1612462800: Sending CONNACK to 172.18.0.3 (0, 5) -1612462800: Socket error on client , disconnecting. -1612462820: New connection from 172.18.0.3 on port 1883. -1612462820: Sending CONNACK to 172.18.0.3 (0, 5) -1612462820: Socket error on client , disconnecting. -1612462840: New connection from 172.18.0.3 on port 1883. -1612462840: Sending CONNACK to 172.18.0.3 (0, 5) -1612462840: Socket error on client , disconnecting. -1612462860: New connection from 172.18.0.3 on port 1883. -1612462860: Sending CONNACK to 172.18.0.3 (0, 5) -1612462860: Socket error on client , disconnecting. -1612462880: New connection from 172.18.0.3 on port 1883. -1612462880: Sending CONNACK to 172.18.0.3 (0, 5) -1612462880: Socket error on client , disconnecting. -1612462900: New connection from 172.18.0.3 on port 1883. -1612462900: Sending CONNACK to 172.18.0.3 (0, 5) -1612462900: Socket error on client , disconnecting. -1612462920: New connection from 172.18.0.3 on port 1883. -1612462920: Sending CONNACK to 172.18.0.3 (0, 5) -1612462920: Socket error on client , disconnecting. -1612462940: New connection from 172.18.0.3 on port 1883. -1612462940: Sending CONNACK to 172.18.0.3 (0, 5) -1612462940: Socket error on client , disconnecting. -1612462960: New connection from 172.18.0.3 on port 1883. -1612462960: Sending CONNACK to 172.18.0.3 (0, 5) -1612462960: Socket error on client , disconnecting. -1612462980: New connection from 172.18.0.3 on port 1883. -1612462980: Sending CONNACK to 172.18.0.3 (0, 5) -1612462980: Socket error on client , disconnecting. -1612463000: New connection from 172.18.0.3 on port 1883. -1612463000: Sending CONNACK to 172.18.0.3 (0, 5) -1612463000: Socket error on client , disconnecting. -1612463020: New connection from 172.18.0.3 on port 1883. -1612463020: Sending CONNACK to 172.18.0.3 (0, 5) -1612463020: Socket error on client , disconnecting. -1612463040: New connection from 172.18.0.3 on port 1883. -1612463040: Sending CONNACK to 172.18.0.3 (0, 5) -1612463040: Socket error on client , disconnecting. -1612463060: New connection from 172.18.0.3 on port 1883. -1612463060: Sending CONNACK to 172.18.0.3 (0, 5) -1612463060: Socket error on client , disconnecting. -1612463080: New connection from 172.18.0.3 on port 1883. -1612463080: Sending CONNACK to 172.18.0.3 (0, 5) -1612463080: Socket error on client , disconnecting. -1612463100: New connection from 172.18.0.3 on port 1883. -1612463100: Sending CONNACK to 172.18.0.3 (0, 5) -1612463100: Socket error on client , disconnecting. -1612463120: New connection from 172.18.0.3 on port 1883. -1612463120: Sending CONNACK to 172.18.0.3 (0, 5) -1612463120: Socket error on client , disconnecting. -1612463140: New connection from 172.18.0.3 on port 1883. -1612463140: Sending CONNACK to 172.18.0.3 (0, 5) -1612463140: Socket error on client , disconnecting. -1612463160: New connection from 172.18.0.3 on port 1883. -1612463160: Sending CONNACK to 172.18.0.3 (0, 5) -1612463160: Socket error on client , disconnecting. -1612463180: New connection from 172.18.0.3 on port 1883. -1612463180: Sending CONNACK to 172.18.0.3 (0, 5) -1612463180: Socket error on client , disconnecting. -1612463200: New connection from 172.18.0.3 on port 1883. -1612463200: Sending CONNACK to 172.18.0.3 (0, 5) -1612463200: Socket error on client , disconnecting. -1612463220: New connection from 172.18.0.3 on port 1883. -1612463220: Sending CONNACK to 172.18.0.3 (0, 5) -1612463220: Socket error on client , disconnecting. -1612463240: New connection from 172.18.0.3 on port 1883. -1612463240: Sending CONNACK to 172.18.0.3 (0, 5) -1612463240: Socket error on client , disconnecting. -1612463260: New connection from 172.18.0.3 on port 1883. -1612463260: Sending CONNACK to 172.18.0.3 (0, 5) -1612463260: Socket error on client , disconnecting. -1612463280: New connection from 172.18.0.3 on port 1883. -1612463280: Sending CONNACK to 172.18.0.3 (0, 5) -1612463280: Socket error on client , disconnecting. -1612463300: New connection from 172.18.0.3 on port 1883. -1612463300: Sending CONNACK to 172.18.0.3 (0, 5) -1612463300: Socket error on client , disconnecting. -1612463320: New connection from 172.18.0.3 on port 1883. -1612463320: Sending CONNACK to 172.18.0.3 (0, 5) -1612463320: Socket error on client , disconnecting. -1612463340: New connection from 172.18.0.3 on port 1883. -1612463340: Sending CONNACK to 172.18.0.3 (0, 5) -1612463340: Socket error on client , disconnecting. -1612463360: New connection from 172.18.0.3 on port 1883. -1612463360: Sending CONNACK to 172.18.0.3 (0, 5) -1612463360: Socket error on client , disconnecting. -1612463380: New connection from 172.18.0.3 on port 1883. -1612463380: Sending CONNACK to 172.18.0.3 (0, 5) -1612463380: Socket error on client , disconnecting. -1612463400: New connection from 172.18.0.3 on port 1883. -1612463400: Sending CONNACK to 172.18.0.3 (0, 5) -1612463400: Socket error on client , disconnecting. -1612463420: New connection from 172.18.0.3 on port 1883. -1612463420: Sending CONNACK to 172.18.0.3 (0, 5) -1612463420: Socket error on client , disconnecting. -1612463440: New connection from 172.18.0.3 on port 1883. -1612463440: Sending CONNACK to 172.18.0.3 (0, 5) -1612463440: Socket error on client , disconnecting. -1612463460: New connection from 172.18.0.3 on port 1883. -1612463460: Sending CONNACK to 172.18.0.3 (0, 5) -1612463460: Socket error on client , disconnecting. -1612463480: New connection from 172.18.0.3 on port 1883. -1612463480: Sending CONNACK to 172.18.0.3 (0, 5) -1612463480: Socket error on client , disconnecting. -1612463500: New connection from 172.18.0.3 on port 1883. -1612463500: Sending CONNACK to 172.18.0.3 (0, 5) -1612463500: Socket error on client , disconnecting. -1612463520: New connection from 172.18.0.3 on port 1883. -1612463520: Sending CONNACK to 172.18.0.3 (0, 5) -1612463520: Socket error on client , disconnecting. -1612463540: New connection from 172.18.0.3 on port 1883. -1612463540: Sending CONNACK to 172.18.0.3 (0, 5) -1612463540: Socket error on client , disconnecting. -1612463560: New connection from 172.18.0.3 on port 1883. -1612463560: Sending CONNACK to 172.18.0.3 (0, 5) -1612463560: Socket error on client , disconnecting. -1612463580: New connection from 172.18.0.3 on port 1883. -1612463580: Sending CONNACK to 172.18.0.3 (0, 5) -1612463580: Socket error on client , disconnecting. -1612463600: New connection from 172.18.0.3 on port 1883. -1612463600: Sending CONNACK to 172.18.0.3 (0, 5) -1612463600: Socket error on client , disconnecting. -1612463620: New connection from 172.18.0.3 on port 1883. -1612463620: Sending CONNACK to 172.18.0.3 (0, 5) -1612463620: Socket error on client , disconnecting. -1612463640: New connection from 172.18.0.3 on port 1883. -1612463640: Sending CONNACK to 172.18.0.3 (0, 5) -1612463640: Socket error on client , disconnecting. -1612463660: New connection from 172.18.0.3 on port 1883. -1612463660: Sending CONNACK to 172.18.0.3 (0, 5) -1612463660: Socket error on client , disconnecting. -1612463680: New connection from 172.18.0.3 on port 1883. -1612463680: Sending CONNACK to 172.18.0.3 (0, 5) -1612463680: Socket error on client , disconnecting. -1612463700: New connection from 172.18.0.3 on port 1883. -1612463700: Sending CONNACK to 172.18.0.3 (0, 5) -1612463700: Socket error on client , disconnecting. -1612463720: New connection from 172.18.0.3 on port 1883. -1612463720: Sending CONNACK to 172.18.0.3 (0, 5) -1612463720: Socket error on client , disconnecting. -1612463740: New connection from 172.18.0.3 on port 1883. -1612463740: Sending CONNACK to 172.18.0.3 (0, 5) -1612463740: Socket error on client , disconnecting. -1612463760: New connection from 172.18.0.3 on port 1883. -1612463760: Sending CONNACK to 172.18.0.3 (0, 5) -1612463760: Socket error on client , disconnecting. -1612463780: New connection from 172.18.0.3 on port 1883. -1612463780: Sending CONNACK to 172.18.0.3 (0, 5) -1612463780: Socket error on client , disconnecting. -1612463800: New connection from 172.18.0.3 on port 1883. -1612463800: Sending CONNACK to 172.18.0.3 (0, 5) -1612463800: Socket error on client , disconnecting. -1612463820: New connection from 172.18.0.3 on port 1883. -1612463820: Sending CONNACK to 172.18.0.3 (0, 5) -1612463820: Socket error on client , disconnecting. -1612463840: New connection from 172.18.0.3 on port 1883. -1612463840: Sending CONNACK to 172.18.0.3 (0, 5) -1612463840: Socket error on client , disconnecting. -1612463860: New connection from 172.18.0.3 on port 1883. -1612463860: Sending CONNACK to 172.18.0.3 (0, 5) -1612463860: Socket error on client , disconnecting. -1612463880: New connection from 172.18.0.3 on port 1883. -1612463880: Sending CONNACK to 172.18.0.3 (0, 5) -1612463880: Socket error on client , disconnecting. -1612463900: New connection from 172.18.0.3 on port 1883. -1612463900: Sending CONNACK to 172.18.0.3 (0, 5) -1612463900: Socket error on client , disconnecting. -1612463920: New connection from 172.18.0.3 on port 1883. -1612463920: Sending CONNACK to 172.18.0.3 (0, 5) -1612463920: Socket error on client , disconnecting. -1612463940: New connection from 172.18.0.3 on port 1883. -1612463940: Sending CONNACK to 172.18.0.3 (0, 5) -1612463940: Socket error on client , disconnecting. -1612463960: New connection from 172.18.0.3 on port 1883. -1612463960: Sending CONNACK to 172.18.0.3 (0, 5) -1612463960: Socket error on client , disconnecting. -1612463980: New connection from 172.18.0.3 on port 1883. -1612463980: Sending CONNACK to 172.18.0.3 (0, 5) -1612463980: Socket error on client , disconnecting. -1612464000: New connection from 172.18.0.3 on port 1883. -1612464000: Sending CONNACK to 172.18.0.3 (0, 5) -1612464000: Socket error on client , disconnecting. -1612464020: New connection from 172.18.0.3 on port 1883. -1612464020: Sending CONNACK to 172.18.0.3 (0, 5) -1612464020: Socket error on client , disconnecting. -1612464040: New connection from 172.18.0.3 on port 1883. -1612464040: Sending CONNACK to 172.18.0.3 (0, 5) -1612464040: Socket error on client , disconnecting. -1612464060: New connection from 172.18.0.3 on port 1883. -1612464060: Sending CONNACK to 172.18.0.3 (0, 5) -1612464060: Socket error on client , disconnecting. -1612464080: New connection from 172.18.0.3 on port 1883. -1612464080: Sending CONNACK to 172.18.0.3 (0, 5) -1612464080: Socket error on client , disconnecting. -1612464100: New connection from 172.18.0.3 on port 1883. -1612464100: Sending CONNACK to 172.18.0.3 (0, 5) -1612464100: Socket error on client , disconnecting. -1612464120: New connection from 172.18.0.3 on port 1883. -1612464120: Sending CONNACK to 172.18.0.3 (0, 5) -1612464120: Socket error on client , disconnecting. -1612464140: New connection from 172.18.0.3 on port 1883. -1612464140: Sending CONNACK to 172.18.0.3 (0, 5) -1612464140: Socket error on client , disconnecting. -1612464160: New connection from 172.18.0.3 on port 1883. -1612464160: Sending CONNACK to 172.18.0.3 (0, 5) -1612464160: Socket error on client , disconnecting. -1612464180: New connection from 172.18.0.3 on port 1883. -1612464180: Sending CONNACK to 172.18.0.3 (0, 5) -1612464180: Socket error on client , disconnecting. -1612464200: New connection from 172.18.0.3 on port 1883. -1612464200: Sending CONNACK to 172.18.0.3 (0, 5) -1612464200: Socket error on client , disconnecting. -1612464220: New connection from 172.18.0.3 on port 1883. -1612464220: Sending CONNACK to 172.18.0.3 (0, 5) -1612464220: Socket error on client , disconnecting. -1612464240: New connection from 172.18.0.3 on port 1883. -1612464240: Sending CONNACK to 172.18.0.3 (0, 5) -1612464240: Socket error on client , disconnecting. -1612464260: New connection from 172.18.0.3 on port 1883. -1612464260: Sending CONNACK to 172.18.0.3 (0, 5) -1612464260: Socket error on client , disconnecting. -1612464280: New connection from 172.18.0.3 on port 1883. -1612464280: Sending CONNACK to 172.18.0.3 (0, 5) -1612464280: Socket error on client , disconnecting. -1612464300: New connection from 172.18.0.3 on port 1883. -1612464300: Sending CONNACK to 172.18.0.3 (0, 5) -1612464300: Socket error on client , disconnecting. -1612464320: New connection from 172.18.0.3 on port 1883. -1612464320: Sending CONNACK to 172.18.0.3 (0, 5) -1612464320: Socket error on client , disconnecting. -1612464340: New connection from 172.18.0.3 on port 1883. -1612464340: Sending CONNACK to 172.18.0.3 (0, 5) -1612464340: Socket error on client , disconnecting. -1612464360: New connection from 172.18.0.3 on port 1883. -1612464360: Sending CONNACK to 172.18.0.3 (0, 5) -1612464360: Socket error on client , disconnecting. -1612464380: New connection from 172.18.0.3 on port 1883. -1612464380: Sending CONNACK to 172.18.0.3 (0, 5) -1612464380: Socket error on client , disconnecting. -1612464400: New connection from 172.18.0.3 on port 1883. -1612464400: Sending CONNACK to 172.18.0.3 (0, 5) -1612464400: Socket error on client , disconnecting. -1612464420: New connection from 172.18.0.3 on port 1883. -1612464420: Sending CONNACK to 172.18.0.3 (0, 5) -1612464420: Socket error on client , disconnecting. -1612464427: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612464427: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612464427: Error: Permission denied. -1612464440: New connection from 172.18.0.3 on port 1883. -1612464440: Sending CONNACK to 172.18.0.3 (0, 5) -1612464440: Socket error on client , disconnecting. -1612464460: New connection from 172.18.0.3 on port 1883. -1612464460: Sending CONNACK to 172.18.0.3 (0, 5) -1612464460: Socket error on client , disconnecting. -1612464480: New connection from 172.18.0.3 on port 1883. -1612464480: Sending CONNACK to 172.18.0.3 (0, 5) -1612464480: Socket error on client , disconnecting. -1612464500: New connection from 172.18.0.3 on port 1883. -1612464500: Sending CONNACK to 172.18.0.3 (0, 5) -1612464500: Socket error on client , disconnecting. -1612464520: New connection from 172.18.0.3 on port 1883. -1612464520: Sending CONNACK to 172.18.0.3 (0, 5) -1612464520: Socket error on client , disconnecting. -1612464540: New connection from 172.18.0.3 on port 1883. -1612464540: Sending CONNACK to 172.18.0.3 (0, 5) -1612464540: Socket error on client , disconnecting. -1612464560: New connection from 172.18.0.3 on port 1883. -1612464560: Sending CONNACK to 172.18.0.3 (0, 5) -1612464560: Socket error on client , disconnecting. -1612464580: New connection from 172.18.0.3 on port 1883. -1612464580: Sending CONNACK to 172.18.0.3 (0, 5) -1612464580: Socket error on client , disconnecting. -1612464600: New connection from 172.18.0.3 on port 1883. -1612464600: Sending CONNACK to 172.18.0.3 (0, 5) -1612464600: Socket error on client , disconnecting. -1612464620: New connection from 172.18.0.3 on port 1883. -1612464620: Sending CONNACK to 172.18.0.3 (0, 5) -1612464620: Socket error on client , disconnecting. -1612464640: New connection from 172.18.0.3 on port 1883. -1612464640: Sending CONNACK to 172.18.0.3 (0, 5) -1612464640: Socket error on client , disconnecting. -1612464660: New connection from 172.18.0.3 on port 1883. -1612464660: Sending CONNACK to 172.18.0.3 (0, 5) -1612464660: Socket error on client , disconnecting. -1612464680: New connection from 172.18.0.3 on port 1883. -1612464680: Sending CONNACK to 172.18.0.3 (0, 5) -1612464680: Socket error on client , disconnecting. -1612464700: New connection from 172.18.0.3 on port 1883. -1612464700: Sending CONNACK to 172.18.0.3 (0, 5) -1612464700: Socket error on client , disconnecting. -1612464720: New connection from 172.18.0.3 on port 1883. -1612464720: Sending CONNACK to 172.18.0.3 (0, 5) -1612464720: Socket error on client , disconnecting. -1612464740: New connection from 172.18.0.3 on port 1883. -1612464740: Sending CONNACK to 172.18.0.3 (0, 5) -1612464740: Socket error on client , disconnecting. -1612464760: New connection from 172.18.0.3 on port 1883. -1612464760: Sending CONNACK to 172.18.0.3 (0, 5) -1612464760: Socket error on client , disconnecting. -1612464780: New connection from 172.18.0.3 on port 1883. -1612464780: Sending CONNACK to 172.18.0.3 (0, 5) -1612464780: Socket error on client , disconnecting. -1612464800: New connection from 172.18.0.3 on port 1883. -1612464800: Sending CONNACK to 172.18.0.3 (0, 5) -1612464800: Socket error on client , disconnecting. -1612464820: New connection from 172.18.0.3 on port 1883. -1612464820: Sending CONNACK to 172.18.0.3 (0, 5) -1612464820: Socket error on client , disconnecting. -1612464840: New connection from 172.18.0.3 on port 1883. -1612464840: Sending CONNACK to 172.18.0.3 (0, 5) -1612464840: Socket error on client , disconnecting. -1612464860: New connection from 172.18.0.3 on port 1883. -1612464860: Sending CONNACK to 172.18.0.3 (0, 5) -1612464860: Socket error on client , disconnecting. -1612464880: New connection from 172.18.0.3 on port 1883. -1612464880: Sending CONNACK to 172.18.0.3 (0, 5) -1612464880: Socket error on client , disconnecting. -1612464900: New connection from 172.18.0.3 on port 1883. -1612464900: Sending CONNACK to 172.18.0.3 (0, 5) -1612464900: Socket error on client , disconnecting. -1612464920: New connection from 172.18.0.3 on port 1883. -1612464920: Sending CONNACK to 172.18.0.3 (0, 5) -1612464920: Socket error on client , disconnecting. -1612464940: New connection from 172.18.0.3 on port 1883. -1612464940: Sending CONNACK to 172.18.0.3 (0, 5) -1612464940: Socket error on client , disconnecting. -1612464960: New connection from 172.18.0.3 on port 1883. -1612464960: Sending CONNACK to 172.18.0.3 (0, 5) -1612464960: Socket error on client , disconnecting. -1612464980: New connection from 172.18.0.3 on port 1883. -1612464980: Sending CONNACK to 172.18.0.3 (0, 5) -1612464980: Socket error on client , disconnecting. -1612465000: New connection from 172.18.0.3 on port 1883. -1612465000: Sending CONNACK to 172.18.0.3 (0, 5) -1612465000: Socket error on client , disconnecting. -1612465020: New connection from 172.18.0.3 on port 1883. -1612465020: Sending CONNACK to 172.18.0.3 (0, 5) -1612465020: Socket error on client , disconnecting. -1612465040: New connection from 172.18.0.3 on port 1883. -1612465040: Sending CONNACK to 172.18.0.3 (0, 5) -1612465040: Socket error on client , disconnecting. -1612465060: New connection from 172.18.0.3 on port 1883. -1612465060: Sending CONNACK to 172.18.0.3 (0, 5) -1612465060: Socket error on client , disconnecting. -1612465080: New connection from 172.18.0.3 on port 1883. -1612465080: Sending CONNACK to 172.18.0.3 (0, 5) -1612465080: Socket error on client , disconnecting. -1612465100: New connection from 172.18.0.3 on port 1883. -1612465100: Sending CONNACK to 172.18.0.3 (0, 5) -1612465100: Socket error on client , disconnecting. -1612465120: New connection from 172.18.0.3 on port 1883. -1612465120: Sending CONNACK to 172.18.0.3 (0, 5) -1612465120: Socket error on client , disconnecting. -1612465140: New connection from 172.18.0.3 on port 1883. -1612465140: Sending CONNACK to 172.18.0.3 (0, 5) -1612465140: Socket error on client , disconnecting. -1612465160: New connection from 172.18.0.3 on port 1883. -1612465160: Sending CONNACK to 172.18.0.3 (0, 5) -1612465160: Socket error on client , disconnecting. -1612465180: New connection from 172.18.0.3 on port 1883. -1612465180: Sending CONNACK to 172.18.0.3 (0, 5) -1612465180: Socket error on client , disconnecting. -1612465200: New connection from 172.18.0.3 on port 1883. -1612465200: Sending CONNACK to 172.18.0.3 (0, 5) -1612465200: Socket error on client , disconnecting. -1612465220: New connection from 172.18.0.3 on port 1883. -1612465220: Sending CONNACK to 172.18.0.3 (0, 5) -1612465220: Socket error on client , disconnecting. -1612465240: New connection from 172.18.0.3 on port 1883. -1612465240: Sending CONNACK to 172.18.0.3 (0, 5) -1612465240: Socket error on client , disconnecting. -1612465260: New connection from 172.18.0.3 on port 1883. -1612465260: Sending CONNACK to 172.18.0.3 (0, 5) -1612465260: Socket error on client , disconnecting. -1612465280: New connection from 172.18.0.3 on port 1883. -1612465280: Sending CONNACK to 172.18.0.3 (0, 5) -1612465280: Socket error on client , disconnecting. -1612465300: New connection from 172.18.0.3 on port 1883. -1612465300: Sending CONNACK to 172.18.0.3 (0, 5) -1612465300: Socket error on client , disconnecting. -1612465320: New connection from 172.18.0.3 on port 1883. -1612465320: Sending CONNACK to 172.18.0.3 (0, 5) -1612465320: Socket error on client , disconnecting. -1612465340: New connection from 172.18.0.3 on port 1883. -1612465340: Sending CONNACK to 172.18.0.3 (0, 5) -1612465340: Socket error on client , disconnecting. -1612465360: New connection from 172.18.0.3 on port 1883. -1612465360: Sending CONNACK to 172.18.0.3 (0, 5) -1612465360: Socket error on client , disconnecting. -1612465380: New connection from 172.18.0.3 on port 1883. -1612465380: Sending CONNACK to 172.18.0.3 (0, 5) -1612465380: Socket error on client , disconnecting. -1612465400: New connection from 172.18.0.3 on port 1883. -1612465400: Sending CONNACK to 172.18.0.3 (0, 5) -1612465400: Socket error on client , disconnecting. -1612465420: New connection from 172.18.0.3 on port 1883. -1612465420: Sending CONNACK to 172.18.0.3 (0, 5) -1612465420: Socket error on client , disconnecting. -1612465440: New connection from 172.18.0.3 on port 1883. -1612465440: Sending CONNACK to 172.18.0.3 (0, 5) -1612465440: Socket error on client , disconnecting. -1612465460: New connection from 172.18.0.3 on port 1883. -1612465460: Sending CONNACK to 172.18.0.3 (0, 5) -1612465460: Socket error on client , disconnecting. -1612465480: New connection from 172.18.0.3 on port 1883. -1612465480: Sending CONNACK to 172.18.0.3 (0, 5) -1612465480: Socket error on client , disconnecting. -1612465500: New connection from 172.18.0.3 on port 1883. -1612465500: Sending CONNACK to 172.18.0.3 (0, 5) -1612465500: Socket error on client , disconnecting. -1612465520: New connection from 172.18.0.3 on port 1883. -1612465520: Sending CONNACK to 172.18.0.3 (0, 5) -1612465520: Socket error on client , disconnecting. -1612465540: New connection from 172.18.0.3 on port 1883. -1612465540: Sending CONNACK to 172.18.0.3 (0, 5) -1612465540: Socket error on client , disconnecting. -1612465560: New connection from 172.18.0.3 on port 1883. -1612465560: Sending CONNACK to 172.18.0.3 (0, 5) -1612465560: Socket error on client , disconnecting. -1612465580: New connection from 172.18.0.3 on port 1883. -1612465580: Sending CONNACK to 172.18.0.3 (0, 5) -1612465580: Socket error on client , disconnecting. -1612465600: New connection from 172.18.0.3 on port 1883. -1612465600: Sending CONNACK to 172.18.0.3 (0, 5) -1612465600: Socket error on client , disconnecting. -1612465620: New connection from 172.18.0.3 on port 1883. -1612465620: Sending CONNACK to 172.18.0.3 (0, 5) -1612465620: Socket error on client , disconnecting. -1612465640: New connection from 172.18.0.3 on port 1883. -1612465640: Sending CONNACK to 172.18.0.3 (0, 5) -1612465640: Socket error on client , disconnecting. -1612465660: New connection from 172.18.0.3 on port 1883. -1612465660: Sending CONNACK to 172.18.0.3 (0, 5) -1612465660: Socket error on client , disconnecting. -1612465680: New connection from 172.18.0.3 on port 1883. -1612465680: Sending CONNACK to 172.18.0.3 (0, 5) -1612465680: Socket error on client , disconnecting. -1612465700: New connection from 172.18.0.3 on port 1883. -1612465700: Sending CONNACK to 172.18.0.3 (0, 5) -1612465700: Socket error on client , disconnecting. -1612465720: New connection from 172.18.0.3 on port 1883. -1612465720: Sending CONNACK to 172.18.0.3 (0, 5) -1612465720: Socket error on client , disconnecting. -1612465740: New connection from 172.18.0.3 on port 1883. -1612465740: Sending CONNACK to 172.18.0.3 (0, 5) -1612465740: Socket error on client , disconnecting. -1612465760: New connection from 172.18.0.3 on port 1883. -1612465760: Sending CONNACK to 172.18.0.3 (0, 5) -1612465760: Socket error on client , disconnecting. -1612465780: New connection from 172.18.0.3 on port 1883. -1612465780: Sending CONNACK to 172.18.0.3 (0, 5) -1612465780: Socket error on client , disconnecting. -1612465800: New connection from 172.18.0.3 on port 1883. -1612465800: Sending CONNACK to 172.18.0.3 (0, 5) -1612465800: Socket error on client , disconnecting. -1612465820: New connection from 172.18.0.3 on port 1883. -1612465820: Sending CONNACK to 172.18.0.3 (0, 5) -1612465820: Socket error on client , disconnecting. -1612465840: New connection from 172.18.0.3 on port 1883. -1612465840: Sending CONNACK to 172.18.0.3 (0, 5) -1612465840: Socket error on client , disconnecting. -1612465860: New connection from 172.18.0.3 on port 1883. -1612465860: Sending CONNACK to 172.18.0.3 (0, 5) -1612465860: Socket error on client , disconnecting. -1612465880: New connection from 172.18.0.3 on port 1883. -1612465880: Sending CONNACK to 172.18.0.3 (0, 5) -1612465880: Socket error on client , disconnecting. -1612465900: New connection from 172.18.0.3 on port 1883. -1612465900: Sending CONNACK to 172.18.0.3 (0, 5) -1612465900: Socket error on client , disconnecting. -1612465920: New connection from 172.18.0.3 on port 1883. -1612465920: Sending CONNACK to 172.18.0.3 (0, 5) -1612465920: Socket error on client , disconnecting. -1612465940: New connection from 172.18.0.3 on port 1883. -1612465940: Sending CONNACK to 172.18.0.3 (0, 5) -1612465940: Socket error on client , disconnecting. -1612465960: New connection from 172.18.0.3 on port 1883. -1612465960: Sending CONNACK to 172.18.0.3 (0, 5) -1612465960: Socket error on client , disconnecting. -1612465980: New connection from 172.18.0.3 on port 1883. -1612465980: Sending CONNACK to 172.18.0.3 (0, 5) -1612465980: Socket error on client , disconnecting. -1612466000: New connection from 172.18.0.3 on port 1883. -1612466000: Sending CONNACK to 172.18.0.3 (0, 5) -1612466000: Socket error on client , disconnecting. -1612466020: New connection from 172.18.0.3 on port 1883. -1612466020: Sending CONNACK to 172.18.0.3 (0, 5) -1612466020: Socket error on client , disconnecting. -1612466040: New connection from 172.18.0.3 on port 1883. -1612466040: Sending CONNACK to 172.18.0.3 (0, 5) -1612466040: Socket error on client , disconnecting. -1612466060: New connection from 172.18.0.3 on port 1883. -1612466060: Sending CONNACK to 172.18.0.3 (0, 5) -1612466060: Socket error on client , disconnecting. -1612466080: New connection from 172.18.0.3 on port 1883. -1612466080: Sending CONNACK to 172.18.0.3 (0, 5) -1612466080: Socket error on client , disconnecting. -1612466100: New connection from 172.18.0.3 on port 1883. -1612466100: Sending CONNACK to 172.18.0.3 (0, 5) -1612466100: Socket error on client , disconnecting. -1612466120: New connection from 172.18.0.3 on port 1883. -1612466120: Sending CONNACK to 172.18.0.3 (0, 5) -1612466120: Socket error on client , disconnecting. -1612466140: New connection from 172.18.0.3 on port 1883. -1612466140: Sending CONNACK to 172.18.0.3 (0, 5) -1612466140: Socket error on client , disconnecting. -1612466160: New connection from 172.18.0.3 on port 1883. -1612466160: Sending CONNACK to 172.18.0.3 (0, 5) -1612466160: Socket error on client , disconnecting. -1612466180: New connection from 172.18.0.3 on port 1883. -1612466180: Sending CONNACK to 172.18.0.3 (0, 5) -1612466180: Socket error on client , disconnecting. -1612466200: New connection from 172.18.0.3 on port 1883. -1612466200: Sending CONNACK to 172.18.0.3 (0, 5) -1612466200: Socket error on client , disconnecting. -1612466220: New connection from 172.18.0.3 on port 1883. -1612466220: Sending CONNACK to 172.18.0.3 (0, 5) -1612466220: Socket error on client , disconnecting. -1612466228: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612466228: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612466228: Error: Permission denied. -1612466240: New connection from 172.18.0.3 on port 1883. -1612466240: Sending CONNACK to 172.18.0.3 (0, 5) -1612466240: Socket error on client , disconnecting. -1612466260: New connection from 172.18.0.3 on port 1883. -1612466260: Sending CONNACK to 172.18.0.3 (0, 5) -1612466260: Socket error on client , disconnecting. -1612466280: New connection from 172.18.0.3 on port 1883. -1612466280: Sending CONNACK to 172.18.0.3 (0, 5) -1612466280: Socket error on client , disconnecting. -1612466300: New connection from 172.18.0.3 on port 1883. -1612466300: Sending CONNACK to 172.18.0.3 (0, 5) -1612466300: Socket error on client , disconnecting. -1612466320: New connection from 172.18.0.3 on port 1883. -1612466320: Sending CONNACK to 172.18.0.3 (0, 5) -1612466320: Socket error on client , disconnecting. -1612466340: New connection from 172.18.0.3 on port 1883. -1612466340: Sending CONNACK to 172.18.0.3 (0, 5) -1612466340: Socket error on client , disconnecting. -1612466360: New connection from 172.18.0.3 on port 1883. -1612466360: Sending CONNACK to 172.18.0.3 (0, 5) -1612466360: Socket error on client , disconnecting. -1612466380: New connection from 172.18.0.3 on port 1883. -1612466380: Sending CONNACK to 172.18.0.3 (0, 5) -1612466380: Socket error on client , disconnecting. -1612466400: New connection from 172.18.0.3 on port 1883. -1612466400: Sending CONNACK to 172.18.0.3 (0, 5) -1612466400: Socket error on client , disconnecting. -1612466420: New connection from 172.18.0.3 on port 1883. -1612466420: Sending CONNACK to 172.18.0.3 (0, 5) -1612466420: Socket error on client , disconnecting. -1612466440: New connection from 172.18.0.3 on port 1883. -1612466440: Sending CONNACK to 172.18.0.3 (0, 5) -1612466440: Socket error on client , disconnecting. -1612466460: New connection from 172.18.0.3 on port 1883. -1612466460: Sending CONNACK to 172.18.0.3 (0, 5) -1612466460: Socket error on client , disconnecting. -1612466480: New connection from 172.18.0.3 on port 1883. -1612466480: Sending CONNACK to 172.18.0.3 (0, 5) -1612466480: Socket error on client , disconnecting. -1612466500: New connection from 172.18.0.3 on port 1883. -1612466500: Sending CONNACK to 172.18.0.3 (0, 5) -1612466500: Socket error on client , disconnecting. -1612466520: New connection from 172.18.0.3 on port 1883. -1612466520: Sending CONNACK to 172.18.0.3 (0, 5) -1612466520: Socket error on client , disconnecting. -1612466540: New connection from 172.18.0.3 on port 1883. -1612466540: Sending CONNACK to 172.18.0.3 (0, 5) -1612466540: Socket error on client , disconnecting. -1612466560: New connection from 172.18.0.3 on port 1883. -1612466560: Sending CONNACK to 172.18.0.3 (0, 5) -1612466560: Socket error on client , disconnecting. -1612466580: New connection from 172.18.0.3 on port 1883. -1612466580: Sending CONNACK to 172.18.0.3 (0, 5) -1612466580: Socket error on client , disconnecting. -1612466600: New connection from 172.18.0.3 on port 1883. -1612466600: Sending CONNACK to 172.18.0.3 (0, 5) -1612466600: Socket error on client , disconnecting. -1612466620: New connection from 172.18.0.3 on port 1883. -1612466620: Sending CONNACK to 172.18.0.3 (0, 5) -1612466620: Socket error on client , disconnecting. -1612466640: New connection from 172.18.0.3 on port 1883. -1612466640: Sending CONNACK to 172.18.0.3 (0, 5) -1612466640: Socket error on client , disconnecting. -1612466660: New connection from 172.18.0.3 on port 1883. -1612466660: Sending CONNACK to 172.18.0.3 (0, 5) -1612466660: Socket error on client , disconnecting. -1612466680: New connection from 172.18.0.3 on port 1883. -1612466680: Sending CONNACK to 172.18.0.3 (0, 5) -1612466680: Socket error on client , disconnecting. -1612466700: New connection from 172.18.0.3 on port 1883. -1612466700: Sending CONNACK to 172.18.0.3 (0, 5) -1612466700: Socket error on client , disconnecting. -1612466720: New connection from 172.18.0.3 on port 1883. -1612466720: Sending CONNACK to 172.18.0.3 (0, 5) -1612466720: Socket error on client , disconnecting. -1612466740: New connection from 172.18.0.3 on port 1883. -1612466740: Sending CONNACK to 172.18.0.3 (0, 5) -1612466740: Socket error on client , disconnecting. -1612466760: New connection from 172.18.0.3 on port 1883. -1612466760: Sending CONNACK to 172.18.0.3 (0, 5) -1612466760: Socket error on client , disconnecting. -1612466780: New connection from 172.18.0.3 on port 1883. -1612466780: Sending CONNACK to 172.18.0.3 (0, 5) -1612466780: Socket error on client , disconnecting. -1612466800: New connection from 172.18.0.3 on port 1883. -1612466800: Sending CONNACK to 172.18.0.3 (0, 5) -1612466800: Socket error on client , disconnecting. -1612466820: New connection from 172.18.0.3 on port 1883. -1612466820: Sending CONNACK to 172.18.0.3 (0, 5) -1612466820: Socket error on client , disconnecting. -1612466840: New connection from 172.18.0.3 on port 1883. -1612466840: Sending CONNACK to 172.18.0.3 (0, 5) -1612466840: Socket error on client , disconnecting. -1612466860: New connection from 172.18.0.3 on port 1883. -1612466860: Sending CONNACK to 172.18.0.3 (0, 5) -1612466860: Socket error on client , disconnecting. -1612466880: New connection from 172.18.0.3 on port 1883. -1612466880: Sending CONNACK to 172.18.0.3 (0, 5) -1612466880: Socket error on client , disconnecting. -1612466900: New connection from 172.18.0.3 on port 1883. -1612466900: Sending CONNACK to 172.18.0.3 (0, 5) -1612466900: Socket error on client , disconnecting. -1612466920: New connection from 172.18.0.3 on port 1883. -1612466920: Sending CONNACK to 172.18.0.3 (0, 5) -1612466920: Socket error on client , disconnecting. -1612466940: New connection from 172.18.0.3 on port 1883. -1612466940: Sending CONNACK to 172.18.0.3 (0, 5) -1612466940: Socket error on client , disconnecting. -1612466960: New connection from 172.18.0.3 on port 1883. -1612466960: Sending CONNACK to 172.18.0.3 (0, 5) -1612466960: Socket error on client , disconnecting. -1612466980: New connection from 172.18.0.3 on port 1883. -1612466980: Sending CONNACK to 172.18.0.3 (0, 5) -1612466980: Socket error on client , disconnecting. -1612467000: New connection from 172.18.0.3 on port 1883. -1612467000: Sending CONNACK to 172.18.0.3 (0, 5) -1612467000: Socket error on client , disconnecting. -1612467020: New connection from 172.18.0.3 on port 1883. -1612467020: Sending CONNACK to 172.18.0.3 (0, 5) -1612467020: Socket error on client , disconnecting. -1612467040: New connection from 172.18.0.3 on port 1883. -1612467040: Sending CONNACK to 172.18.0.3 (0, 5) -1612467040: Socket error on client , disconnecting. -1612467060: New connection from 172.18.0.3 on port 1883. -1612467060: Sending CONNACK to 172.18.0.3 (0, 5) -1612467060: Socket error on client , disconnecting. -1612467080: New connection from 172.18.0.3 on port 1883. -1612467080: Sending CONNACK to 172.18.0.3 (0, 5) -1612467080: Socket error on client , disconnecting. -1612467100: New connection from 172.18.0.3 on port 1883. -1612467100: Sending CONNACK to 172.18.0.3 (0, 5) -1612467100: Socket error on client , disconnecting. -1612467120: New connection from 172.18.0.3 on port 1883. -1612467120: Sending CONNACK to 172.18.0.3 (0, 5) -1612467120: Socket error on client , disconnecting. -1612467140: New connection from 172.18.0.3 on port 1883. -1612467140: Sending CONNACK to 172.18.0.3 (0, 5) -1612467140: Socket error on client , disconnecting. -1612467160: New connection from 172.18.0.3 on port 1883. -1612467160: Sending CONNACK to 172.18.0.3 (0, 5) -1612467160: Socket error on client , disconnecting. -1612467180: New connection from 172.18.0.3 on port 1883. -1612467180: Sending CONNACK to 172.18.0.3 (0, 5) -1612467180: Socket error on client , disconnecting. -1612467200: New connection from 172.18.0.3 on port 1883. -1612467200: Sending CONNACK to 172.18.0.3 (0, 5) -1612467200: Socket error on client , disconnecting. -1612467220: New connection from 172.18.0.3 on port 1883. -1612467220: Sending CONNACK to 172.18.0.3 (0, 5) -1612467220: Socket error on client , disconnecting. -1612467240: New connection from 172.18.0.3 on port 1883. -1612467240: Sending CONNACK to 172.18.0.3 (0, 5) -1612467240: Socket error on client , disconnecting. -1612467260: New connection from 172.18.0.3 on port 1883. -1612467260: Sending CONNACK to 172.18.0.3 (0, 5) -1612467260: Socket error on client , disconnecting. -1612467280: New connection from 172.18.0.3 on port 1883. -1612467280: Sending CONNACK to 172.18.0.3 (0, 5) -1612467280: Socket error on client , disconnecting. -1612467300: New connection from 172.18.0.3 on port 1883. -1612467300: Sending CONNACK to 172.18.0.3 (0, 5) -1612467300: Socket error on client , disconnecting. -1612467320: New connection from 172.18.0.3 on port 1883. -1612467320: Sending CONNACK to 172.18.0.3 (0, 5) -1612467320: Socket error on client , disconnecting. -1612467340: New connection from 172.18.0.3 on port 1883. -1612467340: Sending CONNACK to 172.18.0.3 (0, 5) -1612467340: Socket error on client , disconnecting. -1612467360: New connection from 172.18.0.3 on port 1883. -1612467360: Sending CONNACK to 172.18.0.3 (0, 5) -1612467360: Socket error on client , disconnecting. -1612467380: New connection from 172.18.0.3 on port 1883. -1612467380: Sending CONNACK to 172.18.0.3 (0, 5) -1612467380: Socket error on client , disconnecting. -1612467400: New connection from 172.18.0.3 on port 1883. -1612467400: Sending CONNACK to 172.18.0.3 (0, 5) -1612467400: Socket error on client , disconnecting. -1612467420: New connection from 172.18.0.3 on port 1883. -1612467420: Sending CONNACK to 172.18.0.3 (0, 5) -1612467420: Socket error on client , disconnecting. -1612467440: New connection from 172.18.0.3 on port 1883. -1612467440: Sending CONNACK to 172.18.0.3 (0, 5) -1612467440: Socket error on client , disconnecting. -1612467460: New connection from 172.18.0.3 on port 1883. -1612467460: Sending CONNACK to 172.18.0.3 (0, 5) -1612467460: Socket error on client , disconnecting. -1612467480: New connection from 172.18.0.3 on port 1883. -1612467480: Sending CONNACK to 172.18.0.3 (0, 5) -1612467480: Socket error on client , disconnecting. -1612467500: New connection from 172.18.0.3 on port 1883. -1612467500: Sending CONNACK to 172.18.0.3 (0, 5) -1612467500: Socket error on client , disconnecting. -1612467520: New connection from 172.18.0.3 on port 1883. -1612467520: Sending CONNACK to 172.18.0.3 (0, 5) -1612467520: Socket error on client , disconnecting. -1612467540: New connection from 172.18.0.3 on port 1883. -1612467540: Sending CONNACK to 172.18.0.3 (0, 5) -1612467540: Socket error on client , disconnecting. -1612467560: New connection from 172.18.0.3 on port 1883. -1612467560: Sending CONNACK to 172.18.0.3 (0, 5) -1612467560: Socket error on client , disconnecting. -1612467580: New connection from 172.18.0.3 on port 1883. -1612467580: Sending CONNACK to 172.18.0.3 (0, 5) -1612467580: Socket error on client , disconnecting. -1612467600: New connection from 172.18.0.3 on port 1883. -1612467600: Sending CONNACK to 172.18.0.3 (0, 5) -1612467600: Socket error on client , disconnecting. -1612467620: New connection from 172.18.0.3 on port 1883. -1612467620: Sending CONNACK to 172.18.0.3 (0, 5) -1612467620: Socket error on client , disconnecting. -1612467640: New connection from 172.18.0.3 on port 1883. -1612467640: Sending CONNACK to 172.18.0.3 (0, 5) -1612467640: Socket error on client , disconnecting. -1612467660: New connection from 172.18.0.3 on port 1883. -1612467660: Sending CONNACK to 172.18.0.3 (0, 5) -1612467660: Socket error on client , disconnecting. -1612467680: New connection from 172.18.0.3 on port 1883. -1612467680: Sending CONNACK to 172.18.0.3 (0, 5) -1612467680: Socket error on client , disconnecting. -1612467700: New connection from 172.18.0.3 on port 1883. -1612467700: Sending CONNACK to 172.18.0.3 (0, 5) -1612467700: Socket error on client , disconnecting. -1612467720: New connection from 172.18.0.3 on port 1883. -1612467720: Sending CONNACK to 172.18.0.3 (0, 5) -1612467720: Socket error on client , disconnecting. -1612467740: New connection from 172.18.0.3 on port 1883. -1612467740: Sending CONNACK to 172.18.0.3 (0, 5) -1612467740: Socket error on client , disconnecting. -1612467760: New connection from 172.18.0.3 on port 1883. -1612467760: Sending CONNACK to 172.18.0.3 (0, 5) -1612467760: Socket error on client , disconnecting. -1612467780: New connection from 172.18.0.3 on port 1883. -1612467780: Sending CONNACK to 172.18.0.3 (0, 5) -1612467780: Socket error on client , disconnecting. -1612467800: New connection from 172.18.0.3 on port 1883. -1612467800: Sending CONNACK to 172.18.0.3 (0, 5) -1612467800: Socket error on client , disconnecting. -1612467820: New connection from 172.18.0.3 on port 1883. -1612467820: Sending CONNACK to 172.18.0.3 (0, 5) -1612467820: Socket error on client , disconnecting. -1612467840: New connection from 172.18.0.3 on port 1883. -1612467840: Sending CONNACK to 172.18.0.3 (0, 5) -1612467840: Socket error on client , disconnecting. -1612467860: New connection from 172.18.0.3 on port 1883. -1612467860: Sending CONNACK to 172.18.0.3 (0, 5) -1612467860: Socket error on client , disconnecting. -1612467880: New connection from 172.18.0.3 on port 1883. -1612467880: Sending CONNACK to 172.18.0.3 (0, 5) -1612467880: Socket error on client , disconnecting. -1612467900: New connection from 172.18.0.3 on port 1883. -1612467900: Sending CONNACK to 172.18.0.3 (0, 5) -1612467900: Socket error on client , disconnecting. -1612467920: New connection from 172.18.0.3 on port 1883. -1612467920: Sending CONNACK to 172.18.0.3 (0, 5) -1612467920: Socket error on client , disconnecting. -1612467940: New connection from 172.18.0.3 on port 1883. -1612467940: Sending CONNACK to 172.18.0.3 (0, 5) -1612467940: Socket error on client , disconnecting. -1612467960: New connection from 172.18.0.3 on port 1883. -1612467960: Sending CONNACK to 172.18.0.3 (0, 5) -1612467960: Socket error on client , disconnecting. -1612467980: New connection from 172.18.0.3 on port 1883. -1612467980: Sending CONNACK to 172.18.0.3 (0, 5) -1612467980: Socket error on client , disconnecting. -1612468000: New connection from 172.18.0.3 on port 1883. -1612468000: Sending CONNACK to 172.18.0.3 (0, 5) -1612468000: Socket error on client , disconnecting. -1612468020: New connection from 172.18.0.3 on port 1883. -1612468020: Sending CONNACK to 172.18.0.3 (0, 5) -1612468020: Socket error on client , disconnecting. -1612468029: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612468029: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612468029: Error: Permission denied. -1612468040: New connection from 172.18.0.3 on port 1883. -1612468040: Sending CONNACK to 172.18.0.3 (0, 5) -1612468040: Socket error on client , disconnecting. -1612468060: New connection from 172.18.0.3 on port 1883. -1612468060: Sending CONNACK to 172.18.0.3 (0, 5) -1612468060: Socket error on client , disconnecting. -1612468080: New connection from 172.18.0.3 on port 1883. -1612468080: Sending CONNACK to 172.18.0.3 (0, 5) -1612468080: Socket error on client , disconnecting. -1612468100: New connection from 172.18.0.3 on port 1883. -1612468100: Sending CONNACK to 172.18.0.3 (0, 5) -1612468100: Socket error on client , disconnecting. -1612468120: New connection from 172.18.0.3 on port 1883. -1612468120: Sending CONNACK to 172.18.0.3 (0, 5) -1612468120: Socket error on client , disconnecting. -1612468140: New connection from 172.18.0.3 on port 1883. -1612468140: Sending CONNACK to 172.18.0.3 (0, 5) -1612468140: Socket error on client , disconnecting. -1612468160: New connection from 172.18.0.3 on port 1883. -1612468160: Sending CONNACK to 172.18.0.3 (0, 5) -1612468160: Socket error on client , disconnecting. -1612468180: New connection from 172.18.0.3 on port 1883. -1612468180: Sending CONNACK to 172.18.0.3 (0, 5) -1612468180: Socket error on client , disconnecting. -1612468200: New connection from 172.18.0.3 on port 1883. -1612468200: Sending CONNACK to 172.18.0.3 (0, 5) -1612468200: Socket error on client , disconnecting. -1612468220: New connection from 172.18.0.3 on port 1883. -1612468220: Sending CONNACK to 172.18.0.3 (0, 5) -1612468220: Socket error on client , disconnecting. -1612468240: New connection from 172.18.0.3 on port 1883. -1612468240: Sending CONNACK to 172.18.0.3 (0, 5) -1612468240: Socket error on client , disconnecting. -1612468260: New connection from 172.18.0.3 on port 1883. -1612468260: Sending CONNACK to 172.18.0.3 (0, 5) -1612468260: Socket error on client , disconnecting. -1612468280: New connection from 172.18.0.3 on port 1883. -1612468280: Sending CONNACK to 172.18.0.3 (0, 5) -1612468280: Socket error on client , disconnecting. -1612468300: New connection from 172.18.0.3 on port 1883. -1612468300: Sending CONNACK to 172.18.0.3 (0, 5) -1612468300: Socket error on client , disconnecting. -1612468320: New connection from 172.18.0.3 on port 1883. -1612468320: Sending CONNACK to 172.18.0.3 (0, 5) -1612468320: Socket error on client , disconnecting. -1612468340: New connection from 172.18.0.3 on port 1883. -1612468340: Sending CONNACK to 172.18.0.3 (0, 5) -1612468340: Socket error on client , disconnecting. -1612468360: New connection from 172.18.0.3 on port 1883. -1612468360: Sending CONNACK to 172.18.0.3 (0, 5) -1612468360: Socket error on client , disconnecting. -1612468380: New connection from 172.18.0.3 on port 1883. -1612468380: Sending CONNACK to 172.18.0.3 (0, 5) -1612468380: Socket error on client , disconnecting. -1612468400: New connection from 172.18.0.3 on port 1883. -1612468400: Sending CONNACK to 172.18.0.3 (0, 5) -1612468400: Socket error on client , disconnecting. -1612468420: New connection from 172.18.0.3 on port 1883. -1612468420: Sending CONNACK to 172.18.0.3 (0, 5) -1612468420: Socket error on client , disconnecting. -1612468440: New connection from 172.18.0.3 on port 1883. -1612468440: Sending CONNACK to 172.18.0.3 (0, 5) -1612468440: Socket error on client , disconnecting. -1612468460: New connection from 172.18.0.3 on port 1883. -1612468460: Sending CONNACK to 172.18.0.3 (0, 5) -1612468460: Socket error on client , disconnecting. -1612468480: New connection from 172.18.0.3 on port 1883. -1612468480: Sending CONNACK to 172.18.0.3 (0, 5) -1612468480: Socket error on client , disconnecting. -1612468500: New connection from 172.18.0.3 on port 1883. -1612468500: Sending CONNACK to 172.18.0.3 (0, 5) -1612468500: Socket error on client , disconnecting. -1612468520: New connection from 172.18.0.3 on port 1883. -1612468520: Sending CONNACK to 172.18.0.3 (0, 5) -1612468520: Socket error on client , disconnecting. -1612468540: New connection from 172.18.0.3 on port 1883. -1612468540: Sending CONNACK to 172.18.0.3 (0, 5) -1612468540: Socket error on client , disconnecting. -1612468560: New connection from 172.18.0.3 on port 1883. -1612468560: Sending CONNACK to 172.18.0.3 (0, 5) -1612468560: Socket error on client , disconnecting. -1612468580: New connection from 172.18.0.3 on port 1883. -1612468580: Sending CONNACK to 172.18.0.3 (0, 5) -1612468580: Socket error on client , disconnecting. -1612468600: New connection from 172.18.0.3 on port 1883. -1612468600: Sending CONNACK to 172.18.0.3 (0, 5) -1612468600: Socket error on client , disconnecting. -1612468620: New connection from 172.18.0.3 on port 1883. -1612468620: Sending CONNACK to 172.18.0.3 (0, 5) -1612468620: Socket error on client , disconnecting. -1612468640: New connection from 172.18.0.3 on port 1883. -1612468640: Sending CONNACK to 172.18.0.3 (0, 5) -1612468640: Socket error on client , disconnecting. -1612468660: New connection from 172.18.0.3 on port 1883. -1612468660: Sending CONNACK to 172.18.0.3 (0, 5) -1612468660: Socket error on client , disconnecting. -1612468680: New connection from 172.18.0.3 on port 1883. -1612468680: Sending CONNACK to 172.18.0.3 (0, 5) -1612468680: Socket error on client , disconnecting. -1612468700: New connection from 172.18.0.3 on port 1883. -1612468700: Sending CONNACK to 172.18.0.3 (0, 5) -1612468700: Socket error on client , disconnecting. -1612468720: New connection from 172.18.0.3 on port 1883. -1612468720: Sending CONNACK to 172.18.0.3 (0, 5) -1612468720: Socket error on client , disconnecting. -1612468740: New connection from 172.18.0.3 on port 1883. -1612468740: Sending CONNACK to 172.18.0.3 (0, 5) -1612468740: Socket error on client , disconnecting. -1612468760: New connection from 172.18.0.3 on port 1883. -1612468760: Sending CONNACK to 172.18.0.3 (0, 5) -1612468760: Socket error on client , disconnecting. -1612468780: New connection from 172.18.0.3 on port 1883. -1612468780: Sending CONNACK to 172.18.0.3 (0, 5) -1612468780: Socket error on client , disconnecting. -1612468800: New connection from 172.18.0.3 on port 1883. -1612468800: Sending CONNACK to 172.18.0.3 (0, 5) -1612468800: Socket error on client , disconnecting. -1612468820: New connection from 172.18.0.3 on port 1883. -1612468820: Sending CONNACK to 172.18.0.3 (0, 5) -1612468820: Socket error on client , disconnecting. -1612468840: New connection from 172.18.0.3 on port 1883. -1612468840: Sending CONNACK to 172.18.0.3 (0, 5) -1612468840: Socket error on client , disconnecting. -1612468860: New connection from 172.18.0.3 on port 1883. -1612468860: Sending CONNACK to 172.18.0.3 (0, 5) -1612468860: Socket error on client , disconnecting. -1612468880: New connection from 172.18.0.3 on port 1883. -1612468880: Sending CONNACK to 172.18.0.3 (0, 5) -1612468880: Socket error on client , disconnecting. -1612468900: New connection from 172.18.0.3 on port 1883. -1612468900: Sending CONNACK to 172.18.0.3 (0, 5) -1612468900: Socket error on client , disconnecting. -1612468920: New connection from 172.18.0.3 on port 1883. -1612468920: Sending CONNACK to 172.18.0.3 (0, 5) -1612468920: Socket error on client , disconnecting. -1612468940: New connection from 172.18.0.3 on port 1883. -1612468940: Sending CONNACK to 172.18.0.3 (0, 5) -1612468940: Socket error on client , disconnecting. -1612468960: New connection from 172.18.0.3 on port 1883. -1612468960: Sending CONNACK to 172.18.0.3 (0, 5) -1612468960: Socket error on client , disconnecting. -1612468980: New connection from 172.18.0.3 on port 1883. -1612468980: Sending CONNACK to 172.18.0.3 (0, 5) -1612468980: Socket error on client , disconnecting. -1612469000: New connection from 172.18.0.3 on port 1883. -1612469000: Sending CONNACK to 172.18.0.3 (0, 5) -1612469000: Socket error on client , disconnecting. -1612469020: New connection from 172.18.0.3 on port 1883. -1612469020: Sending CONNACK to 172.18.0.3 (0, 5) -1612469020: Socket error on client , disconnecting. -1612469040: New connection from 172.18.0.3 on port 1883. -1612469040: Sending CONNACK to 172.18.0.3 (0, 5) -1612469040: Socket error on client , disconnecting. -1612469060: New connection from 172.18.0.3 on port 1883. -1612469060: Sending CONNACK to 172.18.0.3 (0, 5) -1612469060: Socket error on client , disconnecting. -1612469080: New connection from 172.18.0.3 on port 1883. -1612469080: Sending CONNACK to 172.18.0.3 (0, 5) -1612469080: Socket error on client , disconnecting. -1612469100: New connection from 172.18.0.3 on port 1883. -1612469100: Sending CONNACK to 172.18.0.3 (0, 5) -1612469100: Socket error on client , disconnecting. -1612469120: New connection from 172.18.0.3 on port 1883. -1612469120: Sending CONNACK to 172.18.0.3 (0, 5) -1612469120: Socket error on client , disconnecting. -1612469140: New connection from 172.18.0.3 on port 1883. -1612469140: Sending CONNACK to 172.18.0.3 (0, 5) -1612469140: Socket error on client , disconnecting. -1612469160: New connection from 172.18.0.3 on port 1883. -1612469160: Sending CONNACK to 172.18.0.3 (0, 5) -1612469160: Socket error on client , disconnecting. -1612469180: New connection from 172.18.0.3 on port 1883. -1612469180: Sending CONNACK to 172.18.0.3 (0, 5) -1612469180: Socket error on client , disconnecting. -1612469200: New connection from 172.18.0.3 on port 1883. -1612469200: Sending CONNACK to 172.18.0.3 (0, 5) -1612469200: Socket error on client , disconnecting. -1612469220: New connection from 172.18.0.3 on port 1883. -1612469220: Sending CONNACK to 172.18.0.3 (0, 5) -1612469220: Socket error on client , disconnecting. -1612469240: New connection from 172.18.0.3 on port 1883. -1612469240: Sending CONNACK to 172.18.0.3 (0, 5) -1612469240: Socket error on client , disconnecting. -1612469260: New connection from 172.18.0.3 on port 1883. -1612469260: Sending CONNACK to 172.18.0.3 (0, 5) -1612469260: Socket error on client , disconnecting. -1612469280: New connection from 172.18.0.3 on port 1883. -1612469280: Sending CONNACK to 172.18.0.3 (0, 5) -1612469280: Socket error on client , disconnecting. -1612469300: New connection from 172.18.0.3 on port 1883. -1612469300: Sending CONNACK to 172.18.0.3 (0, 5) -1612469300: Socket error on client , disconnecting. -1612469320: New connection from 172.18.0.3 on port 1883. -1612469320: Sending CONNACK to 172.18.0.3 (0, 5) -1612469320: Socket error on client , disconnecting. -1612469340: New connection from 172.18.0.3 on port 1883. -1612469340: Sending CONNACK to 172.18.0.3 (0, 5) -1612469340: Socket error on client , disconnecting. -1612469360: New connection from 172.18.0.3 on port 1883. -1612469360: Sending CONNACK to 172.18.0.3 (0, 5) -1612469360: Socket error on client , disconnecting. -1612469380: New connection from 172.18.0.3 on port 1883. -1612469380: Sending CONNACK to 172.18.0.3 (0, 5) -1612469380: Socket error on client , disconnecting. -1612469400: New connection from 172.18.0.3 on port 1883. -1612469400: Sending CONNACK to 172.18.0.3 (0, 5) -1612469400: Socket error on client , disconnecting. -1612469420: New connection from 172.18.0.3 on port 1883. -1612469420: Sending CONNACK to 172.18.0.3 (0, 5) -1612469420: Socket error on client , disconnecting. -1612469440: New connection from 172.18.0.3 on port 1883. -1612469440: Sending CONNACK to 172.18.0.3 (0, 5) -1612469440: Socket error on client , disconnecting. -1612469460: New connection from 172.18.0.3 on port 1883. -1612469460: Sending CONNACK to 172.18.0.3 (0, 5) -1612469460: Socket error on client , disconnecting. -1612469480: New connection from 172.18.0.3 on port 1883. -1612469480: Sending CONNACK to 172.18.0.3 (0, 5) -1612469480: Socket error on client , disconnecting. -1612469500: New connection from 172.18.0.3 on port 1883. -1612469500: Sending CONNACK to 172.18.0.3 (0, 5) -1612469500: Socket error on client , disconnecting. -1612469520: New connection from 172.18.0.3 on port 1883. -1612469520: Sending CONNACK to 172.18.0.3 (0, 5) -1612469520: Socket error on client , disconnecting. -1612469540: New connection from 172.18.0.3 on port 1883. -1612469540: Sending CONNACK to 172.18.0.3 (0, 5) -1612469540: Socket error on client , disconnecting. -1612469560: New connection from 172.18.0.3 on port 1883. -1612469560: Sending CONNACK to 172.18.0.3 (0, 5) -1612469560: Socket error on client , disconnecting. -1612469580: New connection from 172.18.0.3 on port 1883. -1612469580: Sending CONNACK to 172.18.0.3 (0, 5) -1612469580: Socket error on client , disconnecting. -1612469600: New connection from 172.18.0.3 on port 1883. -1612469600: Sending CONNACK to 172.18.0.3 (0, 5) -1612469600: Socket error on client , disconnecting. -1612469620: New connection from 172.18.0.3 on port 1883. -1612469620: Sending CONNACK to 172.18.0.3 (0, 5) -1612469620: Socket error on client , disconnecting. -1612469640: New connection from 172.18.0.3 on port 1883. -1612469640: Sending CONNACK to 172.18.0.3 (0, 5) -1612469640: Socket error on client , disconnecting. -1612469660: New connection from 172.18.0.3 on port 1883. -1612469660: Sending CONNACK to 172.18.0.3 (0, 5) -1612469660: Socket error on client , disconnecting. -1612469680: New connection from 172.18.0.3 on port 1883. -1612469680: Sending CONNACK to 172.18.0.3 (0, 5) -1612469680: Socket error on client , disconnecting. -1612469700: New connection from 172.18.0.3 on port 1883. -1612469700: Sending CONNACK to 172.18.0.3 (0, 5) -1612469700: Socket error on client , disconnecting. -1612469720: New connection from 172.18.0.3 on port 1883. -1612469720: Sending CONNACK to 172.18.0.3 (0, 5) -1612469720: Socket error on client , disconnecting. -1612469740: New connection from 172.18.0.3 on port 1883. -1612469740: Sending CONNACK to 172.18.0.3 (0, 5) -1612469740: Socket error on client , disconnecting. -1612469760: New connection from 172.18.0.3 on port 1883. -1612469760: Sending CONNACK to 172.18.0.3 (0, 5) -1612469760: Socket error on client , disconnecting. -1612469780: New connection from 172.18.0.3 on port 1883. -1612469780: Sending CONNACK to 172.18.0.3 (0, 5) -1612469780: Socket error on client , disconnecting. -1612469800: New connection from 172.18.0.3 on port 1883. -1612469800: Sending CONNACK to 172.18.0.3 (0, 5) -1612469800: Socket error on client , disconnecting. -1612469820: New connection from 172.18.0.3 on port 1883. -1612469820: Sending CONNACK to 172.18.0.3 (0, 5) -1612469820: Socket error on client , disconnecting. -1612469830: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612469830: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612469830: Error: Permission denied. -1612469840: New connection from 172.18.0.3 on port 1883. -1612469840: Sending CONNACK to 172.18.0.3 (0, 5) -1612469840: Socket error on client , disconnecting. -1612469860: New connection from 172.18.0.3 on port 1883. -1612469860: Sending CONNACK to 172.18.0.3 (0, 5) -1612469860: Socket error on client , disconnecting. -1612469880: New connection from 172.18.0.3 on port 1883. -1612469880: Sending CONNACK to 172.18.0.3 (0, 5) -1612469880: Socket error on client , disconnecting. -1612469900: New connection from 172.18.0.3 on port 1883. -1612469900: Sending CONNACK to 172.18.0.3 (0, 5) -1612469900: Socket error on client , disconnecting. -1612469920: New connection from 172.18.0.3 on port 1883. -1612469920: Sending CONNACK to 172.18.0.3 (0, 5) -1612469920: Socket error on client , disconnecting. -1612469940: New connection from 172.18.0.3 on port 1883. -1612469940: Sending CONNACK to 172.18.0.3 (0, 5) -1612469940: Socket error on client , disconnecting. -1612469960: New connection from 172.18.0.3 on port 1883. -1612469960: Sending CONNACK to 172.18.0.3 (0, 5) -1612469960: Socket error on client , disconnecting. -1612469980: New connection from 172.18.0.3 on port 1883. -1612469980: Sending CONNACK to 172.18.0.3 (0, 5) -1612469980: Socket error on client , disconnecting. -1612470000: New connection from 172.18.0.3 on port 1883. -1612470000: Sending CONNACK to 172.18.0.3 (0, 5) -1612470000: Socket error on client , disconnecting. -1612470020: New connection from 172.18.0.3 on port 1883. -1612470020: Sending CONNACK to 172.18.0.3 (0, 5) -1612470020: Socket error on client , disconnecting. -1612470040: New connection from 172.18.0.3 on port 1883. -1612470040: Sending CONNACK to 172.18.0.3 (0, 5) -1612470040: Socket error on client , disconnecting. -1612470060: New connection from 172.18.0.3 on port 1883. -1612470060: Sending CONNACK to 172.18.0.3 (0, 5) -1612470060: Socket error on client , disconnecting. -1612470080: New connection from 172.18.0.3 on port 1883. -1612470080: Sending CONNACK to 172.18.0.3 (0, 5) -1612470080: Socket error on client , disconnecting. -1612470100: New connection from 172.18.0.3 on port 1883. -1612470100: Sending CONNACK to 172.18.0.3 (0, 5) -1612470100: Socket error on client , disconnecting. -1612470120: New connection from 172.18.0.3 on port 1883. -1612470120: Sending CONNACK to 172.18.0.3 (0, 5) -1612470120: Socket error on client , disconnecting. -1612470140: New connection from 172.18.0.3 on port 1883. -1612470140: Sending CONNACK to 172.18.0.3 (0, 5) -1612470140: Socket error on client , disconnecting. -1612470160: New connection from 172.18.0.3 on port 1883. -1612470160: Sending CONNACK to 172.18.0.3 (0, 5) -1612470160: Socket error on client , disconnecting. -1612470180: New connection from 172.18.0.3 on port 1883. -1612470180: Sending CONNACK to 172.18.0.3 (0, 5) -1612470180: Socket error on client , disconnecting. -1612470200: New connection from 172.18.0.3 on port 1883. -1612470200: Sending CONNACK to 172.18.0.3 (0, 5) -1612470200: Socket error on client , disconnecting. -1612470220: New connection from 172.18.0.3 on port 1883. -1612470220: Sending CONNACK to 172.18.0.3 (0, 5) -1612470220: Socket error on client , disconnecting. -1612470240: New connection from 172.18.0.3 on port 1883. -1612470240: Sending CONNACK to 172.18.0.3 (0, 5) -1612470240: Socket error on client , disconnecting. -1612470260: New connection from 172.18.0.3 on port 1883. -1612470260: Sending CONNACK to 172.18.0.3 (0, 5) -1612470260: Socket error on client , disconnecting. -1612470280: New connection from 172.18.0.3 on port 1883. -1612470280: Sending CONNACK to 172.18.0.3 (0, 5) -1612470280: Socket error on client , disconnecting. -1612470300: New connection from 172.18.0.3 on port 1883. -1612470300: Sending CONNACK to 172.18.0.3 (0, 5) -1612470300: Socket error on client , disconnecting. -1612470320: New connection from 172.18.0.3 on port 1883. -1612470320: Sending CONNACK to 172.18.0.3 (0, 5) -1612470320: Socket error on client , disconnecting. -1612470340: New connection from 172.18.0.3 on port 1883. -1612470340: Sending CONNACK to 172.18.0.3 (0, 5) -1612470340: Socket error on client , disconnecting. -1612470360: New connection from 172.18.0.3 on port 1883. -1612470360: Sending CONNACK to 172.18.0.3 (0, 5) -1612470360: Socket error on client , disconnecting. -1612470380: New connection from 172.18.0.3 on port 1883. -1612470380: Sending CONNACK to 172.18.0.3 (0, 5) -1612470380: Socket error on client , disconnecting. -1612470400: New connection from 172.18.0.3 on port 1883. -1612470400: Sending CONNACK to 172.18.0.3 (0, 5) -1612470400: Socket error on client , disconnecting. -1612470420: New connection from 172.18.0.3 on port 1883. -1612470420: Sending CONNACK to 172.18.0.3 (0, 5) -1612470420: Socket error on client , disconnecting. -1612470440: New connection from 172.18.0.3 on port 1883. -1612470440: Sending CONNACK to 172.18.0.3 (0, 5) -1612470440: Socket error on client , disconnecting. -1612470460: New connection from 172.18.0.3 on port 1883. -1612470460: Sending CONNACK to 172.18.0.3 (0, 5) -1612470460: Socket error on client , disconnecting. -1612470480: New connection from 172.18.0.3 on port 1883. -1612470480: Sending CONNACK to 172.18.0.3 (0, 5) -1612470480: Socket error on client , disconnecting. -1612470500: New connection from 172.18.0.3 on port 1883. -1612470500: Sending CONNACK to 172.18.0.3 (0, 5) -1612470500: Socket error on client , disconnecting. -1612470520: New connection from 172.18.0.3 on port 1883. -1612470520: Sending CONNACK to 172.18.0.3 (0, 5) -1612470520: Socket error on client , disconnecting. -1612470540: New connection from 172.18.0.3 on port 1883. -1612470540: Sending CONNACK to 172.18.0.3 (0, 5) -1612470540: Socket error on client , disconnecting. -1612470560: New connection from 172.18.0.3 on port 1883. -1612470560: Sending CONNACK to 172.18.0.3 (0, 5) -1612470560: Socket error on client , disconnecting. -1612470580: New connection from 172.18.0.3 on port 1883. -1612470580: Sending CONNACK to 172.18.0.3 (0, 5) -1612470580: Socket error on client , disconnecting. -1612470600: New connection from 172.18.0.3 on port 1883. -1612470600: Sending CONNACK to 172.18.0.3 (0, 5) -1612470600: Socket error on client , disconnecting. -1612470620: New connection from 172.18.0.3 on port 1883. -1612470620: Sending CONNACK to 172.18.0.3 (0, 5) -1612470620: Socket error on client , disconnecting. -1612470640: New connection from 172.18.0.3 on port 1883. -1612470640: Sending CONNACK to 172.18.0.3 (0, 5) -1612470640: Socket error on client , disconnecting. -1612470660: New connection from 172.18.0.3 on port 1883. -1612470660: Sending CONNACK to 172.18.0.3 (0, 5) -1612470660: Socket error on client , disconnecting. -1612470680: New connection from 172.18.0.3 on port 1883. -1612470680: Sending CONNACK to 172.18.0.3 (0, 5) -1612470680: Socket error on client , disconnecting. -1612470700: New connection from 172.18.0.3 on port 1883. -1612470700: Sending CONNACK to 172.18.0.3 (0, 5) -1612470700: Socket error on client , disconnecting. -1612470720: New connection from 172.18.0.3 on port 1883. -1612470720: Sending CONNACK to 172.18.0.3 (0, 5) -1612470720: Socket error on client , disconnecting. -1612470740: New connection from 172.18.0.3 on port 1883. -1612470740: Sending CONNACK to 172.18.0.3 (0, 5) -1612470740: Socket error on client , disconnecting. -1612470760: New connection from 172.18.0.3 on port 1883. -1612470760: Sending CONNACK to 172.18.0.3 (0, 5) -1612470760: Socket error on client , disconnecting. -1612470780: New connection from 172.18.0.3 on port 1883. -1612470780: Sending CONNACK to 172.18.0.3 (0, 5) -1612470780: Socket error on client , disconnecting. -1612470800: New connection from 172.18.0.3 on port 1883. -1612470800: Sending CONNACK to 172.18.0.3 (0, 5) -1612470800: Socket error on client , disconnecting. -1612470820: New connection from 172.18.0.3 on port 1883. -1612470820: Sending CONNACK to 172.18.0.3 (0, 5) -1612470820: Socket error on client , disconnecting. -1612470840: New connection from 172.18.0.3 on port 1883. -1612470840: Sending CONNACK to 172.18.0.3 (0, 5) -1612470840: Socket error on client , disconnecting. -1612470860: New connection from 172.18.0.3 on port 1883. -1612470860: Sending CONNACK to 172.18.0.3 (0, 5) -1612470860: Socket error on client , disconnecting. -1612470880: New connection from 172.18.0.3 on port 1883. -1612470880: Sending CONNACK to 172.18.0.3 (0, 5) -1612470880: Socket error on client , disconnecting. -1612470900: New connection from 172.18.0.3 on port 1883. -1612470900: Sending CONNACK to 172.18.0.3 (0, 5) -1612470900: Socket error on client , disconnecting. -1612470920: New connection from 172.18.0.3 on port 1883. -1612470920: Sending CONNACK to 172.18.0.3 (0, 5) -1612470920: Socket error on client , disconnecting. -1612470940: New connection from 172.18.0.3 on port 1883. -1612470940: Sending CONNACK to 172.18.0.3 (0, 5) -1612470940: Socket error on client , disconnecting. -1612470960: New connection from 172.18.0.3 on port 1883. -1612470960: Sending CONNACK to 172.18.0.3 (0, 5) -1612470960: Socket error on client , disconnecting. -1612470980: New connection from 172.18.0.3 on port 1883. -1612470980: Sending CONNACK to 172.18.0.3 (0, 5) -1612470980: Socket error on client , disconnecting. -1612471000: New connection from 172.18.0.3 on port 1883. -1612471000: Sending CONNACK to 172.18.0.3 (0, 5) -1612471000: Socket error on client , disconnecting. -1612471020: New connection from 172.18.0.3 on port 1883. -1612471020: Sending CONNACK to 172.18.0.3 (0, 5) -1612471020: Socket error on client , disconnecting. -1612471040: New connection from 172.18.0.3 on port 1883. -1612471040: Sending CONNACK to 172.18.0.3 (0, 5) -1612471040: Socket error on client , disconnecting. -1612471060: New connection from 172.18.0.3 on port 1883. -1612471060: Sending CONNACK to 172.18.0.3 (0, 5) -1612471060: Socket error on client , disconnecting. -1612471080: New connection from 172.18.0.3 on port 1883. -1612471080: Sending CONNACK to 172.18.0.3 (0, 5) -1612471080: Socket error on client , disconnecting. -1612471100: New connection from 172.18.0.3 on port 1883. -1612471100: Sending CONNACK to 172.18.0.3 (0, 5) -1612471100: Socket error on client , disconnecting. -1612471120: New connection from 172.18.0.3 on port 1883. -1612471120: Sending CONNACK to 172.18.0.3 (0, 5) -1612471120: Socket error on client , disconnecting. -1612471140: New connection from 172.18.0.3 on port 1883. -1612471140: Sending CONNACK to 172.18.0.3 (0, 5) -1612471140: Socket error on client , disconnecting. -1612471160: New connection from 172.18.0.3 on port 1883. -1612471160: Sending CONNACK to 172.18.0.3 (0, 5) -1612471160: Socket error on client , disconnecting. -1612471180: New connection from 172.18.0.3 on port 1883. -1612471180: Sending CONNACK to 172.18.0.3 (0, 5) -1612471180: Socket error on client , disconnecting. -1612471200: New connection from 172.18.0.3 on port 1883. -1612471200: Sending CONNACK to 172.18.0.3 (0, 5) -1612471200: Socket error on client , disconnecting. -1612471220: New connection from 172.18.0.3 on port 1883. -1612471220: Sending CONNACK to 172.18.0.3 (0, 5) -1612471220: Socket error on client , disconnecting. -1612471240: New connection from 172.18.0.3 on port 1883. -1612471240: Sending CONNACK to 172.18.0.3 (0, 5) -1612471240: Socket error on client , disconnecting. -1612471260: New connection from 172.18.0.3 on port 1883. -1612471260: Sending CONNACK to 172.18.0.3 (0, 5) -1612471260: Socket error on client , disconnecting. -1612471280: New connection from 172.18.0.3 on port 1883. -1612471280: Sending CONNACK to 172.18.0.3 (0, 5) -1612471280: Socket error on client , disconnecting. -1612471300: New connection from 172.18.0.3 on port 1883. -1612471300: Sending CONNACK to 172.18.0.3 (0, 5) -1612471300: Socket error on client , disconnecting. -1612471320: New connection from 172.18.0.3 on port 1883. -1612471320: Sending CONNACK to 172.18.0.3 (0, 5) -1612471320: Socket error on client , disconnecting. -1612471340: New connection from 172.18.0.3 on port 1883. -1612471340: Sending CONNACK to 172.18.0.3 (0, 5) -1612471340: Socket error on client , disconnecting. -1612471360: New connection from 172.18.0.3 on port 1883. -1612471360: Sending CONNACK to 172.18.0.3 (0, 5) -1612471360: Socket error on client , disconnecting. -1612471380: New connection from 172.18.0.3 on port 1883. -1612471380: Sending CONNACK to 172.18.0.3 (0, 5) -1612471380: Socket error on client , disconnecting. -1612471400: New connection from 172.18.0.3 on port 1883. -1612471400: Sending CONNACK to 172.18.0.3 (0, 5) -1612471400: Socket error on client , disconnecting. -1612471420: New connection from 172.18.0.3 on port 1883. -1612471420: Sending CONNACK to 172.18.0.3 (0, 5) -1612471420: Socket error on client , disconnecting. -1612471440: New connection from 172.18.0.3 on port 1883. -1612471440: Sending CONNACK to 172.18.0.3 (0, 5) -1612471440: Socket error on client , disconnecting. -1612471460: New connection from 172.18.0.3 on port 1883. -1612471460: Sending CONNACK to 172.18.0.3 (0, 5) -1612471460: Socket error on client , disconnecting. -1612471480: New connection from 172.18.0.3 on port 1883. -1612471480: Sending CONNACK to 172.18.0.3 (0, 5) -1612471480: Socket error on client , disconnecting. -1612471500: New connection from 172.18.0.3 on port 1883. -1612471500: Sending CONNACK to 172.18.0.3 (0, 5) -1612471500: Socket error on client , disconnecting. -1612471520: New connection from 172.18.0.3 on port 1883. -1612471520: Sending CONNACK to 172.18.0.3 (0, 5) -1612471520: Socket error on client , disconnecting. -1612471540: New connection from 172.18.0.3 on port 1883. -1612471540: Sending CONNACK to 172.18.0.3 (0, 5) -1612471540: Socket error on client , disconnecting. -1612471560: New connection from 172.18.0.3 on port 1883. -1612471560: Sending CONNACK to 172.18.0.3 (0, 5) -1612471560: Socket error on client , disconnecting. -1612471580: New connection from 172.18.0.3 on port 1883. -1612471580: Sending CONNACK to 172.18.0.3 (0, 5) -1612471580: Socket error on client , disconnecting. -1612471600: New connection from 172.18.0.3 on port 1883. -1612471600: Sending CONNACK to 172.18.0.3 (0, 5) -1612471600: Socket error on client , disconnecting. -1612471620: New connection from 172.18.0.3 on port 1883. -1612471620: Sending CONNACK to 172.18.0.3 (0, 5) -1612471620: Socket error on client , disconnecting. -1612471631: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612471631: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612471631: Error: Permission denied. -1612471640: New connection from 172.18.0.3 on port 1883. -1612471640: Sending CONNACK to 172.18.0.3 (0, 5) -1612471640: Socket error on client , disconnecting. -1612471660: New connection from 172.18.0.3 on port 1883. -1612471660: Sending CONNACK to 172.18.0.3 (0, 5) -1612471660: Socket error on client , disconnecting. -1612471680: New connection from 172.18.0.3 on port 1883. -1612471680: Sending CONNACK to 172.18.0.3 (0, 5) -1612471680: Socket error on client , disconnecting. -1612471700: New connection from 172.18.0.3 on port 1883. -1612471700: Sending CONNACK to 172.18.0.3 (0, 5) -1612471700: Socket error on client , disconnecting. -1612471720: New connection from 172.18.0.3 on port 1883. -1612471720: Sending CONNACK to 172.18.0.3 (0, 5) -1612471720: Socket error on client , disconnecting. -1612471740: New connection from 172.18.0.3 on port 1883. -1612471740: Sending CONNACK to 172.18.0.3 (0, 5) -1612471740: Socket error on client , disconnecting. -1612471760: New connection from 172.18.0.3 on port 1883. -1612471760: Sending CONNACK to 172.18.0.3 (0, 5) -1612471760: Socket error on client , disconnecting. -1612471780: New connection from 172.18.0.3 on port 1883. -1612471780: Sending CONNACK to 172.18.0.3 (0, 5) -1612471780: Socket error on client , disconnecting. -1612471800: New connection from 172.18.0.3 on port 1883. -1612471800: Sending CONNACK to 172.18.0.3 (0, 5) -1612471800: Socket error on client , disconnecting. -1612471820: New connection from 172.18.0.3 on port 1883. -1612471820: Sending CONNACK to 172.18.0.3 (0, 5) -1612471820: Socket error on client , disconnecting. -1612471840: New connection from 172.18.0.3 on port 1883. -1612471840: Sending CONNACK to 172.18.0.3 (0, 5) -1612471840: Socket error on client , disconnecting. -1612471860: New connection from 172.18.0.3 on port 1883. -1612471860: Sending CONNACK to 172.18.0.3 (0, 5) -1612471860: Socket error on client , disconnecting. -1612471880: New connection from 172.18.0.3 on port 1883. -1612471880: Sending CONNACK to 172.18.0.3 (0, 5) -1612471880: Socket error on client , disconnecting. -1612471900: New connection from 172.18.0.3 on port 1883. -1612471900: Sending CONNACK to 172.18.0.3 (0, 5) -1612471900: Socket error on client , disconnecting. -1612471920: New connection from 172.18.0.3 on port 1883. -1612471920: Sending CONNACK to 172.18.0.3 (0, 5) -1612471920: Socket error on client , disconnecting. -1612471940: New connection from 172.18.0.3 on port 1883. -1612471940: Sending CONNACK to 172.18.0.3 (0, 5) -1612471940: Socket error on client , disconnecting. -1612471960: New connection from 172.18.0.3 on port 1883. -1612471960: Sending CONNACK to 172.18.0.3 (0, 5) -1612471960: Socket error on client , disconnecting. -1612471980: New connection from 172.18.0.3 on port 1883. -1612471980: Sending CONNACK to 172.18.0.3 (0, 5) -1612471980: Socket error on client , disconnecting. -1612472000: New connection from 172.18.0.3 on port 1883. -1612472000: Sending CONNACK to 172.18.0.3 (0, 5) -1612472000: Socket error on client , disconnecting. -1612472020: New connection from 172.18.0.3 on port 1883. -1612472020: Sending CONNACK to 172.18.0.3 (0, 5) -1612472020: Socket error on client , disconnecting. -1612472040: New connection from 172.18.0.3 on port 1883. -1612472040: Sending CONNACK to 172.18.0.3 (0, 5) -1612472040: Socket error on client , disconnecting. -1612472060: New connection from 172.18.0.3 on port 1883. -1612472060: Sending CONNACK to 172.18.0.3 (0, 5) -1612472060: Socket error on client , disconnecting. -1612472080: New connection from 172.18.0.3 on port 1883. -1612472080: Sending CONNACK to 172.18.0.3 (0, 5) -1612472080: Socket error on client , disconnecting. -1612472100: New connection from 172.18.0.3 on port 1883. -1612472100: Sending CONNACK to 172.18.0.3 (0, 5) -1612472100: Socket error on client , disconnecting. -1612472120: New connection from 172.18.0.3 on port 1883. -1612472120: Sending CONNACK to 172.18.0.3 (0, 5) -1612472120: Socket error on client , disconnecting. -1612472140: New connection from 172.18.0.3 on port 1883. -1612472140: Sending CONNACK to 172.18.0.3 (0, 5) -1612472140: Socket error on client , disconnecting. -1612472160: New connection from 172.18.0.3 on port 1883. -1612472160: Sending CONNACK to 172.18.0.3 (0, 5) -1612472160: Socket error on client , disconnecting. -1612472180: New connection from 172.18.0.3 on port 1883. -1612472180: Sending CONNACK to 172.18.0.3 (0, 5) -1612472180: Socket error on client , disconnecting. -1612472200: New connection from 172.18.0.3 on port 1883. -1612472200: Sending CONNACK to 172.18.0.3 (0, 5) -1612472200: Socket error on client , disconnecting. -1612472220: New connection from 172.18.0.3 on port 1883. -1612472220: Sending CONNACK to 172.18.0.3 (0, 5) -1612472220: Socket error on client , disconnecting. -1612472240: New connection from 172.18.0.3 on port 1883. -1612472240: Sending CONNACK to 172.18.0.3 (0, 5) -1612472240: Socket error on client , disconnecting. -1612472260: New connection from 172.18.0.3 on port 1883. -1612472260: Sending CONNACK to 172.18.0.3 (0, 5) -1612472260: Socket error on client , disconnecting. -1612472280: New connection from 172.18.0.3 on port 1883. -1612472280: Sending CONNACK to 172.18.0.3 (0, 5) -1612472280: Socket error on client , disconnecting. -1612472300: New connection from 172.18.0.3 on port 1883. -1612472300: Sending CONNACK to 172.18.0.3 (0, 5) -1612472300: Socket error on client , disconnecting. -1612472320: New connection from 172.18.0.3 on port 1883. -1612472320: Sending CONNACK to 172.18.0.3 (0, 5) -1612472320: Socket error on client , disconnecting. -1612472340: New connection from 172.18.0.3 on port 1883. -1612472340: Sending CONNACK to 172.18.0.3 (0, 5) -1612472340: Socket error on client , disconnecting. -1612472360: New connection from 172.18.0.3 on port 1883. -1612472360: Sending CONNACK to 172.18.0.3 (0, 5) -1612472360: Socket error on client , disconnecting. -1612472380: New connection from 172.18.0.3 on port 1883. -1612472380: Sending CONNACK to 172.18.0.3 (0, 5) -1612472380: Socket error on client , disconnecting. -1612472400: New connection from 172.18.0.3 on port 1883. -1612472400: Sending CONNACK to 172.18.0.3 (0, 5) -1612472400: Socket error on client , disconnecting. -1612472420: New connection from 172.18.0.3 on port 1883. -1612472420: Sending CONNACK to 172.18.0.3 (0, 5) -1612472420: Socket error on client , disconnecting. -1612472440: New connection from 172.18.0.3 on port 1883. -1612472440: Sending CONNACK to 172.18.0.3 (0, 5) -1612472440: Socket error on client , disconnecting. -1612472460: New connection from 172.18.0.3 on port 1883. -1612472460: Sending CONNACK to 172.18.0.3 (0, 5) -1612472460: Socket error on client , disconnecting. -1612472480: New connection from 172.18.0.3 on port 1883. -1612472480: Sending CONNACK to 172.18.0.3 (0, 5) -1612472480: Socket error on client , disconnecting. -1612472500: New connection from 172.18.0.3 on port 1883. -1612472500: Sending CONNACK to 172.18.0.3 (0, 5) -1612472500: Socket error on client , disconnecting. -1612472520: New connection from 172.18.0.3 on port 1883. -1612472520: Sending CONNACK to 172.18.0.3 (0, 5) -1612472520: Socket error on client , disconnecting. -1612472540: New connection from 172.18.0.3 on port 1883. -1612472540: Sending CONNACK to 172.18.0.3 (0, 5) -1612472540: Socket error on client , disconnecting. -1612472560: New connection from 172.18.0.3 on port 1883. -1612472560: Sending CONNACK to 172.18.0.3 (0, 5) -1612472560: Socket error on client , disconnecting. -1612472580: New connection from 172.18.0.3 on port 1883. -1612472580: Sending CONNACK to 172.18.0.3 (0, 5) -1612472580: Socket error on client , disconnecting. -1612472600: New connection from 172.18.0.3 on port 1883. -1612472600: Sending CONNACK to 172.18.0.3 (0, 5) -1612472600: Socket error on client , disconnecting. -1612472620: New connection from 172.18.0.3 on port 1883. -1612472620: Sending CONNACK to 172.18.0.3 (0, 5) -1612472620: Socket error on client , disconnecting. -1612472640: New connection from 172.18.0.3 on port 1883. -1612472640: Sending CONNACK to 172.18.0.3 (0, 5) -1612472640: Socket error on client , disconnecting. -1612472660: New connection from 172.18.0.3 on port 1883. -1612472660: Sending CONNACK to 172.18.0.3 (0, 5) -1612472660: Socket error on client , disconnecting. -1612472680: New connection from 172.18.0.3 on port 1883. -1612472680: Sending CONNACK to 172.18.0.3 (0, 5) -1612472680: Socket error on client , disconnecting. -1612472700: New connection from 172.18.0.3 on port 1883. -1612472700: Sending CONNACK to 172.18.0.3 (0, 5) -1612472700: Socket error on client , disconnecting. -1612472720: New connection from 172.18.0.3 on port 1883. -1612472720: Sending CONNACK to 172.18.0.3 (0, 5) -1612472720: Socket error on client , disconnecting. -1612472740: New connection from 172.18.0.3 on port 1883. -1612472740: Sending CONNACK to 172.18.0.3 (0, 5) -1612472740: Socket error on client , disconnecting. -1612472760: New connection from 172.18.0.3 on port 1883. -1612472760: Sending CONNACK to 172.18.0.3 (0, 5) -1612472760: Socket error on client , disconnecting. -1612472780: New connection from 172.18.0.3 on port 1883. -1612472780: Sending CONNACK to 172.18.0.3 (0, 5) -1612472780: Socket error on client , disconnecting. -1612472800: New connection from 172.18.0.3 on port 1883. -1612472800: Sending CONNACK to 172.18.0.3 (0, 5) -1612472800: Socket error on client , disconnecting. -1612472820: New connection from 172.18.0.3 on port 1883. -1612472820: Sending CONNACK to 172.18.0.3 (0, 5) -1612472820: Socket error on client , disconnecting. -1612472840: New connection from 172.18.0.3 on port 1883. -1612472840: Sending CONNACK to 172.18.0.3 (0, 5) -1612472840: Socket error on client , disconnecting. -1612472860: New connection from 172.18.0.3 on port 1883. -1612472860: Sending CONNACK to 172.18.0.3 (0, 5) -1612472860: Socket error on client , disconnecting. -1612472880: New connection from 172.18.0.3 on port 1883. -1612472880: Sending CONNACK to 172.18.0.3 (0, 5) -1612472880: Socket error on client , disconnecting. -1612472900: New connection from 172.18.0.3 on port 1883. -1612472900: Sending CONNACK to 172.18.0.3 (0, 5) -1612472900: Socket error on client , disconnecting. -1612472920: New connection from 172.18.0.3 on port 1883. -1612472920: Sending CONNACK to 172.18.0.3 (0, 5) -1612472920: Socket error on client , disconnecting. -1612472940: New connection from 172.18.0.3 on port 1883. -1612472940: Sending CONNACK to 172.18.0.3 (0, 5) -1612472940: Socket error on client , disconnecting. -1612472960: New connection from 172.18.0.3 on port 1883. -1612472960: Sending CONNACK to 172.18.0.3 (0, 5) -1612472960: Socket error on client , disconnecting. -1612472980: New connection from 172.18.0.3 on port 1883. -1612472980: Sending CONNACK to 172.18.0.3 (0, 5) -1612472980: Socket error on client , disconnecting. -1612473000: New connection from 172.18.0.3 on port 1883. -1612473000: Sending CONNACK to 172.18.0.3 (0, 5) -1612473000: Socket error on client , disconnecting. -1612473020: New connection from 172.18.0.3 on port 1883. -1612473020: Sending CONNACK to 172.18.0.3 (0, 5) -1612473020: Socket error on client , disconnecting. -1612473040: New connection from 172.18.0.3 on port 1883. -1612473040: Sending CONNACK to 172.18.0.3 (0, 5) -1612473040: Socket error on client , disconnecting. -1612473060: New connection from 172.18.0.3 on port 1883. -1612473060: Sending CONNACK to 172.18.0.3 (0, 5) -1612473060: Socket error on client , disconnecting. -1612473080: New connection from 172.18.0.3 on port 1883. -1612473080: Sending CONNACK to 172.18.0.3 (0, 5) -1612473080: Socket error on client , disconnecting. -1612473100: New connection from 172.18.0.3 on port 1883. -1612473100: Sending CONNACK to 172.18.0.3 (0, 5) -1612473100: Socket error on client , disconnecting. -1612473120: New connection from 172.18.0.3 on port 1883. -1612473120: Sending CONNACK to 172.18.0.3 (0, 5) -1612473120: Socket error on client , disconnecting. -1612473140: New connection from 172.18.0.3 on port 1883. -1612473140: Sending CONNACK to 172.18.0.3 (0, 5) -1612473140: Socket error on client , disconnecting. -1612473160: New connection from 172.18.0.3 on port 1883. -1612473160: Sending CONNACK to 172.18.0.3 (0, 5) -1612473160: Socket error on client , disconnecting. -1612473180: New connection from 172.18.0.3 on port 1883. -1612473180: Sending CONNACK to 172.18.0.3 (0, 5) -1612473180: Socket error on client , disconnecting. -1612473200: New connection from 172.18.0.3 on port 1883. -1612473200: Sending CONNACK to 172.18.0.3 (0, 5) -1612473200: Socket error on client , disconnecting. -1612473220: New connection from 172.18.0.3 on port 1883. -1612473220: Sending CONNACK to 172.18.0.3 (0, 5) -1612473220: Socket error on client , disconnecting. -1612473240: New connection from 172.18.0.3 on port 1883. -1612473240: Sending CONNACK to 172.18.0.3 (0, 5) -1612473240: Socket error on client , disconnecting. -1612473260: New connection from 172.18.0.3 on port 1883. -1612473260: Sending CONNACK to 172.18.0.3 (0, 5) -1612473260: Socket error on client , disconnecting. -1612473280: New connection from 172.18.0.3 on port 1883. -1612473280: Sending CONNACK to 172.18.0.3 (0, 5) -1612473280: Socket error on client , disconnecting. -1612473300: New connection from 172.18.0.3 on port 1883. -1612473300: Sending CONNACK to 172.18.0.3 (0, 5) -1612473300: Socket error on client , disconnecting. -1612473320: New connection from 172.18.0.3 on port 1883. -1612473320: Sending CONNACK to 172.18.0.3 (0, 5) -1612473320: Socket error on client , disconnecting. -1612473340: New connection from 172.18.0.3 on port 1883. -1612473340: Sending CONNACK to 172.18.0.3 (0, 5) -1612473340: Socket error on client , disconnecting. -1612473360: New connection from 172.18.0.3 on port 1883. -1612473360: Sending CONNACK to 172.18.0.3 (0, 5) -1612473360: Socket error on client , disconnecting. -1612473380: New connection from 172.18.0.3 on port 1883. -1612473380: Sending CONNACK to 172.18.0.3 (0, 5) -1612473380: Socket error on client , disconnecting. -1612473400: New connection from 172.18.0.3 on port 1883. -1612473400: Sending CONNACK to 172.18.0.3 (0, 5) -1612473400: Socket error on client , disconnecting. -1612473420: New connection from 172.18.0.3 on port 1883. -1612473420: Sending CONNACK to 172.18.0.3 (0, 5) -1612473420: Socket error on client , disconnecting. -1612473432: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612473432: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612473432: Error: Permission denied. -1612473440: New connection from 172.18.0.3 on port 1883. -1612473440: Sending CONNACK to 172.18.0.3 (0, 5) -1612473440: Socket error on client , disconnecting. -1612473460: New connection from 172.18.0.3 on port 1883. -1612473460: Sending CONNACK to 172.18.0.3 (0, 5) -1612473460: Socket error on client , disconnecting. -1612473480: New connection from 172.18.0.3 on port 1883. -1612473480: Sending CONNACK to 172.18.0.3 (0, 5) -1612473480: Socket error on client , disconnecting. -1612473500: New connection from 172.18.0.3 on port 1883. -1612473500: Sending CONNACK to 172.18.0.3 (0, 5) -1612473500: Socket error on client , disconnecting. -1612473520: New connection from 172.18.0.3 on port 1883. -1612473520: Sending CONNACK to 172.18.0.3 (0, 5) -1612473520: Socket error on client , disconnecting. -1612473540: New connection from 172.18.0.3 on port 1883. -1612473540: Sending CONNACK to 172.18.0.3 (0, 5) -1612473540: Socket error on client , disconnecting. -1612473560: New connection from 172.18.0.3 on port 1883. -1612473560: Sending CONNACK to 172.18.0.3 (0, 5) -1612473560: Socket error on client , disconnecting. -1612473580: New connection from 172.18.0.3 on port 1883. -1612473580: Sending CONNACK to 172.18.0.3 (0, 5) -1612473580: Socket error on client , disconnecting. -1612473600: New connection from 172.18.0.3 on port 1883. -1612473600: Sending CONNACK to 172.18.0.3 (0, 5) -1612473600: Socket error on client , disconnecting. -1612473620: New connection from 172.18.0.3 on port 1883. -1612473620: Sending CONNACK to 172.18.0.3 (0, 5) -1612473620: Socket error on client , disconnecting. -1612473640: New connection from 172.18.0.3 on port 1883. -1612473640: Sending CONNACK to 172.18.0.3 (0, 5) -1612473640: Socket error on client , disconnecting. -1612473660: New connection from 172.18.0.3 on port 1883. -1612473660: Sending CONNACK to 172.18.0.3 (0, 5) -1612473660: Socket error on client , disconnecting. -1612473680: New connection from 172.18.0.3 on port 1883. -1612473680: Sending CONNACK to 172.18.0.3 (0, 5) -1612473680: Socket error on client , disconnecting. -1612473700: New connection from 172.18.0.3 on port 1883. -1612473700: Sending CONNACK to 172.18.0.3 (0, 5) -1612473700: Socket error on client , disconnecting. -1612473720: New connection from 172.18.0.3 on port 1883. -1612473720: Sending CONNACK to 172.18.0.3 (0, 5) -1612473720: Socket error on client , disconnecting. -1612473740: New connection from 172.18.0.3 on port 1883. -1612473740: Sending CONNACK to 172.18.0.3 (0, 5) -1612473740: Socket error on client , disconnecting. -1612473760: New connection from 172.18.0.3 on port 1883. -1612473760: Sending CONNACK to 172.18.0.3 (0, 5) -1612473760: Socket error on client , disconnecting. -1612473780: New connection from 172.18.0.3 on port 1883. -1612473780: Sending CONNACK to 172.18.0.3 (0, 5) -1612473780: Socket error on client , disconnecting. -1612473800: New connection from 172.18.0.3 on port 1883. -1612473800: Sending CONNACK to 172.18.0.3 (0, 5) -1612473800: Socket error on client , disconnecting. -1612473820: New connection from 172.18.0.3 on port 1883. -1612473820: Sending CONNACK to 172.18.0.3 (0, 5) -1612473820: Socket error on client , disconnecting. -1612473840: New connection from 172.18.0.3 on port 1883. -1612473840: Sending CONNACK to 172.18.0.3 (0, 5) -1612473840: Socket error on client , disconnecting. -1612473860: New connection from 172.18.0.3 on port 1883. -1612473860: Sending CONNACK to 172.18.0.3 (0, 5) -1612473860: Socket error on client , disconnecting. -1612473880: New connection from 172.18.0.3 on port 1883. -1612473880: Sending CONNACK to 172.18.0.3 (0, 5) -1612473880: Socket error on client , disconnecting. -1612473900: New connection from 172.18.0.3 on port 1883. -1612473900: Sending CONNACK to 172.18.0.3 (0, 5) -1612473900: Socket error on client , disconnecting. -1612473920: New connection from 172.18.0.3 on port 1883. -1612473920: Sending CONNACK to 172.18.0.3 (0, 5) -1612473920: Socket error on client , disconnecting. -1612473940: New connection from 172.18.0.3 on port 1883. -1612473940: Sending CONNACK to 172.18.0.3 (0, 5) -1612473940: Socket error on client , disconnecting. -1612473960: New connection from 172.18.0.3 on port 1883. -1612473960: Sending CONNACK to 172.18.0.3 (0, 5) -1612473960: Socket error on client , disconnecting. -1612473980: New connection from 172.18.0.3 on port 1883. -1612473980: Sending CONNACK to 172.18.0.3 (0, 5) -1612473980: Socket error on client , disconnecting. -1612474000: New connection from 172.18.0.3 on port 1883. -1612474000: Sending CONNACK to 172.18.0.3 (0, 5) -1612474000: Socket error on client , disconnecting. -1612474020: New connection from 172.18.0.3 on port 1883. -1612474020: Sending CONNACK to 172.18.0.3 (0, 5) -1612474020: Socket error on client , disconnecting. -1612474040: New connection from 172.18.0.3 on port 1883. -1612474040: Sending CONNACK to 172.18.0.3 (0, 5) -1612474040: Socket error on client , disconnecting. -1612474060: New connection from 172.18.0.3 on port 1883. -1612474060: Sending CONNACK to 172.18.0.3 (0, 5) -1612474060: Socket error on client , disconnecting. -1612474080: New connection from 172.18.0.3 on port 1883. -1612474080: Sending CONNACK to 172.18.0.3 (0, 5) -1612474080: Socket error on client , disconnecting. -1612474100: New connection from 172.18.0.3 on port 1883. -1612474100: Sending CONNACK to 172.18.0.3 (0, 5) -1612474100: Socket error on client , disconnecting. -1612474120: New connection from 172.18.0.3 on port 1883. -1612474120: Sending CONNACK to 172.18.0.3 (0, 5) -1612474120: Socket error on client , disconnecting. -1612474140: New connection from 172.18.0.3 on port 1883. -1612474140: Sending CONNACK to 172.18.0.3 (0, 5) -1612474140: Socket error on client , disconnecting. -1612474160: New connection from 172.18.0.3 on port 1883. -1612474160: Sending CONNACK to 172.18.0.3 (0, 5) -1612474160: Socket error on client , disconnecting. -1612474180: New connection from 172.18.0.3 on port 1883. -1612474180: Sending CONNACK to 172.18.0.3 (0, 5) -1612474180: Socket error on client , disconnecting. -1612474200: New connection from 172.18.0.3 on port 1883. -1612474200: Sending CONNACK to 172.18.0.3 (0, 5) -1612474200: Socket error on client , disconnecting. -1612474220: New connection from 172.18.0.3 on port 1883. -1612474220: Sending CONNACK to 172.18.0.3 (0, 5) -1612474220: Socket error on client , disconnecting. -1612474240: New connection from 172.18.0.3 on port 1883. -1612474240: Sending CONNACK to 172.18.0.3 (0, 5) -1612474240: Socket error on client , disconnecting. -1612474260: New connection from 172.18.0.3 on port 1883. -1612474260: Sending CONNACK to 172.18.0.3 (0, 5) -1612474260: Socket error on client , disconnecting. -1612474280: New connection from 172.18.0.3 on port 1883. -1612474280: Sending CONNACK to 172.18.0.3 (0, 5) -1612474280: Socket error on client , disconnecting. -1612474300: New connection from 172.18.0.3 on port 1883. -1612474300: Sending CONNACK to 172.18.0.3 (0, 5) -1612474300: Socket error on client , disconnecting. -1612474320: New connection from 172.18.0.3 on port 1883. -1612474320: Sending CONNACK to 172.18.0.3 (0, 5) -1612474320: Socket error on client , disconnecting. -1612474340: New connection from 172.18.0.3 on port 1883. -1612474340: Sending CONNACK to 172.18.0.3 (0, 5) -1612474340: Socket error on client , disconnecting. -1612474360: New connection from 172.18.0.3 on port 1883. -1612474360: Sending CONNACK to 172.18.0.3 (0, 5) -1612474360: Socket error on client , disconnecting. -1612474380: New connection from 172.18.0.3 on port 1883. -1612474380: Sending CONNACK to 172.18.0.3 (0, 5) -1612474380: Socket error on client , disconnecting. -1612474400: New connection from 172.18.0.3 on port 1883. -1612474400: Sending CONNACK to 172.18.0.3 (0, 5) -1612474400: Socket error on client , disconnecting. -1612474420: New connection from 172.18.0.3 on port 1883. -1612474420: Sending CONNACK to 172.18.0.3 (0, 5) -1612474420: Socket error on client , disconnecting. -1612474440: New connection from 172.18.0.3 on port 1883. -1612474440: Sending CONNACK to 172.18.0.3 (0, 5) -1612474440: Socket error on client , disconnecting. -1612474460: New connection from 172.18.0.3 on port 1883. -1612474460: Sending CONNACK to 172.18.0.3 (0, 5) -1612474460: Socket error on client , disconnecting. -1612474480: New connection from 172.18.0.3 on port 1883. -1612474480: Sending CONNACK to 172.18.0.3 (0, 5) -1612474480: Socket error on client , disconnecting. -1612474500: New connection from 172.18.0.3 on port 1883. -1612474500: Sending CONNACK to 172.18.0.3 (0, 5) -1612474500: Socket error on client , disconnecting. -1612474520: New connection from 172.18.0.3 on port 1883. -1612474520: Sending CONNACK to 172.18.0.3 (0, 5) -1612474520: Socket error on client , disconnecting. -1612474540: New connection from 172.18.0.3 on port 1883. -1612474540: Sending CONNACK to 172.18.0.3 (0, 5) -1612474540: Socket error on client , disconnecting. -1612474560: New connection from 172.18.0.3 on port 1883. -1612474560: Sending CONNACK to 172.18.0.3 (0, 5) -1612474560: Socket error on client , disconnecting. -1612474580: New connection from 172.18.0.3 on port 1883. -1612474580: Sending CONNACK to 172.18.0.3 (0, 5) -1612474580: Socket error on client , disconnecting. -1612474600: New connection from 172.18.0.3 on port 1883. -1612474600: Sending CONNACK to 172.18.0.3 (0, 5) -1612474600: Socket error on client , disconnecting. -1612474620: New connection from 172.18.0.3 on port 1883. -1612474620: Sending CONNACK to 172.18.0.3 (0, 5) -1612474620: Socket error on client , disconnecting. -1612474640: New connection from 172.18.0.3 on port 1883. -1612474640: Sending CONNACK to 172.18.0.3 (0, 5) -1612474640: Socket error on client , disconnecting. -1612474660: New connection from 172.18.0.3 on port 1883. -1612474660: Sending CONNACK to 172.18.0.3 (0, 5) -1612474660: Socket error on client , disconnecting. -1612474680: New connection from 172.18.0.3 on port 1883. -1612474680: Sending CONNACK to 172.18.0.3 (0, 5) -1612474680: Socket error on client , disconnecting. -1612474700: New connection from 172.18.0.3 on port 1883. -1612474700: Sending CONNACK to 172.18.0.3 (0, 5) -1612474700: Socket error on client , disconnecting. -1612474720: New connection from 172.18.0.3 on port 1883. -1612474720: Sending CONNACK to 172.18.0.3 (0, 5) -1612474720: Socket error on client , disconnecting. -1612474740: New connection from 172.18.0.3 on port 1883. -1612474740: Sending CONNACK to 172.18.0.3 (0, 5) -1612474740: Socket error on client , disconnecting. -1612474760: New connection from 172.18.0.3 on port 1883. -1612474760: Sending CONNACK to 172.18.0.3 (0, 5) -1612474760: Socket error on client , disconnecting. -1612474780: New connection from 172.18.0.3 on port 1883. -1612474780: Sending CONNACK to 172.18.0.3 (0, 5) -1612474780: Socket error on client , disconnecting. -1612474800: New connection from 172.18.0.3 on port 1883. -1612474800: Sending CONNACK to 172.18.0.3 (0, 5) -1612474800: Socket error on client , disconnecting. -1612474820: New connection from 172.18.0.3 on port 1883. -1612474820: Sending CONNACK to 172.18.0.3 (0, 5) -1612474820: Socket error on client , disconnecting. -1612474840: New connection from 172.18.0.3 on port 1883. -1612474840: Sending CONNACK to 172.18.0.3 (0, 5) -1612474840: Socket error on client , disconnecting. -1612474860: New connection from 172.18.0.3 on port 1883. -1612474860: Sending CONNACK to 172.18.0.3 (0, 5) -1612474860: Socket error on client , disconnecting. -1612474880: New connection from 172.18.0.3 on port 1883. -1612474880: Sending CONNACK to 172.18.0.3 (0, 5) -1612474880: Socket error on client , disconnecting. -1612474900: New connection from 172.18.0.3 on port 1883. -1612474900: Sending CONNACK to 172.18.0.3 (0, 5) -1612474900: Socket error on client , disconnecting. -1612474920: New connection from 172.18.0.3 on port 1883. -1612474920: Sending CONNACK to 172.18.0.3 (0, 5) -1612474920: Socket error on client , disconnecting. -1612474940: New connection from 172.18.0.3 on port 1883. -1612474940: Sending CONNACK to 172.18.0.3 (0, 5) -1612474940: Socket error on client , disconnecting. -1612474960: New connection from 172.18.0.3 on port 1883. -1612474960: Sending CONNACK to 172.18.0.3 (0, 5) -1612474960: Socket error on client , disconnecting. -1612474980: New connection from 172.18.0.3 on port 1883. -1612474980: Sending CONNACK to 172.18.0.3 (0, 5) -1612474980: Socket error on client , disconnecting. -1612475000: New connection from 172.18.0.3 on port 1883. -1612475000: Sending CONNACK to 172.18.0.3 (0, 5) -1612475000: Socket error on client , disconnecting. -1612475020: New connection from 172.18.0.3 on port 1883. -1612475020: Sending CONNACK to 172.18.0.3 (0, 5) -1612475020: Socket error on client , disconnecting. -1612475040: New connection from 172.18.0.3 on port 1883. -1612475040: Sending CONNACK to 172.18.0.3 (0, 5) -1612475040: Socket error on client , disconnecting. -1612475060: New connection from 172.18.0.3 on port 1883. -1612475060: Sending CONNACK to 172.18.0.3 (0, 5) -1612475060: Socket error on client , disconnecting. -1612475080: New connection from 172.18.0.3 on port 1883. -1612475080: Sending CONNACK to 172.18.0.3 (0, 5) -1612475080: Socket error on client , disconnecting. -1612475100: New connection from 172.18.0.3 on port 1883. -1612475100: Sending CONNACK to 172.18.0.3 (0, 5) -1612475100: Socket error on client , disconnecting. -1612475120: New connection from 172.18.0.3 on port 1883. -1612475120: Sending CONNACK to 172.18.0.3 (0, 5) -1612475120: Socket error on client , disconnecting. -1612475140: New connection from 172.18.0.3 on port 1883. -1612475140: Sending CONNACK to 172.18.0.3 (0, 5) -1612475140: Socket error on client , disconnecting. -1612475160: New connection from 172.18.0.3 on port 1883. -1612475160: Sending CONNACK to 172.18.0.3 (0, 5) -1612475160: Socket error on client , disconnecting. -1612475180: New connection from 172.18.0.3 on port 1883. -1612475180: Sending CONNACK to 172.18.0.3 (0, 5) -1612475180: Socket error on client , disconnecting. -1612475200: New connection from 172.18.0.3 on port 1883. -1612475200: Sending CONNACK to 172.18.0.3 (0, 5) -1612475200: Socket error on client , disconnecting. -1612475220: New connection from 172.18.0.3 on port 1883. -1612475220: Sending CONNACK to 172.18.0.3 (0, 5) -1612475220: Socket error on client , disconnecting. -1612475233: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612475233: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612475233: Error: Permission denied. -1612475240: New connection from 172.18.0.3 on port 1883. -1612475240: Sending CONNACK to 172.18.0.3 (0, 5) -1612475240: Socket error on client , disconnecting. -1612475260: New connection from 172.18.0.3 on port 1883. -1612475260: Sending CONNACK to 172.18.0.3 (0, 5) -1612475260: Socket error on client , disconnecting. -1612475280: New connection from 172.18.0.3 on port 1883. -1612475280: Sending CONNACK to 172.18.0.3 (0, 5) -1612475280: Socket error on client , disconnecting. -1612475300: New connection from 172.18.0.3 on port 1883. -1612475300: Sending CONNACK to 172.18.0.3 (0, 5) -1612475300: Socket error on client , disconnecting. -1612475320: New connection from 172.18.0.3 on port 1883. -1612475320: Sending CONNACK to 172.18.0.3 (0, 5) -1612475320: Socket error on client , disconnecting. -1612475340: New connection from 172.18.0.3 on port 1883. -1612475340: Sending CONNACK to 172.18.0.3 (0, 5) -1612475340: Socket error on client , disconnecting. -1612475360: New connection from 172.18.0.3 on port 1883. -1612475360: Sending CONNACK to 172.18.0.3 (0, 5) -1612475360: Socket error on client , disconnecting. -1612475380: New connection from 172.18.0.3 on port 1883. -1612475380: Sending CONNACK to 172.18.0.3 (0, 5) -1612475380: Socket error on client , disconnecting. -1612475400: New connection from 172.18.0.3 on port 1883. -1612475400: Sending CONNACK to 172.18.0.3 (0, 5) -1612475400: Socket error on client , disconnecting. -1612475420: New connection from 172.18.0.3 on port 1883. -1612475420: Sending CONNACK to 172.18.0.3 (0, 5) -1612475420: Socket error on client , disconnecting. -1612475440: New connection from 172.18.0.3 on port 1883. -1612475440: Sending CONNACK to 172.18.0.3 (0, 5) -1612475440: Socket error on client , disconnecting. -1612475460: New connection from 172.18.0.3 on port 1883. -1612475460: Sending CONNACK to 172.18.0.3 (0, 5) -1612475460: Socket error on client , disconnecting. -1612475480: New connection from 172.18.0.3 on port 1883. -1612475480: Sending CONNACK to 172.18.0.3 (0, 5) -1612475480: Socket error on client , disconnecting. -1612475500: New connection from 172.18.0.3 on port 1883. -1612475500: Sending CONNACK to 172.18.0.3 (0, 5) -1612475500: Socket error on client , disconnecting. -1612475520: New connection from 172.18.0.3 on port 1883. -1612475520: Sending CONNACK to 172.18.0.3 (0, 5) -1612475520: Socket error on client , disconnecting. -1612475540: New connection from 172.18.0.3 on port 1883. -1612475540: Sending CONNACK to 172.18.0.3 (0, 5) -1612475540: Socket error on client , disconnecting. -1612475560: New connection from 172.18.0.3 on port 1883. -1612475560: Sending CONNACK to 172.18.0.3 (0, 5) -1612475560: Socket error on client , disconnecting. -1612475580: New connection from 172.18.0.3 on port 1883. -1612475580: Sending CONNACK to 172.18.0.3 (0, 5) -1612475580: Socket error on client , disconnecting. -1612475600: New connection from 172.18.0.3 on port 1883. -1612475600: Sending CONNACK to 172.18.0.3 (0, 5) -1612475600: Socket error on client , disconnecting. -1612475620: New connection from 172.18.0.3 on port 1883. -1612475620: Sending CONNACK to 172.18.0.3 (0, 5) -1612475620: Socket error on client , disconnecting. -1612475640: New connection from 172.18.0.3 on port 1883. -1612475640: Sending CONNACK to 172.18.0.3 (0, 5) -1612475640: Socket error on client , disconnecting. -1612475660: New connection from 172.18.0.3 on port 1883. -1612475660: Sending CONNACK to 172.18.0.3 (0, 5) -1612475660: Socket error on client , disconnecting. -1612475680: New connection from 172.18.0.3 on port 1883. -1612475680: Sending CONNACK to 172.18.0.3 (0, 5) -1612475680: Socket error on client , disconnecting. -1612475700: New connection from 172.18.0.3 on port 1883. -1612475700: Sending CONNACK to 172.18.0.3 (0, 5) -1612475700: Socket error on client , disconnecting. -1612475720: New connection from 172.18.0.3 on port 1883. -1612475720: Sending CONNACK to 172.18.0.3 (0, 5) -1612475720: Socket error on client , disconnecting. -1612475740: New connection from 172.18.0.3 on port 1883. -1612475740: Sending CONNACK to 172.18.0.3 (0, 5) -1612475740: Socket error on client , disconnecting. -1612475760: New connection from 172.18.0.3 on port 1883. -1612475760: Sending CONNACK to 172.18.0.3 (0, 5) -1612475760: Socket error on client , disconnecting. -1612475780: New connection from 172.18.0.3 on port 1883. -1612475780: Sending CONNACK to 172.18.0.3 (0, 5) -1612475780: Socket error on client , disconnecting. -1612475800: New connection from 172.18.0.3 on port 1883. -1612475800: Sending CONNACK to 172.18.0.3 (0, 5) -1612475800: Socket error on client , disconnecting. -1612475820: New connection from 172.18.0.3 on port 1883. -1612475820: Sending CONNACK to 172.18.0.3 (0, 5) -1612475820: Socket error on client , disconnecting. -1612475840: New connection from 172.18.0.3 on port 1883. -1612475840: Sending CONNACK to 172.18.0.3 (0, 5) -1612475840: Socket error on client , disconnecting. -1612475860: New connection from 172.18.0.3 on port 1883. -1612475860: Sending CONNACK to 172.18.0.3 (0, 5) -1612475860: Socket error on client , disconnecting. -1612475880: New connection from 172.18.0.3 on port 1883. -1612475880: Sending CONNACK to 172.18.0.3 (0, 5) -1612475880: Socket error on client , disconnecting. -1612475900: New connection from 172.18.0.3 on port 1883. -1612475900: Sending CONNACK to 172.18.0.3 (0, 5) -1612475900: Socket error on client , disconnecting. -1612475920: New connection from 172.18.0.3 on port 1883. -1612475920: Sending CONNACK to 172.18.0.3 (0, 5) -1612475920: Socket error on client , disconnecting. -1612475940: New connection from 172.18.0.3 on port 1883. -1612475940: Sending CONNACK to 172.18.0.3 (0, 5) -1612475940: Socket error on client , disconnecting. -1612475960: New connection from 172.18.0.3 on port 1883. -1612475960: Sending CONNACK to 172.18.0.3 (0, 5) -1612475960: Socket error on client , disconnecting. -1612475980: New connection from 172.18.0.3 on port 1883. -1612475980: Sending CONNACK to 172.18.0.3 (0, 5) -1612475980: Socket error on client , disconnecting. -1612476000: New connection from 172.18.0.3 on port 1883. -1612476000: Sending CONNACK to 172.18.0.3 (0, 5) -1612476000: Socket error on client , disconnecting. -1612476020: New connection from 172.18.0.3 on port 1883. -1612476020: Sending CONNACK to 172.18.0.3 (0, 5) -1612476020: Socket error on client , disconnecting. -1612476040: New connection from 172.18.0.3 on port 1883. -1612476040: Sending CONNACK to 172.18.0.3 (0, 5) -1612476040: Socket error on client , disconnecting. -1612476060: New connection from 172.18.0.3 on port 1883. -1612476060: Sending CONNACK to 172.18.0.3 (0, 5) -1612476060: Socket error on client , disconnecting. -1612476080: New connection from 172.18.0.3 on port 1883. -1612476080: Sending CONNACK to 172.18.0.3 (0, 5) -1612476080: Socket error on client , disconnecting. -1612476100: New connection from 172.18.0.3 on port 1883. -1612476100: Sending CONNACK to 172.18.0.3 (0, 5) -1612476100: Socket error on client , disconnecting. -1612476120: New connection from 172.18.0.3 on port 1883. -1612476120: Sending CONNACK to 172.18.0.3 (0, 5) -1612476120: Socket error on client , disconnecting. -1612476140: New connection from 172.18.0.3 on port 1883. -1612476140: Sending CONNACK to 172.18.0.3 (0, 5) -1612476140: Socket error on client , disconnecting. -1612476160: New connection from 172.18.0.3 on port 1883. -1612476160: Sending CONNACK to 172.18.0.3 (0, 5) -1612476160: Socket error on client , disconnecting. -1612476180: New connection from 172.18.0.3 on port 1883. -1612476180: Sending CONNACK to 172.18.0.3 (0, 5) -1612476180: Socket error on client , disconnecting. -1612476200: New connection from 172.18.0.3 on port 1883. -1612476200: Sending CONNACK to 172.18.0.3 (0, 5) -1612476200: Socket error on client , disconnecting. -1612476220: New connection from 172.18.0.3 on port 1883. -1612476220: Sending CONNACK to 172.18.0.3 (0, 5) -1612476220: Socket error on client , disconnecting. -1612476240: New connection from 172.18.0.3 on port 1883. -1612476240: Sending CONNACK to 172.18.0.3 (0, 5) -1612476240: Socket error on client , disconnecting. -1612476260: New connection from 172.18.0.3 on port 1883. -1612476260: Sending CONNACK to 172.18.0.3 (0, 5) -1612476260: Socket error on client , disconnecting. -1612476280: New connection from 172.18.0.3 on port 1883. -1612476280: Sending CONNACK to 172.18.0.3 (0, 5) -1612476280: Socket error on client , disconnecting. -1612476300: New connection from 172.18.0.3 on port 1883. -1612476300: Sending CONNACK to 172.18.0.3 (0, 5) -1612476300: Socket error on client , disconnecting. -1612476320: New connection from 172.18.0.3 on port 1883. -1612476320: Sending CONNACK to 172.18.0.3 (0, 5) -1612476320: Socket error on client , disconnecting. -1612476340: New connection from 172.18.0.3 on port 1883. -1612476340: Sending CONNACK to 172.18.0.3 (0, 5) -1612476340: Socket error on client , disconnecting. -1612476360: New connection from 172.18.0.3 on port 1883. -1612476360: Sending CONNACK to 172.18.0.3 (0, 5) -1612476360: Socket error on client , disconnecting. -1612476380: New connection from 172.18.0.3 on port 1883. -1612476380: Sending CONNACK to 172.18.0.3 (0, 5) -1612476380: Socket error on client , disconnecting. -1612476400: New connection from 172.18.0.3 on port 1883. -1612476400: Sending CONNACK to 172.18.0.3 (0, 5) -1612476400: Socket error on client , disconnecting. -1612476420: New connection from 172.18.0.3 on port 1883. -1612476420: Sending CONNACK to 172.18.0.3 (0, 5) -1612476420: Socket error on client , disconnecting. -1612476440: New connection from 172.18.0.3 on port 1883. -1612476440: Sending CONNACK to 172.18.0.3 (0, 5) -1612476440: Socket error on client , disconnecting. -1612476460: New connection from 172.18.0.3 on port 1883. -1612476460: Sending CONNACK to 172.18.0.3 (0, 5) -1612476460: Socket error on client , disconnecting. -1612476480: New connection from 172.18.0.3 on port 1883. -1612476480: Sending CONNACK to 172.18.0.3 (0, 5) -1612476480: Socket error on client , disconnecting. -1612476500: New connection from 172.18.0.3 on port 1883. -1612476500: Sending CONNACK to 172.18.0.3 (0, 5) -1612476500: Socket error on client , disconnecting. -1612476520: New connection from 172.18.0.3 on port 1883. -1612476520: Sending CONNACK to 172.18.0.3 (0, 5) -1612476520: Socket error on client , disconnecting. -1612476540: New connection from 172.18.0.3 on port 1883. -1612476540: Sending CONNACK to 172.18.0.3 (0, 5) -1612476540: Socket error on client , disconnecting. -1612476560: New connection from 172.18.0.3 on port 1883. -1612476560: Sending CONNACK to 172.18.0.3 (0, 5) -1612476560: Socket error on client , disconnecting. -1612476580: New connection from 172.18.0.3 on port 1883. -1612476580: Sending CONNACK to 172.18.0.3 (0, 5) -1612476580: Socket error on client , disconnecting. -1612476600: New connection from 172.18.0.3 on port 1883. -1612476600: Sending CONNACK to 172.18.0.3 (0, 5) -1612476600: Socket error on client , disconnecting. -1612476620: New connection from 172.18.0.3 on port 1883. -1612476620: Sending CONNACK to 172.18.0.3 (0, 5) -1612476620: Socket error on client , disconnecting. -1612476640: New connection from 172.18.0.3 on port 1883. -1612476640: Sending CONNACK to 172.18.0.3 (0, 5) -1612476640: Socket error on client , disconnecting. -1612476660: New connection from 172.18.0.3 on port 1883. -1612476660: Sending CONNACK to 172.18.0.3 (0, 5) -1612476660: Socket error on client , disconnecting. -1612476680: New connection from 172.18.0.3 on port 1883. -1612476680: Sending CONNACK to 172.18.0.3 (0, 5) -1612476680: Socket error on client , disconnecting. -1612476700: New connection from 172.18.0.3 on port 1883. -1612476700: Sending CONNACK to 172.18.0.3 (0, 5) -1612476700: Socket error on client , disconnecting. -1612476720: New connection from 172.18.0.3 on port 1883. -1612476720: Sending CONNACK to 172.18.0.3 (0, 5) -1612476720: Socket error on client , disconnecting. -1612476740: New connection from 172.18.0.3 on port 1883. -1612476740: Sending CONNACK to 172.18.0.3 (0, 5) -1612476740: Socket error on client , disconnecting. -1612476760: New connection from 172.18.0.3 on port 1883. -1612476760: Sending CONNACK to 172.18.0.3 (0, 5) -1612476760: Socket error on client , disconnecting. -1612476780: New connection from 172.18.0.3 on port 1883. -1612476780: Sending CONNACK to 172.18.0.3 (0, 5) -1612476780: Socket error on client , disconnecting. -1612476800: New connection from 172.18.0.3 on port 1883. -1612476800: Sending CONNACK to 172.18.0.3 (0, 5) -1612476800: Socket error on client , disconnecting. -1612476820: New connection from 172.18.0.3 on port 1883. -1612476820: Sending CONNACK to 172.18.0.3 (0, 5) -1612476820: Socket error on client , disconnecting. -1612476840: New connection from 172.18.0.3 on port 1883. -1612476840: Sending CONNACK to 172.18.0.3 (0, 5) -1612476840: Socket error on client , disconnecting. -1612476860: New connection from 172.18.0.3 on port 1883. -1612476860: Sending CONNACK to 172.18.0.3 (0, 5) -1612476860: Socket error on client , disconnecting. -1612476880: New connection from 172.18.0.3 on port 1883. -1612476880: Sending CONNACK to 172.18.0.3 (0, 5) -1612476880: Socket error on client , disconnecting. -1612476900: New connection from 172.18.0.3 on port 1883. -1612476900: Sending CONNACK to 172.18.0.3 (0, 5) -1612476900: Socket error on client , disconnecting. -1612476920: New connection from 172.18.0.3 on port 1883. -1612476920: Sending CONNACK to 172.18.0.3 (0, 5) -1612476920: Socket error on client , disconnecting. -1612476940: New connection from 172.18.0.3 on port 1883. -1612476940: Sending CONNACK to 172.18.0.3 (0, 5) -1612476940: Socket error on client , disconnecting. -1612476960: New connection from 172.18.0.3 on port 1883. -1612476960: Sending CONNACK to 172.18.0.3 (0, 5) -1612476960: Socket error on client , disconnecting. -1612476980: New connection from 172.18.0.3 on port 1883. -1612476980: Sending CONNACK to 172.18.0.3 (0, 5) -1612476980: Socket error on client , disconnecting. -1612477000: New connection from 172.18.0.3 on port 1883. -1612477000: Sending CONNACK to 172.18.0.3 (0, 5) -1612477000: Socket error on client , disconnecting. -1612477020: New connection from 172.18.0.3 on port 1883. -1612477020: Sending CONNACK to 172.18.0.3 (0, 5) -1612477020: Socket error on client , disconnecting. -1612477034: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612477034: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612477034: Error: Permission denied. -1612477040: New connection from 172.18.0.3 on port 1883. -1612477040: Sending CONNACK to 172.18.0.3 (0, 5) -1612477040: Socket error on client , disconnecting. -1612477060: New connection from 172.18.0.3 on port 1883. -1612477060: Sending CONNACK to 172.18.0.3 (0, 5) -1612477060: Socket error on client , disconnecting. -1612477080: New connection from 172.18.0.3 on port 1883. -1612477080: Sending CONNACK to 172.18.0.3 (0, 5) -1612477080: Socket error on client , disconnecting. -1612477100: New connection from 172.18.0.3 on port 1883. -1612477100: Sending CONNACK to 172.18.0.3 (0, 5) -1612477100: Socket error on client , disconnecting. -1612477120: New connection from 172.18.0.3 on port 1883. -1612477120: Sending CONNACK to 172.18.0.3 (0, 5) -1612477120: Socket error on client , disconnecting. -1612477140: New connection from 172.18.0.3 on port 1883. -1612477140: Sending CONNACK to 172.18.0.3 (0, 5) -1612477140: Socket error on client , disconnecting. -1612477160: New connection from 172.18.0.3 on port 1883. -1612477160: Sending CONNACK to 172.18.0.3 (0, 5) -1612477160: Socket error on client , disconnecting. -1612477180: New connection from 172.18.0.3 on port 1883. -1612477180: Sending CONNACK to 172.18.0.3 (0, 5) -1612477180: Socket error on client , disconnecting. -1612477200: New connection from 172.18.0.3 on port 1883. -1612477200: Sending CONNACK to 172.18.0.3 (0, 5) -1612477200: Socket error on client , disconnecting. -1612477220: New connection from 172.18.0.3 on port 1883. -1612477220: Sending CONNACK to 172.18.0.3 (0, 5) -1612477220: Socket error on client , disconnecting. -1612477240: New connection from 172.18.0.3 on port 1883. -1612477240: Sending CONNACK to 172.18.0.3 (0, 5) -1612477240: Socket error on client , disconnecting. -1612477260: New connection from 172.18.0.3 on port 1883. -1612477260: Sending CONNACK to 172.18.0.3 (0, 5) -1612477260: Socket error on client , disconnecting. -1612477280: New connection from 172.18.0.3 on port 1883. -1612477280: Sending CONNACK to 172.18.0.3 (0, 5) -1612477280: Socket error on client , disconnecting. -1612477300: New connection from 172.18.0.3 on port 1883. -1612477300: Sending CONNACK to 172.18.0.3 (0, 5) -1612477300: Socket error on client , disconnecting. -1612477320: New connection from 172.18.0.3 on port 1883. -1612477320: Sending CONNACK to 172.18.0.3 (0, 5) -1612477320: Socket error on client , disconnecting. -1612477340: New connection from 172.18.0.3 on port 1883. -1612477340: Sending CONNACK to 172.18.0.3 (0, 5) -1612477340: Socket error on client , disconnecting. -1612477360: New connection from 172.18.0.3 on port 1883. -1612477360: Sending CONNACK to 172.18.0.3 (0, 5) -1612477360: Socket error on client , disconnecting. -1612477380: New connection from 172.18.0.3 on port 1883. -1612477380: Sending CONNACK to 172.18.0.3 (0, 5) -1612477380: Socket error on client , disconnecting. -1612477400: New connection from 172.18.0.3 on port 1883. -1612477400: Sending CONNACK to 172.18.0.3 (0, 5) -1612477400: Socket error on client , disconnecting. -1612477420: New connection from 172.18.0.3 on port 1883. -1612477420: Sending CONNACK to 172.18.0.3 (0, 5) -1612477420: Socket error on client , disconnecting. -1612477440: New connection from 172.18.0.3 on port 1883. -1612477440: Sending CONNACK to 172.18.0.3 (0, 5) -1612477440: Socket error on client , disconnecting. -1612477460: New connection from 172.18.0.3 on port 1883. -1612477460: Sending CONNACK to 172.18.0.3 (0, 5) -1612477460: Socket error on client , disconnecting. -1612477480: New connection from 172.18.0.3 on port 1883. -1612477480: Sending CONNACK to 172.18.0.3 (0, 5) -1612477480: Socket error on client , disconnecting. -1612477500: New connection from 172.18.0.3 on port 1883. -1612477500: Sending CONNACK to 172.18.0.3 (0, 5) -1612477500: Socket error on client , disconnecting. -1612477520: New connection from 172.18.0.3 on port 1883. -1612477520: Sending CONNACK to 172.18.0.3 (0, 5) -1612477520: Socket error on client , disconnecting. -1612477540: New connection from 172.18.0.3 on port 1883. -1612477540: Sending CONNACK to 172.18.0.3 (0, 5) -1612477540: Socket error on client , disconnecting. -1612477560: New connection from 172.18.0.3 on port 1883. -1612477560: Sending CONNACK to 172.18.0.3 (0, 5) -1612477560: Socket error on client , disconnecting. -1612477580: New connection from 172.18.0.3 on port 1883. -1612477580: Sending CONNACK to 172.18.0.3 (0, 5) -1612477580: Socket error on client , disconnecting. -1612477600: New connection from 172.18.0.3 on port 1883. -1612477600: Sending CONNACK to 172.18.0.3 (0, 5) -1612477600: Socket error on client , disconnecting. -1612477620: New connection from 172.18.0.3 on port 1883. -1612477620: Sending CONNACK to 172.18.0.3 (0, 5) -1612477620: Socket error on client , disconnecting. -1612477640: New connection from 172.18.0.3 on port 1883. -1612477640: Sending CONNACK to 172.18.0.3 (0, 5) -1612477640: Socket error on client , disconnecting. -1612477660: New connection from 172.18.0.3 on port 1883. -1612477660: Sending CONNACK to 172.18.0.3 (0, 5) -1612477660: Socket error on client , disconnecting. -1612477680: New connection from 172.18.0.3 on port 1883. -1612477680: Sending CONNACK to 172.18.0.3 (0, 5) -1612477680: Socket error on client , disconnecting. -1612477700: New connection from 172.18.0.3 on port 1883. -1612477700: Sending CONNACK to 172.18.0.3 (0, 5) -1612477700: Socket error on client , disconnecting. -1612477720: New connection from 172.18.0.3 on port 1883. -1612477720: Sending CONNACK to 172.18.0.3 (0, 5) -1612477720: Socket error on client , disconnecting. -1612477740: New connection from 172.18.0.3 on port 1883. -1612477740: Sending CONNACK to 172.18.0.3 (0, 5) -1612477740: Socket error on client , disconnecting. -1612477760: New connection from 172.18.0.3 on port 1883. -1612477760: Sending CONNACK to 172.18.0.3 (0, 5) -1612477760: Socket error on client , disconnecting. -1612477780: New connection from 172.18.0.3 on port 1883. -1612477780: Sending CONNACK to 172.18.0.3 (0, 5) -1612477780: Socket error on client , disconnecting. -1612477800: New connection from 172.18.0.3 on port 1883. -1612477800: Sending CONNACK to 172.18.0.3 (0, 5) -1612477800: Socket error on client , disconnecting. -1612477820: New connection from 172.18.0.3 on port 1883. -1612477820: Sending CONNACK to 172.18.0.3 (0, 5) -1612477820: Socket error on client , disconnecting. -1612477840: New connection from 172.18.0.3 on port 1883. -1612477840: Sending CONNACK to 172.18.0.3 (0, 5) -1612477840: Socket error on client , disconnecting. -1612477860: New connection from 172.18.0.3 on port 1883. -1612477860: Sending CONNACK to 172.18.0.3 (0, 5) -1612477860: Socket error on client , disconnecting. -1612477880: New connection from 172.18.0.3 on port 1883. -1612477880: Sending CONNACK to 172.18.0.3 (0, 5) -1612477880: Socket error on client , disconnecting. -1612477900: New connection from 172.18.0.3 on port 1883. -1612477900: Sending CONNACK to 172.18.0.3 (0, 5) -1612477900: Socket error on client , disconnecting. -1612477920: New connection from 172.18.0.3 on port 1883. -1612477920: Sending CONNACK to 172.18.0.3 (0, 5) -1612477920: Socket error on client , disconnecting. -1612477940: New connection from 172.18.0.3 on port 1883. -1612477940: Sending CONNACK to 172.18.0.3 (0, 5) -1612477940: Socket error on client , disconnecting. -1612477960: New connection from 172.18.0.3 on port 1883. -1612477960: Sending CONNACK to 172.18.0.3 (0, 5) -1612477960: Socket error on client , disconnecting. -1612477980: New connection from 172.18.0.3 on port 1883. -1612477980: Sending CONNACK to 172.18.0.3 (0, 5) -1612477980: Socket error on client , disconnecting. -1612478000: New connection from 172.18.0.3 on port 1883. -1612478000: Sending CONNACK to 172.18.0.3 (0, 5) -1612478000: Socket error on client , disconnecting. -1612478020: New connection from 172.18.0.3 on port 1883. -1612478020: Sending CONNACK to 172.18.0.3 (0, 5) -1612478020: Socket error on client , disconnecting. -1612478040: New connection from 172.18.0.3 on port 1883. -1612478040: Sending CONNACK to 172.18.0.3 (0, 5) -1612478040: Socket error on client , disconnecting. -1612478060: New connection from 172.18.0.3 on port 1883. -1612478060: Sending CONNACK to 172.18.0.3 (0, 5) -1612478060: Socket error on client , disconnecting. -1612478080: New connection from 172.18.0.3 on port 1883. -1612478080: Sending CONNACK to 172.18.0.3 (0, 5) -1612478080: Socket error on client , disconnecting. -1612478100: New connection from 172.18.0.3 on port 1883. -1612478100: Sending CONNACK to 172.18.0.3 (0, 5) -1612478100: Socket error on client , disconnecting. -1612478120: New connection from 172.18.0.3 on port 1883. -1612478120: Sending CONNACK to 172.18.0.3 (0, 5) -1612478120: Socket error on client , disconnecting. -1612478140: New connection from 172.18.0.3 on port 1883. -1612478140: Sending CONNACK to 172.18.0.3 (0, 5) -1612478140: Socket error on client , disconnecting. -1612478160: New connection from 172.18.0.3 on port 1883. -1612478160: Sending CONNACK to 172.18.0.3 (0, 5) -1612478160: Socket error on client , disconnecting. -1612478180: New connection from 172.18.0.3 on port 1883. -1612478180: Sending CONNACK to 172.18.0.3 (0, 5) -1612478180: Socket error on client , disconnecting. -1612478200: New connection from 172.18.0.3 on port 1883. -1612478200: Sending CONNACK to 172.18.0.3 (0, 5) -1612478200: Socket error on client , disconnecting. -1612478220: New connection from 172.18.0.3 on port 1883. -1612478220: Sending CONNACK to 172.18.0.3 (0, 5) -1612478220: Socket error on client , disconnecting. -1612478240: New connection from 172.18.0.3 on port 1883. -1612478240: Sending CONNACK to 172.18.0.3 (0, 5) -1612478240: Socket error on client , disconnecting. -1612478260: New connection from 172.18.0.3 on port 1883. -1612478260: Sending CONNACK to 172.18.0.3 (0, 5) -1612478260: Socket error on client , disconnecting. -1612478280: New connection from 172.18.0.3 on port 1883. -1612478280: Sending CONNACK to 172.18.0.3 (0, 5) -1612478280: Socket error on client , disconnecting. -1612478300: New connection from 172.18.0.3 on port 1883. -1612478300: Sending CONNACK to 172.18.0.3 (0, 5) -1612478300: Socket error on client , disconnecting. -1612478320: New connection from 172.18.0.3 on port 1883. -1612478320: Sending CONNACK to 172.18.0.3 (0, 5) -1612478320: Socket error on client , disconnecting. -1612478340: New connection from 172.18.0.3 on port 1883. -1612478340: Sending CONNACK to 172.18.0.3 (0, 5) -1612478340: Socket error on client , disconnecting. -1612478360: New connection from 172.18.0.3 on port 1883. -1612478360: Sending CONNACK to 172.18.0.3 (0, 5) -1612478360: Socket error on client , disconnecting. -1612478380: New connection from 172.18.0.3 on port 1883. -1612478380: Sending CONNACK to 172.18.0.3 (0, 5) -1612478380: Socket error on client , disconnecting. -1612478400: New connection from 172.18.0.3 on port 1883. -1612478400: Sending CONNACK to 172.18.0.3 (0, 5) -1612478400: Socket error on client , disconnecting. -1612478420: New connection from 172.18.0.3 on port 1883. -1612478420: Sending CONNACK to 172.18.0.3 (0, 5) -1612478420: Socket error on client , disconnecting. -1612478440: New connection from 172.18.0.3 on port 1883. -1612478440: Sending CONNACK to 172.18.0.3 (0, 5) -1612478440: Socket error on client , disconnecting. -1612478460: New connection from 172.18.0.3 on port 1883. -1612478460: Sending CONNACK to 172.18.0.3 (0, 5) -1612478460: Socket error on client , disconnecting. -1612478480: New connection from 172.18.0.3 on port 1883. -1612478480: Sending CONNACK to 172.18.0.3 (0, 5) -1612478480: Socket error on client , disconnecting. -1612478500: New connection from 172.18.0.3 on port 1883. -1612478500: Sending CONNACK to 172.18.0.3 (0, 5) -1612478500: Socket error on client , disconnecting. -1612478520: New connection from 172.18.0.3 on port 1883. -1612478520: Sending CONNACK to 172.18.0.3 (0, 5) -1612478520: Socket error on client , disconnecting. -1612478540: New connection from 172.18.0.3 on port 1883. -1612478540: Sending CONNACK to 172.18.0.3 (0, 5) -1612478540: Socket error on client , disconnecting. -1612478560: New connection from 172.18.0.3 on port 1883. -1612478560: Sending CONNACK to 172.18.0.3 (0, 5) -1612478560: Socket error on client , disconnecting. -1612478580: New connection from 172.18.0.3 on port 1883. -1612478580: Sending CONNACK to 172.18.0.3 (0, 5) -1612478580: Socket error on client , disconnecting. -1612478600: New connection from 172.18.0.3 on port 1883. -1612478600: Sending CONNACK to 172.18.0.3 (0, 5) -1612478600: Socket error on client , disconnecting. -1612478620: New connection from 172.18.0.3 on port 1883. -1612478620: Sending CONNACK to 172.18.0.3 (0, 5) -1612478620: Socket error on client , disconnecting. -1612478640: New connection from 172.18.0.3 on port 1883. -1612478640: Sending CONNACK to 172.18.0.3 (0, 5) -1612478640: Socket error on client , disconnecting. -1612478660: New connection from 172.18.0.3 on port 1883. -1612478660: Sending CONNACK to 172.18.0.3 (0, 5) -1612478660: Socket error on client , disconnecting. -1612478680: New connection from 172.18.0.3 on port 1883. -1612478680: Sending CONNACK to 172.18.0.3 (0, 5) -1612478680: Socket error on client , disconnecting. -1612478700: New connection from 172.18.0.3 on port 1883. -1612478700: Sending CONNACK to 172.18.0.3 (0, 5) -1612478700: Socket error on client , disconnecting. -1612478720: New connection from 172.18.0.3 on port 1883. -1612478720: Sending CONNACK to 172.18.0.3 (0, 5) -1612478720: Socket error on client , disconnecting. -1612478740: New connection from 172.18.0.3 on port 1883. -1612478740: Sending CONNACK to 172.18.0.3 (0, 5) -1612478740: Socket error on client , disconnecting. -1612478760: New connection from 172.18.0.3 on port 1883. -1612478760: Sending CONNACK to 172.18.0.3 (0, 5) -1612478760: Socket error on client , disconnecting. -1612478780: New connection from 172.18.0.3 on port 1883. -1612478780: Sending CONNACK to 172.18.0.3 (0, 5) -1612478780: Socket error on client , disconnecting. -1612478800: New connection from 172.18.0.3 on port 1883. -1612478800: Sending CONNACK to 172.18.0.3 (0, 5) -1612478800: Socket error on client , disconnecting. -1612478820: New connection from 172.18.0.3 on port 1883. -1612478820: Sending CONNACK to 172.18.0.3 (0, 5) -1612478820: Socket error on client , disconnecting. -1612478835: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612478835: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612478835: Error: Permission denied. -1612478840: New connection from 172.18.0.3 on port 1883. -1612478840: Sending CONNACK to 172.18.0.3 (0, 5) -1612478840: Socket error on client , disconnecting. -1612478860: New connection from 172.18.0.3 on port 1883. -1612478860: Sending CONNACK to 172.18.0.3 (0, 5) -1612478860: Socket error on client , disconnecting. -1612478880: New connection from 172.18.0.3 on port 1883. -1612478880: Sending CONNACK to 172.18.0.3 (0, 5) -1612478880: Socket error on client , disconnecting. -1612478900: New connection from 172.18.0.3 on port 1883. -1612478900: Sending CONNACK to 172.18.0.3 (0, 5) -1612478900: Socket error on client , disconnecting. -1612478920: New connection from 172.18.0.3 on port 1883. -1612478920: Sending CONNACK to 172.18.0.3 (0, 5) -1612478920: Socket error on client , disconnecting. -1612478940: New connection from 172.18.0.3 on port 1883. -1612478940: Sending CONNACK to 172.18.0.3 (0, 5) -1612478940: Socket error on client , disconnecting. -1612478960: New connection from 172.18.0.3 on port 1883. -1612478960: Sending CONNACK to 172.18.0.3 (0, 5) -1612478960: Socket error on client , disconnecting. -1612478980: New connection from 172.18.0.3 on port 1883. -1612478980: Sending CONNACK to 172.18.0.3 (0, 5) -1612478980: Socket error on client , disconnecting. -1612479000: New connection from 172.18.0.3 on port 1883. -1612479000: Sending CONNACK to 172.18.0.3 (0, 5) -1612479000: Socket error on client , disconnecting. -1612479020: New connection from 172.18.0.3 on port 1883. -1612479020: Sending CONNACK to 172.18.0.3 (0, 5) -1612479020: Socket error on client , disconnecting. -1612479040: New connection from 172.18.0.3 on port 1883. -1612479040: Sending CONNACK to 172.18.0.3 (0, 5) -1612479040: Socket error on client , disconnecting. -1612479060: New connection from 172.18.0.3 on port 1883. -1612479060: Sending CONNACK to 172.18.0.3 (0, 5) -1612479060: Socket error on client , disconnecting. -1612479080: New connection from 172.18.0.3 on port 1883. -1612479080: Sending CONNACK to 172.18.0.3 (0, 5) -1612479080: Socket error on client , disconnecting. -1612479100: New connection from 172.18.0.3 on port 1883. -1612479100: Sending CONNACK to 172.18.0.3 (0, 5) -1612479100: Socket error on client , disconnecting. -1612479120: New connection from 172.18.0.3 on port 1883. -1612479120: Sending CONNACK to 172.18.0.3 (0, 5) -1612479120: Socket error on client , disconnecting. -1612479140: New connection from 172.18.0.3 on port 1883. -1612479140: Sending CONNACK to 172.18.0.3 (0, 5) -1612479140: Socket error on client , disconnecting. -1612479160: New connection from 172.18.0.3 on port 1883. -1612479160: Sending CONNACK to 172.18.0.3 (0, 5) -1612479160: Socket error on client , disconnecting. -1612479180: New connection from 172.18.0.3 on port 1883. -1612479180: Sending CONNACK to 172.18.0.3 (0, 5) -1612479180: Socket error on client , disconnecting. -1612479200: New connection from 172.18.0.3 on port 1883. -1612479200: Sending CONNACK to 172.18.0.3 (0, 5) -1612479200: Socket error on client , disconnecting. -1612479220: New connection from 172.18.0.3 on port 1883. -1612479220: Sending CONNACK to 172.18.0.3 (0, 5) -1612479220: Socket error on client , disconnecting. -1612479240: New connection from 172.18.0.3 on port 1883. -1612479240: Sending CONNACK to 172.18.0.3 (0, 5) -1612479240: Socket error on client , disconnecting. -1612479260: New connection from 172.18.0.3 on port 1883. -1612479260: Sending CONNACK to 172.18.0.3 (0, 5) -1612479260: Socket error on client , disconnecting. -1612479280: New connection from 172.18.0.3 on port 1883. -1612479280: Sending CONNACK to 172.18.0.3 (0, 5) -1612479280: Socket error on client , disconnecting. -1612479300: New connection from 172.18.0.3 on port 1883. -1612479300: Sending CONNACK to 172.18.0.3 (0, 5) -1612479300: Socket error on client , disconnecting. -1612479320: New connection from 172.18.0.3 on port 1883. -1612479320: Sending CONNACK to 172.18.0.3 (0, 5) -1612479320: Socket error on client , disconnecting. -1612479340: New connection from 172.18.0.3 on port 1883. -1612479340: Sending CONNACK to 172.18.0.3 (0, 5) -1612479340: Socket error on client , disconnecting. -1612479360: New connection from 172.18.0.3 on port 1883. -1612479360: Sending CONNACK to 172.18.0.3 (0, 5) -1612479360: Socket error on client , disconnecting. -1612479380: New connection from 172.18.0.3 on port 1883. -1612479380: Sending CONNACK to 172.18.0.3 (0, 5) -1612479380: Socket error on client , disconnecting. -1612479400: New connection from 172.18.0.3 on port 1883. -1612479400: Sending CONNACK to 172.18.0.3 (0, 5) -1612479400: Socket error on client , disconnecting. -1612479420: New connection from 172.18.0.3 on port 1883. -1612479420: Sending CONNACK to 172.18.0.3 (0, 5) -1612479420: Socket error on client , disconnecting. -1612479440: New connection from 172.18.0.3 on port 1883. -1612479440: Sending CONNACK to 172.18.0.3 (0, 5) -1612479440: Socket error on client , disconnecting. -1612479460: New connection from 172.18.0.3 on port 1883. -1612479460: Sending CONNACK to 172.18.0.3 (0, 5) -1612479460: Socket error on client , disconnecting. -1612479480: New connection from 172.18.0.3 on port 1883. -1612479480: Sending CONNACK to 172.18.0.3 (0, 5) -1612479480: Socket error on client , disconnecting. -1612479500: New connection from 172.18.0.3 on port 1883. -1612479500: Sending CONNACK to 172.18.0.3 (0, 5) -1612479500: Socket error on client , disconnecting. -1612479520: New connection from 172.18.0.3 on port 1883. -1612479520: Sending CONNACK to 172.18.0.3 (0, 5) -1612479520: Socket error on client , disconnecting. -1612479540: New connection from 172.18.0.3 on port 1883. -1612479540: Sending CONNACK to 172.18.0.3 (0, 5) -1612479540: Socket error on client , disconnecting. -1612479560: New connection from 172.18.0.3 on port 1883. -1612479560: Sending CONNACK to 172.18.0.3 (0, 5) -1612479560: Socket error on client , disconnecting. -1612479580: New connection from 172.18.0.3 on port 1883. -1612479580: Sending CONNACK to 172.18.0.3 (0, 5) -1612479580: Socket error on client , disconnecting. -1612479600: New connection from 172.18.0.3 on port 1883. -1612479600: Sending CONNACK to 172.18.0.3 (0, 5) -1612479600: Socket error on client , disconnecting. -1612479620: New connection from 172.18.0.3 on port 1883. -1612479620: Sending CONNACK to 172.18.0.3 (0, 5) -1612479620: Socket error on client , disconnecting. -1612479640: New connection from 172.18.0.3 on port 1883. -1612479640: Sending CONNACK to 172.18.0.3 (0, 5) -1612479640: Socket error on client , disconnecting. -1612479660: New connection from 172.18.0.3 on port 1883. -1612479660: Sending CONNACK to 172.18.0.3 (0, 5) -1612479660: Socket error on client , disconnecting. -1612479680: New connection from 172.18.0.3 on port 1883. -1612479680: Sending CONNACK to 172.18.0.3 (0, 5) -1612479680: Socket error on client , disconnecting. -1612479700: New connection from 172.18.0.3 on port 1883. -1612479700: Sending CONNACK to 172.18.0.3 (0, 5) -1612479700: Socket error on client , disconnecting. -1612479720: New connection from 172.18.0.3 on port 1883. -1612479720: Sending CONNACK to 172.18.0.3 (0, 5) -1612479720: Socket error on client , disconnecting. -1612479740: New connection from 172.18.0.3 on port 1883. -1612479740: Sending CONNACK to 172.18.0.3 (0, 5) -1612479740: Socket error on client , disconnecting. -1612479760: New connection from 172.18.0.3 on port 1883. -1612479760: Sending CONNACK to 172.18.0.3 (0, 5) -1612479760: Socket error on client , disconnecting. -1612479780: New connection from 172.18.0.3 on port 1883. -1612479780: Sending CONNACK to 172.18.0.3 (0, 5) -1612479780: Socket error on client , disconnecting. -1612479800: New connection from 172.18.0.3 on port 1883. -1612479800: Sending CONNACK to 172.18.0.3 (0, 5) -1612479800: Socket error on client , disconnecting. -1612479820: New connection from 172.18.0.3 on port 1883. -1612479820: Sending CONNACK to 172.18.0.3 (0, 5) -1612479820: Socket error on client , disconnecting. -1612479840: New connection from 172.18.0.3 on port 1883. -1612479840: Sending CONNACK to 172.18.0.3 (0, 5) -1612479840: Socket error on client , disconnecting. -1612479860: New connection from 172.18.0.3 on port 1883. -1612479860: Sending CONNACK to 172.18.0.3 (0, 5) -1612479860: Socket error on client , disconnecting. -1612479880: New connection from 172.18.0.3 on port 1883. -1612479880: Sending CONNACK to 172.18.0.3 (0, 5) -1612479880: Socket error on client , disconnecting. -1612479900: New connection from 172.18.0.3 on port 1883. -1612479900: Sending CONNACK to 172.18.0.3 (0, 5) -1612479900: Socket error on client , disconnecting. -1612479920: New connection from 172.18.0.3 on port 1883. -1612479920: Sending CONNACK to 172.18.0.3 (0, 5) -1612479920: Socket error on client , disconnecting. -1612479940: New connection from 172.18.0.3 on port 1883. -1612479940: Sending CONNACK to 172.18.0.3 (0, 5) -1612479940: Socket error on client , disconnecting. -1612479960: New connection from 172.18.0.3 on port 1883. -1612479960: Sending CONNACK to 172.18.0.3 (0, 5) -1612479960: Socket error on client , disconnecting. -1612479980: New connection from 172.18.0.3 on port 1883. -1612479980: Sending CONNACK to 172.18.0.3 (0, 5) -1612479980: Socket error on client , disconnecting. -1612480000: New connection from 172.18.0.3 on port 1883. -1612480000: Sending CONNACK to 172.18.0.3 (0, 5) -1612480000: Socket error on client , disconnecting. -1612480020: New connection from 172.18.0.3 on port 1883. -1612480020: Sending CONNACK to 172.18.0.3 (0, 5) -1612480020: Socket error on client , disconnecting. -1612480040: New connection from 172.18.0.3 on port 1883. -1612480040: Sending CONNACK to 172.18.0.3 (0, 5) -1612480040: Socket error on client , disconnecting. -1612480060: New connection from 172.18.0.3 on port 1883. -1612480060: Sending CONNACK to 172.18.0.3 (0, 5) -1612480060: Socket error on client , disconnecting. -1612480080: New connection from 172.18.0.3 on port 1883. -1612480080: Sending CONNACK to 172.18.0.3 (0, 5) -1612480080: Socket error on client , disconnecting. -1612480100: New connection from 172.18.0.3 on port 1883. -1612480100: Sending CONNACK to 172.18.0.3 (0, 5) -1612480100: Socket error on client , disconnecting. -1612480120: New connection from 172.18.0.3 on port 1883. -1612480120: Sending CONNACK to 172.18.0.3 (0, 5) -1612480120: Socket error on client , disconnecting. -1612480140: New connection from 172.18.0.3 on port 1883. -1612480140: Sending CONNACK to 172.18.0.3 (0, 5) -1612480140: Socket error on client , disconnecting. -1612480160: New connection from 172.18.0.3 on port 1883. -1612480160: Sending CONNACK to 172.18.0.3 (0, 5) -1612480160: Socket error on client , disconnecting. -1612480180: New connection from 172.18.0.3 on port 1883. -1612480180: Sending CONNACK to 172.18.0.3 (0, 5) -1612480180: Socket error on client , disconnecting. -1612480200: New connection from 172.18.0.3 on port 1883. -1612480200: Sending CONNACK to 172.18.0.3 (0, 5) -1612480200: Socket error on client , disconnecting. -1612480220: New connection from 172.18.0.3 on port 1883. -1612480220: Sending CONNACK to 172.18.0.3 (0, 5) -1612480220: Socket error on client , disconnecting. -1612480240: New connection from 172.18.0.3 on port 1883. -1612480240: Sending CONNACK to 172.18.0.3 (0, 5) -1612480240: Socket error on client , disconnecting. -1612480260: New connection from 172.18.0.3 on port 1883. -1612480260: Sending CONNACK to 172.18.0.3 (0, 5) -1612480260: Socket error on client , disconnecting. -1612480280: New connection from 172.18.0.3 on port 1883. -1612480280: Sending CONNACK to 172.18.0.3 (0, 5) -1612480280: Socket error on client , disconnecting. -1612480300: New connection from 172.18.0.3 on port 1883. -1612480300: Sending CONNACK to 172.18.0.3 (0, 5) -1612480300: Socket error on client , disconnecting. -1612480320: New connection from 172.18.0.3 on port 1883. -1612480320: Sending CONNACK to 172.18.0.3 (0, 5) -1612480320: Socket error on client , disconnecting. -1612480340: New connection from 172.18.0.3 on port 1883. -1612480340: Sending CONNACK to 172.18.0.3 (0, 5) -1612480340: Socket error on client , disconnecting. -1612480360: New connection from 172.18.0.3 on port 1883. -1612480360: Sending CONNACK to 172.18.0.3 (0, 5) -1612480360: Socket error on client , disconnecting. -1612480380: New connection from 172.18.0.3 on port 1883. -1612480380: Sending CONNACK to 172.18.0.3 (0, 5) -1612480380: Socket error on client , disconnecting. -1612480400: New connection from 172.18.0.3 on port 1883. -1612480400: Sending CONNACK to 172.18.0.3 (0, 5) -1612480400: Socket error on client , disconnecting. -1612480420: New connection from 172.18.0.3 on port 1883. -1612480420: Sending CONNACK to 172.18.0.3 (0, 5) -1612480420: Socket error on client , disconnecting. -1612480440: New connection from 172.18.0.3 on port 1883. -1612480440: Sending CONNACK to 172.18.0.3 (0, 5) -1612480440: Socket error on client , disconnecting. -1612480460: New connection from 172.18.0.3 on port 1883. -1612480460: Sending CONNACK to 172.18.0.3 (0, 5) -1612480460: Socket error on client , disconnecting. -1612480480: New connection from 172.18.0.3 on port 1883. -1612480480: Sending CONNACK to 172.18.0.3 (0, 5) -1612480480: Socket error on client , disconnecting. -1612480500: New connection from 172.18.0.3 on port 1883. -1612480500: Sending CONNACK to 172.18.0.3 (0, 5) -1612480500: Socket error on client , disconnecting. -1612480520: New connection from 172.18.0.3 on port 1883. -1612480520: Sending CONNACK to 172.18.0.3 (0, 5) -1612480520: Socket error on client , disconnecting. -1612480540: New connection from 172.18.0.3 on port 1883. -1612480540: Sending CONNACK to 172.18.0.3 (0, 5) -1612480540: Socket error on client , disconnecting. -1612480560: New connection from 172.18.0.3 on port 1883. -1612480560: Sending CONNACK to 172.18.0.3 (0, 5) -1612480560: Socket error on client , disconnecting. -1612480580: New connection from 172.18.0.3 on port 1883. -1612480580: Sending CONNACK to 172.18.0.3 (0, 5) -1612480580: Socket error on client , disconnecting. -1612480600: New connection from 172.18.0.3 on port 1883. -1612480600: Sending CONNACK to 172.18.0.3 (0, 5) -1612480600: Socket error on client , disconnecting. -1612480620: New connection from 172.18.0.3 on port 1883. -1612480620: Sending CONNACK to 172.18.0.3 (0, 5) -1612480620: Socket error on client , disconnecting. -1612480636: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612480636: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612480636: Error: Permission denied. -1612480640: New connection from 172.18.0.3 on port 1883. -1612480640: Sending CONNACK to 172.18.0.3 (0, 5) -1612480640: Socket error on client , disconnecting. -1612480660: New connection from 172.18.0.3 on port 1883. -1612480660: Sending CONNACK to 172.18.0.3 (0, 5) -1612480660: Socket error on client , disconnecting. -1612480680: New connection from 172.18.0.3 on port 1883. -1612480680: Sending CONNACK to 172.18.0.3 (0, 5) -1612480680: Socket error on client , disconnecting. -1612480700: New connection from 172.18.0.3 on port 1883. -1612480700: Sending CONNACK to 172.18.0.3 (0, 5) -1612480700: Socket error on client , disconnecting. -1612480720: New connection from 172.18.0.3 on port 1883. -1612480720: Sending CONNACK to 172.18.0.3 (0, 5) -1612480720: Socket error on client , disconnecting. -1612480740: New connection from 172.18.0.3 on port 1883. -1612480740: Sending CONNACK to 172.18.0.3 (0, 5) -1612480740: Socket error on client , disconnecting. -1612480760: New connection from 172.18.0.3 on port 1883. -1612480760: Sending CONNACK to 172.18.0.3 (0, 5) -1612480760: Socket error on client , disconnecting. -1612480780: New connection from 172.18.0.3 on port 1883. -1612480780: Sending CONNACK to 172.18.0.3 (0, 5) -1612480780: Socket error on client , disconnecting. -1612480800: New connection from 172.18.0.3 on port 1883. -1612480800: Sending CONNACK to 172.18.0.3 (0, 5) -1612480800: Socket error on client , disconnecting. -1612480820: New connection from 172.18.0.3 on port 1883. -1612480820: Sending CONNACK to 172.18.0.3 (0, 5) -1612480820: Socket error on client , disconnecting. -1612480840: New connection from 172.18.0.3 on port 1883. -1612480840: Sending CONNACK to 172.18.0.3 (0, 5) -1612480840: Socket error on client , disconnecting. -1612480860: New connection from 172.18.0.3 on port 1883. -1612480860: Sending CONNACK to 172.18.0.3 (0, 5) -1612480860: Socket error on client , disconnecting. -1612480880: New connection from 172.18.0.3 on port 1883. -1612480880: Sending CONNACK to 172.18.0.3 (0, 5) -1612480880: Socket error on client , disconnecting. -1612480900: New connection from 172.18.0.3 on port 1883. -1612480900: Sending CONNACK to 172.18.0.3 (0, 5) -1612480900: Socket error on client , disconnecting. -1612480920: New connection from 172.18.0.3 on port 1883. -1612480920: Sending CONNACK to 172.18.0.3 (0, 5) -1612480920: Socket error on client , disconnecting. -1612480940: New connection from 172.18.0.3 on port 1883. -1612480940: Sending CONNACK to 172.18.0.3 (0, 5) -1612480940: Socket error on client , disconnecting. -1612480960: New connection from 172.18.0.3 on port 1883. -1612480960: Sending CONNACK to 172.18.0.3 (0, 5) -1612480960: Socket error on client , disconnecting. -1612480980: New connection from 172.18.0.3 on port 1883. -1612480980: Sending CONNACK to 172.18.0.3 (0, 5) -1612480980: Socket error on client , disconnecting. -1612481000: New connection from 172.18.0.3 on port 1883. -1612481000: Sending CONNACK to 172.18.0.3 (0, 5) -1612481000: Socket error on client , disconnecting. -1612481020: New connection from 172.18.0.3 on port 1883. -1612481020: Sending CONNACK to 172.18.0.3 (0, 5) -1612481020: Socket error on client , disconnecting. -1612481040: New connection from 172.18.0.3 on port 1883. -1612481040: Sending CONNACK to 172.18.0.3 (0, 5) -1612481040: Socket error on client , disconnecting. -1612481060: New connection from 172.18.0.3 on port 1883. -1612481060: Sending CONNACK to 172.18.0.3 (0, 5) -1612481060: Socket error on client , disconnecting. -1612481080: New connection from 172.18.0.3 on port 1883. -1612481080: Sending CONNACK to 172.18.0.3 (0, 5) -1612481080: Socket error on client , disconnecting. -1612481100: New connection from 172.18.0.3 on port 1883. -1612481100: Sending CONNACK to 172.18.0.3 (0, 5) -1612481100: Socket error on client , disconnecting. -1612481120: New connection from 172.18.0.3 on port 1883. -1612481120: Sending CONNACK to 172.18.0.3 (0, 5) -1612481120: Socket error on client , disconnecting. -1612481140: New connection from 172.18.0.3 on port 1883. -1612481140: Sending CONNACK to 172.18.0.3 (0, 5) -1612481140: Socket error on client , disconnecting. -1612481160: New connection from 172.18.0.3 on port 1883. -1612481160: Sending CONNACK to 172.18.0.3 (0, 5) -1612481160: Socket error on client , disconnecting. -1612481180: New connection from 172.18.0.3 on port 1883. -1612481180: Sending CONNACK to 172.18.0.3 (0, 5) -1612481180: Socket error on client , disconnecting. -1612481200: New connection from 172.18.0.3 on port 1883. -1612481200: Sending CONNACK to 172.18.0.3 (0, 5) -1612481200: Socket error on client , disconnecting. -1612481220: New connection from 172.18.0.3 on port 1883. -1612481220: Sending CONNACK to 172.18.0.3 (0, 5) -1612481220: Socket error on client , disconnecting. -1612481240: New connection from 172.18.0.3 on port 1883. -1612481240: Sending CONNACK to 172.18.0.3 (0, 5) -1612481240: Socket error on client , disconnecting. -1612481260: New connection from 172.18.0.3 on port 1883. -1612481260: Sending CONNACK to 172.18.0.3 (0, 5) -1612481260: Socket error on client , disconnecting. -1612481280: New connection from 172.18.0.3 on port 1883. -1612481280: Sending CONNACK to 172.18.0.3 (0, 5) -1612481280: Socket error on client , disconnecting. -1612481300: New connection from 172.18.0.3 on port 1883. -1612481300: Sending CONNACK to 172.18.0.3 (0, 5) -1612481300: Socket error on client , disconnecting. -1612481320: New connection from 172.18.0.3 on port 1883. -1612481320: Sending CONNACK to 172.18.0.3 (0, 5) -1612481320: Socket error on client , disconnecting. -1612481340: New connection from 172.18.0.3 on port 1883. -1612481340: Sending CONNACK to 172.18.0.3 (0, 5) -1612481340: Socket error on client , disconnecting. -1612481360: New connection from 172.18.0.3 on port 1883. -1612481360: Sending CONNACK to 172.18.0.3 (0, 5) -1612481360: Socket error on client , disconnecting. -1612481380: New connection from 172.18.0.3 on port 1883. -1612481380: Sending CONNACK to 172.18.0.3 (0, 5) -1612481380: Socket error on client , disconnecting. -1612481400: New connection from 172.18.0.3 on port 1883. -1612481400: Sending CONNACK to 172.18.0.3 (0, 5) -1612481400: Socket error on client , disconnecting. -1612481420: New connection from 172.18.0.3 on port 1883. -1612481420: Sending CONNACK to 172.18.0.3 (0, 5) -1612481420: Socket error on client , disconnecting. -1612481440: New connection from 172.18.0.3 on port 1883. -1612481440: Sending CONNACK to 172.18.0.3 (0, 5) -1612481440: Socket error on client , disconnecting. -1612481460: New connection from 172.18.0.3 on port 1883. -1612481460: Sending CONNACK to 172.18.0.3 (0, 5) -1612481460: Socket error on client , disconnecting. -1612481480: New connection from 172.18.0.3 on port 1883. -1612481480: Sending CONNACK to 172.18.0.3 (0, 5) -1612481480: Socket error on client , disconnecting. -1612481500: New connection from 172.18.0.3 on port 1883. -1612481500: Sending CONNACK to 172.18.0.3 (0, 5) -1612481500: Socket error on client , disconnecting. -1612481520: New connection from 172.18.0.3 on port 1883. -1612481520: Sending CONNACK to 172.18.0.3 (0, 5) -1612481520: Socket error on client , disconnecting. -1612481540: New connection from 172.18.0.3 on port 1883. -1612481540: Sending CONNACK to 172.18.0.3 (0, 5) -1612481540: Socket error on client , disconnecting. -1612481560: New connection from 172.18.0.3 on port 1883. -1612481560: Sending CONNACK to 172.18.0.3 (0, 5) -1612481560: Socket error on client , disconnecting. -1612481580: New connection from 172.18.0.3 on port 1883. -1612481580: Sending CONNACK to 172.18.0.3 (0, 5) -1612481580: Socket error on client , disconnecting. -1612481600: New connection from 172.18.0.3 on port 1883. -1612481600: Sending CONNACK to 172.18.0.3 (0, 5) -1612481600: Socket error on client , disconnecting. -1612481620: New connection from 172.18.0.3 on port 1883. -1612481620: Sending CONNACK to 172.18.0.3 (0, 5) -1612481620: Socket error on client , disconnecting. -1612481640: New connection from 172.18.0.3 on port 1883. -1612481640: Sending CONNACK to 172.18.0.3 (0, 5) -1612481640: Socket error on client , disconnecting. -1612481660: New connection from 172.18.0.3 on port 1883. -1612481660: Sending CONNACK to 172.18.0.3 (0, 5) -1612481660: Socket error on client , disconnecting. -1612481680: New connection from 172.18.0.3 on port 1883. -1612481680: Sending CONNACK to 172.18.0.3 (0, 5) -1612481680: Socket error on client , disconnecting. -1612481700: New connection from 172.18.0.3 on port 1883. -1612481700: Sending CONNACK to 172.18.0.3 (0, 5) -1612481700: Socket error on client , disconnecting. -1612481720: New connection from 172.18.0.3 on port 1883. -1612481720: Sending CONNACK to 172.18.0.3 (0, 5) -1612481720: Socket error on client , disconnecting. -1612481740: New connection from 172.18.0.3 on port 1883. -1612481740: Sending CONNACK to 172.18.0.3 (0, 5) -1612481740: Socket error on client , disconnecting. -1612481760: New connection from 172.18.0.3 on port 1883. -1612481760: Sending CONNACK to 172.18.0.3 (0, 5) -1612481760: Socket error on client , disconnecting. -1612481780: New connection from 172.18.0.3 on port 1883. -1612481780: Sending CONNACK to 172.18.0.3 (0, 5) -1612481780: Socket error on client , disconnecting. -1612481800: New connection from 172.18.0.3 on port 1883. -1612481800: Sending CONNACK to 172.18.0.3 (0, 5) -1612481800: Socket error on client , disconnecting. -1612481820: New connection from 172.18.0.3 on port 1883. -1612481820: Sending CONNACK to 172.18.0.3 (0, 5) -1612481820: Socket error on client , disconnecting. -1612481840: New connection from 172.18.0.3 on port 1883. -1612481840: Sending CONNACK to 172.18.0.3 (0, 5) -1612481840: Socket error on client , disconnecting. -1612481860: New connection from 172.18.0.3 on port 1883. -1612481860: Sending CONNACK to 172.18.0.3 (0, 5) -1612481860: Socket error on client , disconnecting. -1612481880: New connection from 172.18.0.3 on port 1883. -1612481880: Sending CONNACK to 172.18.0.3 (0, 5) -1612481880: Socket error on client , disconnecting. -1612481900: New connection from 172.18.0.3 on port 1883. -1612481900: Sending CONNACK to 172.18.0.3 (0, 5) -1612481900: Socket error on client , disconnecting. -1612481920: New connection from 172.18.0.3 on port 1883. -1612481920: Sending CONNACK to 172.18.0.3 (0, 5) -1612481920: Socket error on client , disconnecting. -1612481940: New connection from 172.18.0.3 on port 1883. -1612481940: Sending CONNACK to 172.18.0.3 (0, 5) -1612481940: Socket error on client , disconnecting. -1612481960: New connection from 172.18.0.3 on port 1883. -1612481960: Sending CONNACK to 172.18.0.3 (0, 5) -1612481960: Socket error on client , disconnecting. -1612481980: New connection from 172.18.0.3 on port 1883. -1612481980: Sending CONNACK to 172.18.0.3 (0, 5) -1612481980: Socket error on client , disconnecting. -1612482000: New connection from 172.18.0.3 on port 1883. -1612482000: Sending CONNACK to 172.18.0.3 (0, 5) -1612482000: Socket error on client , disconnecting. -1612482020: New connection from 172.18.0.3 on port 1883. -1612482020: Sending CONNACK to 172.18.0.3 (0, 5) -1612482020: Socket error on client , disconnecting. -1612482040: New connection from 172.18.0.3 on port 1883. -1612482040: Sending CONNACK to 172.18.0.3 (0, 5) -1612482040: Socket error on client , disconnecting. -1612482060: New connection from 172.18.0.3 on port 1883. -1612482060: Sending CONNACK to 172.18.0.3 (0, 5) -1612482060: Socket error on client , disconnecting. -1612482080: New connection from 172.18.0.3 on port 1883. -1612482080: Sending CONNACK to 172.18.0.3 (0, 5) -1612482080: Socket error on client , disconnecting. -1612482100: New connection from 172.18.0.3 on port 1883. -1612482100: Sending CONNACK to 172.18.0.3 (0, 5) -1612482100: Socket error on client , disconnecting. -1612482120: New connection from 172.18.0.3 on port 1883. -1612482120: Sending CONNACK to 172.18.0.3 (0, 5) -1612482120: Socket error on client , disconnecting. -1612482140: New connection from 172.18.0.3 on port 1883. -1612482140: Sending CONNACK to 172.18.0.3 (0, 5) -1612482140: Socket error on client , disconnecting. -1612482160: New connection from 172.18.0.3 on port 1883. -1612482160: Sending CONNACK to 172.18.0.3 (0, 5) -1612482160: Socket error on client , disconnecting. -1612482180: New connection from 172.18.0.3 on port 1883. -1612482180: Sending CONNACK to 172.18.0.3 (0, 5) -1612482180: Socket error on client , disconnecting. -1612482200: New connection from 172.18.0.3 on port 1883. -1612482200: Sending CONNACK to 172.18.0.3 (0, 5) -1612482200: Socket error on client , disconnecting. -1612482220: New connection from 172.18.0.3 on port 1883. -1612482220: Sending CONNACK to 172.18.0.3 (0, 5) -1612482220: Socket error on client , disconnecting. -1612482240: New connection from 172.18.0.3 on port 1883. -1612482240: Sending CONNACK to 172.18.0.3 (0, 5) -1612482240: Socket error on client , disconnecting. -1612482260: New connection from 172.18.0.3 on port 1883. -1612482260: Sending CONNACK to 172.18.0.3 (0, 5) -1612482260: Socket error on client , disconnecting. -1612482280: New connection from 172.18.0.3 on port 1883. -1612482280: Sending CONNACK to 172.18.0.3 (0, 5) -1612482280: Socket error on client , disconnecting. -1612482300: New connection from 172.18.0.3 on port 1883. -1612482300: Sending CONNACK to 172.18.0.3 (0, 5) -1612482300: Socket error on client , disconnecting. -1612482320: New connection from 172.18.0.3 on port 1883. -1612482320: Sending CONNACK to 172.18.0.3 (0, 5) -1612482320: Socket error on client , disconnecting. -1612482340: New connection from 172.18.0.3 on port 1883. -1612482340: Sending CONNACK to 172.18.0.3 (0, 5) -1612482340: Socket error on client , disconnecting. -1612482360: New connection from 172.18.0.3 on port 1883. -1612482360: Sending CONNACK to 172.18.0.3 (0, 5) -1612482360: Socket error on client , disconnecting. -1612482380: New connection from 172.18.0.3 on port 1883. -1612482380: Sending CONNACK to 172.18.0.3 (0, 5) -1612482380: Socket error on client , disconnecting. -1612482400: New connection from 172.18.0.3 on port 1883. -1612482400: Sending CONNACK to 172.18.0.3 (0, 5) -1612482400: Socket error on client , disconnecting. -1612482420: New connection from 172.18.0.3 on port 1883. -1612482420: Sending CONNACK to 172.18.0.3 (0, 5) -1612482420: Socket error on client , disconnecting. -1612482437: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612482437: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612482437: Error: Permission denied. -1612482440: New connection from 172.18.0.3 on port 1883. -1612482440: Sending CONNACK to 172.18.0.3 (0, 5) -1612482440: Socket error on client , disconnecting. -1612482460: New connection from 172.18.0.3 on port 1883. -1612482460: Sending CONNACK to 172.18.0.3 (0, 5) -1612482460: Socket error on client , disconnecting. -1612482480: New connection from 172.18.0.3 on port 1883. -1612482480: Sending CONNACK to 172.18.0.3 (0, 5) -1612482480: Socket error on client , disconnecting. -1612482500: New connection from 172.18.0.3 on port 1883. -1612482500: Sending CONNACK to 172.18.0.3 (0, 5) -1612482500: Socket error on client , disconnecting. -1612482520: New connection from 172.18.0.3 on port 1883. -1612482520: Sending CONNACK to 172.18.0.3 (0, 5) -1612482520: Socket error on client , disconnecting. -1612482540: New connection from 172.18.0.3 on port 1883. -1612482540: Sending CONNACK to 172.18.0.3 (0, 5) -1612482540: Socket error on client , disconnecting. -1612482560: New connection from 172.18.0.3 on port 1883. -1612482560: Sending CONNACK to 172.18.0.3 (0, 5) -1612482560: Socket error on client , disconnecting. -1612482580: New connection from 172.18.0.3 on port 1883. -1612482580: Sending CONNACK to 172.18.0.3 (0, 5) -1612482580: Socket error on client , disconnecting. -1612482600: New connection from 172.18.0.3 on port 1883. -1612482600: Sending CONNACK to 172.18.0.3 (0, 5) -1612482600: Socket error on client , disconnecting. -1612482620: New connection from 172.18.0.3 on port 1883. -1612482620: Sending CONNACK to 172.18.0.3 (0, 5) -1612482620: Socket error on client , disconnecting. -1612482640: New connection from 172.18.0.3 on port 1883. -1612482640: Sending CONNACK to 172.18.0.3 (0, 5) -1612482640: Socket error on client , disconnecting. -1612482660: New connection from 172.18.0.3 on port 1883. -1612482660: Sending CONNACK to 172.18.0.3 (0, 5) -1612482660: Socket error on client , disconnecting. -1612482680: New connection from 172.18.0.3 on port 1883. -1612482680: Sending CONNACK to 172.18.0.3 (0, 5) -1612482680: Socket error on client , disconnecting. -1612482700: New connection from 172.18.0.3 on port 1883. -1612482700: Sending CONNACK to 172.18.0.3 (0, 5) -1612482700: Socket error on client , disconnecting. -1612482720: New connection from 172.18.0.3 on port 1883. -1612482720: Sending CONNACK to 172.18.0.3 (0, 5) -1612482720: Socket error on client , disconnecting. -1612482740: New connection from 172.18.0.3 on port 1883. -1612482740: Sending CONNACK to 172.18.0.3 (0, 5) -1612482740: Socket error on client , disconnecting. -1612482760: New connection from 172.18.0.3 on port 1883. -1612482760: Sending CONNACK to 172.18.0.3 (0, 5) -1612482760: Socket error on client , disconnecting. -1612482780: New connection from 172.18.0.3 on port 1883. -1612482780: Sending CONNACK to 172.18.0.3 (0, 5) -1612482780: Socket error on client , disconnecting. -1612482800: New connection from 172.18.0.3 on port 1883. -1612482800: Sending CONNACK to 172.18.0.3 (0, 5) -1612482800: Socket error on client , disconnecting. -1612482820: New connection from 172.18.0.3 on port 1883. -1612482820: Sending CONNACK to 172.18.0.3 (0, 5) -1612482820: Socket error on client , disconnecting. -1612482840: New connection from 172.18.0.3 on port 1883. -1612482840: Sending CONNACK to 172.18.0.3 (0, 5) -1612482840: Socket error on client , disconnecting. -1612482860: New connection from 172.18.0.3 on port 1883. -1612482860: Sending CONNACK to 172.18.0.3 (0, 5) -1612482860: Socket error on client , disconnecting. -1612482880: New connection from 172.18.0.3 on port 1883. -1612482880: Sending CONNACK to 172.18.0.3 (0, 5) -1612482880: Socket error on client , disconnecting. -1612482900: New connection from 172.18.0.3 on port 1883. -1612482900: Sending CONNACK to 172.18.0.3 (0, 5) -1612482900: Socket error on client , disconnecting. -1612482920: New connection from 172.18.0.3 on port 1883. -1612482920: Sending CONNACK to 172.18.0.3 (0, 5) -1612482920: Socket error on client , disconnecting. -1612482940: New connection from 172.18.0.3 on port 1883. -1612482940: Sending CONNACK to 172.18.0.3 (0, 5) -1612482940: Socket error on client , disconnecting. -1612482960: New connection from 172.18.0.3 on port 1883. -1612482960: Sending CONNACK to 172.18.0.3 (0, 5) -1612482960: Socket error on client , disconnecting. -1612482980: New connection from 172.18.0.3 on port 1883. -1612482980: Sending CONNACK to 172.18.0.3 (0, 5) -1612482980: Socket error on client , disconnecting. -1612483000: New connection from 172.18.0.3 on port 1883. -1612483000: Sending CONNACK to 172.18.0.3 (0, 5) -1612483000: Socket error on client , disconnecting. -1612483020: New connection from 172.18.0.3 on port 1883. -1612483020: Sending CONNACK to 172.18.0.3 (0, 5) -1612483020: Socket error on client , disconnecting. -1612483040: New connection from 172.18.0.3 on port 1883. -1612483040: Sending CONNACK to 172.18.0.3 (0, 5) -1612483040: Socket error on client , disconnecting. -1612483060: New connection from 172.18.0.3 on port 1883. -1612483060: Sending CONNACK to 172.18.0.3 (0, 5) -1612483060: Socket error on client , disconnecting. -1612483080: New connection from 172.18.0.3 on port 1883. -1612483080: Sending CONNACK to 172.18.0.3 (0, 5) -1612483080: Socket error on client , disconnecting. -1612483100: New connection from 172.18.0.3 on port 1883. -1612483100: Sending CONNACK to 172.18.0.3 (0, 5) -1612483100: Socket error on client , disconnecting. -1612483120: New connection from 172.18.0.3 on port 1883. -1612483120: Sending CONNACK to 172.18.0.3 (0, 5) -1612483120: Socket error on client , disconnecting. -1612483140: New connection from 172.18.0.3 on port 1883. -1612483140: Sending CONNACK to 172.18.0.3 (0, 5) -1612483140: Socket error on client , disconnecting. -1612483160: New connection from 172.18.0.3 on port 1883. -1612483160: Sending CONNACK to 172.18.0.3 (0, 5) -1612483160: Socket error on client , disconnecting. -1612483180: New connection from 172.18.0.3 on port 1883. -1612483180: Sending CONNACK to 172.18.0.3 (0, 5) -1612483180: Socket error on client , disconnecting. -1612483200: New connection from 172.18.0.3 on port 1883. -1612483200: Sending CONNACK to 172.18.0.3 (0, 5) -1612483200: Socket error on client , disconnecting. -1612483220: New connection from 172.18.0.3 on port 1883. -1612483220: Sending CONNACK to 172.18.0.3 (0, 5) -1612483220: Socket error on client , disconnecting. -1612483240: New connection from 172.18.0.3 on port 1883. -1612483240: Sending CONNACK to 172.18.0.3 (0, 5) -1612483240: Socket error on client , disconnecting. -1612483260: New connection from 172.18.0.3 on port 1883. -1612483260: Sending CONNACK to 172.18.0.3 (0, 5) -1612483260: Socket error on client , disconnecting. -1612483280: New connection from 172.18.0.3 on port 1883. -1612483280: Sending CONNACK to 172.18.0.3 (0, 5) -1612483280: Socket error on client , disconnecting. -1612483300: New connection from 172.18.0.3 on port 1883. -1612483300: Sending CONNACK to 172.18.0.3 (0, 5) -1612483300: Socket error on client , disconnecting. -1612483320: New connection from 172.18.0.3 on port 1883. -1612483320: Sending CONNACK to 172.18.0.3 (0, 5) -1612483320: Socket error on client , disconnecting. -1612483340: New connection from 172.18.0.3 on port 1883. -1612483340: Sending CONNACK to 172.18.0.3 (0, 5) -1612483340: Socket error on client , disconnecting. -1612483360: New connection from 172.18.0.3 on port 1883. -1612483360: Sending CONNACK to 172.18.0.3 (0, 5) -1612483360: Socket error on client , disconnecting. -1612483380: New connection from 172.18.0.3 on port 1883. -1612483380: Sending CONNACK to 172.18.0.3 (0, 5) -1612483380: Socket error on client , disconnecting. -1612483400: New connection from 172.18.0.3 on port 1883. -1612483400: Sending CONNACK to 172.18.0.3 (0, 5) -1612483400: Socket error on client , disconnecting. -1612483420: New connection from 172.18.0.3 on port 1883. -1612483420: Sending CONNACK to 172.18.0.3 (0, 5) -1612483420: Socket error on client , disconnecting. -1612483440: New connection from 172.18.0.3 on port 1883. -1612483440: Sending CONNACK to 172.18.0.3 (0, 5) -1612483440: Socket error on client , disconnecting. -1612483460: New connection from 172.18.0.3 on port 1883. -1612483460: Sending CONNACK to 172.18.0.3 (0, 5) -1612483460: Socket error on client , disconnecting. -1612483480: New connection from 172.18.0.3 on port 1883. -1612483480: Sending CONNACK to 172.18.0.3 (0, 5) -1612483480: Socket error on client , disconnecting. -1612483500: New connection from 172.18.0.3 on port 1883. -1612483500: Sending CONNACK to 172.18.0.3 (0, 5) -1612483500: Socket error on client , disconnecting. -1612483520: New connection from 172.18.0.3 on port 1883. -1612483520: Sending CONNACK to 172.18.0.3 (0, 5) -1612483520: Socket error on client , disconnecting. -1612483540: New connection from 172.18.0.3 on port 1883. -1612483540: Sending CONNACK to 172.18.0.3 (0, 5) -1612483540: Socket error on client , disconnecting. -1612483560: New connection from 172.18.0.3 on port 1883. -1612483560: Sending CONNACK to 172.18.0.3 (0, 5) -1612483560: Socket error on client , disconnecting. -1612483580: New connection from 172.18.0.3 on port 1883. -1612483580: Sending CONNACK to 172.18.0.3 (0, 5) -1612483580: Socket error on client , disconnecting. -1612483600: New connection from 172.18.0.3 on port 1883. -1612483600: Sending CONNACK to 172.18.0.3 (0, 5) -1612483600: Socket error on client , disconnecting. -1612483620: New connection from 172.18.0.3 on port 1883. -1612483620: Sending CONNACK to 172.18.0.3 (0, 5) -1612483620: Socket error on client , disconnecting. -1612483640: New connection from 172.18.0.3 on port 1883. -1612483640: Sending CONNACK to 172.18.0.3 (0, 5) -1612483640: Socket error on client , disconnecting. -1612483660: New connection from 172.18.0.3 on port 1883. -1612483660: Sending CONNACK to 172.18.0.3 (0, 5) -1612483660: Socket error on client , disconnecting. -1612483680: New connection from 172.18.0.3 on port 1883. -1612483680: Sending CONNACK to 172.18.0.3 (0, 5) -1612483680: Socket error on client , disconnecting. -1612483700: New connection from 172.18.0.3 on port 1883. -1612483700: Sending CONNACK to 172.18.0.3 (0, 5) -1612483700: Socket error on client , disconnecting. -1612483720: New connection from 172.18.0.3 on port 1883. -1612483720: Sending CONNACK to 172.18.0.3 (0, 5) -1612483720: Socket error on client , disconnecting. -1612483740: New connection from 172.18.0.3 on port 1883. -1612483740: Sending CONNACK to 172.18.0.3 (0, 5) -1612483740: Socket error on client , disconnecting. -1612483760: New connection from 172.18.0.3 on port 1883. -1612483760: Sending CONNACK to 172.18.0.3 (0, 5) -1612483760: Socket error on client , disconnecting. -1612483780: New connection from 172.18.0.3 on port 1883. -1612483780: Sending CONNACK to 172.18.0.3 (0, 5) -1612483780: Socket error on client , disconnecting. -1612483800: New connection from 172.18.0.3 on port 1883. -1612483800: Sending CONNACK to 172.18.0.3 (0, 5) -1612483800: Socket error on client , disconnecting. -1612483820: New connection from 172.18.0.3 on port 1883. -1612483820: Sending CONNACK to 172.18.0.3 (0, 5) -1612483820: Socket error on client , disconnecting. -1612483840: New connection from 172.18.0.3 on port 1883. -1612483840: Sending CONNACK to 172.18.0.3 (0, 5) -1612483840: Socket error on client , disconnecting. -1612483860: New connection from 172.18.0.3 on port 1883. -1612483860: Sending CONNACK to 172.18.0.3 (0, 5) -1612483860: Socket error on client , disconnecting. -1612483880: New connection from 172.18.0.3 on port 1883. -1612483880: Sending CONNACK to 172.18.0.3 (0, 5) -1612483880: Socket error on client , disconnecting. -1612483900: New connection from 172.18.0.3 on port 1883. -1612483900: Sending CONNACK to 172.18.0.3 (0, 5) -1612483900: Socket error on client , disconnecting. -1612483920: New connection from 172.18.0.3 on port 1883. -1612483920: Sending CONNACK to 172.18.0.3 (0, 5) -1612483920: Socket error on client , disconnecting. -1612483940: New connection from 172.18.0.3 on port 1883. -1612483940: Sending CONNACK to 172.18.0.3 (0, 5) -1612483940: Socket error on client , disconnecting. -1612483960: New connection from 172.18.0.3 on port 1883. -1612483960: Sending CONNACK to 172.18.0.3 (0, 5) -1612483960: Socket error on client , disconnecting. -1612483980: New connection from 172.18.0.3 on port 1883. -1612483980: Sending CONNACK to 172.18.0.3 (0, 5) -1612483980: Socket error on client , disconnecting. -1612484000: New connection from 172.18.0.3 on port 1883. -1612484000: Sending CONNACK to 172.18.0.3 (0, 5) -1612484000: Socket error on client , disconnecting. -1612484020: New connection from 172.18.0.3 on port 1883. -1612484020: Sending CONNACK to 172.18.0.3 (0, 5) -1612484020: Socket error on client , disconnecting. -1612484040: New connection from 172.18.0.3 on port 1883. -1612484040: Sending CONNACK to 172.18.0.3 (0, 5) -1612484040: Socket error on client , disconnecting. -1612484060: New connection from 172.18.0.3 on port 1883. -1612484060: Sending CONNACK to 172.18.0.3 (0, 5) -1612484060: Socket error on client , disconnecting. -1612484080: New connection from 172.18.0.3 on port 1883. -1612484080: Sending CONNACK to 172.18.0.3 (0, 5) -1612484080: Socket error on client , disconnecting. -1612484100: New connection from 172.18.0.3 on port 1883. -1612484100: Sending CONNACK to 172.18.0.3 (0, 5) -1612484100: Socket error on client , disconnecting. -1612484120: New connection from 172.18.0.3 on port 1883. -1612484120: Sending CONNACK to 172.18.0.3 (0, 5) -1612484120: Socket error on client , disconnecting. -1612484140: New connection from 172.18.0.3 on port 1883. -1612484140: Sending CONNACK to 172.18.0.3 (0, 5) -1612484140: Socket error on client , disconnecting. -1612484160: New connection from 172.18.0.3 on port 1883. -1612484160: Sending CONNACK to 172.18.0.3 (0, 5) -1612484160: Socket error on client , disconnecting. -1612484180: New connection from 172.18.0.3 on port 1883. -1612484180: Sending CONNACK to 172.18.0.3 (0, 5) -1612484180: Socket error on client , disconnecting. -1612484200: New connection from 172.18.0.3 on port 1883. -1612484200: Sending CONNACK to 172.18.0.3 (0, 5) -1612484200: Socket error on client , disconnecting. -1612484220: New connection from 172.18.0.3 on port 1883. -1612484220: Sending CONNACK to 172.18.0.3 (0, 5) -1612484220: Socket error on client , disconnecting. -1612484238: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612484238: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612484238: Error: Permission denied. -1612484240: New connection from 172.18.0.3 on port 1883. -1612484240: Sending CONNACK to 172.18.0.3 (0, 5) -1612484240: Socket error on client , disconnecting. -1612484260: New connection from 172.18.0.3 on port 1883. -1612484260: Sending CONNACK to 172.18.0.3 (0, 5) -1612484260: Socket error on client , disconnecting. -1612484280: New connection from 172.18.0.3 on port 1883. -1612484280: Sending CONNACK to 172.18.0.3 (0, 5) -1612484280: Socket error on client , disconnecting. -1612484300: New connection from 172.18.0.3 on port 1883. -1612484300: Sending CONNACK to 172.18.0.3 (0, 5) -1612484300: Socket error on client , disconnecting. -1612484320: New connection from 172.18.0.3 on port 1883. -1612484320: Sending CONNACK to 172.18.0.3 (0, 5) -1612484320: Socket error on client , disconnecting. -1612484340: New connection from 172.18.0.3 on port 1883. -1612484340: Sending CONNACK to 172.18.0.3 (0, 5) -1612484340: Socket error on client , disconnecting. -1612484360: New connection from 172.18.0.3 on port 1883. -1612484360: Sending CONNACK to 172.18.0.3 (0, 5) -1612484360: Socket error on client , disconnecting. -1612484380: New connection from 172.18.0.3 on port 1883. -1612484380: Sending CONNACK to 172.18.0.3 (0, 5) -1612484380: Socket error on client , disconnecting. -1612484400: New connection from 172.18.0.3 on port 1883. -1612484400: Sending CONNACK to 172.18.0.3 (0, 5) -1612484400: Socket error on client , disconnecting. -1612484420: New connection from 172.18.0.3 on port 1883. -1612484420: Sending CONNACK to 172.18.0.3 (0, 5) -1612484420: Socket error on client , disconnecting. -1612484440: New connection from 172.18.0.3 on port 1883. -1612484440: Sending CONNACK to 172.18.0.3 (0, 5) -1612484440: Socket error on client , disconnecting. -1612484460: New connection from 172.18.0.3 on port 1883. -1612484460: Sending CONNACK to 172.18.0.3 (0, 5) -1612484460: Socket error on client , disconnecting. -1612484480: New connection from 172.18.0.3 on port 1883. -1612484480: Sending CONNACK to 172.18.0.3 (0, 5) -1612484480: Socket error on client , disconnecting. -1612484500: New connection from 172.18.0.3 on port 1883. -1612484500: Sending CONNACK to 172.18.0.3 (0, 5) -1612484500: Socket error on client , disconnecting. -1612484520: New connection from 172.18.0.3 on port 1883. -1612484520: Sending CONNACK to 172.18.0.3 (0, 5) -1612484520: Socket error on client , disconnecting. -1612484540: New connection from 172.18.0.3 on port 1883. -1612484540: Sending CONNACK to 172.18.0.3 (0, 5) -1612484540: Socket error on client , disconnecting. -1612484560: New connection from 172.18.0.3 on port 1883. -1612484560: Sending CONNACK to 172.18.0.3 (0, 5) -1612484560: Socket error on client , disconnecting. -1612484580: New connection from 172.18.0.3 on port 1883. -1612484580: Sending CONNACK to 172.18.0.3 (0, 5) -1612484580: Socket error on client , disconnecting. -1612484600: New connection from 172.18.0.3 on port 1883. -1612484600: Sending CONNACK to 172.18.0.3 (0, 5) -1612484600: Socket error on client , disconnecting. -1612484620: New connection from 172.18.0.3 on port 1883. -1612484620: Sending CONNACK to 172.18.0.3 (0, 5) -1612484620: Socket error on client , disconnecting. -1612484640: New connection from 172.18.0.3 on port 1883. -1612484640: Sending CONNACK to 172.18.0.3 (0, 5) -1612484640: Socket error on client , disconnecting. -1612484660: New connection from 172.18.0.3 on port 1883. -1612484660: Sending CONNACK to 172.18.0.3 (0, 5) -1612484660: Socket error on client , disconnecting. -1612484680: New connection from 172.18.0.3 on port 1883. -1612484680: Sending CONNACK to 172.18.0.3 (0, 5) -1612484680: Socket error on client , disconnecting. -1612484700: New connection from 172.18.0.3 on port 1883. -1612484700: Sending CONNACK to 172.18.0.3 (0, 5) -1612484700: Socket error on client , disconnecting. -1612484720: New connection from 172.18.0.3 on port 1883. -1612484720: Sending CONNACK to 172.18.0.3 (0, 5) -1612484720: Socket error on client , disconnecting. -1612484740: New connection from 172.18.0.3 on port 1883. -1612484740: Sending CONNACK to 172.18.0.3 (0, 5) -1612484740: Socket error on client , disconnecting. -1612484760: New connection from 172.18.0.3 on port 1883. -1612484760: Sending CONNACK to 172.18.0.3 (0, 5) -1612484760: Socket error on client , disconnecting. -1612484780: New connection from 172.18.0.3 on port 1883. -1612484780: Sending CONNACK to 172.18.0.3 (0, 5) -1612484780: Socket error on client , disconnecting. -1612484800: New connection from 172.18.0.3 on port 1883. -1612484800: Sending CONNACK to 172.18.0.3 (0, 5) -1612484800: Socket error on client , disconnecting. -1612484820: New connection from 172.18.0.3 on port 1883. -1612484820: Sending CONNACK to 172.18.0.3 (0, 5) -1612484820: Socket error on client , disconnecting. -1612484840: New connection from 172.18.0.3 on port 1883. -1612484840: Sending CONNACK to 172.18.0.3 (0, 5) -1612484840: Socket error on client , disconnecting. -1612484860: New connection from 172.18.0.3 on port 1883. -1612484860: Sending CONNACK to 172.18.0.3 (0, 5) -1612484860: Socket error on client , disconnecting. -1612484880: New connection from 172.18.0.3 on port 1883. -1612484880: Sending CONNACK to 172.18.0.3 (0, 5) -1612484880: Socket error on client , disconnecting. -1612484900: New connection from 172.18.0.3 on port 1883. -1612484900: Sending CONNACK to 172.18.0.3 (0, 5) -1612484900: Socket error on client , disconnecting. -1612484920: New connection from 172.18.0.3 on port 1883. -1612484920: Sending CONNACK to 172.18.0.3 (0, 5) -1612484920: Socket error on client , disconnecting. -1612484940: New connection from 172.18.0.3 on port 1883. -1612484940: Sending CONNACK to 172.18.0.3 (0, 5) -1612484940: Socket error on client , disconnecting. -1612484960: New connection from 172.18.0.3 on port 1883. -1612484960: Sending CONNACK to 172.18.0.3 (0, 5) -1612484960: Socket error on client , disconnecting. -1612484980: New connection from 172.18.0.3 on port 1883. -1612484980: Sending CONNACK to 172.18.0.3 (0, 5) -1612484980: Socket error on client , disconnecting. -1612485000: New connection from 172.18.0.3 on port 1883. -1612485000: Sending CONNACK to 172.18.0.3 (0, 5) -1612485000: Socket error on client , disconnecting. -1612485020: New connection from 172.18.0.3 on port 1883. -1612485020: Sending CONNACK to 172.18.0.3 (0, 5) -1612485020: Socket error on client , disconnecting. -1612485040: New connection from 172.18.0.3 on port 1883. -1612485040: Sending CONNACK to 172.18.0.3 (0, 5) -1612485040: Socket error on client , disconnecting. -1612485060: New connection from 172.18.0.3 on port 1883. -1612485060: Sending CONNACK to 172.18.0.3 (0, 5) -1612485060: Socket error on client , disconnecting. -1612485080: New connection from 172.18.0.3 on port 1883. -1612485080: Sending CONNACK to 172.18.0.3 (0, 5) -1612485080: Socket error on client , disconnecting. -1612485100: New connection from 172.18.0.3 on port 1883. -1612485100: Sending CONNACK to 172.18.0.3 (0, 5) -1612485100: Socket error on client , disconnecting. -1612485120: New connection from 172.18.0.3 on port 1883. -1612485120: Sending CONNACK to 172.18.0.3 (0, 5) -1612485120: Socket error on client , disconnecting. -1612485140: New connection from 172.18.0.3 on port 1883. -1612485140: Sending CONNACK to 172.18.0.3 (0, 5) -1612485140: Socket error on client , disconnecting. -1612485160: New connection from 172.18.0.3 on port 1883. -1612485160: Sending CONNACK to 172.18.0.3 (0, 5) -1612485160: Socket error on client , disconnecting. -1612485180: New connection from 172.18.0.3 on port 1883. -1612485180: Sending CONNACK to 172.18.0.3 (0, 5) -1612485180: Socket error on client , disconnecting. -1612485200: New connection from 172.18.0.3 on port 1883. -1612485200: Sending CONNACK to 172.18.0.3 (0, 5) -1612485200: Socket error on client , disconnecting. -1612485220: New connection from 172.18.0.3 on port 1883. -1612485220: Sending CONNACK to 172.18.0.3 (0, 5) -1612485220: Socket error on client , disconnecting. -1612485240: New connection from 172.18.0.3 on port 1883. -1612485240: Sending CONNACK to 172.18.0.3 (0, 5) -1612485240: Socket error on client , disconnecting. -1612485260: New connection from 172.18.0.3 on port 1883. -1612485260: Sending CONNACK to 172.18.0.3 (0, 5) -1612485260: Socket error on client , disconnecting. -1612485280: New connection from 172.18.0.3 on port 1883. -1612485280: Sending CONNACK to 172.18.0.3 (0, 5) -1612485280: Socket error on client , disconnecting. -1612485300: New connection from 172.18.0.3 on port 1883. -1612485300: Sending CONNACK to 172.18.0.3 (0, 5) -1612485300: Socket error on client , disconnecting. -1612485320: New connection from 172.18.0.3 on port 1883. -1612485320: Sending CONNACK to 172.18.0.3 (0, 5) -1612485320: Socket error on client , disconnecting. -1612485340: New connection from 172.18.0.3 on port 1883. -1612485340: Sending CONNACK to 172.18.0.3 (0, 5) -1612485340: Socket error on client , disconnecting. -1612485360: New connection from 172.18.0.3 on port 1883. -1612485360: Sending CONNACK to 172.18.0.3 (0, 5) -1612485360: Socket error on client , disconnecting. -1612485380: New connection from 172.18.0.3 on port 1883. -1612485380: Sending CONNACK to 172.18.0.3 (0, 5) -1612485380: Socket error on client , disconnecting. -1612485400: New connection from 172.18.0.3 on port 1883. -1612485400: Sending CONNACK to 172.18.0.3 (0, 5) -1612485400: Socket error on client , disconnecting. -1612485420: New connection from 172.18.0.3 on port 1883. -1612485420: Sending CONNACK to 172.18.0.3 (0, 5) -1612485420: Socket error on client , disconnecting. -1612485440: New connection from 172.18.0.3 on port 1883. -1612485440: Sending CONNACK to 172.18.0.3 (0, 5) -1612485440: Socket error on client , disconnecting. -1612485460: New connection from 172.18.0.3 on port 1883. -1612485460: Sending CONNACK to 172.18.0.3 (0, 5) -1612485460: Socket error on client , disconnecting. -1612485480: New connection from 172.18.0.3 on port 1883. -1612485480: Sending CONNACK to 172.18.0.3 (0, 5) -1612485480: Socket error on client , disconnecting. -1612485500: New connection from 172.18.0.3 on port 1883. -1612485500: Sending CONNACK to 172.18.0.3 (0, 5) -1612485500: Socket error on client , disconnecting. -1612485520: New connection from 172.18.0.3 on port 1883. -1612485520: Sending CONNACK to 172.18.0.3 (0, 5) -1612485520: Socket error on client , disconnecting. -1612485540: New connection from 172.18.0.3 on port 1883. -1612485540: Sending CONNACK to 172.18.0.3 (0, 5) -1612485540: Socket error on client , disconnecting. -1612485560: New connection from 172.18.0.3 on port 1883. -1612485560: Sending CONNACK to 172.18.0.3 (0, 5) -1612485560: Socket error on client , disconnecting. -1612485580: New connection from 172.18.0.3 on port 1883. -1612485580: Sending CONNACK to 172.18.0.3 (0, 5) -1612485580: Socket error on client , disconnecting. -1612485600: New connection from 172.18.0.3 on port 1883. -1612485600: Sending CONNACK to 172.18.0.3 (0, 5) -1612485600: Socket error on client , disconnecting. -1612485620: New connection from 172.18.0.3 on port 1883. -1612485620: Sending CONNACK to 172.18.0.3 (0, 5) -1612485620: Socket error on client , disconnecting. -1612485640: New connection from 172.18.0.3 on port 1883. -1612485640: Sending CONNACK to 172.18.0.3 (0, 5) -1612485640: Socket error on client , disconnecting. -1612485660: New connection from 172.18.0.3 on port 1883. -1612485660: Sending CONNACK to 172.18.0.3 (0, 5) -1612485660: Socket error on client , disconnecting. -1612485680: New connection from 172.18.0.3 on port 1883. -1612485680: Sending CONNACK to 172.18.0.3 (0, 5) -1612485680: Socket error on client , disconnecting. -1612485700: New connection from 172.18.0.3 on port 1883. -1612485700: Sending CONNACK to 172.18.0.3 (0, 5) -1612485700: Socket error on client , disconnecting. -1612485720: New connection from 172.18.0.3 on port 1883. -1612485720: Sending CONNACK to 172.18.0.3 (0, 5) -1612485720: Socket error on client , disconnecting. -1612485740: New connection from 172.18.0.3 on port 1883. -1612485740: Sending CONNACK to 172.18.0.3 (0, 5) -1612485740: Socket error on client , disconnecting. -1612485760: New connection from 172.18.0.3 on port 1883. -1612485760: Sending CONNACK to 172.18.0.3 (0, 5) -1612485760: Socket error on client , disconnecting. -1612485780: New connection from 172.18.0.3 on port 1883. -1612485780: Sending CONNACK to 172.18.0.3 (0, 5) -1612485780: Socket error on client , disconnecting. -1612485800: New connection from 172.18.0.3 on port 1883. -1612485800: Sending CONNACK to 172.18.0.3 (0, 5) -1612485800: Socket error on client , disconnecting. -1612485820: New connection from 172.18.0.3 on port 1883. -1612485820: Sending CONNACK to 172.18.0.3 (0, 5) -1612485820: Socket error on client , disconnecting. -1612485840: New connection from 172.18.0.3 on port 1883. -1612485840: Sending CONNACK to 172.18.0.3 (0, 5) -1612485840: Socket error on client , disconnecting. -1612485860: New connection from 172.18.0.3 on port 1883. -1612485860: Sending CONNACK to 172.18.0.3 (0, 5) -1612485860: Socket error on client , disconnecting. -1612485880: New connection from 172.18.0.3 on port 1883. -1612485880: Sending CONNACK to 172.18.0.3 (0, 5) -1612485880: Socket error on client , disconnecting. -1612485900: New connection from 172.18.0.3 on port 1883. -1612485900: Sending CONNACK to 172.18.0.3 (0, 5) -1612485900: Socket error on client , disconnecting. -1612485920: New connection from 172.18.0.3 on port 1883. -1612485920: Sending CONNACK to 172.18.0.3 (0, 5) -1612485920: Socket error on client , disconnecting. -1612485940: New connection from 172.18.0.3 on port 1883. -1612485940: Sending CONNACK to 172.18.0.3 (0, 5) -1612485940: Socket error on client , disconnecting. -1612485960: New connection from 172.18.0.3 on port 1883. -1612485960: Sending CONNACK to 172.18.0.3 (0, 5) -1612485960: Socket error on client , disconnecting. -1612485980: New connection from 172.18.0.3 on port 1883. -1612485980: Sending CONNACK to 172.18.0.3 (0, 5) -1612485980: Socket error on client , disconnecting. -1612486000: New connection from 172.18.0.3 on port 1883. -1612486000: Sending CONNACK to 172.18.0.3 (0, 5) -1612486000: Socket error on client , disconnecting. -1612486020: New connection from 172.18.0.3 on port 1883. -1612486020: Sending CONNACK to 172.18.0.3 (0, 5) -1612486020: Socket error on client , disconnecting. -1612486039: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612486039: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612486039: Error: Permission denied. -1612486040: New connection from 172.18.0.3 on port 1883. -1612486040: Sending CONNACK to 172.18.0.3 (0, 5) -1612486040: Socket error on client , disconnecting. -1612486060: New connection from 172.18.0.3 on port 1883. -1612486060: Sending CONNACK to 172.18.0.3 (0, 5) -1612486060: Socket error on client , disconnecting. -1612486080: New connection from 172.18.0.3 on port 1883. -1612486080: Sending CONNACK to 172.18.0.3 (0, 5) -1612486080: Socket error on client , disconnecting. -1612486100: New connection from 172.18.0.3 on port 1883. -1612486100: Sending CONNACK to 172.18.0.3 (0, 5) -1612486100: Socket error on client , disconnecting. -1612486120: New connection from 172.18.0.3 on port 1883. -1612486120: Sending CONNACK to 172.18.0.3 (0, 5) -1612486120: Socket error on client , disconnecting. -1612486140: New connection from 172.18.0.3 on port 1883. -1612486140: Sending CONNACK to 172.18.0.3 (0, 5) -1612486140: Socket error on client , disconnecting. -1612486160: New connection from 172.18.0.3 on port 1883. -1612486160: Sending CONNACK to 172.18.0.3 (0, 5) -1612486160: Socket error on client , disconnecting. -1612486180: New connection from 172.18.0.3 on port 1883. -1612486180: Sending CONNACK to 172.18.0.3 (0, 5) -1612486180: Socket error on client , disconnecting. -1612486200: New connection from 172.18.0.3 on port 1883. -1612486200: Sending CONNACK to 172.18.0.3 (0, 5) -1612486200: Socket error on client , disconnecting. -1612486220: New connection from 172.18.0.3 on port 1883. -1612486220: Sending CONNACK to 172.18.0.3 (0, 5) -1612486220: Socket error on client , disconnecting. -1612486240: New connection from 172.18.0.3 on port 1883. -1612486240: Sending CONNACK to 172.18.0.3 (0, 5) -1612486240: Socket error on client , disconnecting. -1612486260: New connection from 172.18.0.3 on port 1883. -1612486260: Sending CONNACK to 172.18.0.3 (0, 5) -1612486260: Socket error on client , disconnecting. -1612486280: New connection from 172.18.0.3 on port 1883. -1612486280: Sending CONNACK to 172.18.0.3 (0, 5) -1612486280: Socket error on client , disconnecting. -1612486300: New connection from 172.18.0.3 on port 1883. -1612486300: Sending CONNACK to 172.18.0.3 (0, 5) -1612486300: Socket error on client , disconnecting. -1612486320: New connection from 172.18.0.3 on port 1883. -1612486320: Sending CONNACK to 172.18.0.3 (0, 5) -1612486320: Socket error on client , disconnecting. -1612486340: New connection from 172.18.0.3 on port 1883. -1612486340: Sending CONNACK to 172.18.0.3 (0, 5) -1612486340: Socket error on client , disconnecting. -1612486360: New connection from 172.18.0.3 on port 1883. -1612486360: Sending CONNACK to 172.18.0.3 (0, 5) -1612486360: Socket error on client , disconnecting. -1612486380: New connection from 172.18.0.3 on port 1883. -1612486380: Sending CONNACK to 172.18.0.3 (0, 5) -1612486380: Socket error on client , disconnecting. -1612486400: New connection from 172.18.0.3 on port 1883. -1612486400: Sending CONNACK to 172.18.0.3 (0, 5) -1612486400: Socket error on client , disconnecting. -1612486420: New connection from 172.18.0.3 on port 1883. -1612486420: Sending CONNACK to 172.18.0.3 (0, 5) -1612486420: Socket error on client , disconnecting. -1612486440: New connection from 172.18.0.3 on port 1883. -1612486440: Sending CONNACK to 172.18.0.3 (0, 5) -1612486440: Socket error on client , disconnecting. -1612486460: New connection from 172.18.0.3 on port 1883. -1612486460: Sending CONNACK to 172.18.0.3 (0, 5) -1612486460: Socket error on client , disconnecting. -1612486480: New connection from 172.18.0.3 on port 1883. -1612486480: Sending CONNACK to 172.18.0.3 (0, 5) -1612486480: Socket error on client , disconnecting. -1612486500: New connection from 172.18.0.3 on port 1883. -1612486500: Sending CONNACK to 172.18.0.3 (0, 5) -1612486500: Socket error on client , disconnecting. -1612486520: New connection from 172.18.0.3 on port 1883. -1612486520: Sending CONNACK to 172.18.0.3 (0, 5) -1612486520: Socket error on client , disconnecting. -1612486540: New connection from 172.18.0.3 on port 1883. -1612486540: Sending CONNACK to 172.18.0.3 (0, 5) -1612486540: Socket error on client , disconnecting. -1612486560: New connection from 172.18.0.3 on port 1883. -1612486560: Sending CONNACK to 172.18.0.3 (0, 5) -1612486560: Socket error on client , disconnecting. -1612486580: New connection from 172.18.0.3 on port 1883. -1612486580: Sending CONNACK to 172.18.0.3 (0, 5) -1612486580: Socket error on client , disconnecting. -1612486600: New connection from 172.18.0.3 on port 1883. -1612486600: Sending CONNACK to 172.18.0.3 (0, 5) -1612486600: Socket error on client , disconnecting. -1612486620: New connection from 172.18.0.3 on port 1883. -1612486620: Sending CONNACK to 172.18.0.3 (0, 5) -1612486620: Socket error on client , disconnecting. -1612486640: New connection from 172.18.0.3 on port 1883. -1612486640: Sending CONNACK to 172.18.0.3 (0, 5) -1612486640: Socket error on client , disconnecting. -1612486660: New connection from 172.18.0.3 on port 1883. -1612486660: Sending CONNACK to 172.18.0.3 (0, 5) -1612486660: Socket error on client , disconnecting. -1612486680: New connection from 172.18.0.3 on port 1883. -1612486680: Sending CONNACK to 172.18.0.3 (0, 5) -1612486680: Socket error on client , disconnecting. -1612486700: New connection from 172.18.0.3 on port 1883. -1612486700: Sending CONNACK to 172.18.0.3 (0, 5) -1612486700: Socket error on client , disconnecting. -1612486720: New connection from 172.18.0.3 on port 1883. -1612486720: Sending CONNACK to 172.18.0.3 (0, 5) -1612486720: Socket error on client , disconnecting. -1612486740: New connection from 172.18.0.3 on port 1883. -1612486740: Sending CONNACK to 172.18.0.3 (0, 5) -1612486740: Socket error on client , disconnecting. -1612486760: New connection from 172.18.0.3 on port 1883. -1612486760: Sending CONNACK to 172.18.0.3 (0, 5) -1612486760: Socket error on client , disconnecting. -1612486780: New connection from 172.18.0.3 on port 1883. -1612486780: Sending CONNACK to 172.18.0.3 (0, 5) -1612486780: Socket error on client , disconnecting. -1612486800: New connection from 172.18.0.3 on port 1883. -1612486800: Sending CONNACK to 172.18.0.3 (0, 5) -1612486800: Socket error on client , disconnecting. -1612486820: New connection from 172.18.0.3 on port 1883. -1612486820: Sending CONNACK to 172.18.0.3 (0, 5) -1612486820: Socket error on client , disconnecting. -1612486840: New connection from 172.18.0.3 on port 1883. -1612486840: Sending CONNACK to 172.18.0.3 (0, 5) -1612486840: Socket error on client , disconnecting. -1612486860: New connection from 172.18.0.3 on port 1883. -1612486860: Sending CONNACK to 172.18.0.3 (0, 5) -1612486860: Socket error on client , disconnecting. -1612486880: New connection from 172.18.0.3 on port 1883. -1612486880: Sending CONNACK to 172.18.0.3 (0, 5) -1612486880: Socket error on client , disconnecting. -1612486900: New connection from 172.18.0.3 on port 1883. -1612486900: Sending CONNACK to 172.18.0.3 (0, 5) -1612486900: Socket error on client , disconnecting. -1612486920: New connection from 172.18.0.3 on port 1883. -1612486920: Sending CONNACK to 172.18.0.3 (0, 5) -1612486920: Socket error on client , disconnecting. -1612486940: New connection from 172.18.0.3 on port 1883. -1612486940: Sending CONNACK to 172.18.0.3 (0, 5) -1612486940: Socket error on client , disconnecting. -1612486960: New connection from 172.18.0.3 on port 1883. -1612486960: Sending CONNACK to 172.18.0.3 (0, 5) -1612486960: Socket error on client , disconnecting. -1612486980: New connection from 172.18.0.3 on port 1883. -1612486980: Sending CONNACK to 172.18.0.3 (0, 5) -1612486980: Socket error on client , disconnecting. -1612487000: New connection from 172.18.0.3 on port 1883. -1612487000: Sending CONNACK to 172.18.0.3 (0, 5) -1612487000: Socket error on client , disconnecting. -1612487020: New connection from 172.18.0.3 on port 1883. -1612487020: Sending CONNACK to 172.18.0.3 (0, 5) -1612487020: Socket error on client , disconnecting. -1612487040: New connection from 172.18.0.3 on port 1883. -1612487040: Sending CONNACK to 172.18.0.3 (0, 5) -1612487040: Socket error on client , disconnecting. -1612487060: New connection from 172.18.0.3 on port 1883. -1612487060: Sending CONNACK to 172.18.0.3 (0, 5) -1612487060: Socket error on client , disconnecting. -1612487080: New connection from 172.18.0.3 on port 1883. -1612487080: Sending CONNACK to 172.18.0.3 (0, 5) -1612487080: Socket error on client , disconnecting. -1612487100: New connection from 172.18.0.3 on port 1883. -1612487100: Sending CONNACK to 172.18.0.3 (0, 5) -1612487100: Socket error on client , disconnecting. -1612487120: New connection from 172.18.0.3 on port 1883. -1612487120: Sending CONNACK to 172.18.0.3 (0, 5) -1612487120: Socket error on client , disconnecting. -1612487140: New connection from 172.18.0.3 on port 1883. -1612487140: Sending CONNACK to 172.18.0.3 (0, 5) -1612487140: Socket error on client , disconnecting. -1612487160: New connection from 172.18.0.3 on port 1883. -1612487160: Sending CONNACK to 172.18.0.3 (0, 5) -1612487160: Socket error on client , disconnecting. -1612487180: New connection from 172.18.0.3 on port 1883. -1612487180: Sending CONNACK to 172.18.0.3 (0, 5) -1612487180: Socket error on client , disconnecting. -1612487200: New connection from 172.18.0.3 on port 1883. -1612487200: Sending CONNACK to 172.18.0.3 (0, 5) -1612487200: Socket error on client , disconnecting. -1612487220: New connection from 172.18.0.3 on port 1883. -1612487220: Sending CONNACK to 172.18.0.3 (0, 5) -1612487220: Socket error on client , disconnecting. -1612487240: New connection from 172.18.0.3 on port 1883. -1612487240: Sending CONNACK to 172.18.0.3 (0, 5) -1612487240: Socket error on client , disconnecting. -1612487260: New connection from 172.18.0.3 on port 1883. -1612487260: Sending CONNACK to 172.18.0.3 (0, 5) -1612487260: Socket error on client , disconnecting. -1612487280: New connection from 172.18.0.3 on port 1883. -1612487280: Sending CONNACK to 172.18.0.3 (0, 5) -1612487280: Socket error on client , disconnecting. -1612487300: New connection from 172.18.0.3 on port 1883. -1612487300: Sending CONNACK to 172.18.0.3 (0, 5) -1612487300: Socket error on client , disconnecting. -1612487320: New connection from 172.18.0.3 on port 1883. -1612487320: Sending CONNACK to 172.18.0.3 (0, 5) -1612487320: Socket error on client , disconnecting. -1612487340: New connection from 172.18.0.3 on port 1883. -1612487340: Sending CONNACK to 172.18.0.3 (0, 5) -1612487340: Socket error on client , disconnecting. -1612487360: New connection from 172.18.0.3 on port 1883. -1612487360: Sending CONNACK to 172.18.0.3 (0, 5) -1612487360: Socket error on client , disconnecting. -1612487380: New connection from 172.18.0.3 on port 1883. -1612487380: Sending CONNACK to 172.18.0.3 (0, 5) -1612487380: Socket error on client , disconnecting. -1612487400: New connection from 172.18.0.3 on port 1883. -1612487400: Sending CONNACK to 172.18.0.3 (0, 5) -1612487400: Socket error on client , disconnecting. -1612487420: New connection from 172.18.0.3 on port 1883. -1612487420: Sending CONNACK to 172.18.0.3 (0, 5) -1612487420: Socket error on client , disconnecting. -1612487440: New connection from 172.18.0.3 on port 1883. -1612487440: Sending CONNACK to 172.18.0.3 (0, 5) -1612487440: Socket error on client , disconnecting. -1612487460: New connection from 172.18.0.3 on port 1883. -1612487460: Sending CONNACK to 172.18.0.3 (0, 5) -1612487460: Socket error on client , disconnecting. -1612487480: New connection from 172.18.0.3 on port 1883. -1612487480: Sending CONNACK to 172.18.0.3 (0, 5) -1612487480: Socket error on client , disconnecting. -1612487500: New connection from 172.18.0.3 on port 1883. -1612487500: Sending CONNACK to 172.18.0.3 (0, 5) -1612487500: Socket error on client , disconnecting. -1612487520: New connection from 172.18.0.3 on port 1883. -1612487520: Sending CONNACK to 172.18.0.3 (0, 5) -1612487520: Socket error on client , disconnecting. -1612487540: New connection from 172.18.0.3 on port 1883. -1612487540: Sending CONNACK to 172.18.0.3 (0, 5) -1612487540: Socket error on client , disconnecting. -1612487560: New connection from 172.18.0.3 on port 1883. -1612487560: Sending CONNACK to 172.18.0.3 (0, 5) -1612487560: Socket error on client , disconnecting. -1612487580: New connection from 172.18.0.3 on port 1883. -1612487580: Sending CONNACK to 172.18.0.3 (0, 5) -1612487580: Socket error on client , disconnecting. -1612487600: New connection from 172.18.0.3 on port 1883. -1612487600: Sending CONNACK to 172.18.0.3 (0, 5) -1612487600: Socket error on client , disconnecting. -1612487620: New connection from 172.18.0.3 on port 1883. -1612487620: Sending CONNACK to 172.18.0.3 (0, 5) -1612487620: Socket error on client , disconnecting. -1612487640: New connection from 172.18.0.3 on port 1883. -1612487640: Sending CONNACK to 172.18.0.3 (0, 5) -1612487640: Socket error on client , disconnecting. -1612487660: New connection from 172.18.0.3 on port 1883. -1612487660: Sending CONNACK to 172.18.0.3 (0, 5) -1612487660: Socket error on client , disconnecting. -1612487680: New connection from 172.18.0.3 on port 1883. -1612487680: Sending CONNACK to 172.18.0.3 (0, 5) -1612487680: Socket error on client , disconnecting. -1612487700: New connection from 172.18.0.3 on port 1883. -1612487700: Sending CONNACK to 172.18.0.3 (0, 5) -1612487700: Socket error on client , disconnecting. -1612487720: New connection from 172.18.0.3 on port 1883. -1612487720: Sending CONNACK to 172.18.0.3 (0, 5) -1612487720: Socket error on client , disconnecting. -1612487740: New connection from 172.18.0.3 on port 1883. -1612487740: Sending CONNACK to 172.18.0.3 (0, 5) -1612487740: Socket error on client , disconnecting. -1612487760: New connection from 172.18.0.3 on port 1883. -1612487760: Sending CONNACK to 172.18.0.3 (0, 5) -1612487760: Socket error on client , disconnecting. -1612487780: New connection from 172.18.0.3 on port 1883. -1612487780: Sending CONNACK to 172.18.0.3 (0, 5) -1612487780: Socket error on client , disconnecting. -1612487800: New connection from 172.18.0.3 on port 1883. -1612487800: Sending CONNACK to 172.18.0.3 (0, 5) -1612487800: Socket error on client , disconnecting. -1612487820: New connection from 172.18.0.3 on port 1883. -1612487820: Sending CONNACK to 172.18.0.3 (0, 5) -1612487820: Socket error on client , disconnecting. -1612487840: New connection from 172.18.0.3 on port 1883. -1612487840: Sending CONNACK to 172.18.0.3 (0, 5) -1612487840: Socket error on client , disconnecting. -1612487840: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612487840: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612487840: Error: Permission denied. -1612487860: New connection from 172.18.0.3 on port 1883. -1612487860: Sending CONNACK to 172.18.0.3 (0, 5) -1612487860: Socket error on client , disconnecting. -1612487880: New connection from 172.18.0.3 on port 1883. -1612487880: Sending CONNACK to 172.18.0.3 (0, 5) -1612487880: Socket error on client , disconnecting. -1612487900: New connection from 172.18.0.3 on port 1883. -1612487900: Sending CONNACK to 172.18.0.3 (0, 5) -1612487900: Socket error on client , disconnecting. -1612487920: New connection from 172.18.0.3 on port 1883. -1612487920: Sending CONNACK to 172.18.0.3 (0, 5) -1612487920: Socket error on client , disconnecting. -1612487940: New connection from 172.18.0.3 on port 1883. -1612487940: Sending CONNACK to 172.18.0.3 (0, 5) -1612487940: Socket error on client , disconnecting. -1612487960: New connection from 172.18.0.3 on port 1883. -1612487960: Sending CONNACK to 172.18.0.3 (0, 5) -1612487960: Socket error on client , disconnecting. -1612487980: New connection from 172.18.0.3 on port 1883. -1612487980: Sending CONNACK to 172.18.0.3 (0, 5) -1612487980: Socket error on client , disconnecting. -1612488000: New connection from 172.18.0.3 on port 1883. -1612488000: Sending CONNACK to 172.18.0.3 (0, 5) -1612488000: Socket error on client , disconnecting. -1612488020: New connection from 172.18.0.3 on port 1883. -1612488020: Sending CONNACK to 172.18.0.3 (0, 5) -1612488020: Socket error on client , disconnecting. -1612488040: New connection from 172.18.0.3 on port 1883. -1612488040: Sending CONNACK to 172.18.0.3 (0, 5) -1612488040: Socket error on client , disconnecting. -1612488060: New connection from 172.18.0.3 on port 1883. -1612488060: Sending CONNACK to 172.18.0.3 (0, 5) -1612488060: Socket error on client , disconnecting. -1612488080: New connection from 172.18.0.3 on port 1883. -1612488080: Sending CONNACK to 172.18.0.3 (0, 5) -1612488080: Socket error on client , disconnecting. -1612488100: New connection from 172.18.0.3 on port 1883. -1612488100: Sending CONNACK to 172.18.0.3 (0, 5) -1612488100: Socket error on client , disconnecting. -1612488120: New connection from 172.18.0.3 on port 1883. -1612488120: Sending CONNACK to 172.18.0.3 (0, 5) -1612488120: Socket error on client , disconnecting. -1612488140: New connection from 172.18.0.3 on port 1883. -1612488140: Sending CONNACK to 172.18.0.3 (0, 5) -1612488140: Socket error on client , disconnecting. -1612488160: New connection from 172.18.0.3 on port 1883. -1612488160: Sending CONNACK to 172.18.0.3 (0, 5) -1612488160: Socket error on client , disconnecting. -1612488180: New connection from 172.18.0.3 on port 1883. -1612488180: Sending CONNACK to 172.18.0.3 (0, 5) -1612488180: Socket error on client , disconnecting. -1612488200: New connection from 172.18.0.3 on port 1883. -1612488200: Sending CONNACK to 172.18.0.3 (0, 5) -1612488200: Socket error on client , disconnecting. -1612488220: New connection from 172.18.0.3 on port 1883. -1612488220: Sending CONNACK to 172.18.0.3 (0, 5) -1612488220: Socket error on client , disconnecting. -1612488240: New connection from 172.18.0.3 on port 1883. -1612488240: Sending CONNACK to 172.18.0.3 (0, 5) -1612488240: Socket error on client , disconnecting. -1612488260: New connection from 172.18.0.3 on port 1883. -1612488260: Sending CONNACK to 172.18.0.3 (0, 5) -1612488260: Socket error on client , disconnecting. -1612488280: New connection from 172.18.0.3 on port 1883. -1612488280: Sending CONNACK to 172.18.0.3 (0, 5) -1612488280: Socket error on client , disconnecting. -1612488300: New connection from 172.18.0.3 on port 1883. -1612488300: Sending CONNACK to 172.18.0.3 (0, 5) -1612488300: Socket error on client , disconnecting. -1612488320: New connection from 172.18.0.3 on port 1883. -1612488320: Sending CONNACK to 172.18.0.3 (0, 5) -1612488320: Socket error on client , disconnecting. -1612488340: New connection from 172.18.0.3 on port 1883. -1612488340: Sending CONNACK to 172.18.0.3 (0, 5) -1612488340: Socket error on client , disconnecting. -1612488360: New connection from 172.18.0.3 on port 1883. -1612488360: Sending CONNACK to 172.18.0.3 (0, 5) -1612488360: Socket error on client , disconnecting. -1612488380: New connection from 172.18.0.3 on port 1883. -1612488380: Sending CONNACK to 172.18.0.3 (0, 5) -1612488380: Socket error on client , disconnecting. -1612488400: New connection from 172.18.0.3 on port 1883. -1612488400: Sending CONNACK to 172.18.0.3 (0, 5) -1612488400: Socket error on client , disconnecting. -1612488420: New connection from 172.18.0.3 on port 1883. -1612488420: Sending CONNACK to 172.18.0.3 (0, 5) -1612488420: Socket error on client , disconnecting. -1612488440: New connection from 172.18.0.3 on port 1883. -1612488440: Sending CONNACK to 172.18.0.3 (0, 5) -1612488440: Socket error on client , disconnecting. -1612488460: New connection from 172.18.0.3 on port 1883. -1612488460: Sending CONNACK to 172.18.0.3 (0, 5) -1612488460: Socket error on client , disconnecting. -1612488480: New connection from 172.18.0.3 on port 1883. -1612488480: Sending CONNACK to 172.18.0.3 (0, 5) -1612488480: Socket error on client , disconnecting. -1612488500: New connection from 172.18.0.3 on port 1883. -1612488500: Sending CONNACK to 172.18.0.3 (0, 5) -1612488500: Socket error on client , disconnecting. -1612488520: New connection from 172.18.0.3 on port 1883. -1612488520: Sending CONNACK to 172.18.0.3 (0, 5) -1612488520: Socket error on client , disconnecting. -1612488540: New connection from 172.18.0.3 on port 1883. -1612488540: Sending CONNACK to 172.18.0.3 (0, 5) -1612488540: Socket error on client , disconnecting. -1612488560: New connection from 172.18.0.3 on port 1883. -1612488560: Sending CONNACK to 172.18.0.3 (0, 5) -1612488560: Socket error on client , disconnecting. -1612488580: New connection from 172.18.0.3 on port 1883. -1612488580: Sending CONNACK to 172.18.0.3 (0, 5) -1612488580: Socket error on client , disconnecting. -1612488600: New connection from 172.18.0.3 on port 1883. -1612488600: Sending CONNACK to 172.18.0.3 (0, 5) -1612488600: Socket error on client , disconnecting. -1612488620: New connection from 172.18.0.3 on port 1883. -1612488620: Sending CONNACK to 172.18.0.3 (0, 5) -1612488620: Socket error on client , disconnecting. -1612488640: New connection from 172.18.0.3 on port 1883. -1612488640: Sending CONNACK to 172.18.0.3 (0, 5) -1612488640: Socket error on client , disconnecting. -1612488660: New connection from 172.18.0.3 on port 1883. -1612488660: Sending CONNACK to 172.18.0.3 (0, 5) -1612488660: Socket error on client , disconnecting. -1612488680: New connection from 172.18.0.3 on port 1883. -1612488680: Sending CONNACK to 172.18.0.3 (0, 5) -1612488680: Socket error on client , disconnecting. -1612488700: New connection from 172.18.0.3 on port 1883. -1612488700: Sending CONNACK to 172.18.0.3 (0, 5) -1612488700: Socket error on client , disconnecting. -1612488720: New connection from 172.18.0.3 on port 1883. -1612488720: Sending CONNACK to 172.18.0.3 (0, 5) -1612488720: Socket error on client , disconnecting. -1612488740: New connection from 172.18.0.3 on port 1883. -1612488740: Sending CONNACK to 172.18.0.3 (0, 5) -1612488740: Socket error on client , disconnecting. -1612488760: New connection from 172.18.0.3 on port 1883. -1612488760: Sending CONNACK to 172.18.0.3 (0, 5) -1612488760: Socket error on client , disconnecting. -1612488780: New connection from 172.18.0.3 on port 1883. -1612488780: Sending CONNACK to 172.18.0.3 (0, 5) -1612488780: Socket error on client , disconnecting. -1612488800: New connection from 172.18.0.3 on port 1883. -1612488800: Sending CONNACK to 172.18.0.3 (0, 5) -1612488800: Socket error on client , disconnecting. -1612488820: New connection from 172.18.0.3 on port 1883. -1612488820: Sending CONNACK to 172.18.0.3 (0, 5) -1612488820: Socket error on client , disconnecting. -1612488840: New connection from 172.18.0.3 on port 1883. -1612488840: Sending CONNACK to 172.18.0.3 (0, 5) -1612488840: Socket error on client , disconnecting. -1612488860: New connection from 172.18.0.3 on port 1883. -1612488860: Sending CONNACK to 172.18.0.3 (0, 5) -1612488860: Socket error on client , disconnecting. -1612488880: New connection from 172.18.0.3 on port 1883. -1612488880: Sending CONNACK to 172.18.0.3 (0, 5) -1612488880: Socket error on client , disconnecting. -1612488900: New connection from 172.18.0.3 on port 1883. -1612488900: Sending CONNACK to 172.18.0.3 (0, 5) -1612488900: Socket error on client , disconnecting. -1612488920: New connection from 172.18.0.3 on port 1883. -1612488920: Sending CONNACK to 172.18.0.3 (0, 5) -1612488920: Socket error on client , disconnecting. -1612488940: New connection from 172.18.0.3 on port 1883. -1612488940: Sending CONNACK to 172.18.0.3 (0, 5) -1612488940: Socket error on client , disconnecting. -1612488960: New connection from 172.18.0.3 on port 1883. -1612488960: Sending CONNACK to 172.18.0.3 (0, 5) -1612488960: Socket error on client , disconnecting. -1612488980: New connection from 172.18.0.3 on port 1883. -1612488980: Sending CONNACK to 172.18.0.3 (0, 5) -1612488980: Socket error on client , disconnecting. -1612489000: New connection from 172.18.0.3 on port 1883. -1612489000: Sending CONNACK to 172.18.0.3 (0, 5) -1612489000: Socket error on client , disconnecting. -1612489020: New connection from 172.18.0.3 on port 1883. -1612489020: Sending CONNACK to 172.18.0.3 (0, 5) -1612489020: Socket error on client , disconnecting. -1612489040: New connection from 172.18.0.3 on port 1883. -1612489040: Sending CONNACK to 172.18.0.3 (0, 5) -1612489040: Socket error on client , disconnecting. -1612489060: New connection from 172.18.0.3 on port 1883. -1612489060: Sending CONNACK to 172.18.0.3 (0, 5) -1612489060: Socket error on client , disconnecting. -1612489080: New connection from 172.18.0.3 on port 1883. -1612489080: Sending CONNACK to 172.18.0.3 (0, 5) -1612489080: Socket error on client , disconnecting. -1612489100: New connection from 172.18.0.3 on port 1883. -1612489100: Sending CONNACK to 172.18.0.3 (0, 5) -1612489100: Socket error on client , disconnecting. -1612489120: New connection from 172.18.0.3 on port 1883. -1612489120: Sending CONNACK to 172.18.0.3 (0, 5) -1612489120: Socket error on client , disconnecting. -1612489140: New connection from 172.18.0.3 on port 1883. -1612489140: Sending CONNACK to 172.18.0.3 (0, 5) -1612489140: Socket error on client , disconnecting. -1612489160: New connection from 172.18.0.3 on port 1883. -1612489160: Sending CONNACK to 172.18.0.3 (0, 5) -1612489160: Socket error on client , disconnecting. -1612489180: New connection from 172.18.0.3 on port 1883. -1612489180: Sending CONNACK to 172.18.0.3 (0, 5) -1612489180: Socket error on client , disconnecting. -1612489200: New connection from 172.18.0.3 on port 1883. -1612489200: Sending CONNACK to 172.18.0.3 (0, 5) -1612489200: Socket error on client , disconnecting. -1612489220: New connection from 172.18.0.3 on port 1883. -1612489220: Sending CONNACK to 172.18.0.3 (0, 5) -1612489220: Socket error on client , disconnecting. -1612489240: New connection from 172.18.0.3 on port 1883. -1612489240: Sending CONNACK to 172.18.0.3 (0, 5) -1612489240: Socket error on client , disconnecting. -1612489260: New connection from 172.18.0.3 on port 1883. -1612489260: Sending CONNACK to 172.18.0.3 (0, 5) -1612489260: Socket error on client , disconnecting. -1612489280: New connection from 172.18.0.3 on port 1883. -1612489280: Sending CONNACK to 172.18.0.3 (0, 5) -1612489280: Socket error on client , disconnecting. -1612489300: New connection from 172.18.0.3 on port 1883. -1612489300: Sending CONNACK to 172.18.0.3 (0, 5) -1612489300: Socket error on client , disconnecting. -1612489320: New connection from 172.18.0.3 on port 1883. -1612489320: Sending CONNACK to 172.18.0.3 (0, 5) -1612489320: Socket error on client , disconnecting. -1612489340: New connection from 172.18.0.3 on port 1883. -1612489340: Sending CONNACK to 172.18.0.3 (0, 5) -1612489340: Socket error on client , disconnecting. -1612489360: New connection from 172.18.0.3 on port 1883. -1612489360: Sending CONNACK to 172.18.0.3 (0, 5) -1612489360: Socket error on client , disconnecting. -1612489380: New connection from 172.18.0.3 on port 1883. -1612489380: Sending CONNACK to 172.18.0.3 (0, 5) -1612489380: Socket error on client , disconnecting. -1612489400: New connection from 172.18.0.3 on port 1883. -1612489400: Sending CONNACK to 172.18.0.3 (0, 5) -1612489400: Socket error on client , disconnecting. -1612489420: New connection from 172.18.0.3 on port 1883. -1612489420: Sending CONNACK to 172.18.0.3 (0, 5) -1612489420: Socket error on client , disconnecting. -1612489440: New connection from 172.18.0.3 on port 1883. -1612489440: Sending CONNACK to 172.18.0.3 (0, 5) -1612489440: Socket error on client , disconnecting. -1612489460: New connection from 172.18.0.3 on port 1883. -1612489460: Sending CONNACK to 172.18.0.3 (0, 5) -1612489460: Socket error on client , disconnecting. -1612489480: New connection from 172.18.0.3 on port 1883. -1612489480: Sending CONNACK to 172.18.0.3 (0, 5) -1612489480: Socket error on client , disconnecting. -1612489500: New connection from 172.18.0.3 on port 1883. -1612489500: Sending CONNACK to 172.18.0.3 (0, 5) -1612489500: Socket error on client , disconnecting. -1612489520: New connection from 172.18.0.3 on port 1883. -1612489520: Sending CONNACK to 172.18.0.3 (0, 5) -1612489520: Socket error on client , disconnecting. -1612489540: New connection from 172.18.0.3 on port 1883. -1612489540: Sending CONNACK to 172.18.0.3 (0, 5) -1612489540: Socket error on client , disconnecting. -1612489560: New connection from 172.18.0.3 on port 1883. -1612489560: Sending CONNACK to 172.18.0.3 (0, 5) -1612489560: Socket error on client , disconnecting. -1612489580: New connection from 172.18.0.3 on port 1883. -1612489580: Sending CONNACK to 172.18.0.3 (0, 5) -1612489580: Socket error on client , disconnecting. -1612489600: New connection from 172.18.0.3 on port 1883. -1612489600: Sending CONNACK to 172.18.0.3 (0, 5) -1612489600: Socket error on client , disconnecting. -1612489620: New connection from 172.18.0.3 on port 1883. -1612489620: Sending CONNACK to 172.18.0.3 (0, 5) -1612489620: Socket error on client , disconnecting. -1612489640: New connection from 172.18.0.3 on port 1883. -1612489640: Sending CONNACK to 172.18.0.3 (0, 5) -1612489640: Socket error on client , disconnecting. -1612489641: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612489641: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612489641: Error: Permission denied. -1612489660: New connection from 172.18.0.3 on port 1883. -1612489660: Sending CONNACK to 172.18.0.3 (0, 5) -1612489660: Socket error on client , disconnecting. -1612489680: New connection from 172.18.0.3 on port 1883. -1612489680: Sending CONNACK to 172.18.0.3 (0, 5) -1612489680: Socket error on client , disconnecting. -1612489700: New connection from 172.18.0.3 on port 1883. -1612489700: Sending CONNACK to 172.18.0.3 (0, 5) -1612489700: Socket error on client , disconnecting. -1612489720: New connection from 172.18.0.3 on port 1883. -1612489720: Sending CONNACK to 172.18.0.3 (0, 5) -1612489720: Socket error on client , disconnecting. -1612489740: New connection from 172.18.0.3 on port 1883. -1612489740: Sending CONNACK to 172.18.0.3 (0, 5) -1612489740: Socket error on client , disconnecting. -1612489760: New connection from 172.18.0.3 on port 1883. -1612489760: Sending CONNACK to 172.18.0.3 (0, 5) -1612489760: Socket error on client , disconnecting. -1612489780: New connection from 172.18.0.3 on port 1883. -1612489780: Sending CONNACK to 172.18.0.3 (0, 5) -1612489780: Socket error on client , disconnecting. -1612489800: New connection from 172.18.0.3 on port 1883. -1612489800: Sending CONNACK to 172.18.0.3 (0, 5) -1612489800: Socket error on client , disconnecting. -1612489820: New connection from 172.18.0.3 on port 1883. -1612489820: Sending CONNACK to 172.18.0.3 (0, 5) -1612489820: Socket error on client , disconnecting. -1612489840: New connection from 172.18.0.3 on port 1883. -1612489840: Sending CONNACK to 172.18.0.3 (0, 5) -1612489840: Socket error on client , disconnecting. -1612489860: New connection from 172.18.0.3 on port 1883. -1612489860: Sending CONNACK to 172.18.0.3 (0, 5) -1612489860: Socket error on client , disconnecting. -1612489880: New connection from 172.18.0.3 on port 1883. -1612489880: Sending CONNACK to 172.18.0.3 (0, 5) -1612489880: Socket error on client , disconnecting. -1612489900: New connection from 172.18.0.3 on port 1883. -1612489900: Sending CONNACK to 172.18.0.3 (0, 5) -1612489900: Socket error on client , disconnecting. -1612489920: New connection from 172.18.0.3 on port 1883. -1612489920: Sending CONNACK to 172.18.0.3 (0, 5) -1612489920: Socket error on client , disconnecting. -1612489940: New connection from 172.18.0.3 on port 1883. -1612489940: Sending CONNACK to 172.18.0.3 (0, 5) -1612489940: Socket error on client , disconnecting. -1612489960: New connection from 172.18.0.3 on port 1883. -1612489960: Sending CONNACK to 172.18.0.3 (0, 5) -1612489960: Socket error on client , disconnecting. -1612489980: New connection from 172.18.0.3 on port 1883. -1612489980: Sending CONNACK to 172.18.0.3 (0, 5) -1612489980: Socket error on client , disconnecting. -1612490000: New connection from 172.18.0.3 on port 1883. -1612490000: Sending CONNACK to 172.18.0.3 (0, 5) -1612490000: Socket error on client , disconnecting. -1612490020: New connection from 172.18.0.3 on port 1883. -1612490020: Sending CONNACK to 172.18.0.3 (0, 5) -1612490020: Socket error on client , disconnecting. -1612490040: New connection from 172.18.0.3 on port 1883. -1612490040: Sending CONNACK to 172.18.0.3 (0, 5) -1612490040: Socket error on client , disconnecting. -1612490060: New connection from 172.18.0.3 on port 1883. -1612490060: Sending CONNACK to 172.18.0.3 (0, 5) -1612490060: Socket error on client , disconnecting. -1612490080: New connection from 172.18.0.3 on port 1883. -1612490080: Sending CONNACK to 172.18.0.3 (0, 5) -1612490080: Socket error on client , disconnecting. -1612490100: New connection from 172.18.0.3 on port 1883. -1612490100: Sending CONNACK to 172.18.0.3 (0, 5) -1612490100: Socket error on client , disconnecting. -1612490120: New connection from 172.18.0.3 on port 1883. -1612490120: Sending CONNACK to 172.18.0.3 (0, 5) -1612490120: Socket error on client , disconnecting. -1612490140: New connection from 172.18.0.3 on port 1883. -1612490140: Sending CONNACK to 172.18.0.3 (0, 5) -1612490140: Socket error on client , disconnecting. -1612490160: New connection from 172.18.0.3 on port 1883. -1612490160: Sending CONNACK to 172.18.0.3 (0, 5) -1612490160: Socket error on client , disconnecting. -1612490180: New connection from 172.18.0.3 on port 1883. -1612490180: Sending CONNACK to 172.18.0.3 (0, 5) -1612490180: Socket error on client , disconnecting. -1612490200: New connection from 172.18.0.3 on port 1883. -1612490200: Sending CONNACK to 172.18.0.3 (0, 5) -1612490200: Socket error on client , disconnecting. -1612490220: New connection from 172.18.0.3 on port 1883. -1612490220: Sending CONNACK to 172.18.0.3 (0, 5) -1612490220: Socket error on client , disconnecting. -1612490240: New connection from 172.18.0.3 on port 1883. -1612490240: Sending CONNACK to 172.18.0.3 (0, 5) -1612490240: Socket error on client , disconnecting. -1612490260: New connection from 172.18.0.3 on port 1883. -1612490260: Sending CONNACK to 172.18.0.3 (0, 5) -1612490260: Socket error on client , disconnecting. -1612490280: New connection from 172.18.0.3 on port 1883. -1612490280: Sending CONNACK to 172.18.0.3 (0, 5) -1612490280: Socket error on client , disconnecting. -1612490300: New connection from 172.18.0.3 on port 1883. -1612490300: Sending CONNACK to 172.18.0.3 (0, 5) -1612490300: Socket error on client , disconnecting. -1612490320: New connection from 172.18.0.3 on port 1883. -1612490320: Sending CONNACK to 172.18.0.3 (0, 5) -1612490320: Socket error on client , disconnecting. -1612490340: New connection from 172.18.0.3 on port 1883. -1612490340: Sending CONNACK to 172.18.0.3 (0, 5) -1612490340: Socket error on client , disconnecting. -1612490360: New connection from 172.18.0.3 on port 1883. -1612490360: Sending CONNACK to 172.18.0.3 (0, 5) -1612490360: Socket error on client , disconnecting. -1612490380: New connection from 172.18.0.3 on port 1883. -1612490380: Sending CONNACK to 172.18.0.3 (0, 5) -1612490380: Socket error on client , disconnecting. -1612490400: New connection from 172.18.0.3 on port 1883. -1612490400: Sending CONNACK to 172.18.0.3 (0, 5) -1612490400: Socket error on client , disconnecting. -1612490420: New connection from 172.18.0.3 on port 1883. -1612490420: Sending CONNACK to 172.18.0.3 (0, 5) -1612490420: Socket error on client , disconnecting. -1612490440: New connection from 172.18.0.3 on port 1883. -1612490440: Sending CONNACK to 172.18.0.3 (0, 5) -1612490440: Socket error on client , disconnecting. -1612490460: New connection from 172.18.0.3 on port 1883. -1612490460: Sending CONNACK to 172.18.0.3 (0, 5) -1612490460: Socket error on client , disconnecting. -1612490480: New connection from 172.18.0.3 on port 1883. -1612490480: Sending CONNACK to 172.18.0.3 (0, 5) -1612490480: Socket error on client , disconnecting. -1612490500: New connection from 172.18.0.3 on port 1883. -1612490500: Sending CONNACK to 172.18.0.3 (0, 5) -1612490500: Socket error on client , disconnecting. -1612490520: New connection from 172.18.0.3 on port 1883. -1612490520: Sending CONNACK to 172.18.0.3 (0, 5) -1612490520: Socket error on client , disconnecting. -1612490540: New connection from 172.18.0.3 on port 1883. -1612490540: Sending CONNACK to 172.18.0.3 (0, 5) -1612490540: Socket error on client , disconnecting. -1612490560: New connection from 172.18.0.3 on port 1883. -1612490560: Sending CONNACK to 172.18.0.3 (0, 5) -1612490560: Socket error on client , disconnecting. -1612490580: New connection from 172.18.0.3 on port 1883. -1612490580: Sending CONNACK to 172.18.0.3 (0, 5) -1612490580: Socket error on client , disconnecting. -1612490600: New connection from 172.18.0.3 on port 1883. -1612490600: Sending CONNACK to 172.18.0.3 (0, 5) -1612490600: Socket error on client , disconnecting. -1612490620: New connection from 172.18.0.3 on port 1883. -1612490620: Sending CONNACK to 172.18.0.3 (0, 5) -1612490620: Socket error on client , disconnecting. -1612490640: New connection from 172.18.0.3 on port 1883. -1612490640: Sending CONNACK to 172.18.0.3 (0, 5) -1612490640: Socket error on client , disconnecting. -1612490660: New connection from 172.18.0.3 on port 1883. -1612490660: Sending CONNACK to 172.18.0.3 (0, 5) -1612490660: Socket error on client , disconnecting. -1612490680: New connection from 172.18.0.3 on port 1883. -1612490680: Sending CONNACK to 172.18.0.3 (0, 5) -1612490680: Socket error on client , disconnecting. -1612490700: New connection from 172.18.0.3 on port 1883. -1612490700: Sending CONNACK to 172.18.0.3 (0, 5) -1612490700: Socket error on client , disconnecting. -1612490720: New connection from 172.18.0.3 on port 1883. -1612490720: Sending CONNACK to 172.18.0.3 (0, 5) -1612490720: Socket error on client , disconnecting. -1612490740: New connection from 172.18.0.3 on port 1883. -1612490740: Sending CONNACK to 172.18.0.3 (0, 5) -1612490740: Socket error on client , disconnecting. -1612490760: New connection from 172.18.0.3 on port 1883. -1612490760: Sending CONNACK to 172.18.0.3 (0, 5) -1612490760: Socket error on client , disconnecting. -1612490780: New connection from 172.18.0.3 on port 1883. -1612490780: Sending CONNACK to 172.18.0.3 (0, 5) -1612490780: Socket error on client , disconnecting. -1612490800: New connection from 172.18.0.3 on port 1883. -1612490800: Sending CONNACK to 172.18.0.3 (0, 5) -1612490800: Socket error on client , disconnecting. -1612490820: New connection from 172.18.0.3 on port 1883. -1612490820: Sending CONNACK to 172.18.0.3 (0, 5) -1612490820: Socket error on client , disconnecting. -1612490840: New connection from 172.18.0.3 on port 1883. -1612490840: Sending CONNACK to 172.18.0.3 (0, 5) -1612490840: Socket error on client , disconnecting. -1612490860: New connection from 172.18.0.3 on port 1883. -1612490860: Sending CONNACK to 172.18.0.3 (0, 5) -1612490860: Socket error on client , disconnecting. -1612490880: New connection from 172.18.0.3 on port 1883. -1612490880: Sending CONNACK to 172.18.0.3 (0, 5) -1612490880: Socket error on client , disconnecting. -1612490900: New connection from 172.18.0.3 on port 1883. -1612490900: Sending CONNACK to 172.18.0.3 (0, 5) -1612490900: Socket error on client , disconnecting. -1612490920: New connection from 172.18.0.3 on port 1883. -1612490920: Sending CONNACK to 172.18.0.3 (0, 5) -1612490920: Socket error on client , disconnecting. -1612490940: New connection from 172.18.0.3 on port 1883. -1612490940: Sending CONNACK to 172.18.0.3 (0, 5) -1612490940: Socket error on client , disconnecting. -1612490960: New connection from 172.18.0.3 on port 1883. -1612490960: Sending CONNACK to 172.18.0.3 (0, 5) -1612490960: Socket error on client , disconnecting. -1612490980: New connection from 172.18.0.3 on port 1883. -1612490980: Sending CONNACK to 172.18.0.3 (0, 5) -1612490980: Socket error on client , disconnecting. -1612491000: New connection from 172.18.0.3 on port 1883. -1612491000: Sending CONNACK to 172.18.0.3 (0, 5) -1612491000: Socket error on client , disconnecting. -1612491020: New connection from 172.18.0.3 on port 1883. -1612491020: Sending CONNACK to 172.18.0.3 (0, 5) -1612491020: Socket error on client , disconnecting. -1612491040: New connection from 172.18.0.3 on port 1883. -1612491040: Sending CONNACK to 172.18.0.3 (0, 5) -1612491040: Socket error on client , disconnecting. -1612491060: New connection from 172.18.0.3 on port 1883. -1612491060: Sending CONNACK to 172.18.0.3 (0, 5) -1612491060: Socket error on client , disconnecting. -1612491080: New connection from 172.18.0.3 on port 1883. -1612491080: Sending CONNACK to 172.18.0.3 (0, 5) -1612491080: Socket error on client , disconnecting. -1612491100: New connection from 172.18.0.3 on port 1883. -1612491100: Sending CONNACK to 172.18.0.3 (0, 5) -1612491100: Socket error on client , disconnecting. -1612491120: New connection from 172.18.0.3 on port 1883. -1612491120: Sending CONNACK to 172.18.0.3 (0, 5) -1612491120: Socket error on client , disconnecting. -1612491140: New connection from 172.18.0.3 on port 1883. -1612491140: Sending CONNACK to 172.18.0.3 (0, 5) -1612491140: Socket error on client , disconnecting. -1612491160: New connection from 172.18.0.3 on port 1883. -1612491160: Sending CONNACK to 172.18.0.3 (0, 5) -1612491160: Socket error on client , disconnecting. -1612491180: New connection from 172.18.0.3 on port 1883. -1612491180: Sending CONNACK to 172.18.0.3 (0, 5) -1612491180: Socket error on client , disconnecting. -1612491200: New connection from 172.18.0.3 on port 1883. -1612491200: Sending CONNACK to 172.18.0.3 (0, 5) -1612491200: Socket error on client , disconnecting. -1612491220: New connection from 172.18.0.3 on port 1883. -1612491220: Sending CONNACK to 172.18.0.3 (0, 5) -1612491220: Socket error on client , disconnecting. -1612491240: New connection from 172.18.0.3 on port 1883. -1612491240: Sending CONNACK to 172.18.0.3 (0, 5) -1612491240: Socket error on client , disconnecting. -1612491260: New connection from 172.18.0.3 on port 1883. -1612491260: Sending CONNACK to 172.18.0.3 (0, 5) -1612491260: Socket error on client , disconnecting. -1612491280: New connection from 172.18.0.3 on port 1883. -1612491280: Sending CONNACK to 172.18.0.3 (0, 5) -1612491280: Socket error on client , disconnecting. -1612491300: New connection from 172.18.0.3 on port 1883. -1612491300: Sending CONNACK to 172.18.0.3 (0, 5) -1612491300: Socket error on client , disconnecting. -1612491320: New connection from 172.18.0.3 on port 1883. -1612491320: Sending CONNACK to 172.18.0.3 (0, 5) -1612491320: Socket error on client , disconnecting. -1612491340: New connection from 172.18.0.3 on port 1883. -1612491340: Sending CONNACK to 172.18.0.3 (0, 5) -1612491340: Socket error on client , disconnecting. -1612491360: New connection from 172.18.0.3 on port 1883. -1612491360: Sending CONNACK to 172.18.0.3 (0, 5) -1612491360: Socket error on client , disconnecting. -1612491380: New connection from 172.18.0.3 on port 1883. -1612491380: Sending CONNACK to 172.18.0.3 (0, 5) -1612491380: Socket error on client , disconnecting. -1612491400: New connection from 172.18.0.3 on port 1883. -1612491400: Sending CONNACK to 172.18.0.3 (0, 5) -1612491400: Socket error on client , disconnecting. -1612491420: New connection from 172.18.0.3 on port 1883. -1612491420: Sending CONNACK to 172.18.0.3 (0, 5) -1612491420: Socket error on client , disconnecting. -1612491440: New connection from 172.18.0.3 on port 1883. -1612491440: Sending CONNACK to 172.18.0.3 (0, 5) -1612491440: Socket error on client , disconnecting. -1612491442: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612491442: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612491442: Error: Permission denied. -1612491460: New connection from 172.18.0.3 on port 1883. -1612491460: Sending CONNACK to 172.18.0.3 (0, 5) -1612491460: Socket error on client , disconnecting. -1612491480: New connection from 172.18.0.3 on port 1883. -1612491480: Sending CONNACK to 172.18.0.3 (0, 5) -1612491480: Socket error on client , disconnecting. -1612491500: New connection from 172.18.0.3 on port 1883. -1612491500: Sending CONNACK to 172.18.0.3 (0, 5) -1612491500: Socket error on client , disconnecting. -1612491520: New connection from 172.18.0.3 on port 1883. -1612491520: Sending CONNACK to 172.18.0.3 (0, 5) -1612491520: Socket error on client , disconnecting. -1612491540: New connection from 172.18.0.3 on port 1883. -1612491540: Sending CONNACK to 172.18.0.3 (0, 5) -1612491540: Socket error on client , disconnecting. -1612491560: New connection from 172.18.0.3 on port 1883. -1612491560: Sending CONNACK to 172.18.0.3 (0, 5) -1612491560: Socket error on client , disconnecting. -1612491580: New connection from 172.18.0.3 on port 1883. -1612491580: Sending CONNACK to 172.18.0.3 (0, 5) -1612491580: Socket error on client , disconnecting. -1612491600: New connection from 172.18.0.3 on port 1883. -1612491600: Sending CONNACK to 172.18.0.3 (0, 5) -1612491600: Socket error on client , disconnecting. -1612491620: New connection from 172.18.0.3 on port 1883. -1612491620: Sending CONNACK to 172.18.0.3 (0, 5) -1612491620: Socket error on client , disconnecting. -1612491640: New connection from 172.18.0.3 on port 1883. -1612491640: Sending CONNACK to 172.18.0.3 (0, 5) -1612491640: Socket error on client , disconnecting. -1612491660: New connection from 172.18.0.3 on port 1883. -1612491660: Sending CONNACK to 172.18.0.3 (0, 5) -1612491660: Socket error on client , disconnecting. -1612491680: New connection from 172.18.0.3 on port 1883. -1612491680: Sending CONNACK to 172.18.0.3 (0, 5) -1612491680: Socket error on client , disconnecting. -1612491700: New connection from 172.18.0.3 on port 1883. -1612491700: Sending CONNACK to 172.18.0.3 (0, 5) -1612491700: Socket error on client , disconnecting. -1612491720: New connection from 172.18.0.3 on port 1883. -1612491720: Sending CONNACK to 172.18.0.3 (0, 5) -1612491720: Socket error on client , disconnecting. -1612491740: New connection from 172.18.0.3 on port 1883. -1612491740: Sending CONNACK to 172.18.0.3 (0, 5) -1612491740: Socket error on client , disconnecting. -1612491760: New connection from 172.18.0.3 on port 1883. -1612491760: Sending CONNACK to 172.18.0.3 (0, 5) -1612491760: Socket error on client , disconnecting. -1612491780: New connection from 172.18.0.3 on port 1883. -1612491780: Sending CONNACK to 172.18.0.3 (0, 5) -1612491780: Socket error on client , disconnecting. -1612491800: New connection from 172.18.0.3 on port 1883. -1612491800: Sending CONNACK to 172.18.0.3 (0, 5) -1612491800: Socket error on client , disconnecting. -1612491820: New connection from 172.18.0.3 on port 1883. -1612491820: Sending CONNACK to 172.18.0.3 (0, 5) -1612491820: Socket error on client , disconnecting. -1612491840: New connection from 172.18.0.3 on port 1883. -1612491840: Sending CONNACK to 172.18.0.3 (0, 5) -1612491840: Socket error on client , disconnecting. -1612491860: New connection from 172.18.0.3 on port 1883. -1612491860: Sending CONNACK to 172.18.0.3 (0, 5) -1612491860: Socket error on client , disconnecting. -1612491880: New connection from 172.18.0.3 on port 1883. -1612491880: Sending CONNACK to 172.18.0.3 (0, 5) -1612491880: Socket error on client , disconnecting. -1612491900: New connection from 172.18.0.3 on port 1883. -1612491900: Sending CONNACK to 172.18.0.3 (0, 5) -1612491900: Socket error on client , disconnecting. -1612491920: New connection from 172.18.0.3 on port 1883. -1612491920: Sending CONNACK to 172.18.0.3 (0, 5) -1612491920: Socket error on client , disconnecting. -1612491940: New connection from 172.18.0.3 on port 1883. -1612491940: Sending CONNACK to 172.18.0.3 (0, 5) -1612491940: Socket error on client , disconnecting. -1612491960: New connection from 172.18.0.3 on port 1883. -1612491960: Sending CONNACK to 172.18.0.3 (0, 5) -1612491960: Socket error on client , disconnecting. -1612491980: New connection from 172.18.0.3 on port 1883. -1612491980: Sending CONNACK to 172.18.0.3 (0, 5) -1612491980: Socket error on client , disconnecting. -1612492000: New connection from 172.18.0.3 on port 1883. -1612492000: Sending CONNACK to 172.18.0.3 (0, 5) -1612492000: Socket error on client , disconnecting. -1612492020: New connection from 172.18.0.3 on port 1883. -1612492020: Sending CONNACK to 172.18.0.3 (0, 5) -1612492020: Socket error on client , disconnecting. -1612492040: New connection from 172.18.0.3 on port 1883. -1612492040: Sending CONNACK to 172.18.0.3 (0, 5) -1612492040: Socket error on client , disconnecting. -1612492060: New connection from 172.18.0.3 on port 1883. -1612492060: Sending CONNACK to 172.18.0.3 (0, 5) -1612492060: Socket error on client , disconnecting. -1612492080: New connection from 172.18.0.3 on port 1883. -1612492080: Sending CONNACK to 172.18.0.3 (0, 5) -1612492080: Socket error on client , disconnecting. -1612492100: New connection from 172.18.0.3 on port 1883. -1612492100: Sending CONNACK to 172.18.0.3 (0, 5) -1612492100: Socket error on client , disconnecting. -1612492120: New connection from 172.18.0.3 on port 1883. -1612492120: Sending CONNACK to 172.18.0.3 (0, 5) -1612492120: Socket error on client , disconnecting. -1612492140: New connection from 172.18.0.3 on port 1883. -1612492140: Sending CONNACK to 172.18.0.3 (0, 5) -1612492140: Socket error on client , disconnecting. -1612492160: New connection from 172.18.0.3 on port 1883. -1612492160: Sending CONNACK to 172.18.0.3 (0, 5) -1612492160: Socket error on client , disconnecting. -1612492180: New connection from 172.18.0.3 on port 1883. -1612492180: Sending CONNACK to 172.18.0.3 (0, 5) -1612492180: Socket error on client , disconnecting. -1612492200: New connection from 172.18.0.3 on port 1883. -1612492200: Sending CONNACK to 172.18.0.3 (0, 5) -1612492200: Socket error on client , disconnecting. -1612492220: New connection from 172.18.0.3 on port 1883. -1612492220: Sending CONNACK to 172.18.0.3 (0, 5) -1612492220: Socket error on client , disconnecting. -1612492240: New connection from 172.18.0.3 on port 1883. -1612492240: Sending CONNACK to 172.18.0.3 (0, 5) -1612492240: Socket error on client , disconnecting. -1612492260: New connection from 172.18.0.3 on port 1883. -1612492260: Sending CONNACK to 172.18.0.3 (0, 5) -1612492260: Socket error on client , disconnecting. -1612492280: New connection from 172.18.0.3 on port 1883. -1612492280: Sending CONNACK to 172.18.0.3 (0, 5) -1612492280: Socket error on client , disconnecting. -1612492300: New connection from 172.18.0.3 on port 1883. -1612492300: Sending CONNACK to 172.18.0.3 (0, 5) -1612492300: Socket error on client , disconnecting. -1612492320: New connection from 172.18.0.3 on port 1883. -1612492320: Sending CONNACK to 172.18.0.3 (0, 5) -1612492320: Socket error on client , disconnecting. -1612492340: New connection from 172.18.0.3 on port 1883. -1612492340: Sending CONNACK to 172.18.0.3 (0, 5) -1612492340: Socket error on client , disconnecting. -1612492360: New connection from 172.18.0.3 on port 1883. -1612492360: Sending CONNACK to 172.18.0.3 (0, 5) -1612492360: Socket error on client , disconnecting. -1612492380: New connection from 172.18.0.3 on port 1883. -1612492380: Sending CONNACK to 172.18.0.3 (0, 5) -1612492380: Socket error on client , disconnecting. -1612492400: New connection from 172.18.0.3 on port 1883. -1612492400: Sending CONNACK to 172.18.0.3 (0, 5) -1612492400: Socket error on client , disconnecting. -1612492420: New connection from 172.18.0.3 on port 1883. -1612492420: Sending CONNACK to 172.18.0.3 (0, 5) -1612492420: Socket error on client , disconnecting. -1612492440: New connection from 172.18.0.3 on port 1883. -1612492440: Sending CONNACK to 172.18.0.3 (0, 5) -1612492440: Socket error on client , disconnecting. -1612492460: New connection from 172.18.0.3 on port 1883. -1612492460: Sending CONNACK to 172.18.0.3 (0, 5) -1612492460: Socket error on client , disconnecting. -1612492480: New connection from 172.18.0.3 on port 1883. -1612492480: Sending CONNACK to 172.18.0.3 (0, 5) -1612492480: Socket error on client , disconnecting. -1612492500: New connection from 172.18.0.3 on port 1883. -1612492500: Sending CONNACK to 172.18.0.3 (0, 5) -1612492500: Socket error on client , disconnecting. -1612492520: New connection from 172.18.0.3 on port 1883. -1612492520: Sending CONNACK to 172.18.0.3 (0, 5) -1612492520: Socket error on client , disconnecting. -1612492540: New connection from 172.18.0.3 on port 1883. -1612492540: Sending CONNACK to 172.18.0.3 (0, 5) -1612492540: Socket error on client , disconnecting. -1612492560: New connection from 172.18.0.3 on port 1883. -1612492560: Sending CONNACK to 172.18.0.3 (0, 5) -1612492560: Socket error on client , disconnecting. -1612492580: New connection from 172.18.0.3 on port 1883. -1612492580: Sending CONNACK to 172.18.0.3 (0, 5) -1612492580: Socket error on client , disconnecting. -1612492600: New connection from 172.18.0.3 on port 1883. -1612492600: Sending CONNACK to 172.18.0.3 (0, 5) -1612492600: Socket error on client , disconnecting. -1612492620: New connection from 172.18.0.3 on port 1883. -1612492620: Sending CONNACK to 172.18.0.3 (0, 5) -1612492620: Socket error on client , disconnecting. -1612492640: New connection from 172.18.0.3 on port 1883. -1612492640: Sending CONNACK to 172.18.0.3 (0, 5) -1612492640: Socket error on client , disconnecting. -1612492660: New connection from 172.18.0.3 on port 1883. -1612492660: Sending CONNACK to 172.18.0.3 (0, 5) -1612492660: Socket error on client , disconnecting. -1612492680: New connection from 172.18.0.3 on port 1883. -1612492680: Sending CONNACK to 172.18.0.3 (0, 5) -1612492680: Socket error on client , disconnecting. -1612492700: New connection from 172.18.0.3 on port 1883. -1612492700: Sending CONNACK to 172.18.0.3 (0, 5) -1612492700: Socket error on client , disconnecting. -1612492720: New connection from 172.18.0.3 on port 1883. -1612492720: Sending CONNACK to 172.18.0.3 (0, 5) -1612492720: Socket error on client , disconnecting. -1612492740: New connection from 172.18.0.3 on port 1883. -1612492740: Sending CONNACK to 172.18.0.3 (0, 5) -1612492740: Socket error on client , disconnecting. -1612492760: New connection from 172.18.0.3 on port 1883. -1612492760: Sending CONNACK to 172.18.0.3 (0, 5) -1612492760: Socket error on client , disconnecting. -1612492780: New connection from 172.18.0.3 on port 1883. -1612492780: Sending CONNACK to 172.18.0.3 (0, 5) -1612492780: Socket error on client , disconnecting. -1612492800: New connection from 172.18.0.3 on port 1883. -1612492800: Sending CONNACK to 172.18.0.3 (0, 5) -1612492800: Socket error on client , disconnecting. -1612492820: New connection from 172.18.0.3 on port 1883. -1612492820: Sending CONNACK to 172.18.0.3 (0, 5) -1612492820: Socket error on client , disconnecting. -1612492840: New connection from 172.18.0.3 on port 1883. -1612492840: Sending CONNACK to 172.18.0.3 (0, 5) -1612492840: Socket error on client , disconnecting. -1612492860: New connection from 172.18.0.3 on port 1883. -1612492860: Sending CONNACK to 172.18.0.3 (0, 5) -1612492860: Socket error on client , disconnecting. -1612492880: New connection from 172.18.0.3 on port 1883. -1612492880: Sending CONNACK to 172.18.0.3 (0, 5) -1612492880: Socket error on client , disconnecting. -1612492900: New connection from 172.18.0.3 on port 1883. -1612492900: Sending CONNACK to 172.18.0.3 (0, 5) -1612492900: Socket error on client , disconnecting. -1612492920: New connection from 172.18.0.3 on port 1883. -1612492920: Sending CONNACK to 172.18.0.3 (0, 5) -1612492920: Socket error on client , disconnecting. -1612492940: New connection from 172.18.0.3 on port 1883. -1612492940: Sending CONNACK to 172.18.0.3 (0, 5) -1612492940: Socket error on client , disconnecting. -1612492960: New connection from 172.18.0.3 on port 1883. -1612492960: Sending CONNACK to 172.18.0.3 (0, 5) -1612492960: Socket error on client , disconnecting. -1612492980: New connection from 172.18.0.3 on port 1883. -1612492980: Sending CONNACK to 172.18.0.3 (0, 5) -1612492980: Socket error on client , disconnecting. -1612493000: New connection from 172.18.0.3 on port 1883. -1612493000: Sending CONNACK to 172.18.0.3 (0, 5) -1612493000: Socket error on client , disconnecting. -1612493020: New connection from 172.18.0.3 on port 1883. -1612493020: Sending CONNACK to 172.18.0.3 (0, 5) -1612493020: Socket error on client , disconnecting. -1612493040: New connection from 172.18.0.3 on port 1883. -1612493040: Sending CONNACK to 172.18.0.3 (0, 5) -1612493040: Socket error on client , disconnecting. -1612493060: New connection from 172.18.0.3 on port 1883. -1612493060: Sending CONNACK to 172.18.0.3 (0, 5) -1612493060: Socket error on client , disconnecting. -1612493080: New connection from 172.18.0.3 on port 1883. -1612493080: Sending CONNACK to 172.18.0.3 (0, 5) -1612493080: Socket error on client , disconnecting. -1612493100: New connection from 172.18.0.3 on port 1883. -1612493100: Sending CONNACK to 172.18.0.3 (0, 5) -1612493100: Socket error on client , disconnecting. -1612493120: New connection from 172.18.0.3 on port 1883. -1612493120: Sending CONNACK to 172.18.0.3 (0, 5) -1612493120: Socket error on client , disconnecting. -1612493140: New connection from 172.18.0.3 on port 1883. -1612493140: Sending CONNACK to 172.18.0.3 (0, 5) -1612493140: Socket error on client , disconnecting. -1612493160: New connection from 172.18.0.3 on port 1883. -1612493160: Sending CONNACK to 172.18.0.3 (0, 5) -1612493160: Socket error on client , disconnecting. -1612493180: New connection from 172.18.0.3 on port 1883. -1612493180: Sending CONNACK to 172.18.0.3 (0, 5) -1612493180: Socket error on client , disconnecting. -1612493200: New connection from 172.18.0.3 on port 1883. -1612493200: Sending CONNACK to 172.18.0.3 (0, 5) -1612493200: Socket error on client , disconnecting. -1612493220: New connection from 172.18.0.3 on port 1883. -1612493220: Sending CONNACK to 172.18.0.3 (0, 5) -1612493220: Socket error on client , disconnecting. -1612493240: New connection from 172.18.0.3 on port 1883. -1612493240: Sending CONNACK to 172.18.0.3 (0, 5) -1612493240: Socket error on client , disconnecting. -1612493243: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612493243: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612493243: Error: Permission denied. -1612493260: New connection from 172.18.0.3 on port 1883. -1612493260: Sending CONNACK to 172.18.0.3 (0, 5) -1612493260: Socket error on client , disconnecting. -1612493280: New connection from 172.18.0.3 on port 1883. -1612493280: Sending CONNACK to 172.18.0.3 (0, 5) -1612493280: Socket error on client , disconnecting. -1612493300: New connection from 172.18.0.3 on port 1883. -1612493300: Sending CONNACK to 172.18.0.3 (0, 5) -1612493300: Socket error on client , disconnecting. -1612493320: New connection from 172.18.0.3 on port 1883. -1612493320: Sending CONNACK to 172.18.0.3 (0, 5) -1612493320: Socket error on client , disconnecting. -1612493340: New connection from 172.18.0.3 on port 1883. -1612493340: Sending CONNACK to 172.18.0.3 (0, 5) -1612493340: Socket error on client , disconnecting. -1612493360: New connection from 172.18.0.3 on port 1883. -1612493360: Sending CONNACK to 172.18.0.3 (0, 5) -1612493360: Socket error on client , disconnecting. -1612493380: New connection from 172.18.0.3 on port 1883. -1612493380: Sending CONNACK to 172.18.0.3 (0, 5) -1612493380: Socket error on client , disconnecting. -1612493400: New connection from 172.18.0.3 on port 1883. -1612493400: Sending CONNACK to 172.18.0.3 (0, 5) -1612493400: Socket error on client , disconnecting. -1612493420: New connection from 172.18.0.3 on port 1883. -1612493420: Sending CONNACK to 172.18.0.3 (0, 5) -1612493420: Socket error on client , disconnecting. -1612493440: New connection from 172.18.0.3 on port 1883. -1612493440: Sending CONNACK to 172.18.0.3 (0, 5) -1612493440: Socket error on client , disconnecting. -1612493460: New connection from 172.18.0.3 on port 1883. -1612493460: Sending CONNACK to 172.18.0.3 (0, 5) -1612493460: Socket error on client , disconnecting. -1612493480: New connection from 172.18.0.3 on port 1883. -1612493480: Sending CONNACK to 172.18.0.3 (0, 5) -1612493480: Socket error on client , disconnecting. -1612493500: New connection from 172.18.0.3 on port 1883. -1612493500: Sending CONNACK to 172.18.0.3 (0, 5) -1612493500: Socket error on client , disconnecting. -1612493520: New connection from 172.18.0.3 on port 1883. -1612493520: Sending CONNACK to 172.18.0.3 (0, 5) -1612493520: Socket error on client , disconnecting. -1612493540: New connection from 172.18.0.3 on port 1883. -1612493540: Sending CONNACK to 172.18.0.3 (0, 5) -1612493540: Socket error on client , disconnecting. -1612493560: New connection from 172.18.0.3 on port 1883. -1612493560: Sending CONNACK to 172.18.0.3 (0, 5) -1612493560: Socket error on client , disconnecting. -1612493580: New connection from 172.18.0.3 on port 1883. -1612493580: Sending CONNACK to 172.18.0.3 (0, 5) -1612493580: Socket error on client , disconnecting. -1612493600: New connection from 172.18.0.3 on port 1883. -1612493600: Sending CONNACK to 172.18.0.3 (0, 5) -1612493600: Socket error on client , disconnecting. -1612493620: New connection from 172.18.0.3 on port 1883. -1612493620: Sending CONNACK to 172.18.0.3 (0, 5) -1612493620: Socket error on client , disconnecting. -1612493640: New connection from 172.18.0.3 on port 1883. -1612493640: Sending CONNACK to 172.18.0.3 (0, 5) -1612493640: Socket error on client , disconnecting. -1612493660: New connection from 172.18.0.3 on port 1883. -1612493660: Sending CONNACK to 172.18.0.3 (0, 5) -1612493660: Socket error on client , disconnecting. -1612493680: New connection from 172.18.0.3 on port 1883. -1612493680: Sending CONNACK to 172.18.0.3 (0, 5) -1612493680: Socket error on client , disconnecting. -1612493700: New connection from 172.18.0.3 on port 1883. -1612493700: Sending CONNACK to 172.18.0.3 (0, 5) -1612493700: Socket error on client , disconnecting. -1612493720: New connection from 172.18.0.3 on port 1883. -1612493720: Sending CONNACK to 172.18.0.3 (0, 5) -1612493720: Socket error on client , disconnecting. -1612493740: New connection from 172.18.0.3 on port 1883. -1612493740: Sending CONNACK to 172.18.0.3 (0, 5) -1612493740: Socket error on client , disconnecting. -1612493760: New connection from 172.18.0.3 on port 1883. -1612493760: Sending CONNACK to 172.18.0.3 (0, 5) -1612493760: Socket error on client , disconnecting. -1612493780: New connection from 172.18.0.3 on port 1883. -1612493780: Sending CONNACK to 172.18.0.3 (0, 5) -1612493780: Socket error on client , disconnecting. -1612493800: New connection from 172.18.0.3 on port 1883. -1612493800: Sending CONNACK to 172.18.0.3 (0, 5) -1612493800: Socket error on client , disconnecting. -1612493820: New connection from 172.18.0.3 on port 1883. -1612493820: Sending CONNACK to 172.18.0.3 (0, 5) -1612493820: Socket error on client , disconnecting. -1612493840: New connection from 172.18.0.3 on port 1883. -1612493840: Sending CONNACK to 172.18.0.3 (0, 5) -1612493840: Socket error on client , disconnecting. -1612493860: New connection from 172.18.0.3 on port 1883. -1612493860: Sending CONNACK to 172.18.0.3 (0, 5) -1612493860: Socket error on client , disconnecting. -1612493880: New connection from 172.18.0.3 on port 1883. -1612493880: Sending CONNACK to 172.18.0.3 (0, 5) -1612493880: Socket error on client , disconnecting. -1612493900: New connection from 172.18.0.3 on port 1883. -1612493900: Sending CONNACK to 172.18.0.3 (0, 5) -1612493900: Socket error on client , disconnecting. -1612493920: New connection from 172.18.0.3 on port 1883. -1612493920: Sending CONNACK to 172.18.0.3 (0, 5) -1612493920: Socket error on client , disconnecting. -1612493940: New connection from 172.18.0.3 on port 1883. -1612493940: Sending CONNACK to 172.18.0.3 (0, 5) -1612493940: Socket error on client , disconnecting. -1612493960: New connection from 172.18.0.3 on port 1883. -1612493960: Sending CONNACK to 172.18.0.3 (0, 5) -1612493960: Socket error on client , disconnecting. -1612493980: New connection from 172.18.0.3 on port 1883. -1612493980: Sending CONNACK to 172.18.0.3 (0, 5) -1612493980: Socket error on client , disconnecting. -1612494000: New connection from 172.18.0.3 on port 1883. -1612494000: Sending CONNACK to 172.18.0.3 (0, 5) -1612494000: Socket error on client , disconnecting. -1612494020: New connection from 172.18.0.3 on port 1883. -1612494020: Sending CONNACK to 172.18.0.3 (0, 5) -1612494020: Socket error on client , disconnecting. -1612494040: New connection from 172.18.0.3 on port 1883. -1612494040: Sending CONNACK to 172.18.0.3 (0, 5) -1612494040: Socket error on client , disconnecting. -1612494060: New connection from 172.18.0.3 on port 1883. -1612494060: Sending CONNACK to 172.18.0.3 (0, 5) -1612494060: Socket error on client , disconnecting. -1612494080: New connection from 172.18.0.3 on port 1883. -1612494080: Sending CONNACK to 172.18.0.3 (0, 5) -1612494080: Socket error on client , disconnecting. -1612494100: New connection from 172.18.0.3 on port 1883. -1612494100: Sending CONNACK to 172.18.0.3 (0, 5) -1612494100: Socket error on client , disconnecting. -1612494120: New connection from 172.18.0.3 on port 1883. -1612494120: Sending CONNACK to 172.18.0.3 (0, 5) -1612494120: Socket error on client , disconnecting. -1612494140: New connection from 172.18.0.3 on port 1883. -1612494140: Sending CONNACK to 172.18.0.3 (0, 5) -1612494140: Socket error on client , disconnecting. -1612494160: New connection from 172.18.0.3 on port 1883. -1612494160: Sending CONNACK to 172.18.0.3 (0, 5) -1612494160: Socket error on client , disconnecting. -1612494180: New connection from 172.18.0.3 on port 1883. -1612494180: Sending CONNACK to 172.18.0.3 (0, 5) -1612494180: Socket error on client , disconnecting. -1612494200: New connection from 172.18.0.3 on port 1883. -1612494200: Sending CONNACK to 172.18.0.3 (0, 5) -1612494200: Socket error on client , disconnecting. -1612494220: New connection from 172.18.0.3 on port 1883. -1612494220: Sending CONNACK to 172.18.0.3 (0, 5) -1612494220: Socket error on client , disconnecting. -1612494240: New connection from 172.18.0.3 on port 1883. -1612494240: Sending CONNACK to 172.18.0.3 (0, 5) -1612494240: Socket error on client , disconnecting. -1612494260: New connection from 172.18.0.3 on port 1883. -1612494260: Sending CONNACK to 172.18.0.3 (0, 5) -1612494260: Socket error on client , disconnecting. -1612494280: New connection from 172.18.0.3 on port 1883. -1612494280: Sending CONNACK to 172.18.0.3 (0, 5) -1612494280: Socket error on client , disconnecting. -1612494300: New connection from 172.18.0.3 on port 1883. -1612494300: Sending CONNACK to 172.18.0.3 (0, 5) -1612494300: Socket error on client , disconnecting. -1612494320: New connection from 172.18.0.3 on port 1883. -1612494320: Sending CONNACK to 172.18.0.3 (0, 5) -1612494320: Socket error on client , disconnecting. -1612494340: New connection from 172.18.0.3 on port 1883. -1612494340: Sending CONNACK to 172.18.0.3 (0, 5) -1612494340: Socket error on client , disconnecting. -1612494360: New connection from 172.18.0.3 on port 1883. -1612494360: Sending CONNACK to 172.18.0.3 (0, 5) -1612494360: Socket error on client , disconnecting. -1612494380: New connection from 172.18.0.3 on port 1883. -1612494380: Sending CONNACK to 172.18.0.3 (0, 5) -1612494380: Socket error on client , disconnecting. -1612494400: New connection from 172.18.0.3 on port 1883. -1612494400: Sending CONNACK to 172.18.0.3 (0, 5) -1612494400: Socket error on client , disconnecting. -1612494420: New connection from 172.18.0.3 on port 1883. -1612494420: Sending CONNACK to 172.18.0.3 (0, 5) -1612494420: Socket error on client , disconnecting. -1612494440: New connection from 172.18.0.3 on port 1883. -1612494440: Sending CONNACK to 172.18.0.3 (0, 5) -1612494440: Socket error on client , disconnecting. -1612494460: New connection from 172.18.0.3 on port 1883. -1612494460: Sending CONNACK to 172.18.0.3 (0, 5) -1612494460: Socket error on client , disconnecting. -1612494480: New connection from 172.18.0.3 on port 1883. -1612494480: Sending CONNACK to 172.18.0.3 (0, 5) -1612494480: Socket error on client , disconnecting. -1612494500: New connection from 172.18.0.3 on port 1883. -1612494500: Sending CONNACK to 172.18.0.3 (0, 5) -1612494500: Socket error on client , disconnecting. -1612494520: New connection from 172.18.0.3 on port 1883. -1612494520: Sending CONNACK to 172.18.0.3 (0, 5) -1612494520: Socket error on client , disconnecting. -1612494540: New connection from 172.18.0.3 on port 1883. -1612494540: Sending CONNACK to 172.18.0.3 (0, 5) -1612494540: Socket error on client , disconnecting. -1612494560: New connection from 172.18.0.3 on port 1883. -1612494560: Sending CONNACK to 172.18.0.3 (0, 5) -1612494560: Socket error on client , disconnecting. -1612494580: New connection from 172.18.0.3 on port 1883. -1612494580: Sending CONNACK to 172.18.0.3 (0, 5) -1612494580: Socket error on client , disconnecting. -1612494600: New connection from 172.18.0.3 on port 1883. -1612494600: Sending CONNACK to 172.18.0.3 (0, 5) -1612494600: Socket error on client , disconnecting. -1612494620: New connection from 172.18.0.3 on port 1883. -1612494620: Sending CONNACK to 172.18.0.3 (0, 5) -1612494620: Socket error on client , disconnecting. -1612494640: New connection from 172.18.0.3 on port 1883. -1612494640: Sending CONNACK to 172.18.0.3 (0, 5) -1612494640: Socket error on client , disconnecting. -1612494660: New connection from 172.18.0.3 on port 1883. -1612494660: Sending CONNACK to 172.18.0.3 (0, 5) -1612494660: Socket error on client , disconnecting. -1612494680: New connection from 172.18.0.3 on port 1883. -1612494680: Sending CONNACK to 172.18.0.3 (0, 5) -1612494680: Socket error on client , disconnecting. -1612494700: New connection from 172.18.0.3 on port 1883. -1612494700: Sending CONNACK to 172.18.0.3 (0, 5) -1612494700: Socket error on client , disconnecting. -1612494720: New connection from 172.18.0.3 on port 1883. -1612494720: Sending CONNACK to 172.18.0.3 (0, 5) -1612494720: Socket error on client , disconnecting. -1612494740: New connection from 172.18.0.3 on port 1883. -1612494740: Sending CONNACK to 172.18.0.3 (0, 5) -1612494740: Socket error on client , disconnecting. -1612494760: New connection from 172.18.0.3 on port 1883. -1612494760: Sending CONNACK to 172.18.0.3 (0, 5) -1612494760: Socket error on client , disconnecting. -1612494780: New connection from 172.18.0.3 on port 1883. -1612494780: Sending CONNACK to 172.18.0.3 (0, 5) -1612494780: Socket error on client , disconnecting. -1612494800: New connection from 172.18.0.3 on port 1883. -1612494800: Sending CONNACK to 172.18.0.3 (0, 5) -1612494800: Socket error on client , disconnecting. -1612494820: New connection from 172.18.0.3 on port 1883. -1612494820: Sending CONNACK to 172.18.0.3 (0, 5) -1612494820: Socket error on client , disconnecting. -1612494840: New connection from 172.18.0.3 on port 1883. -1612494840: Sending CONNACK to 172.18.0.3 (0, 5) -1612494840: Socket error on client , disconnecting. -1612494860: New connection from 172.18.0.3 on port 1883. -1612494860: Sending CONNACK to 172.18.0.3 (0, 5) -1612494860: Socket error on client , disconnecting. -1612494880: New connection from 172.18.0.3 on port 1883. -1612494880: Sending CONNACK to 172.18.0.3 (0, 5) -1612494880: Socket error on client , disconnecting. -1612494900: New connection from 172.18.0.3 on port 1883. -1612494900: Sending CONNACK to 172.18.0.3 (0, 5) -1612494900: Socket error on client , disconnecting. -1612494920: New connection from 172.18.0.3 on port 1883. -1612494920: Sending CONNACK to 172.18.0.3 (0, 5) -1612494920: Socket error on client , disconnecting. -1612494940: New connection from 172.18.0.3 on port 1883. -1612494940: Sending CONNACK to 172.18.0.3 (0, 5) -1612494940: Socket error on client , disconnecting. -1612494960: New connection from 172.18.0.3 on port 1883. -1612494960: Sending CONNACK to 172.18.0.3 (0, 5) -1612494960: Socket error on client , disconnecting. -1612494980: New connection from 172.18.0.3 on port 1883. -1612494980: Sending CONNACK to 172.18.0.3 (0, 5) -1612494980: Socket error on client , disconnecting. -1612495000: New connection from 172.18.0.3 on port 1883. -1612495000: Sending CONNACK to 172.18.0.3 (0, 5) -1612495000: Socket error on client , disconnecting. -1612495020: New connection from 172.18.0.3 on port 1883. -1612495020: Sending CONNACK to 172.18.0.3 (0, 5) -1612495020: Socket error on client , disconnecting. -1612495040: New connection from 172.18.0.3 on port 1883. -1612495040: Sending CONNACK to 172.18.0.3 (0, 5) -1612495040: Socket error on client , disconnecting. -1612495044: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612495044: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612495044: Error: Permission denied. -1612495060: New connection from 172.18.0.3 on port 1883. -1612495060: Sending CONNACK to 172.18.0.3 (0, 5) -1612495060: Socket error on client , disconnecting. -1612495080: New connection from 172.18.0.3 on port 1883. -1612495080: Sending CONNACK to 172.18.0.3 (0, 5) -1612495080: Socket error on client , disconnecting. -1612495100: New connection from 172.18.0.3 on port 1883. -1612495100: Sending CONNACK to 172.18.0.3 (0, 5) -1612495100: Socket error on client , disconnecting. -1612495120: New connection from 172.18.0.3 on port 1883. -1612495120: Sending CONNACK to 172.18.0.3 (0, 5) -1612495120: Socket error on client , disconnecting. -1612495140: New connection from 172.18.0.3 on port 1883. -1612495140: Sending CONNACK to 172.18.0.3 (0, 5) -1612495140: Socket error on client , disconnecting. -1612495160: New connection from 172.18.0.3 on port 1883. -1612495160: Sending CONNACK to 172.18.0.3 (0, 5) -1612495160: Socket error on client , disconnecting. -1612495180: New connection from 172.18.0.3 on port 1883. -1612495180: Sending CONNACK to 172.18.0.3 (0, 5) -1612495180: Socket error on client , disconnecting. -1612495200: New connection from 172.18.0.3 on port 1883. -1612495200: Sending CONNACK to 172.18.0.3 (0, 5) -1612495200: Socket error on client , disconnecting. -1612495220: New connection from 172.18.0.3 on port 1883. -1612495220: Sending CONNACK to 172.18.0.3 (0, 5) -1612495220: Socket error on client , disconnecting. -1612495240: New connection from 172.18.0.3 on port 1883. -1612495240: Sending CONNACK to 172.18.0.3 (0, 5) -1612495240: Socket error on client , disconnecting. -1612495260: New connection from 172.18.0.3 on port 1883. -1612495260: Sending CONNACK to 172.18.0.3 (0, 5) -1612495260: Socket error on client , disconnecting. -1612495280: New connection from 172.18.0.3 on port 1883. -1612495280: Sending CONNACK to 172.18.0.3 (0, 5) -1612495280: Socket error on client , disconnecting. -1612495300: New connection from 172.18.0.3 on port 1883. -1612495300: Sending CONNACK to 172.18.0.3 (0, 5) -1612495300: Socket error on client , disconnecting. -1612495320: New connection from 172.18.0.3 on port 1883. -1612495320: Sending CONNACK to 172.18.0.3 (0, 5) -1612495320: Socket error on client , disconnecting. -1612495340: New connection from 172.18.0.3 on port 1883. -1612495340: Sending CONNACK to 172.18.0.3 (0, 5) -1612495340: Socket error on client , disconnecting. -1612495360: New connection from 172.18.0.3 on port 1883. -1612495360: Sending CONNACK to 172.18.0.3 (0, 5) -1612495360: Socket error on client , disconnecting. -1612495380: New connection from 172.18.0.3 on port 1883. -1612495380: Sending CONNACK to 172.18.0.3 (0, 5) -1612495380: Socket error on client , disconnecting. -1612495400: New connection from 172.18.0.3 on port 1883. -1612495400: Sending CONNACK to 172.18.0.3 (0, 5) -1612495400: Socket error on client , disconnecting. -1612495420: New connection from 172.18.0.3 on port 1883. -1612495420: Sending CONNACK to 172.18.0.3 (0, 5) -1612495420: Socket error on client , disconnecting. -1612495440: New connection from 172.18.0.3 on port 1883. -1612495440: Sending CONNACK to 172.18.0.3 (0, 5) -1612495440: Socket error on client , disconnecting. -1612495460: New connection from 172.18.0.3 on port 1883. -1612495460: Sending CONNACK to 172.18.0.3 (0, 5) -1612495460: Socket error on client , disconnecting. -1612495480: New connection from 172.18.0.3 on port 1883. -1612495480: Sending CONNACK to 172.18.0.3 (0, 5) -1612495480: Socket error on client , disconnecting. -1612495500: New connection from 172.18.0.3 on port 1883. -1612495500: Sending CONNACK to 172.18.0.3 (0, 5) -1612495500: Socket error on client , disconnecting. -1612495520: New connection from 172.18.0.3 on port 1883. -1612495520: Sending CONNACK to 172.18.0.3 (0, 5) -1612495520: Socket error on client , disconnecting. -1612495540: New connection from 172.18.0.3 on port 1883. -1612495540: Sending CONNACK to 172.18.0.3 (0, 5) -1612495540: Socket error on client , disconnecting. -1612495560: New connection from 172.18.0.3 on port 1883. -1612495560: Sending CONNACK to 172.18.0.3 (0, 5) -1612495560: Socket error on client , disconnecting. -1612495580: New connection from 172.18.0.3 on port 1883. -1612495580: Sending CONNACK to 172.18.0.3 (0, 5) -1612495580: Socket error on client , disconnecting. -1612495600: New connection from 172.18.0.3 on port 1883. -1612495600: Sending CONNACK to 172.18.0.3 (0, 5) -1612495600: Socket error on client , disconnecting. -1612495620: New connection from 172.18.0.3 on port 1883. -1612495620: Sending CONNACK to 172.18.0.3 (0, 5) -1612495620: Socket error on client , disconnecting. -1612495640: New connection from 172.18.0.3 on port 1883. -1612495640: Sending CONNACK to 172.18.0.3 (0, 5) -1612495640: Socket error on client , disconnecting. -1612495660: New connection from 172.18.0.3 on port 1883. -1612495660: Sending CONNACK to 172.18.0.3 (0, 5) -1612495660: Socket error on client , disconnecting. -1612495680: New connection from 172.18.0.3 on port 1883. -1612495680: Sending CONNACK to 172.18.0.3 (0, 5) -1612495680: Socket error on client , disconnecting. -1612495700: New connection from 172.18.0.3 on port 1883. -1612495700: Sending CONNACK to 172.18.0.3 (0, 5) -1612495700: Socket error on client , disconnecting. -1612495720: New connection from 172.18.0.3 on port 1883. -1612495720: Sending CONNACK to 172.18.0.3 (0, 5) -1612495720: Socket error on client , disconnecting. -1612495740: New connection from 172.18.0.3 on port 1883. -1612495740: Sending CONNACK to 172.18.0.3 (0, 5) -1612495740: Socket error on client , disconnecting. -1612495760: New connection from 172.18.0.3 on port 1883. -1612495760: Sending CONNACK to 172.18.0.3 (0, 5) -1612495760: Socket error on client , disconnecting. -1612495780: New connection from 172.18.0.3 on port 1883. -1612495780: Sending CONNACK to 172.18.0.3 (0, 5) -1612495780: Socket error on client , disconnecting. -1612495800: New connection from 172.18.0.3 on port 1883. -1612495800: Sending CONNACK to 172.18.0.3 (0, 5) -1612495800: Socket error on client , disconnecting. -1612495820: New connection from 172.18.0.3 on port 1883. -1612495820: Sending CONNACK to 172.18.0.3 (0, 5) -1612495820: Socket error on client , disconnecting. -1612495840: New connection from 172.18.0.3 on port 1883. -1612495840: Sending CONNACK to 172.18.0.3 (0, 5) -1612495840: Socket error on client , disconnecting. -1612495860: New connection from 172.18.0.3 on port 1883. -1612495860: Sending CONNACK to 172.18.0.3 (0, 5) -1612495860: Socket error on client , disconnecting. -1612495880: New connection from 172.18.0.3 on port 1883. -1612495880: Sending CONNACK to 172.18.0.3 (0, 5) -1612495880: Socket error on client , disconnecting. -1612495900: New connection from 172.18.0.3 on port 1883. -1612495900: Sending CONNACK to 172.18.0.3 (0, 5) -1612495900: Socket error on client , disconnecting. -1612495920: New connection from 172.18.0.3 on port 1883. -1612495920: Sending CONNACK to 172.18.0.3 (0, 5) -1612495920: Socket error on client , disconnecting. -1612495940: New connection from 172.18.0.3 on port 1883. -1612495940: Sending CONNACK to 172.18.0.3 (0, 5) -1612495940: Socket error on client , disconnecting. -1612495960: New connection from 172.18.0.3 on port 1883. -1612495960: Sending CONNACK to 172.18.0.3 (0, 5) -1612495960: Socket error on client , disconnecting. -1612495980: New connection from 172.18.0.3 on port 1883. -1612495980: Sending CONNACK to 172.18.0.3 (0, 5) -1612495980: Socket error on client , disconnecting. -1612496000: New connection from 172.18.0.3 on port 1883. -1612496000: Sending CONNACK to 172.18.0.3 (0, 5) -1612496000: Socket error on client , disconnecting. -1612496020: New connection from 172.18.0.3 on port 1883. -1612496020: Sending CONNACK to 172.18.0.3 (0, 5) -1612496020: Socket error on client , disconnecting. -1612496040: New connection from 172.18.0.3 on port 1883. -1612496040: Sending CONNACK to 172.18.0.3 (0, 5) -1612496040: Socket error on client , disconnecting. -1612496060: New connection from 172.18.0.3 on port 1883. -1612496060: Sending CONNACK to 172.18.0.3 (0, 5) -1612496060: Socket error on client , disconnecting. -1612496080: New connection from 172.18.0.3 on port 1883. -1612496080: Sending CONNACK to 172.18.0.3 (0, 5) -1612496080: Socket error on client , disconnecting. -1612496100: New connection from 172.18.0.3 on port 1883. -1612496100: Sending CONNACK to 172.18.0.3 (0, 5) -1612496100: Socket error on client , disconnecting. -1612496120: New connection from 172.18.0.3 on port 1883. -1612496120: Sending CONNACK to 172.18.0.3 (0, 5) -1612496120: Socket error on client , disconnecting. -1612496140: New connection from 172.18.0.3 on port 1883. -1612496140: Sending CONNACK to 172.18.0.3 (0, 5) -1612496140: Socket error on client , disconnecting. -1612496160: New connection from 172.18.0.3 on port 1883. -1612496160: Sending CONNACK to 172.18.0.3 (0, 5) -1612496160: Socket error on client , disconnecting. -1612496180: New connection from 172.18.0.3 on port 1883. -1612496180: Sending CONNACK to 172.18.0.3 (0, 5) -1612496180: Socket error on client , disconnecting. -1612496200: New connection from 172.18.0.3 on port 1883. -1612496200: Sending CONNACK to 172.18.0.3 (0, 5) -1612496200: Socket error on client , disconnecting. -1612496220: New connection from 172.18.0.3 on port 1883. -1612496220: Sending CONNACK to 172.18.0.3 (0, 5) -1612496220: Socket error on client , disconnecting. -1612496240: New connection from 172.18.0.3 on port 1883. -1612496240: Sending CONNACK to 172.18.0.3 (0, 5) -1612496240: Socket error on client , disconnecting. -1612496260: New connection from 172.18.0.3 on port 1883. -1612496260: Sending CONNACK to 172.18.0.3 (0, 5) -1612496260: Socket error on client , disconnecting. -1612496280: New connection from 172.18.0.3 on port 1883. -1612496280: Sending CONNACK to 172.18.0.3 (0, 5) -1612496280: Socket error on client , disconnecting. -1612496300: New connection from 172.18.0.3 on port 1883. -1612496300: Sending CONNACK to 172.18.0.3 (0, 5) -1612496300: Socket error on client , disconnecting. -1612496320: New connection from 172.18.0.3 on port 1883. -1612496320: Sending CONNACK to 172.18.0.3 (0, 5) -1612496320: Socket error on client , disconnecting. -1612496340: New connection from 172.18.0.3 on port 1883. -1612496340: Sending CONNACK to 172.18.0.3 (0, 5) -1612496340: Socket error on client , disconnecting. -1612496360: New connection from 172.18.0.3 on port 1883. -1612496360: Sending CONNACK to 172.18.0.3 (0, 5) -1612496360: Socket error on client , disconnecting. -1612496380: New connection from 172.18.0.3 on port 1883. -1612496380: Sending CONNACK to 172.18.0.3 (0, 5) -1612496380: Socket error on client , disconnecting. -1612496400: New connection from 172.18.0.3 on port 1883. -1612496400: Sending CONNACK to 172.18.0.3 (0, 5) -1612496400: Socket error on client , disconnecting. -1612496420: New connection from 172.18.0.3 on port 1883. -1612496420: Sending CONNACK to 172.18.0.3 (0, 5) -1612496420: Socket error on client , disconnecting. -1612496440: New connection from 172.18.0.3 on port 1883. -1612496440: Sending CONNACK to 172.18.0.3 (0, 5) -1612496440: Socket error on client , disconnecting. -1612496460: New connection from 172.18.0.3 on port 1883. -1612496460: Sending CONNACK to 172.18.0.3 (0, 5) -1612496460: Socket error on client , disconnecting. -1612496480: New connection from 172.18.0.3 on port 1883. -1612496480: Sending CONNACK to 172.18.0.3 (0, 5) -1612496480: Socket error on client , disconnecting. -1612496500: New connection from 172.18.0.3 on port 1883. -1612496500: Sending CONNACK to 172.18.0.3 (0, 5) -1612496500: Socket error on client , disconnecting. -1612496520: New connection from 172.18.0.3 on port 1883. -1612496520: Sending CONNACK to 172.18.0.3 (0, 5) -1612496520: Socket error on client , disconnecting. -1612496540: New connection from 172.18.0.3 on port 1883. -1612496540: Sending CONNACK to 172.18.0.3 (0, 5) -1612496540: Socket error on client , disconnecting. -1612496560: New connection from 172.18.0.3 on port 1883. -1612496560: Sending CONNACK to 172.18.0.3 (0, 5) -1612496560: Socket error on client , disconnecting. -1612496580: New connection from 172.18.0.3 on port 1883. -1612496580: Sending CONNACK to 172.18.0.3 (0, 5) -1612496580: Socket error on client , disconnecting. -1612496600: New connection from 172.18.0.3 on port 1883. -1612496600: Sending CONNACK to 172.18.0.3 (0, 5) -1612496600: Socket error on client , disconnecting. -1612496620: New connection from 172.18.0.3 on port 1883. -1612496620: Sending CONNACK to 172.18.0.3 (0, 5) -1612496620: Socket error on client , disconnecting. -1612496640: New connection from 172.18.0.3 on port 1883. -1612496640: Sending CONNACK to 172.18.0.3 (0, 5) -1612496640: Socket error on client , disconnecting. -1612496660: New connection from 172.18.0.3 on port 1883. -1612496660: Sending CONNACK to 172.18.0.3 (0, 5) -1612496660: Socket error on client , disconnecting. -1612496680: New connection from 172.18.0.3 on port 1883. -1612496680: Sending CONNACK to 172.18.0.3 (0, 5) -1612496680: Socket error on client , disconnecting. -1612496700: New connection from 172.18.0.3 on port 1883. -1612496700: Sending CONNACK to 172.18.0.3 (0, 5) -1612496700: Socket error on client , disconnecting. -1612496720: New connection from 172.18.0.3 on port 1883. -1612496720: Sending CONNACK to 172.18.0.3 (0, 5) -1612496720: Socket error on client , disconnecting. -1612496740: New connection from 172.18.0.3 on port 1883. -1612496740: Sending CONNACK to 172.18.0.3 (0, 5) -1612496740: Socket error on client , disconnecting. -1612496760: New connection from 172.18.0.3 on port 1883. -1612496760: Sending CONNACK to 172.18.0.3 (0, 5) -1612496760: Socket error on client , disconnecting. -1612496780: New connection from 172.18.0.3 on port 1883. -1612496780: Sending CONNACK to 172.18.0.3 (0, 5) -1612496780: Socket error on client , disconnecting. -1612496800: New connection from 172.18.0.3 on port 1883. -1612496800: Sending CONNACK to 172.18.0.3 (0, 5) -1612496800: Socket error on client , disconnecting. -1612496820: New connection from 172.18.0.3 on port 1883. -1612496820: Sending CONNACK to 172.18.0.3 (0, 5) -1612496820: Socket error on client , disconnecting. -1612496840: New connection from 172.18.0.3 on port 1883. -1612496840: Sending CONNACK to 172.18.0.3 (0, 5) -1612496840: Socket error on client , disconnecting. -1612496845: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612496845: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612496845: Error: Permission denied. -1612496860: New connection from 172.18.0.3 on port 1883. -1612496860: Sending CONNACK to 172.18.0.3 (0, 5) -1612496860: Socket error on client , disconnecting. -1612496880: New connection from 172.18.0.3 on port 1883. -1612496880: Sending CONNACK to 172.18.0.3 (0, 5) -1612496880: Socket error on client , disconnecting. -1612496900: New connection from 172.18.0.3 on port 1883. -1612496900: Sending CONNACK to 172.18.0.3 (0, 5) -1612496900: Socket error on client , disconnecting. -1612496920: New connection from 172.18.0.3 on port 1883. -1612496920: Sending CONNACK to 172.18.0.3 (0, 5) -1612496920: Socket error on client , disconnecting. -1612496940: New connection from 172.18.0.3 on port 1883. -1612496940: Sending CONNACK to 172.18.0.3 (0, 5) -1612496940: Socket error on client , disconnecting. -1612496960: New connection from 172.18.0.3 on port 1883. -1612496960: Sending CONNACK to 172.18.0.3 (0, 5) -1612496960: Socket error on client , disconnecting. -1612496980: New connection from 172.18.0.3 on port 1883. -1612496980: Sending CONNACK to 172.18.0.3 (0, 5) -1612496980: Socket error on client , disconnecting. -1612497000: New connection from 172.18.0.3 on port 1883. -1612497000: Sending CONNACK to 172.18.0.3 (0, 5) -1612497000: Socket error on client , disconnecting. -1612497020: New connection from 172.18.0.3 on port 1883. -1612497020: Sending CONNACK to 172.18.0.3 (0, 5) -1612497020: Socket error on client , disconnecting. -1612497040: New connection from 172.18.0.3 on port 1883. -1612497040: Sending CONNACK to 172.18.0.3 (0, 5) -1612497040: Socket error on client , disconnecting. -1612497060: New connection from 172.18.0.3 on port 1883. -1612497060: Sending CONNACK to 172.18.0.3 (0, 5) -1612497060: Socket error on client , disconnecting. -1612497080: New connection from 172.18.0.3 on port 1883. -1612497080: Sending CONNACK to 172.18.0.3 (0, 5) -1612497080: Socket error on client , disconnecting. -1612497100: New connection from 172.18.0.3 on port 1883. -1612497100: Sending CONNACK to 172.18.0.3 (0, 5) -1612497100: Socket error on client , disconnecting. -1612497120: New connection from 172.18.0.3 on port 1883. -1612497120: Sending CONNACK to 172.18.0.3 (0, 5) -1612497120: Socket error on client , disconnecting. -1612497140: New connection from 172.18.0.3 on port 1883. -1612497140: Sending CONNACK to 172.18.0.3 (0, 5) -1612497140: Socket error on client , disconnecting. -1612497160: New connection from 172.18.0.3 on port 1883. -1612497160: Sending CONNACK to 172.18.0.3 (0, 5) -1612497160: Socket error on client , disconnecting. -1612497180: New connection from 172.18.0.3 on port 1883. -1612497180: Sending CONNACK to 172.18.0.3 (0, 5) -1612497180: Socket error on client , disconnecting. -1612497200: New connection from 172.18.0.3 on port 1883. -1612497200: Sending CONNACK to 172.18.0.3 (0, 5) -1612497200: Socket error on client , disconnecting. -1612497220: New connection from 172.18.0.3 on port 1883. -1612497220: Sending CONNACK to 172.18.0.3 (0, 5) -1612497220: Socket error on client , disconnecting. -1612497240: New connection from 172.18.0.3 on port 1883. -1612497240: Sending CONNACK to 172.18.0.3 (0, 5) -1612497240: Socket error on client , disconnecting. -1612497260: New connection from 172.18.0.3 on port 1883. -1612497260: Sending CONNACK to 172.18.0.3 (0, 5) -1612497260: Socket error on client , disconnecting. -1612497280: New connection from 172.18.0.3 on port 1883. -1612497280: Sending CONNACK to 172.18.0.3 (0, 5) -1612497280: Socket error on client , disconnecting. -1612497300: New connection from 172.18.0.3 on port 1883. -1612497300: Sending CONNACK to 172.18.0.3 (0, 5) -1612497300: Socket error on client , disconnecting. -1612497320: New connection from 172.18.0.3 on port 1883. -1612497320: Sending CONNACK to 172.18.0.3 (0, 5) -1612497320: Socket error on client , disconnecting. -1612497340: New connection from 172.18.0.3 on port 1883. -1612497340: Sending CONNACK to 172.18.0.3 (0, 5) -1612497340: Socket error on client , disconnecting. -1612497360: New connection from 172.18.0.3 on port 1883. -1612497360: Sending CONNACK to 172.18.0.3 (0, 5) -1612497360: Socket error on client , disconnecting. -1612497380: New connection from 172.18.0.3 on port 1883. -1612497380: Sending CONNACK to 172.18.0.3 (0, 5) -1612497380: Socket error on client , disconnecting. -1612497400: New connection from 172.18.0.3 on port 1883. -1612497400: Sending CONNACK to 172.18.0.3 (0, 5) -1612497400: Socket error on client , disconnecting. -1612497420: New connection from 172.18.0.3 on port 1883. -1612497420: Sending CONNACK to 172.18.0.3 (0, 5) -1612497420: Socket error on client , disconnecting. -1612497440: New connection from 172.18.0.3 on port 1883. -1612497440: Sending CONNACK to 172.18.0.3 (0, 5) -1612497440: Socket error on client , disconnecting. -1612497460: New connection from 172.18.0.3 on port 1883. -1612497460: Sending CONNACK to 172.18.0.3 (0, 5) -1612497460: Socket error on client , disconnecting. -1612497480: New connection from 172.18.0.3 on port 1883. -1612497480: Sending CONNACK to 172.18.0.3 (0, 5) -1612497480: Socket error on client , disconnecting. -1612497500: New connection from 172.18.0.3 on port 1883. -1612497500: Sending CONNACK to 172.18.0.3 (0, 5) -1612497500: Socket error on client , disconnecting. -1612497520: New connection from 172.18.0.3 on port 1883. -1612497520: Sending CONNACK to 172.18.0.3 (0, 5) -1612497520: Socket error on client , disconnecting. -1612497540: New connection from 172.18.0.3 on port 1883. -1612497540: Sending CONNACK to 172.18.0.3 (0, 5) -1612497540: Socket error on client , disconnecting. -1612497560: New connection from 172.18.0.3 on port 1883. -1612497560: Sending CONNACK to 172.18.0.3 (0, 5) -1612497560: Socket error on client , disconnecting. -1612497580: New connection from 172.18.0.3 on port 1883. -1612497580: Sending CONNACK to 172.18.0.3 (0, 5) -1612497580: Socket error on client , disconnecting. -1612497600: New connection from 172.18.0.3 on port 1883. -1612497600: Sending CONNACK to 172.18.0.3 (0, 5) -1612497600: Socket error on client , disconnecting. -1612497620: New connection from 172.18.0.3 on port 1883. -1612497620: Sending CONNACK to 172.18.0.3 (0, 5) -1612497620: Socket error on client , disconnecting. -1612497640: New connection from 172.18.0.3 on port 1883. -1612497640: Sending CONNACK to 172.18.0.3 (0, 5) -1612497640: Socket error on client , disconnecting. -1612497660: New connection from 172.18.0.3 on port 1883. -1612497660: Sending CONNACK to 172.18.0.3 (0, 5) -1612497660: Socket error on client , disconnecting. -1612497680: New connection from 172.18.0.3 on port 1883. -1612497680: Sending CONNACK to 172.18.0.3 (0, 5) -1612497680: Socket error on client , disconnecting. -1612497700: New connection from 172.18.0.3 on port 1883. -1612497700: Sending CONNACK to 172.18.0.3 (0, 5) -1612497700: Socket error on client , disconnecting. -1612497720: New connection from 172.18.0.3 on port 1883. -1612497720: Sending CONNACK to 172.18.0.3 (0, 5) -1612497720: Socket error on client , disconnecting. -1612497740: New connection from 172.18.0.3 on port 1883. -1612497740: Sending CONNACK to 172.18.0.3 (0, 5) -1612497740: Socket error on client , disconnecting. -1612497760: New connection from 172.18.0.3 on port 1883. -1612497760: Sending CONNACK to 172.18.0.3 (0, 5) -1612497760: Socket error on client , disconnecting. -1612497780: New connection from 172.18.0.3 on port 1883. -1612497780: Sending CONNACK to 172.18.0.3 (0, 5) -1612497780: Socket error on client , disconnecting. -1612497800: New connection from 172.18.0.3 on port 1883. -1612497800: Sending CONNACK to 172.18.0.3 (0, 5) -1612497800: Socket error on client , disconnecting. -1612497820: New connection from 172.18.0.3 on port 1883. -1612497820: Sending CONNACK to 172.18.0.3 (0, 5) -1612497820: Socket error on client , disconnecting. -1612497840: New connection from 172.18.0.3 on port 1883. -1612497840: Sending CONNACK to 172.18.0.3 (0, 5) -1612497840: Socket error on client , disconnecting. -1612497860: New connection from 172.18.0.3 on port 1883. -1612497860: Sending CONNACK to 172.18.0.3 (0, 5) -1612497860: Socket error on client , disconnecting. -1612497880: New connection from 172.18.0.3 on port 1883. -1612497880: Sending CONNACK to 172.18.0.3 (0, 5) -1612497880: Socket error on client , disconnecting. -1612497900: New connection from 172.18.0.3 on port 1883. -1612497900: Sending CONNACK to 172.18.0.3 (0, 5) -1612497900: Socket error on client , disconnecting. -1612497920: New connection from 172.18.0.3 on port 1883. -1612497920: Sending CONNACK to 172.18.0.3 (0, 5) -1612497920: Socket error on client , disconnecting. -1612497940: New connection from 172.18.0.3 on port 1883. -1612497940: Sending CONNACK to 172.18.0.3 (0, 5) -1612497940: Socket error on client , disconnecting. -1612497960: New connection from 172.18.0.3 on port 1883. -1612497960: Sending CONNACK to 172.18.0.3 (0, 5) -1612497960: Socket error on client , disconnecting. -1612497980: New connection from 172.18.0.3 on port 1883. -1612497980: Sending CONNACK to 172.18.0.3 (0, 5) -1612497980: Socket error on client , disconnecting. -1612498000: New connection from 172.18.0.3 on port 1883. -1612498000: Sending CONNACK to 172.18.0.3 (0, 5) -1612498000: Socket error on client , disconnecting. -1612498020: New connection from 172.18.0.3 on port 1883. -1612498020: Sending CONNACK to 172.18.0.3 (0, 5) -1612498020: Socket error on client , disconnecting. -1612498040: New connection from 172.18.0.3 on port 1883. -1612498040: Sending CONNACK to 172.18.0.3 (0, 5) -1612498040: Socket error on client , disconnecting. -1612498060: New connection from 172.18.0.3 on port 1883. -1612498060: Sending CONNACK to 172.18.0.3 (0, 5) -1612498060: Socket error on client , disconnecting. -1612498080: New connection from 172.18.0.3 on port 1883. -1612498080: Sending CONNACK to 172.18.0.3 (0, 5) -1612498080: Socket error on client , disconnecting. -1612498100: New connection from 172.18.0.3 on port 1883. -1612498100: Sending CONNACK to 172.18.0.3 (0, 5) -1612498100: Socket error on client , disconnecting. -1612498120: New connection from 172.18.0.3 on port 1883. -1612498120: Sending CONNACK to 172.18.0.3 (0, 5) -1612498120: Socket error on client , disconnecting. -1612498140: New connection from 172.18.0.3 on port 1883. -1612498140: Sending CONNACK to 172.18.0.3 (0, 5) -1612498140: Socket error on client , disconnecting. -1612498160: New connection from 172.18.0.3 on port 1883. -1612498160: Sending CONNACK to 172.18.0.3 (0, 5) -1612498160: Socket error on client , disconnecting. -1612498180: New connection from 172.18.0.3 on port 1883. -1612498180: Sending CONNACK to 172.18.0.3 (0, 5) -1612498180: Socket error on client , disconnecting. -1612498200: New connection from 172.18.0.3 on port 1883. -1612498200: Sending CONNACK to 172.18.0.3 (0, 5) -1612498200: Socket error on client , disconnecting. -1612498220: New connection from 172.18.0.3 on port 1883. -1612498220: Sending CONNACK to 172.18.0.3 (0, 5) -1612498220: Socket error on client , disconnecting. -1612498240: New connection from 172.18.0.3 on port 1883. -1612498240: Sending CONNACK to 172.18.0.3 (0, 5) -1612498240: Socket error on client , disconnecting. -1612498260: New connection from 172.18.0.3 on port 1883. -1612498260: Sending CONNACK to 172.18.0.3 (0, 5) -1612498260: Socket error on client , disconnecting. -1612498280: New connection from 172.18.0.3 on port 1883. -1612498280: Sending CONNACK to 172.18.0.3 (0, 5) -1612498280: Socket error on client , disconnecting. -1612498300: New connection from 172.18.0.3 on port 1883. -1612498300: Sending CONNACK to 172.18.0.3 (0, 5) -1612498300: Socket error on client , disconnecting. -1612498320: New connection from 172.18.0.3 on port 1883. -1612498320: Sending CONNACK to 172.18.0.3 (0, 5) -1612498320: Socket error on client , disconnecting. -1612498340: New connection from 172.18.0.3 on port 1883. -1612498340: Sending CONNACK to 172.18.0.3 (0, 5) -1612498340: Socket error on client , disconnecting. -1612498360: New connection from 172.18.0.3 on port 1883. -1612498360: Sending CONNACK to 172.18.0.3 (0, 5) -1612498360: Socket error on client , disconnecting. -1612498380: New connection from 172.18.0.3 on port 1883. -1612498380: Sending CONNACK to 172.18.0.3 (0, 5) -1612498380: Socket error on client , disconnecting. -1612498400: New connection from 172.18.0.3 on port 1883. -1612498400: Sending CONNACK to 172.18.0.3 (0, 5) -1612498400: Socket error on client , disconnecting. -1612498420: New connection from 172.18.0.3 on port 1883. -1612498420: Sending CONNACK to 172.18.0.3 (0, 5) -1612498420: Socket error on client , disconnecting. -1612498440: New connection from 172.18.0.3 on port 1883. -1612498440: Sending CONNACK to 172.18.0.3 (0, 5) -1612498440: Socket error on client , disconnecting. -1612498460: New connection from 172.18.0.3 on port 1883. -1612498460: Sending CONNACK to 172.18.0.3 (0, 5) -1612498460: Socket error on client , disconnecting. -1612498480: New connection from 172.18.0.3 on port 1883. -1612498480: Sending CONNACK to 172.18.0.3 (0, 5) -1612498480: Socket error on client , disconnecting. -1612498500: New connection from 172.18.0.3 on port 1883. -1612498500: Sending CONNACK to 172.18.0.3 (0, 5) -1612498500: Socket error on client , disconnecting. -1612498520: New connection from 172.18.0.3 on port 1883. -1612498520: Sending CONNACK to 172.18.0.3 (0, 5) -1612498520: Socket error on client , disconnecting. -1612498540: New connection from 172.18.0.3 on port 1883. -1612498540: Sending CONNACK to 172.18.0.3 (0, 5) -1612498540: Socket error on client , disconnecting. -1612498560: New connection from 172.18.0.3 on port 1883. -1612498560: Sending CONNACK to 172.18.0.3 (0, 5) -1612498560: Socket error on client , disconnecting. -1612498580: New connection from 172.18.0.3 on port 1883. -1612498580: Sending CONNACK to 172.18.0.3 (0, 5) -1612498580: Socket error on client , disconnecting. -1612498600: New connection from 172.18.0.3 on port 1883. -1612498600: Sending CONNACK to 172.18.0.3 (0, 5) -1612498600: Socket error on client , disconnecting. -1612498620: New connection from 172.18.0.3 on port 1883. -1612498620: Sending CONNACK to 172.18.0.3 (0, 5) -1612498620: Socket error on client , disconnecting. -1612498640: New connection from 172.18.0.3 on port 1883. -1612498640: Sending CONNACK to 172.18.0.3 (0, 5) -1612498640: Socket error on client , disconnecting. -1612498646: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612498646: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612498646: Error: Permission denied. -1612498660: New connection from 172.18.0.3 on port 1883. -1612498660: Sending CONNACK to 172.18.0.3 (0, 5) -1612498660: Socket error on client , disconnecting. -1612498680: New connection from 172.18.0.3 on port 1883. -1612498680: Sending CONNACK to 172.18.0.3 (0, 5) -1612498680: Socket error on client , disconnecting. -1612498700: New connection from 172.18.0.3 on port 1883. -1612498700: Sending CONNACK to 172.18.0.3 (0, 5) -1612498700: Socket error on client , disconnecting. -1612498720: New connection from 172.18.0.3 on port 1883. -1612498720: Sending CONNACK to 172.18.0.3 (0, 5) -1612498720: Socket error on client , disconnecting. -1612498740: New connection from 172.18.0.3 on port 1883. -1612498740: Sending CONNACK to 172.18.0.3 (0, 5) -1612498740: Socket error on client , disconnecting. -1612498760: New connection from 172.18.0.3 on port 1883. -1612498760: Sending CONNACK to 172.18.0.3 (0, 5) -1612498760: Socket error on client , disconnecting. -1612498780: New connection from 172.18.0.3 on port 1883. -1612498780: Sending CONNACK to 172.18.0.3 (0, 5) -1612498780: Socket error on client , disconnecting. -1612498800: New connection from 172.18.0.3 on port 1883. -1612498800: Sending CONNACK to 172.18.0.3 (0, 5) -1612498800: Socket error on client , disconnecting. -1612498820: New connection from 172.18.0.3 on port 1883. -1612498820: Sending CONNACK to 172.18.0.3 (0, 5) -1612498820: Socket error on client , disconnecting. -1612498840: New connection from 172.18.0.3 on port 1883. -1612498840: Sending CONNACK to 172.18.0.3 (0, 5) -1612498840: Socket error on client , disconnecting. -1612498860: New connection from 172.18.0.3 on port 1883. -1612498860: Sending CONNACK to 172.18.0.3 (0, 5) -1612498860: Socket error on client , disconnecting. -1612498880: New connection from 172.18.0.3 on port 1883. -1612498880: Sending CONNACK to 172.18.0.3 (0, 5) -1612498880: Socket error on client , disconnecting. -1612498900: New connection from 172.18.0.3 on port 1883. -1612498900: Sending CONNACK to 172.18.0.3 (0, 5) -1612498900: Socket error on client , disconnecting. -1612498920: New connection from 172.18.0.3 on port 1883. -1612498920: Sending CONNACK to 172.18.0.3 (0, 5) -1612498920: Socket error on client , disconnecting. -1612498940: New connection from 172.18.0.3 on port 1883. -1612498940: Sending CONNACK to 172.18.0.3 (0, 5) -1612498940: Socket error on client , disconnecting. -1612498960: New connection from 172.18.0.3 on port 1883. -1612498960: Sending CONNACK to 172.18.0.3 (0, 5) -1612498960: Socket error on client , disconnecting. -1612498980: New connection from 172.18.0.3 on port 1883. -1612498980: Sending CONNACK to 172.18.0.3 (0, 5) -1612498980: Socket error on client , disconnecting. -1612499000: New connection from 172.18.0.3 on port 1883. -1612499000: Sending CONNACK to 172.18.0.3 (0, 5) -1612499000: Socket error on client , disconnecting. -1612499020: New connection from 172.18.0.3 on port 1883. -1612499020: Sending CONNACK to 172.18.0.3 (0, 5) -1612499020: Socket error on client , disconnecting. -1612499040: New connection from 172.18.0.3 on port 1883. -1612499040: Sending CONNACK to 172.18.0.3 (0, 5) -1612499040: Socket error on client , disconnecting. -1612499060: New connection from 172.18.0.3 on port 1883. -1612499060: Sending CONNACK to 172.18.0.3 (0, 5) -1612499060: Socket error on client , disconnecting. -1612499080: New connection from 172.18.0.3 on port 1883. -1612499080: Sending CONNACK to 172.18.0.3 (0, 5) -1612499080: Socket error on client , disconnecting. -1612499100: New connection from 172.18.0.3 on port 1883. -1612499100: Sending CONNACK to 172.18.0.3 (0, 5) -1612499100: Socket error on client , disconnecting. -1612499120: New connection from 172.18.0.3 on port 1883. -1612499120: Sending CONNACK to 172.18.0.3 (0, 5) -1612499120: Socket error on client , disconnecting. -1612499140: New connection from 172.18.0.3 on port 1883. -1612499140: Sending CONNACK to 172.18.0.3 (0, 5) -1612499140: Socket error on client , disconnecting. -1612499160: New connection from 172.18.0.3 on port 1883. -1612499160: Sending CONNACK to 172.18.0.3 (0, 5) -1612499160: Socket error on client , disconnecting. -1612499180: New connection from 172.18.0.3 on port 1883. -1612499180: Sending CONNACK to 172.18.0.3 (0, 5) -1612499180: Socket error on client , disconnecting. -1612499200: New connection from 172.18.0.3 on port 1883. -1612499200: Sending CONNACK to 172.18.0.3 (0, 5) -1612499200: Socket error on client , disconnecting. -1612499220: New connection from 172.18.0.3 on port 1883. -1612499220: Sending CONNACK to 172.18.0.3 (0, 5) -1612499220: Socket error on client , disconnecting. -1612499240: New connection from 172.18.0.3 on port 1883. -1612499240: Sending CONNACK to 172.18.0.3 (0, 5) -1612499240: Socket error on client , disconnecting. -1612499260: New connection from 172.18.0.3 on port 1883. -1612499260: Sending CONNACK to 172.18.0.3 (0, 5) -1612499260: Socket error on client , disconnecting. -1612499280: New connection from 172.18.0.3 on port 1883. -1612499280: Sending CONNACK to 172.18.0.3 (0, 5) -1612499280: Socket error on client , disconnecting. -1612499300: New connection from 172.18.0.3 on port 1883. -1612499300: Sending CONNACK to 172.18.0.3 (0, 5) -1612499300: Socket error on client , disconnecting. -1612499320: New connection from 172.18.0.3 on port 1883. -1612499320: Sending CONNACK to 172.18.0.3 (0, 5) -1612499320: Socket error on client , disconnecting. -1612499340: New connection from 172.18.0.3 on port 1883. -1612499340: Sending CONNACK to 172.18.0.3 (0, 5) -1612499340: Socket error on client , disconnecting. -1612499360: New connection from 172.18.0.3 on port 1883. -1612499360: Sending CONNACK to 172.18.0.3 (0, 5) -1612499360: Socket error on client , disconnecting. -1612499380: New connection from 172.18.0.3 on port 1883. -1612499380: Sending CONNACK to 172.18.0.3 (0, 5) -1612499380: Socket error on client , disconnecting. -1612499400: New connection from 172.18.0.3 on port 1883. -1612499400: Sending CONNACK to 172.18.0.3 (0, 5) -1612499400: Socket error on client , disconnecting. -1612499420: New connection from 172.18.0.3 on port 1883. -1612499420: Sending CONNACK to 172.18.0.3 (0, 5) -1612499420: Socket error on client , disconnecting. -1612499440: New connection from 172.18.0.3 on port 1883. -1612499440: Sending CONNACK to 172.18.0.3 (0, 5) -1612499440: Socket error on client , disconnecting. -1612499460: New connection from 172.18.0.3 on port 1883. -1612499460: Sending CONNACK to 172.18.0.3 (0, 5) -1612499460: Socket error on client , disconnecting. -1612499480: New connection from 172.18.0.3 on port 1883. -1612499480: Sending CONNACK to 172.18.0.3 (0, 5) -1612499480: Socket error on client , disconnecting. -1612499500: New connection from 172.18.0.3 on port 1883. -1612499500: Sending CONNACK to 172.18.0.3 (0, 5) -1612499500: Socket error on client , disconnecting. -1612499520: New connection from 172.18.0.3 on port 1883. -1612499520: Sending CONNACK to 172.18.0.3 (0, 5) -1612499520: Socket error on client , disconnecting. -1612499540: New connection from 172.18.0.3 on port 1883. -1612499540: Sending CONNACK to 172.18.0.3 (0, 5) -1612499540: Socket error on client , disconnecting. -1612499560: New connection from 172.18.0.3 on port 1883. -1612499560: Sending CONNACK to 172.18.0.3 (0, 5) -1612499560: Socket error on client , disconnecting. -1612499580: New connection from 172.18.0.3 on port 1883. -1612499580: Sending CONNACK to 172.18.0.3 (0, 5) -1612499580: Socket error on client , disconnecting. -1612499600: New connection from 172.18.0.3 on port 1883. -1612499600: Sending CONNACK to 172.18.0.3 (0, 5) -1612499600: Socket error on client , disconnecting. -1612499620: New connection from 172.18.0.3 on port 1883. -1612499620: Sending CONNACK to 172.18.0.3 (0, 5) -1612499620: Socket error on client , disconnecting. -1612499640: New connection from 172.18.0.3 on port 1883. -1612499640: Sending CONNACK to 172.18.0.3 (0, 5) -1612499640: Socket error on client , disconnecting. -1612499660: New connection from 172.18.0.3 on port 1883. -1612499660: Sending CONNACK to 172.18.0.3 (0, 5) -1612499660: Socket error on client , disconnecting. -1612499680: New connection from 172.18.0.3 on port 1883. -1612499680: Sending CONNACK to 172.18.0.3 (0, 5) -1612499680: Socket error on client , disconnecting. -1612499700: New connection from 172.18.0.3 on port 1883. -1612499700: Sending CONNACK to 172.18.0.3 (0, 5) -1612499700: Socket error on client , disconnecting. -1612499720: New connection from 172.18.0.3 on port 1883. -1612499720: Sending CONNACK to 172.18.0.3 (0, 5) -1612499720: Socket error on client , disconnecting. -1612499740: New connection from 172.18.0.3 on port 1883. -1612499740: Sending CONNACK to 172.18.0.3 (0, 5) -1612499740: Socket error on client , disconnecting. -1612499760: New connection from 172.18.0.3 on port 1883. -1612499760: Sending CONNACK to 172.18.0.3 (0, 5) -1612499760: Socket error on client , disconnecting. -1612499780: New connection from 172.18.0.3 on port 1883. -1612499780: Sending CONNACK to 172.18.0.3 (0, 5) -1612499780: Socket error on client , disconnecting. -1612499800: New connection from 172.18.0.3 on port 1883. -1612499800: Sending CONNACK to 172.18.0.3 (0, 5) -1612499800: Socket error on client , disconnecting. -1612499820: New connection from 172.18.0.3 on port 1883. -1612499820: Sending CONNACK to 172.18.0.3 (0, 5) -1612499820: Socket error on client , disconnecting. -1612499840: New connection from 172.18.0.3 on port 1883. -1612499840: Sending CONNACK to 172.18.0.3 (0, 5) -1612499840: Socket error on client , disconnecting. -1612499860: New connection from 172.18.0.3 on port 1883. -1612499860: Sending CONNACK to 172.18.0.3 (0, 5) -1612499860: Socket error on client , disconnecting. -1612499880: New connection from 172.18.0.3 on port 1883. -1612499880: Sending CONNACK to 172.18.0.3 (0, 5) -1612499880: Socket error on client , disconnecting. -1612499900: New connection from 172.18.0.3 on port 1883. -1612499900: Sending CONNACK to 172.18.0.3 (0, 5) -1612499900: Socket error on client , disconnecting. -1612499920: New connection from 172.18.0.3 on port 1883. -1612499920: Sending CONNACK to 172.18.0.3 (0, 5) -1612499920: Socket error on client , disconnecting. -1612499940: New connection from 172.18.0.3 on port 1883. -1612499940: Sending CONNACK to 172.18.0.3 (0, 5) -1612499940: Socket error on client , disconnecting. -1612499960: New connection from 172.18.0.3 on port 1883. -1612499960: Sending CONNACK to 172.18.0.3 (0, 5) -1612499960: Socket error on client , disconnecting. -1612499980: New connection from 172.18.0.3 on port 1883. -1612499980: Sending CONNACK to 172.18.0.3 (0, 5) -1612499980: Socket error on client , disconnecting. -1612500000: New connection from 172.18.0.3 on port 1883. -1612500000: Sending CONNACK to 172.18.0.3 (0, 5) -1612500000: Socket error on client , disconnecting. -1612500020: New connection from 172.18.0.3 on port 1883. -1612500020: Sending CONNACK to 172.18.0.3 (0, 5) -1612500020: Socket error on client , disconnecting. -1612500040: New connection from 172.18.0.3 on port 1883. -1612500040: Sending CONNACK to 172.18.0.3 (0, 5) -1612500040: Socket error on client , disconnecting. -1612500060: New connection from 172.18.0.3 on port 1883. -1612500060: Sending CONNACK to 172.18.0.3 (0, 5) -1612500060: Socket error on client , disconnecting. -1612500080: New connection from 172.18.0.3 on port 1883. -1612500080: Sending CONNACK to 172.18.0.3 (0, 5) -1612500080: Socket error on client , disconnecting. -1612500100: New connection from 172.18.0.3 on port 1883. -1612500100: Sending CONNACK to 172.18.0.3 (0, 5) -1612500100: Socket error on client , disconnecting. -1612500120: New connection from 172.18.0.3 on port 1883. -1612500120: Sending CONNACK to 172.18.0.3 (0, 5) -1612500120: Socket error on client , disconnecting. -1612500140: New connection from 172.18.0.3 on port 1883. -1612500140: Sending CONNACK to 172.18.0.3 (0, 5) -1612500140: Socket error on client , disconnecting. -1612500160: New connection from 172.18.0.3 on port 1883. -1612500160: Sending CONNACK to 172.18.0.3 (0, 5) -1612500160: Socket error on client , disconnecting. -1612500180: New connection from 172.18.0.3 on port 1883. -1612500180: Sending CONNACK to 172.18.0.3 (0, 5) -1612500180: Socket error on client , disconnecting. -1612500200: New connection from 172.18.0.3 on port 1883. -1612500200: Sending CONNACK to 172.18.0.3 (0, 5) -1612500200: Socket error on client , disconnecting. -1612500220: New connection from 172.18.0.3 on port 1883. -1612500220: Sending CONNACK to 172.18.0.3 (0, 5) -1612500220: Socket error on client , disconnecting. -1612500240: New connection from 172.18.0.3 on port 1883. -1612500240: Sending CONNACK to 172.18.0.3 (0, 5) -1612500240: Socket error on client , disconnecting. -1612500260: New connection from 172.18.0.3 on port 1883. -1612500260: Sending CONNACK to 172.18.0.3 (0, 5) -1612500260: Socket error on client , disconnecting. -1612500280: New connection from 172.18.0.3 on port 1883. -1612500280: Sending CONNACK to 172.18.0.3 (0, 5) -1612500280: Socket error on client , disconnecting. -1612500300: New connection from 172.18.0.3 on port 1883. -1612500300: Sending CONNACK to 172.18.0.3 (0, 5) -1612500300: Socket error on client , disconnecting. -1612500320: New connection from 172.18.0.3 on port 1883. -1612500320: Sending CONNACK to 172.18.0.3 (0, 5) -1612500320: Socket error on client , disconnecting. -1612500340: New connection from 172.18.0.3 on port 1883. -1612500340: Sending CONNACK to 172.18.0.3 (0, 5) -1612500340: Socket error on client , disconnecting. -1612500360: New connection from 172.18.0.3 on port 1883. -1612500360: Sending CONNACK to 172.18.0.3 (0, 5) -1612500360: Socket error on client , disconnecting. -1612500380: New connection from 172.18.0.3 on port 1883. -1612500380: Sending CONNACK to 172.18.0.3 (0, 5) -1612500380: Socket error on client , disconnecting. -1612500400: New connection from 172.18.0.3 on port 1883. -1612500400: Sending CONNACK to 172.18.0.3 (0, 5) -1612500400: Socket error on client , disconnecting. -1612500420: New connection from 172.18.0.3 on port 1883. -1612500420: Sending CONNACK to 172.18.0.3 (0, 5) -1612500420: Socket error on client , disconnecting. -1612500440: New connection from 172.18.0.3 on port 1883. -1612500440: Sending CONNACK to 172.18.0.3 (0, 5) -1612500440: Socket error on client , disconnecting. -1612500447: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612500447: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612500447: Error: Permission denied. -1612500460: New connection from 172.18.0.3 on port 1883. -1612500460: Sending CONNACK to 172.18.0.3 (0, 5) -1612500460: Socket error on client , disconnecting. -1612500480: New connection from 172.18.0.3 on port 1883. -1612500480: Sending CONNACK to 172.18.0.3 (0, 5) -1612500480: Socket error on client , disconnecting. -1612500500: New connection from 172.18.0.3 on port 1883. -1612500500: Sending CONNACK to 172.18.0.3 (0, 5) -1612500500: Socket error on client , disconnecting. -1612500520: New connection from 172.18.0.3 on port 1883. -1612500520: Sending CONNACK to 172.18.0.3 (0, 5) -1612500520: Socket error on client , disconnecting. -1612500540: New connection from 172.18.0.3 on port 1883. -1612500540: Sending CONNACK to 172.18.0.3 (0, 5) -1612500540: Socket error on client , disconnecting. -1612500560: New connection from 172.18.0.3 on port 1883. -1612500560: Sending CONNACK to 172.18.0.3 (0, 5) -1612500560: Socket error on client , disconnecting. -1612500580: New connection from 172.18.0.3 on port 1883. -1612500580: Sending CONNACK to 172.18.0.3 (0, 5) -1612500580: Socket error on client , disconnecting. -1612500600: New connection from 172.18.0.3 on port 1883. -1612500600: Sending CONNACK to 172.18.0.3 (0, 5) -1612500600: Socket error on client , disconnecting. -1612500620: New connection from 172.18.0.3 on port 1883. -1612500620: Sending CONNACK to 172.18.0.3 (0, 5) -1612500620: Socket error on client , disconnecting. -1612500640: New connection from 172.18.0.3 on port 1883. -1612500640: Sending CONNACK to 172.18.0.3 (0, 5) -1612500640: Socket error on client , disconnecting. -1612500660: New connection from 172.18.0.3 on port 1883. -1612500660: Sending CONNACK to 172.18.0.3 (0, 5) -1612500660: Socket error on client , disconnecting. -1612500680: New connection from 172.18.0.3 on port 1883. -1612500680: Sending CONNACK to 172.18.0.3 (0, 5) -1612500680: Socket error on client , disconnecting. -1612500700: New connection from 172.18.0.3 on port 1883. -1612500700: Sending CONNACK to 172.18.0.3 (0, 5) -1612500700: Socket error on client , disconnecting. -1612500720: New connection from 172.18.0.3 on port 1883. -1612500720: Sending CONNACK to 172.18.0.3 (0, 5) -1612500720: Socket error on client , disconnecting. -1612500740: New connection from 172.18.0.3 on port 1883. -1612500740: Sending CONNACK to 172.18.0.3 (0, 5) -1612500740: Socket error on client , disconnecting. -1612500760: New connection from 172.18.0.3 on port 1883. -1612500760: Sending CONNACK to 172.18.0.3 (0, 5) -1612500760: Socket error on client , disconnecting. -1612500780: New connection from 172.18.0.3 on port 1883. -1612500780: Sending CONNACK to 172.18.0.3 (0, 5) -1612500780: Socket error on client , disconnecting. -1612500800: New connection from 172.18.0.3 on port 1883. -1612500800: Sending CONNACK to 172.18.0.3 (0, 5) -1612500800: Socket error on client , disconnecting. -1612500820: New connection from 172.18.0.3 on port 1883. -1612500820: Sending CONNACK to 172.18.0.3 (0, 5) -1612500820: Socket error on client , disconnecting. -1612500840: New connection from 172.18.0.3 on port 1883. -1612500840: Sending CONNACK to 172.18.0.3 (0, 5) -1612500840: Socket error on client , disconnecting. -1612500860: New connection from 172.18.0.3 on port 1883. -1612500860: Sending CONNACK to 172.18.0.3 (0, 5) -1612500860: Socket error on client , disconnecting. -1612500880: New connection from 172.18.0.3 on port 1883. -1612500880: Sending CONNACK to 172.18.0.3 (0, 5) -1612500880: Socket error on client , disconnecting. -1612500900: New connection from 172.18.0.3 on port 1883. -1612500900: Sending CONNACK to 172.18.0.3 (0, 5) -1612500900: Socket error on client , disconnecting. -1612500920: New connection from 172.18.0.3 on port 1883. -1612500920: Sending CONNACK to 172.18.0.3 (0, 5) -1612500920: Socket error on client , disconnecting. -1612500940: New connection from 172.18.0.3 on port 1883. -1612500940: Sending CONNACK to 172.18.0.3 (0, 5) -1612500940: Socket error on client , disconnecting. -1612500960: New connection from 172.18.0.3 on port 1883. -1612500960: Sending CONNACK to 172.18.0.3 (0, 5) -1612500960: Socket error on client , disconnecting. -1612500980: New connection from 172.18.0.3 on port 1883. -1612500980: Sending CONNACK to 172.18.0.3 (0, 5) -1612500980: Socket error on client , disconnecting. -1612501000: New connection from 172.18.0.3 on port 1883. -1612501000: Sending CONNACK to 172.18.0.3 (0, 5) -1612501000: Socket error on client , disconnecting. -1612501020: New connection from 172.18.0.3 on port 1883. -1612501020: Sending CONNACK to 172.18.0.3 (0, 5) -1612501020: Socket error on client , disconnecting. -1612501040: New connection from 172.18.0.3 on port 1883. -1612501040: Sending CONNACK to 172.18.0.3 (0, 5) -1612501040: Socket error on client , disconnecting. -1612501060: New connection from 172.18.0.3 on port 1883. -1612501060: Sending CONNACK to 172.18.0.3 (0, 5) -1612501060: Socket error on client , disconnecting. -1612501080: New connection from 172.18.0.3 on port 1883. -1612501080: Sending CONNACK to 172.18.0.3 (0, 5) -1612501080: Socket error on client , disconnecting. -1612501100: New connection from 172.18.0.3 on port 1883. -1612501100: Sending CONNACK to 172.18.0.3 (0, 5) -1612501100: Socket error on client , disconnecting. -1612501120: New connection from 172.18.0.3 on port 1883. -1612501120: Sending CONNACK to 172.18.0.3 (0, 5) -1612501120: Socket error on client , disconnecting. -1612501140: New connection from 172.18.0.3 on port 1883. -1612501140: Sending CONNACK to 172.18.0.3 (0, 5) -1612501140: Socket error on client , disconnecting. -1612501160: New connection from 172.18.0.3 on port 1883. -1612501160: Sending CONNACK to 172.18.0.3 (0, 5) -1612501160: Socket error on client , disconnecting. -1612501180: New connection from 172.18.0.3 on port 1883. -1612501180: Sending CONNACK to 172.18.0.3 (0, 5) -1612501180: Socket error on client , disconnecting. -1612501200: New connection from 172.18.0.3 on port 1883. -1612501200: Sending CONNACK to 172.18.0.3 (0, 5) -1612501200: Socket error on client , disconnecting. -1612501220: New connection from 172.18.0.3 on port 1883. -1612501220: Sending CONNACK to 172.18.0.3 (0, 5) -1612501220: Socket error on client , disconnecting. -1612501240: New connection from 172.18.0.3 on port 1883. -1612501240: Sending CONNACK to 172.18.0.3 (0, 5) -1612501240: Socket error on client , disconnecting. -1612501260: New connection from 172.18.0.3 on port 1883. -1612501260: Sending CONNACK to 172.18.0.3 (0, 5) -1612501260: Socket error on client , disconnecting. -1612501280: New connection from 172.18.0.3 on port 1883. -1612501280: Sending CONNACK to 172.18.0.3 (0, 5) -1612501280: Socket error on client , disconnecting. -1612501300: New connection from 172.18.0.3 on port 1883. -1612501300: Sending CONNACK to 172.18.0.3 (0, 5) -1612501300: Socket error on client , disconnecting. -1612501320: New connection from 172.18.0.3 on port 1883. -1612501320: Sending CONNACK to 172.18.0.3 (0, 5) -1612501320: Socket error on client , disconnecting. -1612501340: New connection from 172.18.0.3 on port 1883. -1612501340: Sending CONNACK to 172.18.0.3 (0, 5) -1612501340: Socket error on client , disconnecting. -1612501360: New connection from 172.18.0.3 on port 1883. -1612501360: Sending CONNACK to 172.18.0.3 (0, 5) -1612501360: Socket error on client , disconnecting. -1612501380: New connection from 172.18.0.3 on port 1883. -1612501380: Sending CONNACK to 172.18.0.3 (0, 5) -1612501380: Socket error on client , disconnecting. -1612501400: New connection from 172.18.0.3 on port 1883. -1612501400: Sending CONNACK to 172.18.0.3 (0, 5) -1612501400: Socket error on client , disconnecting. -1612501420: New connection from 172.18.0.3 on port 1883. -1612501420: Sending CONNACK to 172.18.0.3 (0, 5) -1612501420: Socket error on client , disconnecting. -1612501440: New connection from 172.18.0.3 on port 1883. -1612501440: Sending CONNACK to 172.18.0.3 (0, 5) -1612501440: Socket error on client , disconnecting. -1612501460: New connection from 172.18.0.3 on port 1883. -1612501460: Sending CONNACK to 172.18.0.3 (0, 5) -1612501460: Socket error on client , disconnecting. -1612501480: New connection from 172.18.0.3 on port 1883. -1612501480: Sending CONNACK to 172.18.0.3 (0, 5) -1612501480: Socket error on client , disconnecting. -1612501500: New connection from 172.18.0.3 on port 1883. -1612501500: Sending CONNACK to 172.18.0.3 (0, 5) -1612501500: Socket error on client , disconnecting. -1612501520: New connection from 172.18.0.3 on port 1883. -1612501520: Sending CONNACK to 172.18.0.3 (0, 5) -1612501520: Socket error on client , disconnecting. -1612501540: New connection from 172.18.0.3 on port 1883. -1612501540: Sending CONNACK to 172.18.0.3 (0, 5) -1612501540: Socket error on client , disconnecting. -1612501560: New connection from 172.18.0.3 on port 1883. -1612501560: Sending CONNACK to 172.18.0.3 (0, 5) -1612501560: Socket error on client , disconnecting. -1612501580: New connection from 172.18.0.3 on port 1883. -1612501580: Sending CONNACK to 172.18.0.3 (0, 5) -1612501580: Socket error on client , disconnecting. -1612501600: New connection from 172.18.0.3 on port 1883. -1612501600: Sending CONNACK to 172.18.0.3 (0, 5) -1612501600: Socket error on client , disconnecting. -1612501620: New connection from 172.18.0.3 on port 1883. -1612501620: Sending CONNACK to 172.18.0.3 (0, 5) -1612501620: Socket error on client , disconnecting. -1612501640: New connection from 172.18.0.3 on port 1883. -1612501640: Sending CONNACK to 172.18.0.3 (0, 5) -1612501640: Socket error on client , disconnecting. -1612501660: New connection from 172.18.0.3 on port 1883. -1612501660: Sending CONNACK to 172.18.0.3 (0, 5) -1612501660: Socket error on client , disconnecting. -1612501680: New connection from 172.18.0.3 on port 1883. -1612501680: Sending CONNACK to 172.18.0.3 (0, 5) -1612501680: Socket error on client , disconnecting. -1612501700: New connection from 172.18.0.3 on port 1883. -1612501700: Sending CONNACK to 172.18.0.3 (0, 5) -1612501700: Socket error on client , disconnecting. -1612501720: New connection from 172.18.0.3 on port 1883. -1612501720: Sending CONNACK to 172.18.0.3 (0, 5) -1612501720: Socket error on client , disconnecting. -1612501740: New connection from 172.18.0.3 on port 1883. -1612501740: Sending CONNACK to 172.18.0.3 (0, 5) -1612501740: Socket error on client , disconnecting. -1612501760: New connection from 172.18.0.3 on port 1883. -1612501760: Sending CONNACK to 172.18.0.3 (0, 5) -1612501760: Socket error on client , disconnecting. -1612501780: New connection from 172.18.0.3 on port 1883. -1612501780: Sending CONNACK to 172.18.0.3 (0, 5) -1612501780: Socket error on client , disconnecting. -1612501800: New connection from 172.18.0.3 on port 1883. -1612501800: Sending CONNACK to 172.18.0.3 (0, 5) -1612501800: Socket error on client , disconnecting. -1612501820: New connection from 172.18.0.3 on port 1883. -1612501820: Sending CONNACK to 172.18.0.3 (0, 5) -1612501820: Socket error on client , disconnecting. -1612501840: New connection from 172.18.0.3 on port 1883. -1612501840: Sending CONNACK to 172.18.0.3 (0, 5) -1612501840: Socket error on client , disconnecting. -1612501860: New connection from 172.18.0.3 on port 1883. -1612501860: Sending CONNACK to 172.18.0.3 (0, 5) -1612501860: Socket error on client , disconnecting. -1612501880: New connection from 172.18.0.3 on port 1883. -1612501880: Sending CONNACK to 172.18.0.3 (0, 5) -1612501880: Socket error on client , disconnecting. -1612501900: New connection from 172.18.0.3 on port 1883. -1612501900: Sending CONNACK to 172.18.0.3 (0, 5) -1612501900: Socket error on client , disconnecting. -1612501920: New connection from 172.18.0.3 on port 1883. -1612501920: Sending CONNACK to 172.18.0.3 (0, 5) -1612501920: Socket error on client , disconnecting. -1612501940: New connection from 172.18.0.3 on port 1883. -1612501940: Sending CONNACK to 172.18.0.3 (0, 5) -1612501940: Socket error on client , disconnecting. -1612501960: New connection from 172.18.0.3 on port 1883. -1612501960: Sending CONNACK to 172.18.0.3 (0, 5) -1612501960: Socket error on client , disconnecting. -1612501980: New connection from 172.18.0.3 on port 1883. -1612501980: Sending CONNACK to 172.18.0.3 (0, 5) -1612501980: Socket error on client , disconnecting. -1612502000: New connection from 172.18.0.3 on port 1883. -1612502000: Sending CONNACK to 172.18.0.3 (0, 5) -1612502000: Socket error on client , disconnecting. -1612502020: New connection from 172.18.0.3 on port 1883. -1612502020: Sending CONNACK to 172.18.0.3 (0, 5) -1612502020: Socket error on client , disconnecting. -1612502040: New connection from 172.18.0.3 on port 1883. -1612502040: Sending CONNACK to 172.18.0.3 (0, 5) -1612502040: Socket error on client , disconnecting. -1612502060: New connection from 172.18.0.3 on port 1883. -1612502060: Sending CONNACK to 172.18.0.3 (0, 5) -1612502060: Socket error on client , disconnecting. -1612502080: New connection from 172.18.0.3 on port 1883. -1612502080: Sending CONNACK to 172.18.0.3 (0, 5) -1612502080: Socket error on client , disconnecting. -1612502100: New connection from 172.18.0.3 on port 1883. -1612502100: Sending CONNACK to 172.18.0.3 (0, 5) -1612502100: Socket error on client , disconnecting. -1612502120: New connection from 172.18.0.3 on port 1883. -1612502120: Sending CONNACK to 172.18.0.3 (0, 5) -1612502120: Socket error on client , disconnecting. -1612502140: New connection from 172.18.0.3 on port 1883. -1612502140: Sending CONNACK to 172.18.0.3 (0, 5) -1612502140: Socket error on client , disconnecting. -1612502160: New connection from 172.18.0.3 on port 1883. -1612502160: Sending CONNACK to 172.18.0.3 (0, 5) -1612502160: Socket error on client , disconnecting. -1612502180: New connection from 172.18.0.3 on port 1883. -1612502180: Sending CONNACK to 172.18.0.3 (0, 5) -1612502180: Socket error on client , disconnecting. -1612502200: New connection from 172.18.0.3 on port 1883. -1612502200: Sending CONNACK to 172.18.0.3 (0, 5) -1612502200: Socket error on client , disconnecting. -1612502220: New connection from 172.18.0.3 on port 1883. -1612502220: Sending CONNACK to 172.18.0.3 (0, 5) -1612502220: Socket error on client , disconnecting. -1612502240: New connection from 172.18.0.3 on port 1883. -1612502240: Sending CONNACK to 172.18.0.3 (0, 5) -1612502240: Socket error on client , disconnecting. -1612502248: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612502248: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612502248: Error: Permission denied. -1612502260: New connection from 172.18.0.3 on port 1883. -1612502260: Sending CONNACK to 172.18.0.3 (0, 5) -1612502260: Socket error on client , disconnecting. -1612502280: New connection from 172.18.0.3 on port 1883. -1612502280: Sending CONNACK to 172.18.0.3 (0, 5) -1612502280: Socket error on client , disconnecting. -1612502300: New connection from 172.18.0.3 on port 1883. -1612502300: Sending CONNACK to 172.18.0.3 (0, 5) -1612502300: Socket error on client , disconnecting. -1612502320: New connection from 172.18.0.3 on port 1883. -1612502320: Sending CONNACK to 172.18.0.3 (0, 5) -1612502320: Socket error on client , disconnecting. -1612502340: New connection from 172.18.0.3 on port 1883. -1612502340: Sending CONNACK to 172.18.0.3 (0, 5) -1612502340: Socket error on client , disconnecting. -1612502360: New connection from 172.18.0.3 on port 1883. -1612502360: Sending CONNACK to 172.18.0.3 (0, 5) -1612502360: Socket error on client , disconnecting. -1612502380: New connection from 172.18.0.3 on port 1883. -1612502380: Sending CONNACK to 172.18.0.3 (0, 5) -1612502380: Socket error on client , disconnecting. -1612502400: New connection from 172.18.0.3 on port 1883. -1612502400: Sending CONNACK to 172.18.0.3 (0, 5) -1612502400: Socket error on client , disconnecting. -1612502420: New connection from 172.18.0.3 on port 1883. -1612502420: Sending CONNACK to 172.18.0.3 (0, 5) -1612502420: Socket error on client , disconnecting. -1612502440: New connection from 172.18.0.3 on port 1883. -1612502440: Sending CONNACK to 172.18.0.3 (0, 5) -1612502440: Socket error on client , disconnecting. -1612502460: New connection from 172.18.0.3 on port 1883. -1612502460: Sending CONNACK to 172.18.0.3 (0, 5) -1612502460: Socket error on client , disconnecting. -1612502480: New connection from 172.18.0.3 on port 1883. -1612502480: Sending CONNACK to 172.18.0.3 (0, 5) -1612502480: Socket error on client , disconnecting. -1612502500: New connection from 172.18.0.3 on port 1883. -1612502500: Sending CONNACK to 172.18.0.3 (0, 5) -1612502500: Socket error on client , disconnecting. -1612502520: New connection from 172.18.0.3 on port 1883. -1612502520: Sending CONNACK to 172.18.0.3 (0, 5) -1612502520: Socket error on client , disconnecting. -1612502540: New connection from 172.18.0.3 on port 1883. -1612502540: Sending CONNACK to 172.18.0.3 (0, 5) -1612502540: Socket error on client , disconnecting. -1612502560: New connection from 172.18.0.3 on port 1883. -1612502560: Sending CONNACK to 172.18.0.3 (0, 5) -1612502560: Socket error on client , disconnecting. -1612502580: New connection from 172.18.0.3 on port 1883. -1612502580: Sending CONNACK to 172.18.0.3 (0, 5) -1612502580: Socket error on client , disconnecting. -1612502600: New connection from 172.18.0.3 on port 1883. -1612502600: Sending CONNACK to 172.18.0.3 (0, 5) -1612502600: Socket error on client , disconnecting. -1612502620: New connection from 172.18.0.3 on port 1883. -1612502620: Sending CONNACK to 172.18.0.3 (0, 5) -1612502620: Socket error on client , disconnecting. -1612502640: New connection from 172.18.0.3 on port 1883. -1612502640: Sending CONNACK to 172.18.0.3 (0, 5) -1612502640: Socket error on client , disconnecting. -1612502660: New connection from 172.18.0.3 on port 1883. -1612502660: Sending CONNACK to 172.18.0.3 (0, 5) -1612502660: Socket error on client , disconnecting. -1612502680: New connection from 172.18.0.3 on port 1883. -1612502680: Sending CONNACK to 172.18.0.3 (0, 5) -1612502680: Socket error on client , disconnecting. -1612502700: New connection from 172.18.0.3 on port 1883. -1612502700: Sending CONNACK to 172.18.0.3 (0, 5) -1612502700: Socket error on client , disconnecting. -1612502720: New connection from 172.18.0.3 on port 1883. -1612502720: Sending CONNACK to 172.18.0.3 (0, 5) -1612502720: Socket error on client , disconnecting. -1612502740: New connection from 172.18.0.3 on port 1883. -1612502740: Sending CONNACK to 172.18.0.3 (0, 5) -1612502740: Socket error on client , disconnecting. -1612502760: New connection from 172.18.0.3 on port 1883. -1612502760: Sending CONNACK to 172.18.0.3 (0, 5) -1612502760: Socket error on client , disconnecting. -1612502780: New connection from 172.18.0.3 on port 1883. -1612502780: Sending CONNACK to 172.18.0.3 (0, 5) -1612502780: Socket error on client , disconnecting. -1612502800: New connection from 172.18.0.3 on port 1883. -1612502800: Sending CONNACK to 172.18.0.3 (0, 5) -1612502800: Socket error on client , disconnecting. -1612502820: New connection from 172.18.0.3 on port 1883. -1612502820: Sending CONNACK to 172.18.0.3 (0, 5) -1612502820: Socket error on client , disconnecting. -1612502840: New connection from 172.18.0.3 on port 1883. -1612502840: Sending CONNACK to 172.18.0.3 (0, 5) -1612502840: Socket error on client , disconnecting. -1612502860: New connection from 172.18.0.3 on port 1883. -1612502860: Sending CONNACK to 172.18.0.3 (0, 5) -1612502860: Socket error on client , disconnecting. -1612502880: New connection from 172.18.0.3 on port 1883. -1612502880: Sending CONNACK to 172.18.0.3 (0, 5) -1612502880: Socket error on client , disconnecting. -1612502900: New connection from 172.18.0.3 on port 1883. -1612502900: Sending CONNACK to 172.18.0.3 (0, 5) -1612502900: Socket error on client , disconnecting. -1612502920: New connection from 172.18.0.3 on port 1883. -1612502920: Sending CONNACK to 172.18.0.3 (0, 5) -1612502920: Socket error on client , disconnecting. -1612502940: New connection from 172.18.0.3 on port 1883. -1612502940: Sending CONNACK to 172.18.0.3 (0, 5) -1612502940: Socket error on client , disconnecting. -1612502960: New connection from 172.18.0.3 on port 1883. -1612502960: Sending CONNACK to 172.18.0.3 (0, 5) -1612502960: Socket error on client , disconnecting. -1612502980: New connection from 172.18.0.3 on port 1883. -1612502980: Sending CONNACK to 172.18.0.3 (0, 5) -1612502980: Socket error on client , disconnecting. -1612503000: New connection from 172.18.0.3 on port 1883. -1612503000: Sending CONNACK to 172.18.0.3 (0, 5) -1612503000: Socket error on client , disconnecting. -1612503020: New connection from 172.18.0.3 on port 1883. -1612503020: Sending CONNACK to 172.18.0.3 (0, 5) -1612503020: Socket error on client , disconnecting. -1612503040: New connection from 172.18.0.3 on port 1883. -1612503040: Sending CONNACK to 172.18.0.3 (0, 5) -1612503040: Socket error on client , disconnecting. -1612503060: New connection from 172.18.0.3 on port 1883. -1612503060: Sending CONNACK to 172.18.0.3 (0, 5) -1612503060: Socket error on client , disconnecting. -1612503080: New connection from 172.18.0.3 on port 1883. -1612503080: Sending CONNACK to 172.18.0.3 (0, 5) -1612503080: Socket error on client , disconnecting. -1612503100: New connection from 172.18.0.3 on port 1883. -1612503100: Sending CONNACK to 172.18.0.3 (0, 5) -1612503100: Socket error on client , disconnecting. -1612503120: New connection from 172.18.0.3 on port 1883. -1612503120: Sending CONNACK to 172.18.0.3 (0, 5) -1612503120: Socket error on client , disconnecting. -1612503140: New connection from 172.18.0.3 on port 1883. -1612503140: Sending CONNACK to 172.18.0.3 (0, 5) -1612503140: Socket error on client , disconnecting. -1612503160: New connection from 172.18.0.3 on port 1883. -1612503160: Sending CONNACK to 172.18.0.3 (0, 5) -1612503160: Socket error on client , disconnecting. -1612503180: New connection from 172.18.0.3 on port 1883. -1612503180: Sending CONNACK to 172.18.0.3 (0, 5) -1612503180: Socket error on client , disconnecting. -1612503200: New connection from 172.18.0.3 on port 1883. -1612503200: Sending CONNACK to 172.18.0.3 (0, 5) -1612503200: Socket error on client , disconnecting. -1612503220: New connection from 172.18.0.3 on port 1883. -1612503220: Sending CONNACK to 172.18.0.3 (0, 5) -1612503220: Socket error on client , disconnecting. -1612503240: New connection from 172.18.0.3 on port 1883. -1612503240: Sending CONNACK to 172.18.0.3 (0, 5) -1612503240: Socket error on client , disconnecting. -1612503260: New connection from 172.18.0.3 on port 1883. -1612503260: Sending CONNACK to 172.18.0.3 (0, 5) -1612503260: Socket error on client , disconnecting. -1612503280: New connection from 172.18.0.3 on port 1883. -1612503280: Sending CONNACK to 172.18.0.3 (0, 5) -1612503280: Socket error on client , disconnecting. -1612503300: New connection from 172.18.0.3 on port 1883. -1612503300: Sending CONNACK to 172.18.0.3 (0, 5) -1612503300: Socket error on client , disconnecting. -1612503320: New connection from 172.18.0.3 on port 1883. -1612503320: Sending CONNACK to 172.18.0.3 (0, 5) -1612503320: Socket error on client , disconnecting. -1612503340: New connection from 172.18.0.3 on port 1883. -1612503340: Sending CONNACK to 172.18.0.3 (0, 5) -1612503340: Socket error on client , disconnecting. -1612503360: New connection from 172.18.0.3 on port 1883. -1612503360: Sending CONNACK to 172.18.0.3 (0, 5) -1612503360: Socket error on client , disconnecting. -1612503380: New connection from 172.18.0.3 on port 1883. -1612503380: Sending CONNACK to 172.18.0.3 (0, 5) -1612503380: Socket error on client , disconnecting. -1612503400: New connection from 172.18.0.3 on port 1883. -1612503400: Sending CONNACK to 172.18.0.3 (0, 5) -1612503400: Socket error on client , disconnecting. -1612503420: New connection from 172.18.0.3 on port 1883. -1612503420: Sending CONNACK to 172.18.0.3 (0, 5) -1612503420: Socket error on client , disconnecting. -1612503440: New connection from 172.18.0.3 on port 1883. -1612503440: Sending CONNACK to 172.18.0.3 (0, 5) -1612503440: Socket error on client , disconnecting. -1612503460: New connection from 172.18.0.3 on port 1883. -1612503460: Sending CONNACK to 172.18.0.3 (0, 5) -1612503460: Socket error on client , disconnecting. -1612503480: New connection from 172.18.0.3 on port 1883. -1612503480: Sending CONNACK to 172.18.0.3 (0, 5) -1612503480: Socket error on client , disconnecting. -1612503500: New connection from 172.18.0.3 on port 1883. -1612503500: Sending CONNACK to 172.18.0.3 (0, 5) -1612503500: Socket error on client , disconnecting. -1612503520: New connection from 172.18.0.3 on port 1883. -1612503520: Sending CONNACK to 172.18.0.3 (0, 5) -1612503520: Socket error on client , disconnecting. -1612503540: New connection from 172.18.0.3 on port 1883. -1612503540: Sending CONNACK to 172.18.0.3 (0, 5) -1612503540: Socket error on client , disconnecting. -1612503560: New connection from 172.18.0.3 on port 1883. -1612503560: Sending CONNACK to 172.18.0.3 (0, 5) -1612503560: Socket error on client , disconnecting. -1612503580: New connection from 172.18.0.3 on port 1883. -1612503580: Sending CONNACK to 172.18.0.3 (0, 5) -1612503580: Socket error on client , disconnecting. -1612503600: New connection from 172.18.0.3 on port 1883. -1612503600: Sending CONNACK to 172.18.0.3 (0, 5) -1612503600: Socket error on client , disconnecting. -1612503620: New connection from 172.18.0.3 on port 1883. -1612503620: Sending CONNACK to 172.18.0.3 (0, 5) -1612503620: Socket error on client , disconnecting. -1612503640: New connection from 172.18.0.3 on port 1883. -1612503640: Sending CONNACK to 172.18.0.3 (0, 5) -1612503640: Socket error on client , disconnecting. -1612503660: New connection from 172.18.0.3 on port 1883. -1612503660: Sending CONNACK to 172.18.0.3 (0, 5) -1612503660: Socket error on client , disconnecting. -1612503680: New connection from 172.18.0.3 on port 1883. -1612503680: Sending CONNACK to 172.18.0.3 (0, 5) -1612503680: Socket error on client , disconnecting. -1612503700: New connection from 172.18.0.3 on port 1883. -1612503700: Sending CONNACK to 172.18.0.3 (0, 5) -1612503700: Socket error on client , disconnecting. -1612503720: New connection from 172.18.0.3 on port 1883. -1612503720: Sending CONNACK to 172.18.0.3 (0, 5) -1612503720: Socket error on client , disconnecting. -1612503740: New connection from 172.18.0.3 on port 1883. -1612503740: Sending CONNACK to 172.18.0.3 (0, 5) -1612503740: Socket error on client , disconnecting. -1612503760: New connection from 172.18.0.3 on port 1883. -1612503760: Sending CONNACK to 172.18.0.3 (0, 5) -1612503760: Socket error on client , disconnecting. -1612503780: New connection from 172.18.0.3 on port 1883. -1612503780: Sending CONNACK to 172.18.0.3 (0, 5) -1612503780: Socket error on client , disconnecting. -1612503800: New connection from 172.18.0.3 on port 1883. -1612503800: Sending CONNACK to 172.18.0.3 (0, 5) -1612503800: Socket error on client , disconnecting. -1612503820: New connection from 172.18.0.3 on port 1883. -1612503820: Sending CONNACK to 172.18.0.3 (0, 5) -1612503820: Socket error on client , disconnecting. -1612503840: New connection from 172.18.0.3 on port 1883. -1612503840: Sending CONNACK to 172.18.0.3 (0, 5) -1612503840: Socket error on client , disconnecting. -1612503860: New connection from 172.18.0.3 on port 1883. -1612503860: Sending CONNACK to 172.18.0.3 (0, 5) -1612503860: Socket error on client , disconnecting. -1612503880: New connection from 172.18.0.3 on port 1883. -1612503880: Sending CONNACK to 172.18.0.3 (0, 5) -1612503880: Socket error on client , disconnecting. -1612503900: New connection from 172.18.0.3 on port 1883. -1612503900: Sending CONNACK to 172.18.0.3 (0, 5) -1612503900: Socket error on client , disconnecting. -1612503920: New connection from 172.18.0.3 on port 1883. -1612503920: Sending CONNACK to 172.18.0.3 (0, 5) -1612503920: Socket error on client , disconnecting. -1612503940: New connection from 172.18.0.3 on port 1883. -1612503940: Sending CONNACK to 172.18.0.3 (0, 5) -1612503940: Socket error on client , disconnecting. -1612503960: New connection from 172.18.0.3 on port 1883. -1612503960: Sending CONNACK to 172.18.0.3 (0, 5) -1612503960: Socket error on client , disconnecting. -1612503980: New connection from 172.18.0.3 on port 1883. -1612503980: Sending CONNACK to 172.18.0.3 (0, 5) -1612503980: Socket error on client , disconnecting. -1612504000: New connection from 172.18.0.3 on port 1883. -1612504000: Sending CONNACK to 172.18.0.3 (0, 5) -1612504000: Socket error on client , disconnecting. -1612504020: New connection from 172.18.0.3 on port 1883. -1612504020: Sending CONNACK to 172.18.0.3 (0, 5) -1612504020: Socket error on client , disconnecting. -1612504040: New connection from 172.18.0.3 on port 1883. -1612504040: Sending CONNACK to 172.18.0.3 (0, 5) -1612504040: Socket error on client , disconnecting. -1612504049: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612504049: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612504049: Error: Permission denied. -1612504060: New connection from 172.18.0.3 on port 1883. -1612504060: Sending CONNACK to 172.18.0.3 (0, 5) -1612504060: Socket error on client , disconnecting. -1612504080: New connection from 172.18.0.3 on port 1883. -1612504080: Sending CONNACK to 172.18.0.3 (0, 5) -1612504080: Socket error on client , disconnecting. -1612504100: New connection from 172.18.0.3 on port 1883. -1612504100: Sending CONNACK to 172.18.0.3 (0, 5) -1612504100: Socket error on client , disconnecting. -1612504120: New connection from 172.18.0.3 on port 1883. -1612504120: Sending CONNACK to 172.18.0.3 (0, 5) -1612504120: Socket error on client , disconnecting. -1612504140: New connection from 172.18.0.3 on port 1883. -1612504140: Sending CONNACK to 172.18.0.3 (0, 5) -1612504140: Socket error on client , disconnecting. -1612504160: New connection from 172.18.0.3 on port 1883. -1612504160: Sending CONNACK to 172.18.0.3 (0, 5) -1612504160: Socket error on client , disconnecting. -1612504180: New connection from 172.18.0.3 on port 1883. -1612504180: Sending CONNACK to 172.18.0.3 (0, 5) -1612504180: Socket error on client , disconnecting. -1612504200: New connection from 172.18.0.3 on port 1883. -1612504200: Sending CONNACK to 172.18.0.3 (0, 5) -1612504200: Socket error on client , disconnecting. -1612504220: New connection from 172.18.0.3 on port 1883. -1612504220: Sending CONNACK to 172.18.0.3 (0, 5) -1612504220: Socket error on client , disconnecting. -1612504240: New connection from 172.18.0.3 on port 1883. -1612504240: Sending CONNACK to 172.18.0.3 (0, 5) -1612504240: Socket error on client , disconnecting. -1612504260: New connection from 172.18.0.3 on port 1883. -1612504260: Sending CONNACK to 172.18.0.3 (0, 5) -1612504260: Socket error on client , disconnecting. -1612504280: New connection from 172.18.0.3 on port 1883. -1612504280: Sending CONNACK to 172.18.0.3 (0, 5) -1612504280: Socket error on client , disconnecting. -1612504300: New connection from 172.18.0.3 on port 1883. -1612504300: Sending CONNACK to 172.18.0.3 (0, 5) -1612504300: Socket error on client , disconnecting. -1612504320: New connection from 172.18.0.3 on port 1883. -1612504320: Sending CONNACK to 172.18.0.3 (0, 5) -1612504320: Socket error on client , disconnecting. -1612504340: New connection from 172.18.0.3 on port 1883. -1612504340: Sending CONNACK to 172.18.0.3 (0, 5) -1612504340: Socket error on client , disconnecting. -1612504360: New connection from 172.18.0.3 on port 1883. -1612504360: Sending CONNACK to 172.18.0.3 (0, 5) -1612504360: Socket error on client , disconnecting. -1612504380: New connection from 172.18.0.3 on port 1883. -1612504380: Sending CONNACK to 172.18.0.3 (0, 5) -1612504380: Socket error on client , disconnecting. -1612504400: New connection from 172.18.0.3 on port 1883. -1612504400: Sending CONNACK to 172.18.0.3 (0, 5) -1612504400: Socket error on client , disconnecting. -1612504420: New connection from 172.18.0.3 on port 1883. -1612504420: Sending CONNACK to 172.18.0.3 (0, 5) -1612504420: Socket error on client , disconnecting. -1612504440: New connection from 172.18.0.3 on port 1883. -1612504440: Sending CONNACK to 172.18.0.3 (0, 5) -1612504440: Socket error on client , disconnecting. -1612504460: New connection from 172.18.0.3 on port 1883. -1612504460: Sending CONNACK to 172.18.0.3 (0, 5) -1612504460: Socket error on client , disconnecting. -1612504480: New connection from 172.18.0.3 on port 1883. -1612504480: Sending CONNACK to 172.18.0.3 (0, 5) -1612504480: Socket error on client , disconnecting. -1612504500: New connection from 172.18.0.3 on port 1883. -1612504500: Sending CONNACK to 172.18.0.3 (0, 5) -1612504500: Socket error on client , disconnecting. -1612504520: New connection from 172.18.0.3 on port 1883. -1612504520: Sending CONNACK to 172.18.0.3 (0, 5) -1612504520: Socket error on client , disconnecting. -1612504540: New connection from 172.18.0.3 on port 1883. -1612504540: Sending CONNACK to 172.18.0.3 (0, 5) -1612504540: Socket error on client , disconnecting. -1612504560: New connection from 172.18.0.3 on port 1883. -1612504560: Sending CONNACK to 172.18.0.3 (0, 5) -1612504560: Socket error on client , disconnecting. -1612504580: New connection from 172.18.0.3 on port 1883. -1612504580: Sending CONNACK to 172.18.0.3 (0, 5) -1612504580: Socket error on client , disconnecting. -1612504600: New connection from 172.18.0.3 on port 1883. -1612504600: Sending CONNACK to 172.18.0.3 (0, 5) -1612504600: Socket error on client , disconnecting. -1612504620: New connection from 172.18.0.3 on port 1883. -1612504620: Sending CONNACK to 172.18.0.3 (0, 5) -1612504620: Socket error on client , disconnecting. -1612504640: New connection from 172.18.0.3 on port 1883. -1612504640: Sending CONNACK to 172.18.0.3 (0, 5) -1612504640: Socket error on client , disconnecting. -1612504660: New connection from 172.18.0.3 on port 1883. -1612504660: Sending CONNACK to 172.18.0.3 (0, 5) -1612504660: Socket error on client , disconnecting. -1612504680: New connection from 172.18.0.3 on port 1883. -1612504680: Sending CONNACK to 172.18.0.3 (0, 5) -1612504680: Socket error on client , disconnecting. -1612504700: New connection from 172.18.0.3 on port 1883. -1612504700: Sending CONNACK to 172.18.0.3 (0, 5) -1612504700: Socket error on client , disconnecting. -1612504720: New connection from 172.18.0.3 on port 1883. -1612504720: Sending CONNACK to 172.18.0.3 (0, 5) -1612504720: Socket error on client , disconnecting. -1612504740: New connection from 172.18.0.3 on port 1883. -1612504740: Sending CONNACK to 172.18.0.3 (0, 5) -1612504740: Socket error on client , disconnecting. -1612504760: New connection from 172.18.0.3 on port 1883. -1612504760: Sending CONNACK to 172.18.0.3 (0, 5) -1612504760: Socket error on client , disconnecting. -1612504780: New connection from 172.18.0.3 on port 1883. -1612504780: Sending CONNACK to 172.18.0.3 (0, 5) -1612504780: Socket error on client , disconnecting. -1612504800: New connection from 172.18.0.3 on port 1883. -1612504800: Sending CONNACK to 172.18.0.3 (0, 5) -1612504800: Socket error on client , disconnecting. -1612504820: New connection from 172.18.0.3 on port 1883. -1612504820: Sending CONNACK to 172.18.0.3 (0, 5) -1612504820: Socket error on client , disconnecting. -1612504840: New connection from 172.18.0.3 on port 1883. -1612504840: Sending CONNACK to 172.18.0.3 (0, 5) -1612504840: Socket error on client , disconnecting. -1612504860: New connection from 172.18.0.3 on port 1883. -1612504860: Sending CONNACK to 172.18.0.3 (0, 5) -1612504860: Socket error on client , disconnecting. -1612504880: New connection from 172.18.0.3 on port 1883. -1612504880: Sending CONNACK to 172.18.0.3 (0, 5) -1612504880: Socket error on client , disconnecting. -1612504900: New connection from 172.18.0.3 on port 1883. -1612504900: Sending CONNACK to 172.18.0.3 (0, 5) -1612504900: Socket error on client , disconnecting. -1612504920: New connection from 172.18.0.3 on port 1883. -1612504920: Sending CONNACK to 172.18.0.3 (0, 5) -1612504920: Socket error on client , disconnecting. -1612504940: New connection from 172.18.0.3 on port 1883. -1612504940: Sending CONNACK to 172.18.0.3 (0, 5) -1612504940: Socket error on client , disconnecting. -1612504960: New connection from 172.18.0.3 on port 1883. -1612504960: Sending CONNACK to 172.18.0.3 (0, 5) -1612504960: Socket error on client , disconnecting. -1612504980: New connection from 172.18.0.3 on port 1883. -1612504980: Sending CONNACK to 172.18.0.3 (0, 5) -1612504980: Socket error on client , disconnecting. -1612505000: New connection from 172.18.0.3 on port 1883. -1612505000: Sending CONNACK to 172.18.0.3 (0, 5) -1612505000: Socket error on client , disconnecting. -1612505020: New connection from 172.18.0.3 on port 1883. -1612505020: Sending CONNACK to 172.18.0.3 (0, 5) -1612505020: Socket error on client , disconnecting. -1612505040: New connection from 172.18.0.3 on port 1883. -1612505040: Sending CONNACK to 172.18.0.3 (0, 5) -1612505040: Socket error on client , disconnecting. -1612505060: New connection from 172.18.0.3 on port 1883. -1612505060: Sending CONNACK to 172.18.0.3 (0, 5) -1612505060: Socket error on client , disconnecting. -1612505080: New connection from 172.18.0.3 on port 1883. -1612505080: Sending CONNACK to 172.18.0.3 (0, 5) -1612505080: Socket error on client , disconnecting. -1612505100: New connection from 172.18.0.3 on port 1883. -1612505100: Sending CONNACK to 172.18.0.3 (0, 5) -1612505100: Socket error on client , disconnecting. -1612505120: New connection from 172.18.0.3 on port 1883. -1612505120: Sending CONNACK to 172.18.0.3 (0, 5) -1612505120: Socket error on client , disconnecting. -1612505140: New connection from 172.18.0.3 on port 1883. -1612505140: Sending CONNACK to 172.18.0.3 (0, 5) -1612505140: Socket error on client , disconnecting. -1612505160: New connection from 172.18.0.3 on port 1883. -1612505160: Sending CONNACK to 172.18.0.3 (0, 5) -1612505160: Socket error on client , disconnecting. -1612505180: New connection from 172.18.0.3 on port 1883. -1612505180: Sending CONNACK to 172.18.0.3 (0, 5) -1612505180: Socket error on client , disconnecting. -1612505200: New connection from 172.18.0.3 on port 1883. -1612505200: Sending CONNACK to 172.18.0.3 (0, 5) -1612505200: Socket error on client , disconnecting. -1612505220: New connection from 172.18.0.3 on port 1883. -1612505220: Sending CONNACK to 172.18.0.3 (0, 5) -1612505220: Socket error on client , disconnecting. -1612505240: New connection from 172.18.0.3 on port 1883. -1612505240: Sending CONNACK to 172.18.0.3 (0, 5) -1612505240: Socket error on client , disconnecting. -1612505260: New connection from 172.18.0.3 on port 1883. -1612505260: Sending CONNACK to 172.18.0.3 (0, 5) -1612505260: Socket error on client , disconnecting. -1612505280: New connection from 172.18.0.3 on port 1883. -1612505280: Sending CONNACK to 172.18.0.3 (0, 5) -1612505280: Socket error on client , disconnecting. -1612505300: New connection from 172.18.0.3 on port 1883. -1612505300: Sending CONNACK to 172.18.0.3 (0, 5) -1612505300: Socket error on client , disconnecting. -1612505320: New connection from 172.18.0.3 on port 1883. -1612505320: Sending CONNACK to 172.18.0.3 (0, 5) -1612505320: Socket error on client , disconnecting. -1612505340: New connection from 172.18.0.3 on port 1883. -1612505340: Sending CONNACK to 172.18.0.3 (0, 5) -1612505340: Socket error on client , disconnecting. -1612505360: New connection from 172.18.0.3 on port 1883. -1612505360: Sending CONNACK to 172.18.0.3 (0, 5) -1612505360: Socket error on client , disconnecting. -1612505380: New connection from 172.18.0.3 on port 1883. -1612505380: Sending CONNACK to 172.18.0.3 (0, 5) -1612505380: Socket error on client , disconnecting. -1612505400: New connection from 172.18.0.3 on port 1883. -1612505400: Sending CONNACK to 172.18.0.3 (0, 5) -1612505400: Socket error on client , disconnecting. -1612505420: New connection from 172.18.0.3 on port 1883. -1612505420: Sending CONNACK to 172.18.0.3 (0, 5) -1612505420: Socket error on client , disconnecting. -1612505440: New connection from 172.18.0.3 on port 1883. -1612505440: Sending CONNACK to 172.18.0.3 (0, 5) -1612505440: Socket error on client , disconnecting. -1612505460: New connection from 172.18.0.3 on port 1883. -1612505460: Sending CONNACK to 172.18.0.3 (0, 5) -1612505460: Socket error on client , disconnecting. -1612505480: New connection from 172.18.0.3 on port 1883. -1612505480: Sending CONNACK to 172.18.0.3 (0, 5) -1612505480: Socket error on client , disconnecting. -1612505500: New connection from 172.18.0.3 on port 1883. -1612505500: Sending CONNACK to 172.18.0.3 (0, 5) -1612505500: Socket error on client , disconnecting. -1612505520: New connection from 172.18.0.3 on port 1883. -1612505520: Sending CONNACK to 172.18.0.3 (0, 5) -1612505520: Socket error on client , disconnecting. -1612505540: New connection from 172.18.0.3 on port 1883. -1612505540: Sending CONNACK to 172.18.0.3 (0, 5) -1612505540: Socket error on client , disconnecting. -1612505560: New connection from 172.18.0.3 on port 1883. -1612505560: Sending CONNACK to 172.18.0.3 (0, 5) -1612505560: Socket error on client , disconnecting. -1612505580: New connection from 172.18.0.3 on port 1883. -1612505580: Sending CONNACK to 172.18.0.3 (0, 5) -1612505580: Socket error on client , disconnecting. -1612505600: New connection from 172.18.0.3 on port 1883. -1612505600: Sending CONNACK to 172.18.0.3 (0, 5) -1612505600: Socket error on client , disconnecting. -1612505620: New connection from 172.18.0.3 on port 1883. -1612505620: Sending CONNACK to 172.18.0.3 (0, 5) -1612505620: Socket error on client , disconnecting. -1612505640: New connection from 172.18.0.3 on port 1883. -1612505640: Sending CONNACK to 172.18.0.3 (0, 5) -1612505640: Socket error on client , disconnecting. -1612505660: New connection from 172.18.0.3 on port 1883. -1612505660: Sending CONNACK to 172.18.0.3 (0, 5) -1612505660: Socket error on client , disconnecting. -1612505680: New connection from 172.18.0.3 on port 1883. -1612505680: Sending CONNACK to 172.18.0.3 (0, 5) -1612505680: Socket error on client , disconnecting. -1612505700: New connection from 172.18.0.3 on port 1883. -1612505700: Sending CONNACK to 172.18.0.3 (0, 5) -1612505700: Socket error on client , disconnecting. -1612505720: New connection from 172.18.0.3 on port 1883. -1612505720: Sending CONNACK to 172.18.0.3 (0, 5) -1612505720: Socket error on client , disconnecting. -1612505740: New connection from 172.18.0.3 on port 1883. -1612505740: Sending CONNACK to 172.18.0.3 (0, 5) -1612505740: Socket error on client , disconnecting. -1612505760: New connection from 172.18.0.3 on port 1883. -1612505760: Sending CONNACK to 172.18.0.3 (0, 5) -1612505760: Socket error on client , disconnecting. -1612505780: New connection from 172.18.0.3 on port 1883. -1612505780: Sending CONNACK to 172.18.0.3 (0, 5) -1612505780: Socket error on client , disconnecting. -1612505800: New connection from 172.18.0.3 on port 1883. -1612505800: Sending CONNACK to 172.18.0.3 (0, 5) -1612505800: Socket error on client , disconnecting. -1612505820: New connection from 172.18.0.3 on port 1883. -1612505820: Sending CONNACK to 172.18.0.3 (0, 5) -1612505820: Socket error on client , disconnecting. -1612505840: New connection from 172.18.0.3 on port 1883. -1612505840: Sending CONNACK to 172.18.0.3 (0, 5) -1612505840: Socket error on client , disconnecting. -1612505850: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612505850: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612505850: Error: Permission denied. -1612505860: New connection from 172.18.0.3 on port 1883. -1612505860: Sending CONNACK to 172.18.0.3 (0, 5) -1612505860: Socket error on client , disconnecting. -1612505880: New connection from 172.18.0.3 on port 1883. -1612505880: Sending CONNACK to 172.18.0.3 (0, 5) -1612505880: Socket error on client , disconnecting. -1612505900: New connection from 172.18.0.3 on port 1883. -1612505900: Sending CONNACK to 172.18.0.3 (0, 5) -1612505900: Socket error on client , disconnecting. -1612505920: New connection from 172.18.0.3 on port 1883. -1612505920: Sending CONNACK to 172.18.0.3 (0, 5) -1612505920: Socket error on client , disconnecting. -1612505940: New connection from 172.18.0.3 on port 1883. -1612505940: Sending CONNACK to 172.18.0.3 (0, 5) -1612505940: Socket error on client , disconnecting. -1612505960: New connection from 172.18.0.3 on port 1883. -1612505960: Sending CONNACK to 172.18.0.3 (0, 5) -1612505960: Socket error on client , disconnecting. -1612505980: New connection from 172.18.0.3 on port 1883. -1612505980: Sending CONNACK to 172.18.0.3 (0, 5) -1612505980: Socket error on client , disconnecting. -1612506000: New connection from 172.18.0.3 on port 1883. -1612506000: Sending CONNACK to 172.18.0.3 (0, 5) -1612506000: Socket error on client , disconnecting. -1612506020: New connection from 172.18.0.3 on port 1883. -1612506020: Sending CONNACK to 172.18.0.3 (0, 5) -1612506020: Socket error on client , disconnecting. -1612506040: New connection from 172.18.0.3 on port 1883. -1612506040: Sending CONNACK to 172.18.0.3 (0, 5) -1612506040: Socket error on client , disconnecting. -1612506060: New connection from 172.18.0.3 on port 1883. -1612506060: Sending CONNACK to 172.18.0.3 (0, 5) -1612506060: Socket error on client , disconnecting. -1612506080: New connection from 172.18.0.3 on port 1883. -1612506080: Sending CONNACK to 172.18.0.3 (0, 5) -1612506080: Socket error on client , disconnecting. -1612506100: New connection from 172.18.0.3 on port 1883. -1612506100: Sending CONNACK to 172.18.0.3 (0, 5) -1612506100: Socket error on client , disconnecting. -1612506120: New connection from 172.18.0.3 on port 1883. -1612506120: Sending CONNACK to 172.18.0.3 (0, 5) -1612506120: Socket error on client , disconnecting. -1612506140: New connection from 172.18.0.3 on port 1883. -1612506140: Sending CONNACK to 172.18.0.3 (0, 5) -1612506140: Socket error on client , disconnecting. -1612506160: New connection from 172.18.0.3 on port 1883. -1612506160: Sending CONNACK to 172.18.0.3 (0, 5) -1612506160: Socket error on client , disconnecting. -1612506180: New connection from 172.18.0.3 on port 1883. -1612506180: Sending CONNACK to 172.18.0.3 (0, 5) -1612506180: Socket error on client , disconnecting. -1612506200: New connection from 172.18.0.3 on port 1883. -1612506200: Sending CONNACK to 172.18.0.3 (0, 5) -1612506200: Socket error on client , disconnecting. -1612506220: New connection from 172.18.0.3 on port 1883. -1612506220: Sending CONNACK to 172.18.0.3 (0, 5) -1612506220: Socket error on client , disconnecting. -1612506240: New connection from 172.18.0.3 on port 1883. -1612506240: Sending CONNACK to 172.18.0.3 (0, 5) -1612506240: Socket error on client , disconnecting. -1612506260: New connection from 172.18.0.3 on port 1883. -1612506260: Sending CONNACK to 172.18.0.3 (0, 5) -1612506260: Socket error on client , disconnecting. -1612506280: New connection from 172.18.0.3 on port 1883. -1612506280: Sending CONNACK to 172.18.0.3 (0, 5) -1612506280: Socket error on client , disconnecting. -1612506300: New connection from 172.18.0.3 on port 1883. -1612506300: Sending CONNACK to 172.18.0.3 (0, 5) -1612506300: Socket error on client , disconnecting. -1612506320: New connection from 172.18.0.3 on port 1883. -1612506320: Sending CONNACK to 172.18.0.3 (0, 5) -1612506320: Socket error on client , disconnecting. -1612506340: New connection from 172.18.0.3 on port 1883. -1612506340: Sending CONNACK to 172.18.0.3 (0, 5) -1612506340: Socket error on client , disconnecting. -1612506360: New connection from 172.18.0.3 on port 1883. -1612506360: Sending CONNACK to 172.18.0.3 (0, 5) -1612506360: Socket error on client , disconnecting. -1612506380: New connection from 172.18.0.3 on port 1883. -1612506380: Sending CONNACK to 172.18.0.3 (0, 5) -1612506380: Socket error on client , disconnecting. -1612506400: New connection from 172.18.0.3 on port 1883. -1612506400: Sending CONNACK to 172.18.0.3 (0, 5) -1612506400: Socket error on client , disconnecting. -1612506420: New connection from 172.18.0.3 on port 1883. -1612506420: Sending CONNACK to 172.18.0.3 (0, 5) -1612506420: Socket error on client , disconnecting. -1612506440: New connection from 172.18.0.3 on port 1883. -1612506440: Sending CONNACK to 172.18.0.3 (0, 5) -1612506440: Socket error on client , disconnecting. -1612506460: New connection from 172.18.0.3 on port 1883. -1612506460: Sending CONNACK to 172.18.0.3 (0, 5) -1612506460: Socket error on client , disconnecting. -1612506480: New connection from 172.18.0.3 on port 1883. -1612506480: Sending CONNACK to 172.18.0.3 (0, 5) -1612506480: Socket error on client , disconnecting. -1612506500: New connection from 172.18.0.3 on port 1883. -1612506500: Sending CONNACK to 172.18.0.3 (0, 5) -1612506500: Socket error on client , disconnecting. -1612506520: New connection from 172.18.0.3 on port 1883. -1612506520: Sending CONNACK to 172.18.0.3 (0, 5) -1612506520: Socket error on client , disconnecting. -1612506540: New connection from 172.18.0.3 on port 1883. -1612506540: Sending CONNACK to 172.18.0.3 (0, 5) -1612506540: Socket error on client , disconnecting. -1612506560: New connection from 172.18.0.3 on port 1883. -1612506560: Sending CONNACK to 172.18.0.3 (0, 5) -1612506560: Socket error on client , disconnecting. -1612506580: New connection from 172.18.0.3 on port 1883. -1612506580: Sending CONNACK to 172.18.0.3 (0, 5) -1612506580: Socket error on client , disconnecting. -1612506600: New connection from 172.18.0.3 on port 1883. -1612506600: Sending CONNACK to 172.18.0.3 (0, 5) -1612506600: Socket error on client , disconnecting. -1612506620: New connection from 172.18.0.3 on port 1883. -1612506620: Sending CONNACK to 172.18.0.3 (0, 5) -1612506620: Socket error on client , disconnecting. -1612506640: New connection from 172.18.0.3 on port 1883. -1612506640: Sending CONNACK to 172.18.0.3 (0, 5) -1612506640: Socket error on client , disconnecting. -1612506660: New connection from 172.18.0.3 on port 1883. -1612506660: Sending CONNACK to 172.18.0.3 (0, 5) -1612506660: Socket error on client , disconnecting. -1612506680: New connection from 172.18.0.3 on port 1883. -1612506680: Sending CONNACK to 172.18.0.3 (0, 5) -1612506680: Socket error on client , disconnecting. -1612506700: New connection from 172.18.0.3 on port 1883. -1612506700: Sending CONNACK to 172.18.0.3 (0, 5) -1612506700: Socket error on client , disconnecting. -1612506720: New connection from 172.18.0.3 on port 1883. -1612506720: Sending CONNACK to 172.18.0.3 (0, 5) -1612506720: Socket error on client , disconnecting. -1612506740: New connection from 172.18.0.3 on port 1883. -1612506740: Sending CONNACK to 172.18.0.3 (0, 5) -1612506740: Socket error on client , disconnecting. -1612506760: New connection from 172.18.0.3 on port 1883. -1612506760: Sending CONNACK to 172.18.0.3 (0, 5) -1612506760: Socket error on client , disconnecting. -1612506780: New connection from 172.18.0.3 on port 1883. -1612506780: Sending CONNACK to 172.18.0.3 (0, 5) -1612506780: Socket error on client , disconnecting. -1612506800: New connection from 172.18.0.3 on port 1883. -1612506800: Sending CONNACK to 172.18.0.3 (0, 5) -1612506800: Socket error on client , disconnecting. -1612506820: New connection from 172.18.0.3 on port 1883. -1612506820: Sending CONNACK to 172.18.0.3 (0, 5) -1612506820: Socket error on client , disconnecting. -1612506840: New connection from 172.18.0.3 on port 1883. -1612506840: Sending CONNACK to 172.18.0.3 (0, 5) -1612506840: Socket error on client , disconnecting. -1612506860: New connection from 172.18.0.3 on port 1883. -1612506860: Sending CONNACK to 172.18.0.3 (0, 5) -1612506860: Socket error on client , disconnecting. -1612506880: New connection from 172.18.0.3 on port 1883. -1612506880: Sending CONNACK to 172.18.0.3 (0, 5) -1612506880: Socket error on client , disconnecting. -1612506900: New connection from 172.18.0.3 on port 1883. -1612506900: Sending CONNACK to 172.18.0.3 (0, 5) -1612506900: Socket error on client , disconnecting. -1612506920: New connection from 172.18.0.3 on port 1883. -1612506920: Sending CONNACK to 172.18.0.3 (0, 5) -1612506920: Socket error on client , disconnecting. -1612506940: New connection from 172.18.0.3 on port 1883. -1612506940: Sending CONNACK to 172.18.0.3 (0, 5) -1612506940: Socket error on client , disconnecting. -1612506960: New connection from 172.18.0.3 on port 1883. -1612506960: Sending CONNACK to 172.18.0.3 (0, 5) -1612506960: Socket error on client , disconnecting. -1612506980: New connection from 172.18.0.3 on port 1883. -1612506980: Sending CONNACK to 172.18.0.3 (0, 5) -1612506980: Socket error on client , disconnecting. -1612507000: New connection from 172.18.0.3 on port 1883. -1612507000: Sending CONNACK to 172.18.0.3 (0, 5) -1612507000: Socket error on client , disconnecting. -1612507020: New connection from 172.18.0.3 on port 1883. -1612507020: Sending CONNACK to 172.18.0.3 (0, 5) -1612507020: Socket error on client , disconnecting. -1612507040: New connection from 172.18.0.3 on port 1883. -1612507040: Sending CONNACK to 172.18.0.3 (0, 5) -1612507040: Socket error on client , disconnecting. -1612507060: New connection from 172.18.0.3 on port 1883. -1612507060: Sending CONNACK to 172.18.0.3 (0, 5) -1612507060: Socket error on client , disconnecting. -1612507080: New connection from 172.18.0.3 on port 1883. -1612507080: Sending CONNACK to 172.18.0.3 (0, 5) -1612507080: Socket error on client , disconnecting. -1612507100: New connection from 172.18.0.3 on port 1883. -1612507100: Sending CONNACK to 172.18.0.3 (0, 5) -1612507100: Socket error on client , disconnecting. -1612507120: New connection from 172.18.0.3 on port 1883. -1612507120: Sending CONNACK to 172.18.0.3 (0, 5) -1612507120: Socket error on client , disconnecting. -1612507140: New connection from 172.18.0.3 on port 1883. -1612507140: Sending CONNACK to 172.18.0.3 (0, 5) -1612507140: Socket error on client , disconnecting. -1612507160: New connection from 172.18.0.3 on port 1883. -1612507160: Sending CONNACK to 172.18.0.3 (0, 5) -1612507160: Socket error on client , disconnecting. -1612507180: New connection from 172.18.0.3 on port 1883. -1612507180: Sending CONNACK to 172.18.0.3 (0, 5) -1612507180: Socket error on client , disconnecting. -1612507200: New connection from 172.18.0.3 on port 1883. -1612507200: Sending CONNACK to 172.18.0.3 (0, 5) -1612507200: Socket error on client , disconnecting. -1612507220: New connection from 172.18.0.3 on port 1883. -1612507220: Sending CONNACK to 172.18.0.3 (0, 5) -1612507220: Socket error on client , disconnecting. -1612507240: New connection from 172.18.0.3 on port 1883. -1612507240: Sending CONNACK to 172.18.0.3 (0, 5) -1612507240: Socket error on client , disconnecting. -1612507260: New connection from 172.18.0.3 on port 1883. -1612507260: Sending CONNACK to 172.18.0.3 (0, 5) -1612507260: Socket error on client , disconnecting. -1612507280: New connection from 172.18.0.3 on port 1883. -1612507280: Sending CONNACK to 172.18.0.3 (0, 5) -1612507280: Socket error on client , disconnecting. -1612507300: New connection from 172.18.0.3 on port 1883. -1612507300: Sending CONNACK to 172.18.0.3 (0, 5) -1612507300: Socket error on client , disconnecting. -1612507320: New connection from 172.18.0.3 on port 1883. -1612507320: Sending CONNACK to 172.18.0.3 (0, 5) -1612507320: Socket error on client , disconnecting. -1612507340: New connection from 172.18.0.3 on port 1883. -1612507340: Sending CONNACK to 172.18.0.3 (0, 5) -1612507340: Socket error on client , disconnecting. -1612507360: New connection from 172.18.0.3 on port 1883. -1612507360: Sending CONNACK to 172.18.0.3 (0, 5) -1612507360: Socket error on client , disconnecting. -1612507380: New connection from 172.18.0.3 on port 1883. -1612507380: Sending CONNACK to 172.18.0.3 (0, 5) -1612507380: Socket error on client , disconnecting. -1612507400: New connection from 172.18.0.3 on port 1883. -1612507400: Sending CONNACK to 172.18.0.3 (0, 5) -1612507400: Socket error on client , disconnecting. -1612507420: New connection from 172.18.0.3 on port 1883. -1612507420: Sending CONNACK to 172.18.0.3 (0, 5) -1612507420: Socket error on client , disconnecting. -1612507440: New connection from 172.18.0.3 on port 1883. -1612507440: Sending CONNACK to 172.18.0.3 (0, 5) -1612507440: Socket error on client , disconnecting. -1612507460: New connection from 172.18.0.3 on port 1883. -1612507460: Sending CONNACK to 172.18.0.3 (0, 5) -1612507460: Socket error on client , disconnecting. -1612507480: New connection from 172.18.0.3 on port 1883. -1612507480: Sending CONNACK to 172.18.0.3 (0, 5) -1612507480: Socket error on client , disconnecting. -1612507500: New connection from 172.18.0.3 on port 1883. -1612507500: Sending CONNACK to 172.18.0.3 (0, 5) -1612507500: Socket error on client , disconnecting. -1612507520: New connection from 172.18.0.3 on port 1883. -1612507520: Sending CONNACK to 172.18.0.3 (0, 5) -1612507520: Socket error on client , disconnecting. -1612507540: New connection from 172.18.0.3 on port 1883. -1612507540: Sending CONNACK to 172.18.0.3 (0, 5) -1612507540: Socket error on client , disconnecting. -1612507560: New connection from 172.18.0.3 on port 1883. -1612507560: Sending CONNACK to 172.18.0.3 (0, 5) -1612507560: Socket error on client , disconnecting. -1612507580: New connection from 172.18.0.3 on port 1883. -1612507580: Sending CONNACK to 172.18.0.3 (0, 5) -1612507580: Socket error on client , disconnecting. -1612507600: New connection from 172.18.0.3 on port 1883. -1612507600: Sending CONNACK to 172.18.0.3 (0, 5) -1612507600: Socket error on client , disconnecting. -1612507620: New connection from 172.18.0.3 on port 1883. -1612507620: Sending CONNACK to 172.18.0.3 (0, 5) -1612507620: Socket error on client , disconnecting. -1612507640: New connection from 172.18.0.3 on port 1883. -1612507640: Sending CONNACK to 172.18.0.3 (0, 5) -1612507640: Socket error on client , disconnecting. -1612507651: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612507651: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612507651: Error: Permission denied. -1612507660: New connection from 172.18.0.3 on port 1883. -1612507660: Sending CONNACK to 172.18.0.3 (0, 5) -1612507660: Socket error on client , disconnecting. -1612507680: New connection from 172.18.0.3 on port 1883. -1612507680: Sending CONNACK to 172.18.0.3 (0, 5) -1612507680: Socket error on client , disconnecting. -1612507700: New connection from 172.18.0.3 on port 1883. -1612507700: Sending CONNACK to 172.18.0.3 (0, 5) -1612507700: Socket error on client , disconnecting. -1612507720: New connection from 172.18.0.3 on port 1883. -1612507720: Sending CONNACK to 172.18.0.3 (0, 5) -1612507720: Socket error on client , disconnecting. -1612507740: New connection from 172.18.0.3 on port 1883. -1612507740: Sending CONNACK to 172.18.0.3 (0, 5) -1612507740: Socket error on client , disconnecting. -1612507760: New connection from 172.18.0.3 on port 1883. -1612507760: Sending CONNACK to 172.18.0.3 (0, 5) -1612507760: Socket error on client , disconnecting. -1612507780: New connection from 172.18.0.3 on port 1883. -1612507780: Sending CONNACK to 172.18.0.3 (0, 5) -1612507780: Socket error on client , disconnecting. -1612507800: New connection from 172.18.0.3 on port 1883. -1612507800: Sending CONNACK to 172.18.0.3 (0, 5) -1612507800: Socket error on client , disconnecting. -1612507820: New connection from 172.18.0.3 on port 1883. -1612507820: Sending CONNACK to 172.18.0.3 (0, 5) -1612507820: Socket error on client , disconnecting. -1612507840: New connection from 172.18.0.3 on port 1883. -1612507840: Sending CONNACK to 172.18.0.3 (0, 5) -1612507840: Socket error on client , disconnecting. -1612507860: New connection from 172.18.0.3 on port 1883. -1612507860: Sending CONNACK to 172.18.0.3 (0, 5) -1612507860: Socket error on client , disconnecting. -1612507880: New connection from 172.18.0.3 on port 1883. -1612507880: Sending CONNACK to 172.18.0.3 (0, 5) -1612507880: Socket error on client , disconnecting. -1612507900: New connection from 172.18.0.3 on port 1883. -1612507900: Sending CONNACK to 172.18.0.3 (0, 5) -1612507900: Socket error on client , disconnecting. -1612507920: New connection from 172.18.0.3 on port 1883. -1612507920: Sending CONNACK to 172.18.0.3 (0, 5) -1612507920: Socket error on client , disconnecting. -1612507940: New connection from 172.18.0.3 on port 1883. -1612507940: Sending CONNACK to 172.18.0.3 (0, 5) -1612507940: Socket error on client , disconnecting. -1612507960: New connection from 172.18.0.3 on port 1883. -1612507960: Sending CONNACK to 172.18.0.3 (0, 5) -1612507960: Socket error on client , disconnecting. -1612507980: New connection from 172.18.0.3 on port 1883. -1612507980: Sending CONNACK to 172.18.0.3 (0, 5) -1612507980: Socket error on client , disconnecting. -1612508000: New connection from 172.18.0.3 on port 1883. -1612508000: Sending CONNACK to 172.18.0.3 (0, 5) -1612508000: Socket error on client , disconnecting. -1612508020: New connection from 172.18.0.3 on port 1883. -1612508020: Sending CONNACK to 172.18.0.3 (0, 5) -1612508020: Socket error on client , disconnecting. -1612508040: New connection from 172.18.0.3 on port 1883. -1612508040: Sending CONNACK to 172.18.0.3 (0, 5) -1612508040: Socket error on client , disconnecting. -1612508060: New connection from 172.18.0.3 on port 1883. -1612508060: Sending CONNACK to 172.18.0.3 (0, 5) -1612508060: Socket error on client , disconnecting. -1612508080: New connection from 172.18.0.3 on port 1883. -1612508080: Sending CONNACK to 172.18.0.3 (0, 5) -1612508080: Socket error on client , disconnecting. -1612508100: New connection from 172.18.0.3 on port 1883. -1612508100: Sending CONNACK to 172.18.0.3 (0, 5) -1612508100: Socket error on client , disconnecting. -1612508120: New connection from 172.18.0.3 on port 1883. -1612508120: Sending CONNACK to 172.18.0.3 (0, 5) -1612508120: Socket error on client , disconnecting. -1612508140: New connection from 172.18.0.3 on port 1883. -1612508140: Sending CONNACK to 172.18.0.3 (0, 5) -1612508140: Socket error on client , disconnecting. -1612508160: New connection from 172.18.0.3 on port 1883. -1612508160: Sending CONNACK to 172.18.0.3 (0, 5) -1612508160: Socket error on client , disconnecting. -1612508180: New connection from 172.18.0.3 on port 1883. -1612508180: Sending CONNACK to 172.18.0.3 (0, 5) -1612508180: Socket error on client , disconnecting. -1612508200: New connection from 172.18.0.3 on port 1883. -1612508200: Sending CONNACK to 172.18.0.3 (0, 5) -1612508200: Socket error on client , disconnecting. -1612508220: New connection from 172.18.0.3 on port 1883. -1612508220: Sending CONNACK to 172.18.0.3 (0, 5) -1612508220: Socket error on client , disconnecting. -1612508240: New connection from 172.18.0.3 on port 1883. -1612508240: Sending CONNACK to 172.18.0.3 (0, 5) -1612508240: Socket error on client , disconnecting. -1612508260: New connection from 172.18.0.3 on port 1883. -1612508260: Sending CONNACK to 172.18.0.3 (0, 5) -1612508260: Socket error on client , disconnecting. -1612508280: New connection from 172.18.0.3 on port 1883. -1612508280: Sending CONNACK to 172.18.0.3 (0, 5) -1612508280: Socket error on client , disconnecting. -1612508300: New connection from 172.18.0.3 on port 1883. -1612508300: Sending CONNACK to 172.18.0.3 (0, 5) -1612508300: Socket error on client , disconnecting. -1612508320: New connection from 172.18.0.3 on port 1883. -1612508320: Sending CONNACK to 172.18.0.3 (0, 5) -1612508320: Socket error on client , disconnecting. -1612508340: New connection from 172.18.0.3 on port 1883. -1612508340: Sending CONNACK to 172.18.0.3 (0, 5) -1612508340: Socket error on client , disconnecting. -1612508360: New connection from 172.18.0.3 on port 1883. -1612508360: Sending CONNACK to 172.18.0.3 (0, 5) -1612508360: Socket error on client , disconnecting. -1612508380: New connection from 172.18.0.3 on port 1883. -1612508380: Sending CONNACK to 172.18.0.3 (0, 5) -1612508380: Socket error on client , disconnecting. -1612508400: New connection from 172.18.0.3 on port 1883. -1612508400: Sending CONNACK to 172.18.0.3 (0, 5) -1612508400: Socket error on client , disconnecting. -1612508420: New connection from 172.18.0.3 on port 1883. -1612508420: Sending CONNACK to 172.18.0.3 (0, 5) -1612508420: Socket error on client , disconnecting. -1612508440: New connection from 172.18.0.3 on port 1883. -1612508440: Sending CONNACK to 172.18.0.3 (0, 5) -1612508440: Socket error on client , disconnecting. -1612508460: New connection from 172.18.0.3 on port 1883. -1612508460: Sending CONNACK to 172.18.0.3 (0, 5) -1612508460: Socket error on client , disconnecting. -1612508480: New connection from 172.18.0.3 on port 1883. -1612508480: Sending CONNACK to 172.18.0.3 (0, 5) -1612508480: Socket error on client , disconnecting. -1612508500: New connection from 172.18.0.3 on port 1883. -1612508500: Sending CONNACK to 172.18.0.3 (0, 5) -1612508500: Socket error on client , disconnecting. -1612508520: New connection from 172.18.0.3 on port 1883. -1612508520: Sending CONNACK to 172.18.0.3 (0, 5) -1612508520: Socket error on client , disconnecting. -1612508540: New connection from 172.18.0.3 on port 1883. -1612508540: Sending CONNACK to 172.18.0.3 (0, 5) -1612508540: Socket error on client , disconnecting. -1612508560: New connection from 172.18.0.3 on port 1883. -1612508560: Sending CONNACK to 172.18.0.3 (0, 5) -1612508560: Socket error on client , disconnecting. -1612508580: New connection from 172.18.0.3 on port 1883. -1612508580: Sending CONNACK to 172.18.0.3 (0, 5) -1612508580: Socket error on client , disconnecting. -1612508600: New connection from 172.18.0.3 on port 1883. -1612508600: Sending CONNACK to 172.18.0.3 (0, 5) -1612508600: Socket error on client , disconnecting. -1612508620: New connection from 172.18.0.3 on port 1883. -1612508620: Sending CONNACK to 172.18.0.3 (0, 5) -1612508620: Socket error on client , disconnecting. -1612508640: New connection from 172.18.0.3 on port 1883. -1612508640: Sending CONNACK to 172.18.0.3 (0, 5) -1612508640: Socket error on client , disconnecting. -1612508660: New connection from 172.18.0.3 on port 1883. -1612508660: Sending CONNACK to 172.18.0.3 (0, 5) -1612508660: Socket error on client , disconnecting. -1612508680: New connection from 172.18.0.3 on port 1883. -1612508680: Sending CONNACK to 172.18.0.3 (0, 5) -1612508680: Socket error on client , disconnecting. -1612508700: New connection from 172.18.0.3 on port 1883. -1612508700: Sending CONNACK to 172.18.0.3 (0, 5) -1612508700: Socket error on client , disconnecting. -1612508720: New connection from 172.18.0.3 on port 1883. -1612508720: Sending CONNACK to 172.18.0.3 (0, 5) -1612508720: Socket error on client , disconnecting. -1612508740: New connection from 172.18.0.3 on port 1883. -1612508740: Sending CONNACK to 172.18.0.3 (0, 5) -1612508740: Socket error on client , disconnecting. -1612508760: New connection from 172.18.0.3 on port 1883. -1612508760: Sending CONNACK to 172.18.0.3 (0, 5) -1612508760: Socket error on client , disconnecting. -1612508780: New connection from 172.18.0.3 on port 1883. -1612508780: Sending CONNACK to 172.18.0.3 (0, 5) -1612508780: Socket error on client , disconnecting. -1612508800: New connection from 172.18.0.3 on port 1883. -1612508800: Sending CONNACK to 172.18.0.3 (0, 5) -1612508800: Socket error on client , disconnecting. -1612508820: New connection from 172.18.0.3 on port 1883. -1612508820: Sending CONNACK to 172.18.0.3 (0, 5) -1612508820: Socket error on client , disconnecting. -1612508840: New connection from 172.18.0.3 on port 1883. -1612508840: Sending CONNACK to 172.18.0.3 (0, 5) -1612508840: Socket error on client , disconnecting. -1612508860: New connection from 172.18.0.3 on port 1883. -1612508860: Sending CONNACK to 172.18.0.3 (0, 5) -1612508860: Socket error on client , disconnecting. -1612508880: New connection from 172.18.0.3 on port 1883. -1612508880: Sending CONNACK to 172.18.0.3 (0, 5) -1612508880: Socket error on client , disconnecting. -1612508900: New connection from 172.18.0.3 on port 1883. -1612508900: Sending CONNACK to 172.18.0.3 (0, 5) -1612508900: Socket error on client , disconnecting. -1612508920: New connection from 172.18.0.3 on port 1883. -1612508920: Sending CONNACK to 172.18.0.3 (0, 5) -1612508920: Socket error on client , disconnecting. -1612508940: New connection from 172.18.0.3 on port 1883. -1612508940: Sending CONNACK to 172.18.0.3 (0, 5) -1612508940: Socket error on client , disconnecting. -1612508960: New connection from 172.18.0.3 on port 1883. -1612508960: Sending CONNACK to 172.18.0.3 (0, 5) -1612508960: Socket error on client , disconnecting. -1612508980: New connection from 172.18.0.3 on port 1883. -1612508980: Sending CONNACK to 172.18.0.3 (0, 5) -1612508980: Socket error on client , disconnecting. -1612509000: New connection from 172.18.0.3 on port 1883. -1612509000: Sending CONNACK to 172.18.0.3 (0, 5) -1612509000: Socket error on client , disconnecting. -1612509020: New connection from 172.18.0.3 on port 1883. -1612509020: Sending CONNACK to 172.18.0.3 (0, 5) -1612509020: Socket error on client , disconnecting. -1612509040: New connection from 172.18.0.3 on port 1883. -1612509040: Sending CONNACK to 172.18.0.3 (0, 5) -1612509040: Socket error on client , disconnecting. -1612509060: New connection from 172.18.0.3 on port 1883. -1612509060: Sending CONNACK to 172.18.0.3 (0, 5) -1612509060: Socket error on client , disconnecting. -1612509080: New connection from 172.18.0.3 on port 1883. -1612509080: Sending CONNACK to 172.18.0.3 (0, 5) -1612509080: Socket error on client , disconnecting. -1612509100: New connection from 172.18.0.3 on port 1883. -1612509100: Sending CONNACK to 172.18.0.3 (0, 5) -1612509100: Socket error on client , disconnecting. -1612509120: New connection from 172.18.0.3 on port 1883. -1612509120: Sending CONNACK to 172.18.0.3 (0, 5) -1612509120: Socket error on client , disconnecting. -1612509140: New connection from 172.18.0.3 on port 1883. -1612509140: Sending CONNACK to 172.18.0.3 (0, 5) -1612509140: Socket error on client , disconnecting. -1612509160: New connection from 172.18.0.3 on port 1883. -1612509160: Sending CONNACK to 172.18.0.3 (0, 5) -1612509160: Socket error on client , disconnecting. -1612509180: New connection from 172.18.0.3 on port 1883. -1612509180: Sending CONNACK to 172.18.0.3 (0, 5) -1612509180: Socket error on client , disconnecting. -1612509200: New connection from 172.18.0.3 on port 1883. -1612509200: Sending CONNACK to 172.18.0.3 (0, 5) -1612509200: Socket error on client , disconnecting. -1612509220: New connection from 172.18.0.3 on port 1883. -1612509220: Sending CONNACK to 172.18.0.3 (0, 5) -1612509220: Socket error on client , disconnecting. -1612509240: New connection from 172.18.0.3 on port 1883. -1612509240: Sending CONNACK to 172.18.0.3 (0, 5) -1612509240: Socket error on client , disconnecting. -1612509260: New connection from 172.18.0.3 on port 1883. -1612509260: Sending CONNACK to 172.18.0.3 (0, 5) -1612509260: Socket error on client , disconnecting. -1612509280: New connection from 172.18.0.3 on port 1883. -1612509280: Sending CONNACK to 172.18.0.3 (0, 5) -1612509280: Socket error on client , disconnecting. -1612509300: New connection from 172.18.0.3 on port 1883. -1612509300: Sending CONNACK to 172.18.0.3 (0, 5) -1612509300: Socket error on client , disconnecting. -1612509320: New connection from 172.18.0.3 on port 1883. -1612509320: Sending CONNACK to 172.18.0.3 (0, 5) -1612509320: Socket error on client , disconnecting. -1612509340: New connection from 172.18.0.3 on port 1883. -1612509340: Sending CONNACK to 172.18.0.3 (0, 5) -1612509340: Socket error on client , disconnecting. -1612509360: New connection from 172.18.0.3 on port 1883. -1612509360: Sending CONNACK to 172.18.0.3 (0, 5) -1612509360: Socket error on client , disconnecting. -1612509380: New connection from 172.18.0.3 on port 1883. -1612509380: Sending CONNACK to 172.18.0.3 (0, 5) -1612509380: Socket error on client , disconnecting. -1612509400: New connection from 172.18.0.3 on port 1883. -1612509400: Sending CONNACK to 172.18.0.3 (0, 5) -1612509400: Socket error on client , disconnecting. -1612509420: New connection from 172.18.0.3 on port 1883. -1612509420: Sending CONNACK to 172.18.0.3 (0, 5) -1612509420: Socket error on client , disconnecting. -1612509440: New connection from 172.18.0.3 on port 1883. -1612509440: Sending CONNACK to 172.18.0.3 (0, 5) -1612509440: Socket error on client , disconnecting. -1612509452: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612509452: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612509452: Error: Permission denied. -1612509460: New connection from 172.18.0.3 on port 1883. -1612509460: Sending CONNACK to 172.18.0.3 (0, 5) -1612509460: Socket error on client , disconnecting. -1612509480: New connection from 172.18.0.3 on port 1883. -1612509480: Sending CONNACK to 172.18.0.3 (0, 5) -1612509480: Socket error on client , disconnecting. -1612509500: New connection from 172.18.0.3 on port 1883. -1612509500: Sending CONNACK to 172.18.0.3 (0, 5) -1612509500: Socket error on client , disconnecting. -1612509520: New connection from 172.18.0.3 on port 1883. -1612509520: Sending CONNACK to 172.18.0.3 (0, 5) -1612509520: Socket error on client , disconnecting. -1612509540: New connection from 172.18.0.3 on port 1883. -1612509540: Sending CONNACK to 172.18.0.3 (0, 5) -1612509540: Socket error on client , disconnecting. -1612509560: New connection from 172.18.0.3 on port 1883. -1612509560: Sending CONNACK to 172.18.0.3 (0, 5) -1612509560: Socket error on client , disconnecting. -1612509580: New connection from 172.18.0.3 on port 1883. -1612509580: Sending CONNACK to 172.18.0.3 (0, 5) -1612509580: Socket error on client , disconnecting. -1612509600: New connection from 172.18.0.3 on port 1883. -1612509600: Sending CONNACK to 172.18.0.3 (0, 5) -1612509600: Socket error on client , disconnecting. -1612509620: New connection from 172.18.0.3 on port 1883. -1612509620: Sending CONNACK to 172.18.0.3 (0, 5) -1612509620: Socket error on client , disconnecting. -1612509640: New connection from 172.18.0.3 on port 1883. -1612509640: Sending CONNACK to 172.18.0.3 (0, 5) -1612509640: Socket error on client , disconnecting. -1612509660: New connection from 172.18.0.3 on port 1883. -1612509660: Sending CONNACK to 172.18.0.3 (0, 5) -1612509660: Socket error on client , disconnecting. -1612509680: New connection from 172.18.0.3 on port 1883. -1612509680: Sending CONNACK to 172.18.0.3 (0, 5) -1612509680: Socket error on client , disconnecting. -1612509700: New connection from 172.18.0.3 on port 1883. -1612509700: Sending CONNACK to 172.18.0.3 (0, 5) -1612509700: Socket error on client , disconnecting. -1612509720: New connection from 172.18.0.3 on port 1883. -1612509720: Sending CONNACK to 172.18.0.3 (0, 5) -1612509720: Socket error on client , disconnecting. -1612509740: New connection from 172.18.0.3 on port 1883. -1612509740: Sending CONNACK to 172.18.0.3 (0, 5) -1612509740: Socket error on client , disconnecting. -1612509760: New connection from 172.18.0.3 on port 1883. -1612509760: Sending CONNACK to 172.18.0.3 (0, 5) -1612509760: Socket error on client , disconnecting. -1612509780: New connection from 172.18.0.3 on port 1883. -1612509780: Sending CONNACK to 172.18.0.3 (0, 5) -1612509780: Socket error on client , disconnecting. -1612509800: New connection from 172.18.0.3 on port 1883. -1612509800: Sending CONNACK to 172.18.0.3 (0, 5) -1612509800: Socket error on client , disconnecting. -1612509820: New connection from 172.18.0.3 on port 1883. -1612509820: Sending CONNACK to 172.18.0.3 (0, 5) -1612509820: Socket error on client , disconnecting. -1612509840: New connection from 172.18.0.3 on port 1883. -1612509840: Sending CONNACK to 172.18.0.3 (0, 5) -1612509840: Socket error on client , disconnecting. -1612509860: New connection from 172.18.0.3 on port 1883. -1612509860: Sending CONNACK to 172.18.0.3 (0, 5) -1612509860: Socket error on client , disconnecting. -1612509880: New connection from 172.18.0.3 on port 1883. -1612509880: Sending CONNACK to 172.18.0.3 (0, 5) -1612509880: Socket error on client , disconnecting. -1612509900: New connection from 172.18.0.3 on port 1883. -1612509900: Sending CONNACK to 172.18.0.3 (0, 5) -1612509900: Socket error on client , disconnecting. -1612509920: New connection from 172.18.0.3 on port 1883. -1612509920: Sending CONNACK to 172.18.0.3 (0, 5) -1612509920: Socket error on client , disconnecting. -1612509940: New connection from 172.18.0.3 on port 1883. -1612509940: Sending CONNACK to 172.18.0.3 (0, 5) -1612509940: Socket error on client , disconnecting. -1612509960: New connection from 172.18.0.3 on port 1883. -1612509960: Sending CONNACK to 172.18.0.3 (0, 5) -1612509960: Socket error on client , disconnecting. -1612509980: New connection from 172.18.0.3 on port 1883. -1612509980: Sending CONNACK to 172.18.0.3 (0, 5) -1612509980: Socket error on client , disconnecting. -1612510000: New connection from 172.18.0.3 on port 1883. -1612510000: Sending CONNACK to 172.18.0.3 (0, 5) -1612510000: Socket error on client , disconnecting. -1612510020: New connection from 172.18.0.3 on port 1883. -1612510020: Sending CONNACK to 172.18.0.3 (0, 5) -1612510020: Socket error on client , disconnecting. -1612510040: New connection from 172.18.0.3 on port 1883. -1612510040: Sending CONNACK to 172.18.0.3 (0, 5) -1612510040: Socket error on client , disconnecting. -1612510060: New connection from 172.18.0.3 on port 1883. -1612510060: Sending CONNACK to 172.18.0.3 (0, 5) -1612510060: Socket error on client , disconnecting. -1612510080: New connection from 172.18.0.3 on port 1883. -1612510080: Sending CONNACK to 172.18.0.3 (0, 5) -1612510080: Socket error on client , disconnecting. -1612510100: New connection from 172.18.0.3 on port 1883. -1612510100: Sending CONNACK to 172.18.0.3 (0, 5) -1612510100: Socket error on client , disconnecting. -1612510120: New connection from 172.18.0.3 on port 1883. -1612510120: Sending CONNACK to 172.18.0.3 (0, 5) -1612510120: Socket error on client , disconnecting. -1612510140: New connection from 172.18.0.3 on port 1883. -1612510140: Sending CONNACK to 172.18.0.3 (0, 5) -1612510140: Socket error on client , disconnecting. -1612510160: New connection from 172.18.0.3 on port 1883. -1612510160: Sending CONNACK to 172.18.0.3 (0, 5) -1612510160: Socket error on client , disconnecting. -1612510180: New connection from 172.18.0.3 on port 1883. -1612510180: Sending CONNACK to 172.18.0.3 (0, 5) -1612510180: Socket error on client , disconnecting. -1612510200: New connection from 172.18.0.3 on port 1883. -1612510200: Sending CONNACK to 172.18.0.3 (0, 5) -1612510200: Socket error on client , disconnecting. -1612510220: New connection from 172.18.0.3 on port 1883. -1612510220: Sending CONNACK to 172.18.0.3 (0, 5) -1612510220: Socket error on client , disconnecting. -1612510240: New connection from 172.18.0.3 on port 1883. -1612510240: Sending CONNACK to 172.18.0.3 (0, 5) -1612510240: Socket error on client , disconnecting. -1612510260: New connection from 172.18.0.3 on port 1883. -1612510260: Sending CONNACK to 172.18.0.3 (0, 5) -1612510260: Socket error on client , disconnecting. -1612510280: New connection from 172.18.0.3 on port 1883. -1612510280: Sending CONNACK to 172.18.0.3 (0, 5) -1612510280: Socket error on client , disconnecting. -1612510300: New connection from 172.18.0.3 on port 1883. -1612510300: Sending CONNACK to 172.18.0.3 (0, 5) -1612510300: Socket error on client , disconnecting. -1612510320: New connection from 172.18.0.3 on port 1883. -1612510320: Sending CONNACK to 172.18.0.3 (0, 5) -1612510320: Socket error on client , disconnecting. -1612510340: New connection from 172.18.0.3 on port 1883. -1612510340: Sending CONNACK to 172.18.0.3 (0, 5) -1612510340: Socket error on client , disconnecting. -1612510360: New connection from 172.18.0.3 on port 1883. -1612510360: Sending CONNACK to 172.18.0.3 (0, 5) -1612510360: Socket error on client , disconnecting. -1612510380: New connection from 172.18.0.3 on port 1883. -1612510380: Sending CONNACK to 172.18.0.3 (0, 5) -1612510380: Socket error on client , disconnecting. -1612510400: New connection from 172.18.0.3 on port 1883. -1612510400: Sending CONNACK to 172.18.0.3 (0, 5) -1612510400: Socket error on client , disconnecting. -1612510420: New connection from 172.18.0.3 on port 1883. -1612510420: Sending CONNACK to 172.18.0.3 (0, 5) -1612510420: Socket error on client , disconnecting. -1612510440: New connection from 172.18.0.3 on port 1883. -1612510440: Sending CONNACK to 172.18.0.3 (0, 5) -1612510440: Socket error on client , disconnecting. -1612510460: New connection from 172.18.0.3 on port 1883. -1612510460: Sending CONNACK to 172.18.0.3 (0, 5) -1612510460: Socket error on client , disconnecting. -1612510480: New connection from 172.18.0.3 on port 1883. -1612510480: Sending CONNACK to 172.18.0.3 (0, 5) -1612510480: Socket error on client , disconnecting. -1612510500: New connection from 172.18.0.3 on port 1883. -1612510500: Sending CONNACK to 172.18.0.3 (0, 5) -1612510500: Socket error on client , disconnecting. -1612510520: New connection from 172.18.0.3 on port 1883. -1612510520: Sending CONNACK to 172.18.0.3 (0, 5) -1612510520: Socket error on client , disconnecting. -1612510540: New connection from 172.18.0.3 on port 1883. -1612510540: Sending CONNACK to 172.18.0.3 (0, 5) -1612510540: Socket error on client , disconnecting. -1612510560: New connection from 172.18.0.3 on port 1883. -1612510560: Sending CONNACK to 172.18.0.3 (0, 5) -1612510560: Socket error on client , disconnecting. -1612510580: New connection from 172.18.0.3 on port 1883. -1612510580: Sending CONNACK to 172.18.0.3 (0, 5) -1612510580: Socket error on client , disconnecting. -1612510600: New connection from 172.18.0.3 on port 1883. -1612510600: Sending CONNACK to 172.18.0.3 (0, 5) -1612510600: Socket error on client , disconnecting. -1612510620: New connection from 172.18.0.3 on port 1883. -1612510620: Sending CONNACK to 172.18.0.3 (0, 5) -1612510620: Socket error on client , disconnecting. -1612510640: New connection from 172.18.0.3 on port 1883. -1612510640: Sending CONNACK to 172.18.0.3 (0, 5) -1612510640: Socket error on client , disconnecting. -1612510660: New connection from 172.18.0.3 on port 1883. -1612510660: Sending CONNACK to 172.18.0.3 (0, 5) -1612510660: Socket error on client , disconnecting. -1612510680: New connection from 172.18.0.3 on port 1883. -1612510680: Sending CONNACK to 172.18.0.3 (0, 5) -1612510680: Socket error on client , disconnecting. -1612510700: New connection from 172.18.0.3 on port 1883. -1612510700: Sending CONNACK to 172.18.0.3 (0, 5) -1612510700: Socket error on client , disconnecting. -1612510720: New connection from 172.18.0.3 on port 1883. -1612510720: Sending CONNACK to 172.18.0.3 (0, 5) -1612510720: Socket error on client , disconnecting. -1612510740: New connection from 172.18.0.3 on port 1883. -1612510740: Sending CONNACK to 172.18.0.3 (0, 5) -1612510740: Socket error on client , disconnecting. -1612510760: New connection from 172.18.0.3 on port 1883. -1612510760: Sending CONNACK to 172.18.0.3 (0, 5) -1612510760: Socket error on client , disconnecting. -1612510780: New connection from 172.18.0.3 on port 1883. -1612510780: Sending CONNACK to 172.18.0.3 (0, 5) -1612510780: Socket error on client , disconnecting. -1612510800: New connection from 172.18.0.3 on port 1883. -1612510800: Sending CONNACK to 172.18.0.3 (0, 5) -1612510800: Socket error on client , disconnecting. -1612510820: New connection from 172.18.0.3 on port 1883. -1612510820: Sending CONNACK to 172.18.0.3 (0, 5) -1612510820: Socket error on client , disconnecting. -1612510840: New connection from 172.18.0.3 on port 1883. -1612510840: Sending CONNACK to 172.18.0.3 (0, 5) -1612510840: Socket error on client , disconnecting. -1612510860: New connection from 172.18.0.3 on port 1883. -1612510860: Sending CONNACK to 172.18.0.3 (0, 5) -1612510860: Socket error on client , disconnecting. -1612510880: New connection from 172.18.0.3 on port 1883. -1612510880: Sending CONNACK to 172.18.0.3 (0, 5) -1612510880: Socket error on client , disconnecting. -1612510900: New connection from 172.18.0.3 on port 1883. -1612510900: Sending CONNACK to 172.18.0.3 (0, 5) -1612510900: Socket error on client , disconnecting. -1612510920: New connection from 172.18.0.3 on port 1883. -1612510920: Sending CONNACK to 172.18.0.3 (0, 5) -1612510920: Socket error on client , disconnecting. -1612510940: New connection from 172.18.0.3 on port 1883. -1612510940: Sending CONNACK to 172.18.0.3 (0, 5) -1612510940: Socket error on client , disconnecting. -1612510960: New connection from 172.18.0.3 on port 1883. -1612510960: Sending CONNACK to 172.18.0.3 (0, 5) -1612510960: Socket error on client , disconnecting. -1612510980: New connection from 172.18.0.3 on port 1883. -1612510980: Sending CONNACK to 172.18.0.3 (0, 5) -1612510980: Socket error on client , disconnecting. -1612511000: New connection from 172.18.0.3 on port 1883. -1612511000: Sending CONNACK to 172.18.0.3 (0, 5) -1612511000: Socket error on client , disconnecting. -1612511020: New connection from 172.18.0.3 on port 1883. -1612511020: Sending CONNACK to 172.18.0.3 (0, 5) -1612511020: Socket error on client , disconnecting. -1612511040: New connection from 172.18.0.3 on port 1883. -1612511040: Sending CONNACK to 172.18.0.3 (0, 5) -1612511040: Socket error on client , disconnecting. -1612511060: New connection from 172.18.0.3 on port 1883. -1612511060: Sending CONNACK to 172.18.0.3 (0, 5) -1612511060: Socket error on client , disconnecting. -1612511080: New connection from 172.18.0.3 on port 1883. -1612511080: Sending CONNACK to 172.18.0.3 (0, 5) -1612511080: Socket error on client , disconnecting. -1612511100: New connection from 172.18.0.3 on port 1883. -1612511100: Sending CONNACK to 172.18.0.3 (0, 5) -1612511100: Socket error on client , disconnecting. -1612511120: New connection from 172.18.0.3 on port 1883. -1612511120: Sending CONNACK to 172.18.0.3 (0, 5) -1612511120: Socket error on client , disconnecting. -1612511140: New connection from 172.18.0.3 on port 1883. -1612511140: Sending CONNACK to 172.18.0.3 (0, 5) -1612511140: Socket error on client , disconnecting. -1612511160: New connection from 172.18.0.3 on port 1883. -1612511160: Sending CONNACK to 172.18.0.3 (0, 5) -1612511160: Socket error on client , disconnecting. -1612511180: New connection from 172.18.0.3 on port 1883. -1612511180: Sending CONNACK to 172.18.0.3 (0, 5) -1612511180: Socket error on client , disconnecting. -1612511200: New connection from 172.18.0.3 on port 1883. -1612511200: Sending CONNACK to 172.18.0.3 (0, 5) -1612511200: Socket error on client , disconnecting. -1612511220: New connection from 172.18.0.3 on port 1883. -1612511220: Sending CONNACK to 172.18.0.3 (0, 5) -1612511220: Socket error on client , disconnecting. -1612511240: New connection from 172.18.0.3 on port 1883. -1612511240: Sending CONNACK to 172.18.0.3 (0, 5) -1612511240: Socket error on client , disconnecting. -1612511253: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612511253: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612511253: Error: Permission denied. -1612511260: New connection from 172.18.0.3 on port 1883. -1612511260: Sending CONNACK to 172.18.0.3 (0, 5) -1612511260: Socket error on client , disconnecting. -1612511280: New connection from 172.18.0.3 on port 1883. -1612511280: Sending CONNACK to 172.18.0.3 (0, 5) -1612511280: Socket error on client , disconnecting. -1612511300: New connection from 172.18.0.3 on port 1883. -1612511300: Sending CONNACK to 172.18.0.3 (0, 5) -1612511300: Socket error on client , disconnecting. -1612511320: New connection from 172.18.0.3 on port 1883. -1612511320: Sending CONNACK to 172.18.0.3 (0, 5) -1612511320: Socket error on client , disconnecting. -1612511340: New connection from 172.18.0.3 on port 1883. -1612511340: Sending CONNACK to 172.18.0.3 (0, 5) -1612511340: Socket error on client , disconnecting. -1612511360: New connection from 172.18.0.3 on port 1883. -1612511360: Sending CONNACK to 172.18.0.3 (0, 5) -1612511360: Socket error on client , disconnecting. -1612511380: New connection from 172.18.0.3 on port 1883. -1612511380: Sending CONNACK to 172.18.0.3 (0, 5) -1612511380: Socket error on client , disconnecting. -1612511400: New connection from 172.18.0.3 on port 1883. -1612511400: Sending CONNACK to 172.18.0.3 (0, 5) -1612511400: Socket error on client , disconnecting. -1612511420: New connection from 172.18.0.3 on port 1883. -1612511420: Sending CONNACK to 172.18.0.3 (0, 5) -1612511420: Socket error on client , disconnecting. -1612511440: New connection from 172.18.0.3 on port 1883. -1612511440: Sending CONNACK to 172.18.0.3 (0, 5) -1612511440: Socket error on client , disconnecting. -1612511460: New connection from 172.18.0.3 on port 1883. -1612511460: Sending CONNACK to 172.18.0.3 (0, 5) -1612511460: Socket error on client , disconnecting. -1612511480: New connection from 172.18.0.3 on port 1883. -1612511480: Sending CONNACK to 172.18.0.3 (0, 5) -1612511480: Socket error on client , disconnecting. -1612511500: New connection from 172.18.0.3 on port 1883. -1612511500: Sending CONNACK to 172.18.0.3 (0, 5) -1612511500: Socket error on client , disconnecting. -1612511520: New connection from 172.18.0.3 on port 1883. -1612511520: Sending CONNACK to 172.18.0.3 (0, 5) -1612511520: Socket error on client , disconnecting. -1612511540: New connection from 172.18.0.3 on port 1883. -1612511540: Sending CONNACK to 172.18.0.3 (0, 5) -1612511540: Socket error on client , disconnecting. -1612511560: New connection from 172.18.0.3 on port 1883. -1612511560: Sending CONNACK to 172.18.0.3 (0, 5) -1612511560: Socket error on client , disconnecting. -1612511580: New connection from 172.18.0.3 on port 1883. -1612511580: Sending CONNACK to 172.18.0.3 (0, 5) -1612511580: Socket error on client , disconnecting. -1612511600: New connection from 172.18.0.3 on port 1883. -1612511600: Sending CONNACK to 172.18.0.3 (0, 5) -1612511600: Socket error on client , disconnecting. -1612511620: New connection from 172.18.0.3 on port 1883. -1612511620: Sending CONNACK to 172.18.0.3 (0, 5) -1612511620: Socket error on client , disconnecting. -1612511640: New connection from 172.18.0.3 on port 1883. -1612511640: Sending CONNACK to 172.18.0.3 (0, 5) -1612511640: Socket error on client , disconnecting. -1612511660: New connection from 172.18.0.3 on port 1883. -1612511660: Sending CONNACK to 172.18.0.3 (0, 5) -1612511660: Socket error on client , disconnecting. -1612511680: New connection from 172.18.0.3 on port 1883. -1612511680: Sending CONNACK to 172.18.0.3 (0, 5) -1612511680: Socket error on client , disconnecting. -1612511700: New connection from 172.18.0.3 on port 1883. -1612511700: Sending CONNACK to 172.18.0.3 (0, 5) -1612511700: Socket error on client , disconnecting. -1612511720: New connection from 172.18.0.3 on port 1883. -1612511720: Sending CONNACK to 172.18.0.3 (0, 5) -1612511720: Socket error on client , disconnecting. -1612511740: New connection from 172.18.0.3 on port 1883. -1612511740: Sending CONNACK to 172.18.0.3 (0, 5) -1612511740: Socket error on client , disconnecting. -1612511760: New connection from 172.18.0.3 on port 1883. -1612511760: Sending CONNACK to 172.18.0.3 (0, 5) -1612511760: Socket error on client , disconnecting. -1612511780: New connection from 172.18.0.3 on port 1883. -1612511780: Sending CONNACK to 172.18.0.3 (0, 5) -1612511780: Socket error on client , disconnecting. -1612511800: New connection from 172.18.0.3 on port 1883. -1612511800: Sending CONNACK to 172.18.0.3 (0, 5) -1612511800: Socket error on client , disconnecting. -1612511820: New connection from 172.18.0.3 on port 1883. -1612511820: Sending CONNACK to 172.18.0.3 (0, 5) -1612511820: Socket error on client , disconnecting. -1612511840: New connection from 172.18.0.3 on port 1883. -1612511840: Sending CONNACK to 172.18.0.3 (0, 5) -1612511840: Socket error on client , disconnecting. -1612511860: New connection from 172.18.0.3 on port 1883. -1612511860: Sending CONNACK to 172.18.0.3 (0, 5) -1612511860: Socket error on client , disconnecting. -1612511880: New connection from 172.18.0.3 on port 1883. -1612511880: Sending CONNACK to 172.18.0.3 (0, 5) -1612511880: Socket error on client , disconnecting. -1612511900: New connection from 172.18.0.3 on port 1883. -1612511900: Sending CONNACK to 172.18.0.3 (0, 5) -1612511900: Socket error on client , disconnecting. -1612511920: New connection from 172.18.0.3 on port 1883. -1612511920: Sending CONNACK to 172.18.0.3 (0, 5) -1612511920: Socket error on client , disconnecting. -1612511940: New connection from 172.18.0.3 on port 1883. -1612511940: Sending CONNACK to 172.18.0.3 (0, 5) -1612511940: Socket error on client , disconnecting. -1612511960: New connection from 172.18.0.3 on port 1883. -1612511960: Sending CONNACK to 172.18.0.3 (0, 5) -1612511960: Socket error on client , disconnecting. -1612511980: New connection from 172.18.0.3 on port 1883. -1612511980: Sending CONNACK to 172.18.0.3 (0, 5) -1612511980: Socket error on client , disconnecting. -1612512000: New connection from 172.18.0.3 on port 1883. -1612512000: Sending CONNACK to 172.18.0.3 (0, 5) -1612512000: Socket error on client , disconnecting. -1612512020: New connection from 172.18.0.3 on port 1883. -1612512020: Sending CONNACK to 172.18.0.3 (0, 5) -1612512020: Socket error on client , disconnecting. -1612512040: New connection from 172.18.0.3 on port 1883. -1612512040: Sending CONNACK to 172.18.0.3 (0, 5) -1612512040: Socket error on client , disconnecting. -1612512060: New connection from 172.18.0.3 on port 1883. -1612512060: Sending CONNACK to 172.18.0.3 (0, 5) -1612512060: Socket error on client , disconnecting. -1612512080: New connection from 172.18.0.3 on port 1883. -1612512080: Sending CONNACK to 172.18.0.3 (0, 5) -1612512080: Socket error on client , disconnecting. -1612512100: New connection from 172.18.0.3 on port 1883. -1612512100: Sending CONNACK to 172.18.0.3 (0, 5) -1612512100: Socket error on client , disconnecting. -1612512120: New connection from 172.18.0.3 on port 1883. -1612512120: Sending CONNACK to 172.18.0.3 (0, 5) -1612512120: Socket error on client , disconnecting. -1612512140: New connection from 172.18.0.3 on port 1883. -1612512140: Sending CONNACK to 172.18.0.3 (0, 5) -1612512140: Socket error on client , disconnecting. -1612512160: New connection from 172.18.0.3 on port 1883. -1612512160: Sending CONNACK to 172.18.0.3 (0, 5) -1612512160: Socket error on client , disconnecting. -1612512180: New connection from 172.18.0.3 on port 1883. -1612512180: Sending CONNACK to 172.18.0.3 (0, 5) -1612512180: Socket error on client , disconnecting. -1612512200: New connection from 172.18.0.3 on port 1883. -1612512200: Sending CONNACK to 172.18.0.3 (0, 5) -1612512200: Socket error on client , disconnecting. -1612512220: New connection from 172.18.0.3 on port 1883. -1612512220: Sending CONNACK to 172.18.0.3 (0, 5) -1612512220: Socket error on client , disconnecting. -1612512240: New connection from 172.18.0.3 on port 1883. -1612512240: Sending CONNACK to 172.18.0.3 (0, 5) -1612512240: Socket error on client , disconnecting. -1612512260: New connection from 172.18.0.3 on port 1883. -1612512260: Sending CONNACK to 172.18.0.3 (0, 5) -1612512260: Socket error on client , disconnecting. -1612512280: New connection from 172.18.0.3 on port 1883. -1612512280: Sending CONNACK to 172.18.0.3 (0, 5) -1612512280: Socket error on client , disconnecting. -1612512300: New connection from 172.18.0.3 on port 1883. -1612512300: Sending CONNACK to 172.18.0.3 (0, 5) -1612512300: Socket error on client , disconnecting. -1612512320: New connection from 172.18.0.3 on port 1883. -1612512320: Sending CONNACK to 172.18.0.3 (0, 5) -1612512320: Socket error on client , disconnecting. -1612512340: New connection from 172.18.0.3 on port 1883. -1612512340: Sending CONNACK to 172.18.0.3 (0, 5) -1612512340: Socket error on client , disconnecting. -1612512360: New connection from 172.18.0.3 on port 1883. -1612512360: Sending CONNACK to 172.18.0.3 (0, 5) -1612512360: Socket error on client , disconnecting. -1612512380: New connection from 172.18.0.3 on port 1883. -1612512380: Sending CONNACK to 172.18.0.3 (0, 5) -1612512380: Socket error on client , disconnecting. -1612512400: New connection from 172.18.0.3 on port 1883. -1612512400: Sending CONNACK to 172.18.0.3 (0, 5) -1612512400: Socket error on client , disconnecting. -1612512420: New connection from 172.18.0.3 on port 1883. -1612512420: Sending CONNACK to 172.18.0.3 (0, 5) -1612512420: Socket error on client , disconnecting. -1612512440: New connection from 172.18.0.3 on port 1883. -1612512440: Sending CONNACK to 172.18.0.3 (0, 5) -1612512440: Socket error on client , disconnecting. -1612512460: New connection from 172.18.0.3 on port 1883. -1612512460: Sending CONNACK to 172.18.0.3 (0, 5) -1612512460: Socket error on client , disconnecting. -1612512480: New connection from 172.18.0.3 on port 1883. -1612512480: Sending CONNACK to 172.18.0.3 (0, 5) -1612512480: Socket error on client , disconnecting. -1612512500: New connection from 172.18.0.3 on port 1883. -1612512500: Sending CONNACK to 172.18.0.3 (0, 5) -1612512500: Socket error on client , disconnecting. -1612512520: New connection from 172.18.0.3 on port 1883. -1612512520: Sending CONNACK to 172.18.0.3 (0, 5) -1612512520: Socket error on client , disconnecting. -1612512540: New connection from 172.18.0.3 on port 1883. -1612512540: Sending CONNACK to 172.18.0.3 (0, 5) -1612512540: Socket error on client , disconnecting. -1612512560: New connection from 172.18.0.3 on port 1883. -1612512560: Sending CONNACK to 172.18.0.3 (0, 5) -1612512560: Socket error on client , disconnecting. -1612512580: New connection from 172.18.0.3 on port 1883. -1612512580: Sending CONNACK to 172.18.0.3 (0, 5) -1612512580: Socket error on client , disconnecting. -1612512600: New connection from 172.18.0.3 on port 1883. -1612512600: Sending CONNACK to 172.18.0.3 (0, 5) -1612512600: Socket error on client , disconnecting. -1612512620: New connection from 172.18.0.3 on port 1883. -1612512620: Sending CONNACK to 172.18.0.3 (0, 5) -1612512620: Socket error on client , disconnecting. -1612512640: New connection from 172.18.0.3 on port 1883. -1612512640: Sending CONNACK to 172.18.0.3 (0, 5) -1612512640: Socket error on client , disconnecting. -1612512660: New connection from 172.18.0.3 on port 1883. -1612512660: Sending CONNACK to 172.18.0.3 (0, 5) -1612512660: Socket error on client , disconnecting. -1612512680: New connection from 172.18.0.3 on port 1883. -1612512680: Sending CONNACK to 172.18.0.3 (0, 5) -1612512680: Socket error on client , disconnecting. -1612512700: New connection from 172.18.0.3 on port 1883. -1612512700: Sending CONNACK to 172.18.0.3 (0, 5) -1612512700: Socket error on client , disconnecting. -1612512720: New connection from 172.18.0.3 on port 1883. -1612512720: Sending CONNACK to 172.18.0.3 (0, 5) -1612512720: Socket error on client , disconnecting. -1612512740: New connection from 172.18.0.3 on port 1883. -1612512740: Sending CONNACK to 172.18.0.3 (0, 5) -1612512740: Socket error on client , disconnecting. -1612512760: New connection from 172.18.0.3 on port 1883. -1612512760: Sending CONNACK to 172.18.0.3 (0, 5) -1612512760: Socket error on client , disconnecting. -1612512780: New connection from 172.18.0.3 on port 1883. -1612512780: Sending CONNACK to 172.18.0.3 (0, 5) -1612512780: Socket error on client , disconnecting. -1612512800: New connection from 172.18.0.3 on port 1883. -1612512800: Sending CONNACK to 172.18.0.3 (0, 5) -1612512800: Socket error on client , disconnecting. -1612512820: New connection from 172.18.0.3 on port 1883. -1612512820: Sending CONNACK to 172.18.0.3 (0, 5) -1612512820: Socket error on client , disconnecting. -1612512840: New connection from 172.18.0.3 on port 1883. -1612512840: Sending CONNACK to 172.18.0.3 (0, 5) -1612512840: Socket error on client , disconnecting. -1612512860: New connection from 172.18.0.3 on port 1883. -1612512860: Sending CONNACK to 172.18.0.3 (0, 5) -1612512860: Socket error on client , disconnecting. -1612512880: New connection from 172.18.0.3 on port 1883. -1612512880: Sending CONNACK to 172.18.0.3 (0, 5) -1612512880: Socket error on client , disconnecting. -1612512900: New connection from 172.18.0.3 on port 1883. -1612512900: Sending CONNACK to 172.18.0.3 (0, 5) -1612512900: Socket error on client , disconnecting. -1612512920: New connection from 172.18.0.3 on port 1883. -1612512920: Sending CONNACK to 172.18.0.3 (0, 5) -1612512920: Socket error on client , disconnecting. -1612512940: New connection from 172.18.0.3 on port 1883. -1612512940: Sending CONNACK to 172.18.0.3 (0, 5) -1612512940: Socket error on client , disconnecting. -1612512960: New connection from 172.18.0.3 on port 1883. -1612512960: Sending CONNACK to 172.18.0.3 (0, 5) -1612512960: Socket error on client , disconnecting. -1612512980: New connection from 172.18.0.3 on port 1883. -1612512980: Sending CONNACK to 172.18.0.3 (0, 5) -1612512980: Socket error on client , disconnecting. -1612513000: New connection from 172.18.0.3 on port 1883. -1612513000: Sending CONNACK to 172.18.0.3 (0, 5) -1612513000: Socket error on client , disconnecting. -1612513020: New connection from 172.18.0.3 on port 1883. -1612513020: Sending CONNACK to 172.18.0.3 (0, 5) -1612513020: Socket error on client , disconnecting. -1612513040: New connection from 172.18.0.3 on port 1883. -1612513040: Sending CONNACK to 172.18.0.3 (0, 5) -1612513040: Socket error on client , disconnecting. -1612513054: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612513054: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612513054: Error: Permission denied. -1612513060: New connection from 172.18.0.3 on port 1883. -1612513060: Sending CONNACK to 172.18.0.3 (0, 5) -1612513060: Socket error on client , disconnecting. -1612513080: New connection from 172.18.0.3 on port 1883. -1612513080: Sending CONNACK to 172.18.0.3 (0, 5) -1612513080: Socket error on client , disconnecting. -1612513100: New connection from 172.18.0.3 on port 1883. -1612513100: Sending CONNACK to 172.18.0.3 (0, 5) -1612513100: Socket error on client , disconnecting. -1612513120: New connection from 172.18.0.3 on port 1883. -1612513120: Sending CONNACK to 172.18.0.3 (0, 5) -1612513120: Socket error on client , disconnecting. -1612513140: New connection from 172.18.0.3 on port 1883. -1612513140: Sending CONNACK to 172.18.0.3 (0, 5) -1612513140: Socket error on client , disconnecting. -1612513160: New connection from 172.18.0.3 on port 1883. -1612513160: Sending CONNACK to 172.18.0.3 (0, 5) -1612513160: Socket error on client , disconnecting. -1612513180: New connection from 172.18.0.3 on port 1883. -1612513180: Sending CONNACK to 172.18.0.3 (0, 5) -1612513180: Socket error on client , disconnecting. -1612513200: New connection from 172.18.0.3 on port 1883. -1612513200: Sending CONNACK to 172.18.0.3 (0, 5) -1612513200: Socket error on client , disconnecting. -1612513220: New connection from 172.18.0.3 on port 1883. -1612513220: Sending CONNACK to 172.18.0.3 (0, 5) -1612513220: Socket error on client , disconnecting. -1612513240: New connection from 172.18.0.3 on port 1883. -1612513240: Sending CONNACK to 172.18.0.3 (0, 5) -1612513240: Socket error on client , disconnecting. -1612513260: New connection from 172.18.0.3 on port 1883. -1612513260: Sending CONNACK to 172.18.0.3 (0, 5) -1612513260: Socket error on client , disconnecting. -1612513280: New connection from 172.18.0.3 on port 1883. -1612513280: Sending CONNACK to 172.18.0.3 (0, 5) -1612513280: Socket error on client , disconnecting. -1612513300: New connection from 172.18.0.3 on port 1883. -1612513300: Sending CONNACK to 172.18.0.3 (0, 5) -1612513300: Socket error on client , disconnecting. -1612513320: New connection from 172.18.0.3 on port 1883. -1612513320: Sending CONNACK to 172.18.0.3 (0, 5) -1612513320: Socket error on client , disconnecting. -1612513340: New connection from 172.18.0.3 on port 1883. -1612513340: Sending CONNACK to 172.18.0.3 (0, 5) -1612513340: Socket error on client , disconnecting. -1612513360: New connection from 172.18.0.3 on port 1883. -1612513360: Sending CONNACK to 172.18.0.3 (0, 5) -1612513360: Socket error on client , disconnecting. -1612513380: New connection from 172.18.0.3 on port 1883. -1612513380: Sending CONNACK to 172.18.0.3 (0, 5) -1612513380: Socket error on client , disconnecting. -1612513400: New connection from 172.18.0.3 on port 1883. -1612513400: Sending CONNACK to 172.18.0.3 (0, 5) -1612513400: Socket error on client , disconnecting. -1612513420: New connection from 172.18.0.3 on port 1883. -1612513420: Sending CONNACK to 172.18.0.3 (0, 5) -1612513420: Socket error on client , disconnecting. -1612513440: New connection from 172.18.0.3 on port 1883. -1612513440: Sending CONNACK to 172.18.0.3 (0, 5) -1612513440: Socket error on client , disconnecting. -1612513460: New connection from 172.18.0.3 on port 1883. -1612513460: Sending CONNACK to 172.18.0.3 (0, 5) -1612513460: Socket error on client , disconnecting. -1612513480: New connection from 172.18.0.3 on port 1883. -1612513480: Sending CONNACK to 172.18.0.3 (0, 5) -1612513480: Socket error on client , disconnecting. -1612513500: New connection from 172.18.0.3 on port 1883. -1612513500: Sending CONNACK to 172.18.0.3 (0, 5) -1612513500: Socket error on client , disconnecting. -1612513520: New connection from 172.18.0.3 on port 1883. -1612513520: Sending CONNACK to 172.18.0.3 (0, 5) -1612513520: Socket error on client , disconnecting. -1612513540: New connection from 172.18.0.3 on port 1883. -1612513540: Sending CONNACK to 172.18.0.3 (0, 5) -1612513540: Socket error on client , disconnecting. -1612513560: New connection from 172.18.0.3 on port 1883. -1612513560: Sending CONNACK to 172.18.0.3 (0, 5) -1612513560: Socket error on client , disconnecting. -1612513580: New connection from 172.18.0.3 on port 1883. -1612513580: Sending CONNACK to 172.18.0.3 (0, 5) -1612513580: Socket error on client , disconnecting. -1612513600: New connection from 172.18.0.3 on port 1883. -1612513600: Sending CONNACK to 172.18.0.3 (0, 5) -1612513600: Socket error on client , disconnecting. -1612513620: New connection from 172.18.0.3 on port 1883. -1612513620: Sending CONNACK to 172.18.0.3 (0, 5) -1612513620: Socket error on client , disconnecting. -1612513640: New connection from 172.18.0.3 on port 1883. -1612513640: Sending CONNACK to 172.18.0.3 (0, 5) -1612513640: Socket error on client , disconnecting. -1612513660: New connection from 172.18.0.3 on port 1883. -1612513660: Sending CONNACK to 172.18.0.3 (0, 5) -1612513660: Socket error on client , disconnecting. -1612513680: New connection from 172.18.0.3 on port 1883. -1612513680: Sending CONNACK to 172.18.0.3 (0, 5) -1612513680: Socket error on client , disconnecting. -1612513700: New connection from 172.18.0.3 on port 1883. -1612513700: Sending CONNACK to 172.18.0.3 (0, 5) -1612513700: Socket error on client , disconnecting. -1612513720: New connection from 172.18.0.3 on port 1883. -1612513720: Sending CONNACK to 172.18.0.3 (0, 5) -1612513720: Socket error on client , disconnecting. -1612513740: New connection from 172.18.0.3 on port 1883. -1612513740: Sending CONNACK to 172.18.0.3 (0, 5) -1612513740: Socket error on client , disconnecting. -1612513760: New connection from 172.18.0.3 on port 1883. -1612513760: Sending CONNACK to 172.18.0.3 (0, 5) -1612513760: Socket error on client , disconnecting. -1612513780: New connection from 172.18.0.3 on port 1883. -1612513780: Sending CONNACK to 172.18.0.3 (0, 5) -1612513780: Socket error on client , disconnecting. -1612513800: New connection from 172.18.0.3 on port 1883. -1612513800: Sending CONNACK to 172.18.0.3 (0, 5) -1612513800: Socket error on client , disconnecting. -1612513820: New connection from 172.18.0.3 on port 1883. -1612513820: Sending CONNACK to 172.18.0.3 (0, 5) -1612513820: Socket error on client , disconnecting. -1612513840: New connection from 172.18.0.3 on port 1883. -1612513840: Sending CONNACK to 172.18.0.3 (0, 5) -1612513840: Socket error on client , disconnecting. -1612513860: New connection from 172.18.0.3 on port 1883. -1612513860: Sending CONNACK to 172.18.0.3 (0, 5) -1612513860: Socket error on client , disconnecting. -1612513880: New connection from 172.18.0.3 on port 1883. -1612513880: Sending CONNACK to 172.18.0.3 (0, 5) -1612513880: Socket error on client , disconnecting. -1612513900: New connection from 172.18.0.3 on port 1883. -1612513900: Sending CONNACK to 172.18.0.3 (0, 5) -1612513900: Socket error on client , disconnecting. -1612513920: New connection from 172.18.0.3 on port 1883. -1612513920: Sending CONNACK to 172.18.0.3 (0, 5) -1612513920: Socket error on client , disconnecting. -1612513940: New connection from 172.18.0.3 on port 1883. -1612513940: Sending CONNACK to 172.18.0.3 (0, 5) -1612513940: Socket error on client , disconnecting. -1612513960: New connection from 172.18.0.3 on port 1883. -1612513960: Sending CONNACK to 172.18.0.3 (0, 5) -1612513960: Socket error on client , disconnecting. -1612513980: New connection from 172.18.0.3 on port 1883. -1612513980: Sending CONNACK to 172.18.0.3 (0, 5) -1612513980: Socket error on client , disconnecting. -1612514000: New connection from 172.18.0.3 on port 1883. -1612514000: Sending CONNACK to 172.18.0.3 (0, 5) -1612514000: Socket error on client , disconnecting. -1612514020: New connection from 172.18.0.3 on port 1883. -1612514020: Sending CONNACK to 172.18.0.3 (0, 5) -1612514020: Socket error on client , disconnecting. -1612514040: New connection from 172.18.0.3 on port 1883. -1612514040: Sending CONNACK to 172.18.0.3 (0, 5) -1612514040: Socket error on client , disconnecting. -1612514060: New connection from 172.18.0.3 on port 1883. -1612514060: Sending CONNACK to 172.18.0.3 (0, 5) -1612514060: Socket error on client , disconnecting. -1612514080: New connection from 172.18.0.3 on port 1883. -1612514080: Sending CONNACK to 172.18.0.3 (0, 5) -1612514080: Socket error on client , disconnecting. -1612514100: New connection from 172.18.0.3 on port 1883. -1612514100: Sending CONNACK to 172.18.0.3 (0, 5) -1612514100: Socket error on client , disconnecting. -1612514120: New connection from 172.18.0.3 on port 1883. -1612514120: Sending CONNACK to 172.18.0.3 (0, 5) -1612514120: Socket error on client , disconnecting. -1612514140: New connection from 172.18.0.3 on port 1883. -1612514140: Sending CONNACK to 172.18.0.3 (0, 5) -1612514140: Socket error on client , disconnecting. -1612514160: New connection from 172.18.0.3 on port 1883. -1612514160: Sending CONNACK to 172.18.0.3 (0, 5) -1612514160: Socket error on client , disconnecting. -1612514180: New connection from 172.18.0.3 on port 1883. -1612514180: Sending CONNACK to 172.18.0.3 (0, 5) -1612514180: Socket error on client , disconnecting. -1612514200: New connection from 172.18.0.3 on port 1883. -1612514200: Sending CONNACK to 172.18.0.3 (0, 5) -1612514200: Socket error on client , disconnecting. -1612514220: New connection from 172.18.0.3 on port 1883. -1612514220: Sending CONNACK to 172.18.0.3 (0, 5) -1612514220: Socket error on client , disconnecting. -1612514240: New connection from 172.18.0.3 on port 1883. -1612514240: Sending CONNACK to 172.18.0.3 (0, 5) -1612514240: Socket error on client , disconnecting. -1612514260: New connection from 172.18.0.3 on port 1883. -1612514260: Sending CONNACK to 172.18.0.3 (0, 5) -1612514260: Socket error on client , disconnecting. -1612514280: New connection from 172.18.0.3 on port 1883. -1612514280: Sending CONNACK to 172.18.0.3 (0, 5) -1612514280: Socket error on client , disconnecting. -1612514300: New connection from 172.18.0.3 on port 1883. -1612514300: Sending CONNACK to 172.18.0.3 (0, 5) -1612514300: Socket error on client , disconnecting. -1612514320: New connection from 172.18.0.3 on port 1883. -1612514320: Sending CONNACK to 172.18.0.3 (0, 5) -1612514320: Socket error on client , disconnecting. -1612514340: New connection from 172.18.0.3 on port 1883. -1612514340: Sending CONNACK to 172.18.0.3 (0, 5) -1612514340: Socket error on client , disconnecting. -1612514360: New connection from 172.18.0.3 on port 1883. -1612514360: Sending CONNACK to 172.18.0.3 (0, 5) -1612514360: Socket error on client , disconnecting. -1612514380: New connection from 172.18.0.3 on port 1883. -1612514380: Sending CONNACK to 172.18.0.3 (0, 5) -1612514380: Socket error on client , disconnecting. -1612514400: New connection from 172.18.0.3 on port 1883. -1612514400: Sending CONNACK to 172.18.0.3 (0, 5) -1612514400: Socket error on client , disconnecting. -1612514420: New connection from 172.18.0.3 on port 1883. -1612514420: Sending CONNACK to 172.18.0.3 (0, 5) -1612514420: Socket error on client , disconnecting. -1612514440: New connection from 172.18.0.3 on port 1883. -1612514440: Sending CONNACK to 172.18.0.3 (0, 5) -1612514440: Socket error on client , disconnecting. -1612514460: New connection from 172.18.0.3 on port 1883. -1612514460: Sending CONNACK to 172.18.0.3 (0, 5) -1612514460: Socket error on client , disconnecting. -1612514480: New connection from 172.18.0.3 on port 1883. -1612514480: Sending CONNACK to 172.18.0.3 (0, 5) -1612514480: Socket error on client , disconnecting. -1612514500: New connection from 172.18.0.3 on port 1883. -1612514500: Sending CONNACK to 172.18.0.3 (0, 5) -1612514500: Socket error on client , disconnecting. -1612514520: New connection from 172.18.0.3 on port 1883. -1612514520: Sending CONNACK to 172.18.0.3 (0, 5) -1612514520: Socket error on client , disconnecting. -1612514540: New connection from 172.18.0.3 on port 1883. -1612514540: Sending CONNACK to 172.18.0.3 (0, 5) -1612514540: Socket error on client , disconnecting. -1612514560: New connection from 172.18.0.3 on port 1883. -1612514560: Sending CONNACK to 172.18.0.3 (0, 5) -1612514560: Socket error on client , disconnecting. -1612514580: New connection from 172.18.0.3 on port 1883. -1612514580: Sending CONNACK to 172.18.0.3 (0, 5) -1612514580: Socket error on client , disconnecting. -1612514600: New connection from 172.18.0.3 on port 1883. -1612514600: Sending CONNACK to 172.18.0.3 (0, 5) -1612514600: Socket error on client , disconnecting. -1612514620: New connection from 172.18.0.3 on port 1883. -1612514620: Sending CONNACK to 172.18.0.3 (0, 5) -1612514620: Socket error on client , disconnecting. -1612514640: New connection from 172.18.0.3 on port 1883. -1612514640: Sending CONNACK to 172.18.0.3 (0, 5) -1612514640: Socket error on client , disconnecting. -1612514660: New connection from 172.18.0.3 on port 1883. -1612514660: Sending CONNACK to 172.18.0.3 (0, 5) -1612514660: Socket error on client , disconnecting. -1612514680: New connection from 172.18.0.3 on port 1883. -1612514680: Sending CONNACK to 172.18.0.3 (0, 5) -1612514680: Socket error on client , disconnecting. -1612514700: New connection from 172.18.0.3 on port 1883. -1612514700: Sending CONNACK to 172.18.0.3 (0, 5) -1612514700: Socket error on client , disconnecting. -1612514720: New connection from 172.18.0.3 on port 1883. -1612514720: Sending CONNACK to 172.18.0.3 (0, 5) -1612514720: Socket error on client , disconnecting. -1612514740: New connection from 172.18.0.3 on port 1883. -1612514740: Sending CONNACK to 172.18.0.3 (0, 5) -1612514740: Socket error on client , disconnecting. -1612514760: New connection from 172.18.0.3 on port 1883. -1612514760: Sending CONNACK to 172.18.0.3 (0, 5) -1612514760: Socket error on client , disconnecting. -1612514780: New connection from 172.18.0.3 on port 1883. -1612514780: Sending CONNACK to 172.18.0.3 (0, 5) -1612514780: Socket error on client , disconnecting. -1612514800: New connection from 172.18.0.3 on port 1883. -1612514800: Sending CONNACK to 172.18.0.3 (0, 5) -1612514800: Socket error on client , disconnecting. -1612514820: New connection from 172.18.0.3 on port 1883. -1612514820: Sending CONNACK to 172.18.0.3 (0, 5) -1612514820: Socket error on client , disconnecting. -1612514840: New connection from 172.18.0.3 on port 1883. -1612514840: Sending CONNACK to 172.18.0.3 (0, 5) -1612514840: Socket error on client , disconnecting. -1612514855: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612514855: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612514855: Error: Permission denied. -1612514860: New connection from 172.18.0.3 on port 1883. -1612514860: Sending CONNACK to 172.18.0.3 (0, 5) -1612514860: Socket error on client , disconnecting. -1612514880: New connection from 172.18.0.3 on port 1883. -1612514880: Sending CONNACK to 172.18.0.3 (0, 5) -1612514880: Socket error on client , disconnecting. -1612514900: New connection from 172.18.0.3 on port 1883. -1612514900: Sending CONNACK to 172.18.0.3 (0, 5) -1612514900: Socket error on client , disconnecting. -1612514920: New connection from 172.18.0.3 on port 1883. -1612514920: Sending CONNACK to 172.18.0.3 (0, 5) -1612514920: Socket error on client , disconnecting. -1612514940: New connection from 172.18.0.3 on port 1883. -1612514940: Sending CONNACK to 172.18.0.3 (0, 5) -1612514940: Socket error on client , disconnecting. -1612514960: New connection from 172.18.0.3 on port 1883. -1612514960: Sending CONNACK to 172.18.0.3 (0, 5) -1612514960: Socket error on client , disconnecting. -1612514980: New connection from 172.18.0.3 on port 1883. -1612514980: Sending CONNACK to 172.18.0.3 (0, 5) -1612514980: Socket error on client , disconnecting. -1612515000: New connection from 172.18.0.3 on port 1883. -1612515000: Sending CONNACK to 172.18.0.3 (0, 5) -1612515000: Socket error on client , disconnecting. -1612515020: New connection from 172.18.0.3 on port 1883. -1612515020: Sending CONNACK to 172.18.0.3 (0, 5) -1612515020: Socket error on client , disconnecting. -1612515040: New connection from 172.18.0.3 on port 1883. -1612515040: Sending CONNACK to 172.18.0.3 (0, 5) -1612515040: Socket error on client , disconnecting. -1612515060: New connection from 172.18.0.3 on port 1883. -1612515060: Sending CONNACK to 172.18.0.3 (0, 5) -1612515060: Socket error on client , disconnecting. -1612515080: New connection from 172.18.0.3 on port 1883. -1612515080: Sending CONNACK to 172.18.0.3 (0, 5) -1612515080: Socket error on client , disconnecting. -1612515100: New connection from 172.18.0.3 on port 1883. -1612515100: Sending CONNACK to 172.18.0.3 (0, 5) -1612515100: Socket error on client , disconnecting. -1612515120: New connection from 172.18.0.3 on port 1883. -1612515120: Sending CONNACK to 172.18.0.3 (0, 5) -1612515120: Socket error on client , disconnecting. -1612515140: New connection from 172.18.0.3 on port 1883. -1612515140: Sending CONNACK to 172.18.0.3 (0, 5) -1612515140: Socket error on client , disconnecting. -1612515160: New connection from 172.18.0.3 on port 1883. -1612515160: Sending CONNACK to 172.18.0.3 (0, 5) -1612515160: Socket error on client , disconnecting. -1612515180: New connection from 172.18.0.3 on port 1883. -1612515180: Sending CONNACK to 172.18.0.3 (0, 5) -1612515180: Socket error on client , disconnecting. -1612515200: New connection from 172.18.0.3 on port 1883. -1612515200: Sending CONNACK to 172.18.0.3 (0, 5) -1612515200: Socket error on client , disconnecting. -1612515220: New connection from 172.18.0.3 on port 1883. -1612515220: Sending CONNACK to 172.18.0.3 (0, 5) -1612515220: Socket error on client , disconnecting. -1612515240: New connection from 172.18.0.3 on port 1883. -1612515240: Sending CONNACK to 172.18.0.3 (0, 5) -1612515240: Socket error on client , disconnecting. -1612515260: New connection from 172.18.0.3 on port 1883. -1612515260: Sending CONNACK to 172.18.0.3 (0, 5) -1612515260: Socket error on client , disconnecting. -1612515280: New connection from 172.18.0.3 on port 1883. -1612515280: Sending CONNACK to 172.18.0.3 (0, 5) -1612515280: Socket error on client , disconnecting. -1612515300: New connection from 172.18.0.3 on port 1883. -1612515300: Sending CONNACK to 172.18.0.3 (0, 5) -1612515300: Socket error on client , disconnecting. -1612515320: New connection from 172.18.0.3 on port 1883. -1612515320: Sending CONNACK to 172.18.0.3 (0, 5) -1612515320: Socket error on client , disconnecting. -1612515340: New connection from 172.18.0.3 on port 1883. -1612515340: Sending CONNACK to 172.18.0.3 (0, 5) -1612515340: Socket error on client , disconnecting. -1612515360: New connection from 172.18.0.3 on port 1883. -1612515360: Sending CONNACK to 172.18.0.3 (0, 5) -1612515360: Socket error on client , disconnecting. -1612515380: New connection from 172.18.0.3 on port 1883. -1612515380: Sending CONNACK to 172.18.0.3 (0, 5) -1612515380: Socket error on client , disconnecting. -1612515400: New connection from 172.18.0.3 on port 1883. -1612515400: Sending CONNACK to 172.18.0.3 (0, 5) -1612515400: Socket error on client , disconnecting. -1612515420: New connection from 172.18.0.3 on port 1883. -1612515420: Sending CONNACK to 172.18.0.3 (0, 5) -1612515420: Socket error on client , disconnecting. -1612515440: New connection from 172.18.0.3 on port 1883. -1612515440: Sending CONNACK to 172.18.0.3 (0, 5) -1612515440: Socket error on client , disconnecting. -1612515460: New connection from 172.18.0.3 on port 1883. -1612515460: Sending CONNACK to 172.18.0.3 (0, 5) -1612515460: Socket error on client , disconnecting. -1612515480: New connection from 172.18.0.3 on port 1883. -1612515480: Sending CONNACK to 172.18.0.3 (0, 5) -1612515480: Socket error on client , disconnecting. -1612515500: New connection from 172.18.0.3 on port 1883. -1612515500: Sending CONNACK to 172.18.0.3 (0, 5) -1612515500: Socket error on client , disconnecting. -1612515520: New connection from 172.18.0.3 on port 1883. -1612515520: Sending CONNACK to 172.18.0.3 (0, 5) -1612515520: Socket error on client , disconnecting. -1612515540: New connection from 172.18.0.3 on port 1883. -1612515540: Sending CONNACK to 172.18.0.3 (0, 5) -1612515540: Socket error on client , disconnecting. -1612515560: New connection from 172.18.0.3 on port 1883. -1612515560: Sending CONNACK to 172.18.0.3 (0, 5) -1612515560: Socket error on client , disconnecting. -1612515580: New connection from 172.18.0.3 on port 1883. -1612515580: Sending CONNACK to 172.18.0.3 (0, 5) -1612515580: Socket error on client , disconnecting. -1612515600: New connection from 172.18.0.3 on port 1883. -1612515600: Sending CONNACK to 172.18.0.3 (0, 5) -1612515600: Socket error on client , disconnecting. -1612515620: New connection from 172.18.0.3 on port 1883. -1612515620: Sending CONNACK to 172.18.0.3 (0, 5) -1612515620: Socket error on client , disconnecting. -1612515640: New connection from 172.18.0.3 on port 1883. -1612515640: Sending CONNACK to 172.18.0.3 (0, 5) -1612515640: Socket error on client , disconnecting. -1612515660: New connection from 172.18.0.3 on port 1883. -1612515660: Sending CONNACK to 172.18.0.3 (0, 5) -1612515660: Socket error on client , disconnecting. -1612515680: New connection from 172.18.0.3 on port 1883. -1612515680: Sending CONNACK to 172.18.0.3 (0, 5) -1612515680: Socket error on client , disconnecting. -1612515700: New connection from 172.18.0.3 on port 1883. -1612515700: Sending CONNACK to 172.18.0.3 (0, 5) -1612515700: Socket error on client , disconnecting. -1612515720: New connection from 172.18.0.3 on port 1883. -1612515720: Sending CONNACK to 172.18.0.3 (0, 5) -1612515720: Socket error on client , disconnecting. -1612515740: New connection from 172.18.0.3 on port 1883. -1612515740: Sending CONNACK to 172.18.0.3 (0, 5) -1612515740: Socket error on client , disconnecting. -1612515760: New connection from 172.18.0.3 on port 1883. -1612515760: Sending CONNACK to 172.18.0.3 (0, 5) -1612515760: Socket error on client , disconnecting. -1612515780: New connection from 172.18.0.3 on port 1883. -1612515780: Sending CONNACK to 172.18.0.3 (0, 5) -1612515780: Socket error on client , disconnecting. -1612515800: New connection from 172.18.0.3 on port 1883. -1612515800: Sending CONNACK to 172.18.0.3 (0, 5) -1612515800: Socket error on client , disconnecting. -1612515820: New connection from 172.18.0.3 on port 1883. -1612515820: Sending CONNACK to 172.18.0.3 (0, 5) -1612515820: Socket error on client , disconnecting. -1612515840: New connection from 172.18.0.3 on port 1883. -1612515840: Sending CONNACK to 172.18.0.3 (0, 5) -1612515840: Socket error on client , disconnecting. -1612515860: New connection from 172.18.0.3 on port 1883. -1612515860: Sending CONNACK to 172.18.0.3 (0, 5) -1612515860: Socket error on client , disconnecting. -1612515880: New connection from 172.18.0.3 on port 1883. -1612515880: Sending CONNACK to 172.18.0.3 (0, 5) -1612515880: Socket error on client , disconnecting. -1612515900: New connection from 172.18.0.3 on port 1883. -1612515900: Sending CONNACK to 172.18.0.3 (0, 5) -1612515900: Socket error on client , disconnecting. -1612515920: New connection from 172.18.0.3 on port 1883. -1612515920: Sending CONNACK to 172.18.0.3 (0, 5) -1612515920: Socket error on client , disconnecting. -1612515940: New connection from 172.18.0.3 on port 1883. -1612515940: Sending CONNACK to 172.18.0.3 (0, 5) -1612515940: Socket error on client , disconnecting. -1612515960: New connection from 172.18.0.3 on port 1883. -1612515960: Sending CONNACK to 172.18.0.3 (0, 5) -1612515960: Socket error on client , disconnecting. -1612515980: New connection from 172.18.0.3 on port 1883. -1612515980: Sending CONNACK to 172.18.0.3 (0, 5) -1612515980: Socket error on client , disconnecting. -1612516000: New connection from 172.18.0.3 on port 1883. -1612516000: Sending CONNACK to 172.18.0.3 (0, 5) -1612516000: Socket error on client , disconnecting. -1612516020: New connection from 172.18.0.3 on port 1883. -1612516020: Sending CONNACK to 172.18.0.3 (0, 5) -1612516020: Socket error on client , disconnecting. -1612516040: New connection from 172.18.0.3 on port 1883. -1612516040: Sending CONNACK to 172.18.0.3 (0, 5) -1612516040: Socket error on client , disconnecting. -1612516060: New connection from 172.18.0.3 on port 1883. -1612516060: Sending CONNACK to 172.18.0.3 (0, 5) -1612516060: Socket error on client , disconnecting. -1612516080: New connection from 172.18.0.3 on port 1883. -1612516080: Sending CONNACK to 172.18.0.3 (0, 5) -1612516080: Socket error on client , disconnecting. -1612516100: New connection from 172.18.0.3 on port 1883. -1612516100: Sending CONNACK to 172.18.0.3 (0, 5) -1612516100: Socket error on client , disconnecting. -1612516120: New connection from 172.18.0.3 on port 1883. -1612516120: Sending CONNACK to 172.18.0.3 (0, 5) -1612516120: Socket error on client , disconnecting. -1612516140: New connection from 172.18.0.3 on port 1883. -1612516140: Sending CONNACK to 172.18.0.3 (0, 5) -1612516140: Socket error on client , disconnecting. -1612516160: New connection from 172.18.0.3 on port 1883. -1612516160: Sending CONNACK to 172.18.0.3 (0, 5) -1612516160: Socket error on client , disconnecting. -1612516180: New connection from 172.18.0.3 on port 1883. -1612516180: Sending CONNACK to 172.18.0.3 (0, 5) -1612516180: Socket error on client , disconnecting. -1612516200: New connection from 172.18.0.3 on port 1883. -1612516200: Sending CONNACK to 172.18.0.3 (0, 5) -1612516200: Socket error on client , disconnecting. -1612516220: New connection from 172.18.0.3 on port 1883. -1612516220: Sending CONNACK to 172.18.0.3 (0, 5) -1612516220: Socket error on client , disconnecting. -1612516240: New connection from 172.18.0.3 on port 1883. -1612516240: Sending CONNACK to 172.18.0.3 (0, 5) -1612516240: Socket error on client , disconnecting. -1612516260: New connection from 172.18.0.3 on port 1883. -1612516260: Sending CONNACK to 172.18.0.3 (0, 5) -1612516260: Socket error on client , disconnecting. -1612516280: New connection from 172.18.0.3 on port 1883. -1612516280: Sending CONNACK to 172.18.0.3 (0, 5) -1612516280: Socket error on client , disconnecting. -1612516300: New connection from 172.18.0.3 on port 1883. -1612516300: Sending CONNACK to 172.18.0.3 (0, 5) -1612516300: Socket error on client , disconnecting. -1612516320: New connection from 172.18.0.3 on port 1883. -1612516320: Sending CONNACK to 172.18.0.3 (0, 5) -1612516320: Socket error on client , disconnecting. -1612516340: New connection from 172.18.0.3 on port 1883. -1612516340: Sending CONNACK to 172.18.0.3 (0, 5) -1612516340: Socket error on client , disconnecting. -1612516360: New connection from 172.18.0.3 on port 1883. -1612516360: Sending CONNACK to 172.18.0.3 (0, 5) -1612516360: Socket error on client , disconnecting. -1612516380: New connection from 172.18.0.3 on port 1883. -1612516380: Sending CONNACK to 172.18.0.3 (0, 5) -1612516380: Socket error on client , disconnecting. -1612516400: New connection from 172.18.0.3 on port 1883. -1612516400: Sending CONNACK to 172.18.0.3 (0, 5) -1612516400: Socket error on client , disconnecting. -1612516420: New connection from 172.18.0.3 on port 1883. -1612516420: Sending CONNACK to 172.18.0.3 (0, 5) -1612516420: Socket error on client , disconnecting. -1612516440: New connection from 172.18.0.3 on port 1883. -1612516440: Sending CONNACK to 172.18.0.3 (0, 5) -1612516440: Socket error on client , disconnecting. -1612516460: New connection from 172.18.0.3 on port 1883. -1612516460: Sending CONNACK to 172.18.0.3 (0, 5) -1612516460: Socket error on client , disconnecting. -1612516480: New connection from 172.18.0.3 on port 1883. -1612516480: Sending CONNACK to 172.18.0.3 (0, 5) -1612516480: Socket error on client , disconnecting. -1612516500: New connection from 172.18.0.3 on port 1883. -1612516500: Sending CONNACK to 172.18.0.3 (0, 5) -1612516500: Socket error on client , disconnecting. -1612516520: New connection from 172.18.0.3 on port 1883. -1612516520: Sending CONNACK to 172.18.0.3 (0, 5) -1612516520: Socket error on client , disconnecting. -1612516540: New connection from 172.18.0.3 on port 1883. -1612516540: Sending CONNACK to 172.18.0.3 (0, 5) -1612516540: Socket error on client , disconnecting. -1612516560: New connection from 172.18.0.3 on port 1883. -1612516560: Sending CONNACK to 172.18.0.3 (0, 5) -1612516560: Socket error on client , disconnecting. -1612516580: New connection from 172.18.0.3 on port 1883. -1612516580: Sending CONNACK to 172.18.0.3 (0, 5) -1612516580: Socket error on client , disconnecting. -1612516600: New connection from 172.18.0.3 on port 1883. -1612516600: Sending CONNACK to 172.18.0.3 (0, 5) -1612516600: Socket error on client , disconnecting. -1612516620: New connection from 172.18.0.3 on port 1883. -1612516620: Sending CONNACK to 172.18.0.3 (0, 5) -1612516620: Socket error on client , disconnecting. -1612516640: New connection from 172.18.0.3 on port 1883. -1612516640: Sending CONNACK to 172.18.0.3 (0, 5) -1612516640: Socket error on client , disconnecting. -1612516656: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612516656: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612516656: Error: Permission denied. -1612516660: New connection from 172.18.0.3 on port 1883. -1612516660: Sending CONNACK to 172.18.0.3 (0, 5) -1612516660: Socket error on client , disconnecting. -1612516680: New connection from 172.18.0.3 on port 1883. -1612516680: Sending CONNACK to 172.18.0.3 (0, 5) -1612516680: Socket error on client , disconnecting. -1612516700: New connection from 172.18.0.3 on port 1883. -1612516700: Sending CONNACK to 172.18.0.3 (0, 5) -1612516700: Socket error on client , disconnecting. -1612516720: New connection from 172.18.0.3 on port 1883. -1612516720: Sending CONNACK to 172.18.0.3 (0, 5) -1612516720: Socket error on client , disconnecting. -1612516740: New connection from 172.18.0.3 on port 1883. -1612516740: Sending CONNACK to 172.18.0.3 (0, 5) -1612516740: Socket error on client , disconnecting. -1612516760: New connection from 172.18.0.3 on port 1883. -1612516760: Sending CONNACK to 172.18.0.3 (0, 5) -1612516760: Socket error on client , disconnecting. -1612516780: New connection from 172.18.0.3 on port 1883. -1612516780: Sending CONNACK to 172.18.0.3 (0, 5) -1612516780: Socket error on client , disconnecting. -1612516800: New connection from 172.18.0.3 on port 1883. -1612516800: Sending CONNACK to 172.18.0.3 (0, 5) -1612516800: Socket error on client , disconnecting. -1612516820: New connection from 172.18.0.3 on port 1883. -1612516820: Sending CONNACK to 172.18.0.3 (0, 5) -1612516820: Socket error on client , disconnecting. -1612516840: New connection from 172.18.0.3 on port 1883. -1612516840: Sending CONNACK to 172.18.0.3 (0, 5) -1612516840: Socket error on client , disconnecting. -1612516860: New connection from 172.18.0.3 on port 1883. -1612516860: Sending CONNACK to 172.18.0.3 (0, 5) -1612516860: Socket error on client , disconnecting. -1612516880: New connection from 172.18.0.3 on port 1883. -1612516880: Sending CONNACK to 172.18.0.3 (0, 5) -1612516880: Socket error on client , disconnecting. -1612516900: New connection from 172.18.0.3 on port 1883. -1612516900: Sending CONNACK to 172.18.0.3 (0, 5) -1612516900: Socket error on client , disconnecting. -1612516920: New connection from 172.18.0.3 on port 1883. -1612516920: Sending CONNACK to 172.18.0.3 (0, 5) -1612516920: Socket error on client , disconnecting. -1612516940: New connection from 172.18.0.3 on port 1883. -1612516940: Sending CONNACK to 172.18.0.3 (0, 5) -1612516940: Socket error on client , disconnecting. -1612516960: New connection from 172.18.0.3 on port 1883. -1612516960: Sending CONNACK to 172.18.0.3 (0, 5) -1612516960: Socket error on client , disconnecting. -1612516980: New connection from 172.18.0.3 on port 1883. -1612516980: Sending CONNACK to 172.18.0.3 (0, 5) -1612516980: Socket error on client , disconnecting. -1612517000: New connection from 172.18.0.3 on port 1883. -1612517000: Sending CONNACK to 172.18.0.3 (0, 5) -1612517000: Socket error on client , disconnecting. -1612517020: New connection from 172.18.0.3 on port 1883. -1612517020: Sending CONNACK to 172.18.0.3 (0, 5) -1612517020: Socket error on client , disconnecting. -1612517040: New connection from 172.18.0.3 on port 1883. -1612517040: Sending CONNACK to 172.18.0.3 (0, 5) -1612517040: Socket error on client , disconnecting. -1612517060: New connection from 172.18.0.3 on port 1883. -1612517060: Sending CONNACK to 172.18.0.3 (0, 5) -1612517060: Socket error on client , disconnecting. -1612517080: New connection from 172.18.0.3 on port 1883. -1612517080: Sending CONNACK to 172.18.0.3 (0, 5) -1612517080: Socket error on client , disconnecting. -1612517100: New connection from 172.18.0.3 on port 1883. -1612517100: Sending CONNACK to 172.18.0.3 (0, 5) -1612517100: Socket error on client , disconnecting. -1612517120: New connection from 172.18.0.3 on port 1883. -1612517120: Sending CONNACK to 172.18.0.3 (0, 5) -1612517120: Socket error on client , disconnecting. -1612517140: New connection from 172.18.0.3 on port 1883. -1612517140: Sending CONNACK to 172.18.0.3 (0, 5) -1612517140: Socket error on client , disconnecting. -1612517160: New connection from 172.18.0.3 on port 1883. -1612517160: Sending CONNACK to 172.18.0.3 (0, 5) -1612517160: Socket error on client , disconnecting. -1612517180: New connection from 172.18.0.3 on port 1883. -1612517180: Sending CONNACK to 172.18.0.3 (0, 5) -1612517180: Socket error on client , disconnecting. -1612517200: New connection from 172.18.0.3 on port 1883. -1612517200: Sending CONNACK to 172.18.0.3 (0, 5) -1612517200: Socket error on client , disconnecting. -1612517220: New connection from 172.18.0.3 on port 1883. -1612517220: Sending CONNACK to 172.18.0.3 (0, 5) -1612517220: Socket error on client , disconnecting. -1612517240: New connection from 172.18.0.3 on port 1883. -1612517240: Sending CONNACK to 172.18.0.3 (0, 5) -1612517240: Socket error on client , disconnecting. -1612517260: New connection from 172.18.0.3 on port 1883. -1612517260: Sending CONNACK to 172.18.0.3 (0, 5) -1612517260: Socket error on client , disconnecting. -1612517280: New connection from 172.18.0.3 on port 1883. -1612517280: Sending CONNACK to 172.18.0.3 (0, 5) -1612517280: Socket error on client , disconnecting. -1612517300: New connection from 172.18.0.3 on port 1883. -1612517300: Sending CONNACK to 172.18.0.3 (0, 5) -1612517300: Socket error on client , disconnecting. -1612517320: New connection from 172.18.0.3 on port 1883. -1612517320: Sending CONNACK to 172.18.0.3 (0, 5) -1612517320: Socket error on client , disconnecting. -1612517340: New connection from 172.18.0.3 on port 1883. -1612517340: Sending CONNACK to 172.18.0.3 (0, 5) -1612517340: Socket error on client , disconnecting. -1612517360: New connection from 172.18.0.3 on port 1883. -1612517360: Sending CONNACK to 172.18.0.3 (0, 5) -1612517360: Socket error on client , disconnecting. -1612517380: New connection from 172.18.0.3 on port 1883. -1612517380: Sending CONNACK to 172.18.0.3 (0, 5) -1612517380: Socket error on client , disconnecting. -1612517400: New connection from 172.18.0.3 on port 1883. -1612517400: Sending CONNACK to 172.18.0.3 (0, 5) -1612517400: Socket error on client , disconnecting. -1612517420: New connection from 172.18.0.3 on port 1883. -1612517420: Sending CONNACK to 172.18.0.3 (0, 5) -1612517420: Socket error on client , disconnecting. -1612517440: New connection from 172.18.0.3 on port 1883. -1612517440: Sending CONNACK to 172.18.0.3 (0, 5) -1612517440: Socket error on client , disconnecting. -1612517460: New connection from 172.18.0.3 on port 1883. -1612517460: Sending CONNACK to 172.18.0.3 (0, 5) -1612517460: Socket error on client , disconnecting. -1612517480: New connection from 172.18.0.3 on port 1883. -1612517480: Sending CONNACK to 172.18.0.3 (0, 5) -1612517480: Socket error on client , disconnecting. -1612517500: New connection from 172.18.0.3 on port 1883. -1612517500: Sending CONNACK to 172.18.0.3 (0, 5) -1612517500: Socket error on client , disconnecting. -1612517520: New connection from 172.18.0.3 on port 1883. -1612517520: Sending CONNACK to 172.18.0.3 (0, 5) -1612517520: Socket error on client , disconnecting. -1612517540: New connection from 172.18.0.3 on port 1883. -1612517540: Sending CONNACK to 172.18.0.3 (0, 5) -1612517540: Socket error on client , disconnecting. -1612517560: New connection from 172.18.0.3 on port 1883. -1612517560: Sending CONNACK to 172.18.0.3 (0, 5) -1612517560: Socket error on client , disconnecting. -1612517580: New connection from 172.18.0.3 on port 1883. -1612517580: Sending CONNACK to 172.18.0.3 (0, 5) -1612517580: Socket error on client , disconnecting. -1612517600: New connection from 172.18.0.3 on port 1883. -1612517600: Sending CONNACK to 172.18.0.3 (0, 5) -1612517600: Socket error on client , disconnecting. -1612517620: New connection from 172.18.0.3 on port 1883. -1612517620: Sending CONNACK to 172.18.0.3 (0, 5) -1612517620: Socket error on client , disconnecting. -1612517640: New connection from 172.18.0.3 on port 1883. -1612517640: Sending CONNACK to 172.18.0.3 (0, 5) -1612517640: Socket error on client , disconnecting. -1612517660: New connection from 172.18.0.3 on port 1883. -1612517660: Sending CONNACK to 172.18.0.3 (0, 5) -1612517660: Socket error on client , disconnecting. -1612517680: New connection from 172.18.0.3 on port 1883. -1612517680: Sending CONNACK to 172.18.0.3 (0, 5) -1612517680: Socket error on client , disconnecting. -1612517700: New connection from 172.18.0.3 on port 1883. -1612517700: Sending CONNACK to 172.18.0.3 (0, 5) -1612517700: Socket error on client , disconnecting. -1612517720: New connection from 172.18.0.3 on port 1883. -1612517720: Sending CONNACK to 172.18.0.3 (0, 5) -1612517720: Socket error on client , disconnecting. -1612517740: New connection from 172.18.0.3 on port 1883. -1612517740: Sending CONNACK to 172.18.0.3 (0, 5) -1612517740: Socket error on client , disconnecting. -1612517760: New connection from 172.18.0.3 on port 1883. -1612517760: Sending CONNACK to 172.18.0.3 (0, 5) -1612517760: Socket error on client , disconnecting. -1612517780: New connection from 172.18.0.3 on port 1883. -1612517780: Sending CONNACK to 172.18.0.3 (0, 5) -1612517780: Socket error on client , disconnecting. -1612517800: New connection from 172.18.0.3 on port 1883. -1612517800: Sending CONNACK to 172.18.0.3 (0, 5) -1612517800: Socket error on client , disconnecting. -1612517820: New connection from 172.18.0.3 on port 1883. -1612517820: Sending CONNACK to 172.18.0.3 (0, 5) -1612517820: Socket error on client , disconnecting. -1612517840: New connection from 172.18.0.3 on port 1883. -1612517840: Sending CONNACK to 172.18.0.3 (0, 5) -1612517840: Socket error on client , disconnecting. -1612517860: New connection from 172.18.0.3 on port 1883. -1612517860: Sending CONNACK to 172.18.0.3 (0, 5) -1612517860: Socket error on client , disconnecting. -1612517880: New connection from 172.18.0.3 on port 1883. -1612517880: Sending CONNACK to 172.18.0.3 (0, 5) -1612517880: Socket error on client , disconnecting. -1612517900: New connection from 172.18.0.3 on port 1883. -1612517900: Sending CONNACK to 172.18.0.3 (0, 5) -1612517900: Socket error on client , disconnecting. -1612517920: New connection from 172.18.0.3 on port 1883. -1612517920: Sending CONNACK to 172.18.0.3 (0, 5) -1612517920: Socket error on client , disconnecting. -1612517940: New connection from 172.18.0.3 on port 1883. -1612517940: Sending CONNACK to 172.18.0.3 (0, 5) -1612517940: Socket error on client , disconnecting. -1612517960: New connection from 172.18.0.3 on port 1883. -1612517960: Sending CONNACK to 172.18.0.3 (0, 5) -1612517960: Socket error on client , disconnecting. -1612517980: New connection from 172.18.0.3 on port 1883. -1612517980: Sending CONNACK to 172.18.0.3 (0, 5) -1612517980: Socket error on client , disconnecting. -1612518000: New connection from 172.18.0.3 on port 1883. -1612518000: Sending CONNACK to 172.18.0.3 (0, 5) -1612518000: Socket error on client , disconnecting. -1612518020: New connection from 172.18.0.3 on port 1883. -1612518020: Sending CONNACK to 172.18.0.3 (0, 5) -1612518020: Socket error on client , disconnecting. -1612518040: New connection from 172.18.0.3 on port 1883. -1612518040: Sending CONNACK to 172.18.0.3 (0, 5) -1612518040: Socket error on client , disconnecting. -1612518060: New connection from 172.18.0.3 on port 1883. -1612518060: Sending CONNACK to 172.18.0.3 (0, 5) -1612518060: Socket error on client , disconnecting. -1612518080: New connection from 172.18.0.3 on port 1883. -1612518080: Sending CONNACK to 172.18.0.3 (0, 5) -1612518080: Socket error on client , disconnecting. -1612518100: New connection from 172.18.0.3 on port 1883. -1612518100: Sending CONNACK to 172.18.0.3 (0, 5) -1612518100: Socket error on client , disconnecting. -1612518120: New connection from 172.18.0.3 on port 1883. -1612518120: Sending CONNACK to 172.18.0.3 (0, 5) -1612518120: Socket error on client , disconnecting. -1612518140: New connection from 172.18.0.3 on port 1883. -1612518140: Sending CONNACK to 172.18.0.3 (0, 5) -1612518140: Socket error on client , disconnecting. -1612518160: New connection from 172.18.0.3 on port 1883. -1612518160: Sending CONNACK to 172.18.0.3 (0, 5) -1612518160: Socket error on client , disconnecting. -1612518180: New connection from 172.18.0.3 on port 1883. -1612518180: Sending CONNACK to 172.18.0.3 (0, 5) -1612518180: Socket error on client , disconnecting. -1612518200: New connection from 172.18.0.3 on port 1883. -1612518200: Sending CONNACK to 172.18.0.3 (0, 5) -1612518200: Socket error on client , disconnecting. -1612518220: New connection from 172.18.0.3 on port 1883. -1612518220: Sending CONNACK to 172.18.0.3 (0, 5) -1612518220: Socket error on client , disconnecting. -1612518240: New connection from 172.18.0.3 on port 1883. -1612518240: Sending CONNACK to 172.18.0.3 (0, 5) -1612518240: Socket error on client , disconnecting. -1612518260: New connection from 172.18.0.3 on port 1883. -1612518260: Sending CONNACK to 172.18.0.3 (0, 5) -1612518260: Socket error on client , disconnecting. -1612518280: New connection from 172.18.0.3 on port 1883. -1612518280: Sending CONNACK to 172.18.0.3 (0, 5) -1612518280: Socket error on client , disconnecting. -1612518300: New connection from 172.18.0.3 on port 1883. -1612518300: Sending CONNACK to 172.18.0.3 (0, 5) -1612518300: Socket error on client , disconnecting. -1612518320: New connection from 172.18.0.3 on port 1883. -1612518320: Sending CONNACK to 172.18.0.3 (0, 5) -1612518320: Socket error on client , disconnecting. -1612518340: New connection from 172.18.0.3 on port 1883. -1612518340: Sending CONNACK to 172.18.0.3 (0, 5) -1612518340: Socket error on client , disconnecting. -1612518360: New connection from 172.18.0.3 on port 1883. -1612518360: Sending CONNACK to 172.18.0.3 (0, 5) -1612518360: Socket error on client , disconnecting. -1612518380: New connection from 172.18.0.3 on port 1883. -1612518380: Sending CONNACK to 172.18.0.3 (0, 5) -1612518380: Socket error on client , disconnecting. -1612518400: New connection from 172.18.0.3 on port 1883. -1612518400: Sending CONNACK to 172.18.0.3 (0, 5) -1612518400: Socket error on client , disconnecting. -1612518420: New connection from 172.18.0.3 on port 1883. -1612518420: Sending CONNACK to 172.18.0.3 (0, 5) -1612518420: Socket error on client , disconnecting. -1612518440: New connection from 172.18.0.3 on port 1883. -1612518440: Sending CONNACK to 172.18.0.3 (0, 5) -1612518440: Socket error on client , disconnecting. -1612518457: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612518457: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612518457: Error: Permission denied. -1612518460: New connection from 172.18.0.3 on port 1883. -1612518460: Sending CONNACK to 172.18.0.3 (0, 5) -1612518460: Socket error on client , disconnecting. -1612518480: New connection from 172.18.0.3 on port 1883. -1612518480: Sending CONNACK to 172.18.0.3 (0, 5) -1612518480: Socket error on client , disconnecting. -1612518500: New connection from 172.18.0.3 on port 1883. -1612518500: Sending CONNACK to 172.18.0.3 (0, 5) -1612518500: Socket error on client , disconnecting. -1612518520: New connection from 172.18.0.3 on port 1883. -1612518520: Sending CONNACK to 172.18.0.3 (0, 5) -1612518520: Socket error on client , disconnecting. -1612518540: New connection from 172.18.0.3 on port 1883. -1612518540: Sending CONNACK to 172.18.0.3 (0, 5) -1612518540: Socket error on client , disconnecting. -1612518560: New connection from 172.18.0.3 on port 1883. -1612518560: Sending CONNACK to 172.18.0.3 (0, 5) -1612518560: Socket error on client , disconnecting. -1612518580: New connection from 172.18.0.3 on port 1883. -1612518580: Sending CONNACK to 172.18.0.3 (0, 5) -1612518580: Socket error on client , disconnecting. -1612518600: New connection from 172.18.0.3 on port 1883. -1612518600: Sending CONNACK to 172.18.0.3 (0, 5) -1612518600: Socket error on client , disconnecting. -1612518620: New connection from 172.18.0.3 on port 1883. -1612518620: Sending CONNACK to 172.18.0.3 (0, 5) -1612518620: Socket error on client , disconnecting. -1612518640: New connection from 172.18.0.3 on port 1883. -1612518640: Sending CONNACK to 172.18.0.3 (0, 5) -1612518640: Socket error on client , disconnecting. -1612518660: New connection from 172.18.0.3 on port 1883. -1612518660: Sending CONNACK to 172.18.0.3 (0, 5) -1612518660: Socket error on client , disconnecting. -1612518680: New connection from 172.18.0.3 on port 1883. -1612518680: Sending CONNACK to 172.18.0.3 (0, 5) -1612518680: Socket error on client , disconnecting. -1612518700: New connection from 172.18.0.3 on port 1883. -1612518700: Sending CONNACK to 172.18.0.3 (0, 5) -1612518700: Socket error on client , disconnecting. -1612518720: New connection from 172.18.0.3 on port 1883. -1612518720: Sending CONNACK to 172.18.0.3 (0, 5) -1612518720: Socket error on client , disconnecting. -1612518740: New connection from 172.18.0.3 on port 1883. -1612518740: Sending CONNACK to 172.18.0.3 (0, 5) -1612518740: Socket error on client , disconnecting. -1612518760: New connection from 172.18.0.3 on port 1883. -1612518760: Sending CONNACK to 172.18.0.3 (0, 5) -1612518760: Socket error on client , disconnecting. -1612518780: New connection from 172.18.0.3 on port 1883. -1612518780: Sending CONNACK to 172.18.0.3 (0, 5) -1612518780: Socket error on client , disconnecting. -1612518800: New connection from 172.18.0.3 on port 1883. -1612518800: Sending CONNACK to 172.18.0.3 (0, 5) -1612518800: Socket error on client , disconnecting. -1612518820: New connection from 172.18.0.3 on port 1883. -1612518820: Sending CONNACK to 172.18.0.3 (0, 5) -1612518820: Socket error on client , disconnecting. -1612518840: New connection from 172.18.0.3 on port 1883. -1612518840: Sending CONNACK to 172.18.0.3 (0, 5) -1612518840: Socket error on client , disconnecting. -1612518860: New connection from 172.18.0.3 on port 1883. -1612518860: Sending CONNACK to 172.18.0.3 (0, 5) -1612518860: Socket error on client , disconnecting. -1612518880: New connection from 172.18.0.3 on port 1883. -1612518880: Sending CONNACK to 172.18.0.3 (0, 5) -1612518880: Socket error on client , disconnecting. -1612518900: New connection from 172.18.0.3 on port 1883. -1612518900: Sending CONNACK to 172.18.0.3 (0, 5) -1612518900: Socket error on client , disconnecting. -1612518920: New connection from 172.18.0.3 on port 1883. -1612518920: Sending CONNACK to 172.18.0.3 (0, 5) -1612518920: Socket error on client , disconnecting. -1612518940: New connection from 172.18.0.3 on port 1883. -1612518940: Sending CONNACK to 172.18.0.3 (0, 5) -1612518940: Socket error on client , disconnecting. -1612518960: New connection from 172.18.0.3 on port 1883. -1612518960: Sending CONNACK to 172.18.0.3 (0, 5) -1612518960: Socket error on client , disconnecting. -1612518980: New connection from 172.18.0.3 on port 1883. -1612518980: Sending CONNACK to 172.18.0.3 (0, 5) -1612518980: Socket error on client , disconnecting. -1612519000: New connection from 172.18.0.3 on port 1883. -1612519000: Sending CONNACK to 172.18.0.3 (0, 5) -1612519000: Socket error on client , disconnecting. -1612519020: New connection from 172.18.0.3 on port 1883. -1612519020: Sending CONNACK to 172.18.0.3 (0, 5) -1612519020: Socket error on client , disconnecting. -1612519040: New connection from 172.18.0.3 on port 1883. -1612519040: Sending CONNACK to 172.18.0.3 (0, 5) -1612519040: Socket error on client , disconnecting. -1612519060: New connection from 172.18.0.3 on port 1883. -1612519060: Sending CONNACK to 172.18.0.3 (0, 5) -1612519060: Socket error on client , disconnecting. -1612519080: New connection from 172.18.0.3 on port 1883. -1612519080: Sending CONNACK to 172.18.0.3 (0, 5) -1612519080: Socket error on client , disconnecting. -1612519100: New connection from 172.18.0.3 on port 1883. -1612519100: Sending CONNACK to 172.18.0.3 (0, 5) -1612519100: Socket error on client , disconnecting. -1612519120: New connection from 172.18.0.3 on port 1883. -1612519120: Sending CONNACK to 172.18.0.3 (0, 5) -1612519120: Socket error on client , disconnecting. -1612519140: New connection from 172.18.0.3 on port 1883. -1612519140: Sending CONNACK to 172.18.0.3 (0, 5) -1612519140: Socket error on client , disconnecting. -1612519160: New connection from 172.18.0.3 on port 1883. -1612519160: Sending CONNACK to 172.18.0.3 (0, 5) -1612519160: Socket error on client , disconnecting. -1612519180: New connection from 172.18.0.3 on port 1883. -1612519180: Sending CONNACK to 172.18.0.3 (0, 5) -1612519180: Socket error on client , disconnecting. -1612519200: New connection from 172.18.0.3 on port 1883. -1612519200: Sending CONNACK to 172.18.0.3 (0, 5) -1612519200: Socket error on client , disconnecting. -1612519220: New connection from 172.18.0.3 on port 1883. -1612519220: Sending CONNACK to 172.18.0.3 (0, 5) -1612519220: Socket error on client , disconnecting. -1612519240: New connection from 172.18.0.3 on port 1883. -1612519240: Sending CONNACK to 172.18.0.3 (0, 5) -1612519240: Socket error on client , disconnecting. -1612519260: New connection from 172.18.0.3 on port 1883. -1612519260: Sending CONNACK to 172.18.0.3 (0, 5) -1612519260: Socket error on client , disconnecting. -1612519280: New connection from 172.18.0.3 on port 1883. -1612519280: Sending CONNACK to 172.18.0.3 (0, 5) -1612519280: Socket error on client , disconnecting. -1612519300: New connection from 172.18.0.3 on port 1883. -1612519300: Sending CONNACK to 172.18.0.3 (0, 5) -1612519300: Socket error on client , disconnecting. -1612519320: New connection from 172.18.0.3 on port 1883. -1612519320: Sending CONNACK to 172.18.0.3 (0, 5) -1612519320: Socket error on client , disconnecting. -1612519340: New connection from 172.18.0.3 on port 1883. -1612519340: Sending CONNACK to 172.18.0.3 (0, 5) -1612519340: Socket error on client , disconnecting. -1612519360: New connection from 172.18.0.3 on port 1883. -1612519360: Sending CONNACK to 172.18.0.3 (0, 5) -1612519360: Socket error on client , disconnecting. -1612519380: New connection from 172.18.0.3 on port 1883. -1612519380: Sending CONNACK to 172.18.0.3 (0, 5) -1612519380: Socket error on client , disconnecting. -1612519400: New connection from 172.18.0.3 on port 1883. -1612519400: Sending CONNACK to 172.18.0.3 (0, 5) -1612519400: Socket error on client , disconnecting. -1612519420: New connection from 172.18.0.3 on port 1883. -1612519420: Sending CONNACK to 172.18.0.3 (0, 5) -1612519420: Socket error on client , disconnecting. -1612519440: New connection from 172.18.0.3 on port 1883. -1612519440: Sending CONNACK to 172.18.0.3 (0, 5) -1612519440: Socket error on client , disconnecting. -1612519460: New connection from 172.18.0.3 on port 1883. -1612519460: Sending CONNACK to 172.18.0.3 (0, 5) -1612519460: Socket error on client , disconnecting. -1612519480: New connection from 172.18.0.3 on port 1883. -1612519480: Sending CONNACK to 172.18.0.3 (0, 5) -1612519480: Socket error on client , disconnecting. -1612519500: New connection from 172.18.0.3 on port 1883. -1612519500: Sending CONNACK to 172.18.0.3 (0, 5) -1612519500: Socket error on client , disconnecting. -1612519520: New connection from 172.18.0.3 on port 1883. -1612519520: Sending CONNACK to 172.18.0.3 (0, 5) -1612519520: Socket error on client , disconnecting. -1612519540: New connection from 172.18.0.3 on port 1883. -1612519540: Sending CONNACK to 172.18.0.3 (0, 5) -1612519540: Socket error on client , disconnecting. -1612519560: New connection from 172.18.0.3 on port 1883. -1612519560: Sending CONNACK to 172.18.0.3 (0, 5) -1612519560: Socket error on client , disconnecting. -1612519580: New connection from 172.18.0.3 on port 1883. -1612519580: Sending CONNACK to 172.18.0.3 (0, 5) -1612519580: Socket error on client , disconnecting. -1612519600: New connection from 172.18.0.3 on port 1883. -1612519600: Sending CONNACK to 172.18.0.3 (0, 5) -1612519600: Socket error on client , disconnecting. -1612519620: New connection from 172.18.0.3 on port 1883. -1612519620: Sending CONNACK to 172.18.0.3 (0, 5) -1612519620: Socket error on client , disconnecting. -1612519640: New connection from 172.18.0.3 on port 1883. -1612519640: Sending CONNACK to 172.18.0.3 (0, 5) -1612519640: Socket error on client , disconnecting. -1612519660: New connection from 172.18.0.3 on port 1883. -1612519660: Sending CONNACK to 172.18.0.3 (0, 5) -1612519660: Socket error on client , disconnecting. -1612519680: New connection from 172.18.0.3 on port 1883. -1612519680: Sending CONNACK to 172.18.0.3 (0, 5) -1612519680: Socket error on client , disconnecting. -1612519700: New connection from 172.18.0.3 on port 1883. -1612519700: Sending CONNACK to 172.18.0.3 (0, 5) -1612519700: Socket error on client , disconnecting. -1612519720: New connection from 172.18.0.3 on port 1883. -1612519720: Sending CONNACK to 172.18.0.3 (0, 5) -1612519720: Socket error on client , disconnecting. -1612519740: New connection from 172.18.0.3 on port 1883. -1612519740: Sending CONNACK to 172.18.0.3 (0, 5) -1612519740: Socket error on client , disconnecting. -1612519760: New connection from 172.18.0.3 on port 1883. -1612519760: Sending CONNACK to 172.18.0.3 (0, 5) -1612519760: Socket error on client , disconnecting. -1612519780: New connection from 172.18.0.3 on port 1883. -1612519780: Sending CONNACK to 172.18.0.3 (0, 5) -1612519780: Socket error on client , disconnecting. -1612519800: New connection from 172.18.0.3 on port 1883. -1612519800: Sending CONNACK to 172.18.0.3 (0, 5) -1612519800: Socket error on client , disconnecting. -1612519820: New connection from 172.18.0.3 on port 1883. -1612519820: Sending CONNACK to 172.18.0.3 (0, 5) -1612519820: Socket error on client , disconnecting. -1612519840: New connection from 172.18.0.3 on port 1883. -1612519840: Sending CONNACK to 172.18.0.3 (0, 5) -1612519840: Socket error on client , disconnecting. -1612519860: New connection from 172.18.0.3 on port 1883. -1612519860: Sending CONNACK to 172.18.0.3 (0, 5) -1612519860: Socket error on client , disconnecting. -1612519880: New connection from 172.18.0.3 on port 1883. -1612519880: Sending CONNACK to 172.18.0.3 (0, 5) -1612519880: Socket error on client , disconnecting. -1612519900: New connection from 172.18.0.3 on port 1883. -1612519900: Sending CONNACK to 172.18.0.3 (0, 5) -1612519900: Socket error on client , disconnecting. -1612519920: New connection from 172.18.0.3 on port 1883. -1612519920: Sending CONNACK to 172.18.0.3 (0, 5) -1612519920: Socket error on client , disconnecting. -1612519940: New connection from 172.18.0.3 on port 1883. -1612519940: Sending CONNACK to 172.18.0.3 (0, 5) -1612519940: Socket error on client , disconnecting. -1612519960: New connection from 172.18.0.3 on port 1883. -1612519960: Sending CONNACK to 172.18.0.3 (0, 5) -1612519960: Socket error on client , disconnecting. -1612519980: New connection from 172.18.0.3 on port 1883. -1612519980: Sending CONNACK to 172.18.0.3 (0, 5) -1612519980: Socket error on client , disconnecting. -1612520000: New connection from 172.18.0.3 on port 1883. -1612520000: Sending CONNACK to 172.18.0.3 (0, 5) -1612520000: Socket error on client , disconnecting. -1612520020: New connection from 172.18.0.3 on port 1883. -1612520020: Sending CONNACK to 172.18.0.3 (0, 5) -1612520020: Socket error on client , disconnecting. -1612520040: New connection from 172.18.0.3 on port 1883. -1612520040: Sending CONNACK to 172.18.0.3 (0, 5) -1612520040: Socket error on client , disconnecting. -1612520060: New connection from 172.18.0.3 on port 1883. -1612520060: Sending CONNACK to 172.18.0.3 (0, 5) -1612520060: Socket error on client , disconnecting. -1612520080: New connection from 172.18.0.3 on port 1883. -1612520080: Sending CONNACK to 172.18.0.3 (0, 5) -1612520080: Socket error on client , disconnecting. -1612520100: New connection from 172.18.0.3 on port 1883. -1612520100: Sending CONNACK to 172.18.0.3 (0, 5) -1612520100: Socket error on client , disconnecting. -1612520120: New connection from 172.18.0.3 on port 1883. -1612520120: Sending CONNACK to 172.18.0.3 (0, 5) -1612520120: Socket error on client , disconnecting. -1612520140: New connection from 172.18.0.3 on port 1883. -1612520140: Sending CONNACK to 172.18.0.3 (0, 5) -1612520140: Socket error on client , disconnecting. -1612520160: New connection from 172.18.0.3 on port 1883. -1612520160: Sending CONNACK to 172.18.0.3 (0, 5) -1612520160: Socket error on client , disconnecting. -1612520180: New connection from 172.18.0.3 on port 1883. -1612520180: Sending CONNACK to 172.18.0.3 (0, 5) -1612520180: Socket error on client , disconnecting. -1612520200: New connection from 172.18.0.3 on port 1883. -1612520200: Sending CONNACK to 172.18.0.3 (0, 5) -1612520200: Socket error on client , disconnecting. -1612520220: New connection from 172.18.0.3 on port 1883. -1612520220: Sending CONNACK to 172.18.0.3 (0, 5) -1612520220: Socket error on client , disconnecting. -1612520240: New connection from 172.18.0.3 on port 1883. -1612520240: Sending CONNACK to 172.18.0.3 (0, 5) -1612520240: Socket error on client , disconnecting. -1612520258: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612520258: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612520258: Error: Permission denied. -1612520260: New connection from 172.18.0.3 on port 1883. -1612520260: Sending CONNACK to 172.18.0.3 (0, 5) -1612520260: Socket error on client , disconnecting. -1612520280: New connection from 172.18.0.3 on port 1883. -1612520280: Sending CONNACK to 172.18.0.3 (0, 5) -1612520280: Socket error on client , disconnecting. -1612520300: New connection from 172.18.0.3 on port 1883. -1612520300: Sending CONNACK to 172.18.0.3 (0, 5) -1612520300: Socket error on client , disconnecting. -1612520320: New connection from 172.18.0.3 on port 1883. -1612520320: Sending CONNACK to 172.18.0.3 (0, 5) -1612520320: Socket error on client , disconnecting. -1612520340: New connection from 172.18.0.3 on port 1883. -1612520340: Sending CONNACK to 172.18.0.3 (0, 5) -1612520340: Socket error on client , disconnecting. -1612520360: New connection from 172.18.0.3 on port 1883. -1612520360: Sending CONNACK to 172.18.0.3 (0, 5) -1612520360: Socket error on client , disconnecting. -1612520380: New connection from 172.18.0.3 on port 1883. -1612520380: Sending CONNACK to 172.18.0.3 (0, 5) -1612520380: Socket error on client , disconnecting. -1612520400: New connection from 172.18.0.3 on port 1883. -1612520400: Sending CONNACK to 172.18.0.3 (0, 5) -1612520400: Socket error on client , disconnecting. -1612520420: New connection from 172.18.0.3 on port 1883. -1612520420: Sending CONNACK to 172.18.0.3 (0, 5) -1612520420: Socket error on client , disconnecting. -1612520440: New connection from 172.18.0.3 on port 1883. -1612520440: Sending CONNACK to 172.18.0.3 (0, 5) -1612520440: Socket error on client , disconnecting. -1612520460: New connection from 172.18.0.3 on port 1883. -1612520460: Sending CONNACK to 172.18.0.3 (0, 5) -1612520460: Socket error on client , disconnecting. -1612520480: New connection from 172.18.0.3 on port 1883. -1612520480: Sending CONNACK to 172.18.0.3 (0, 5) -1612520480: Socket error on client , disconnecting. -1612520500: New connection from 172.18.0.3 on port 1883. -1612520500: Sending CONNACK to 172.18.0.3 (0, 5) -1612520500: Socket error on client , disconnecting. -1612520520: New connection from 172.18.0.3 on port 1883. -1612520520: Sending CONNACK to 172.18.0.3 (0, 5) -1612520520: Socket error on client , disconnecting. -1612520540: New connection from 172.18.0.3 on port 1883. -1612520540: Sending CONNACK to 172.18.0.3 (0, 5) -1612520540: Socket error on client , disconnecting. -1612520560: New connection from 172.18.0.3 on port 1883. -1612520560: Sending CONNACK to 172.18.0.3 (0, 5) -1612520560: Socket error on client , disconnecting. -1612520580: New connection from 172.18.0.3 on port 1883. -1612520580: Sending CONNACK to 172.18.0.3 (0, 5) -1612520580: Socket error on client , disconnecting. -1612520600: New connection from 172.18.0.3 on port 1883. -1612520600: Sending CONNACK to 172.18.0.3 (0, 5) -1612520600: Socket error on client , disconnecting. -1612520620: New connection from 172.18.0.3 on port 1883. -1612520620: Sending CONNACK to 172.18.0.3 (0, 5) -1612520620: Socket error on client , disconnecting. -1612520640: New connection from 172.18.0.3 on port 1883. -1612520640: Sending CONNACK to 172.18.0.3 (0, 5) -1612520640: Socket error on client , disconnecting. -1612520660: New connection from 172.18.0.3 on port 1883. -1612520660: Sending CONNACK to 172.18.0.3 (0, 5) -1612520660: Socket error on client , disconnecting. -1612520680: New connection from 172.18.0.3 on port 1883. -1612520680: Sending CONNACK to 172.18.0.3 (0, 5) -1612520680: Socket error on client , disconnecting. -1612520700: New connection from 172.18.0.3 on port 1883. -1612520700: Sending CONNACK to 172.18.0.3 (0, 5) -1612520700: Socket error on client , disconnecting. -1612520720: New connection from 172.18.0.3 on port 1883. -1612520720: Sending CONNACK to 172.18.0.3 (0, 5) -1612520720: Socket error on client , disconnecting. -1612520740: New connection from 172.18.0.3 on port 1883. -1612520740: Sending CONNACK to 172.18.0.3 (0, 5) -1612520740: Socket error on client , disconnecting. -1612520760: New connection from 172.18.0.3 on port 1883. -1612520760: Sending CONNACK to 172.18.0.3 (0, 5) -1612520760: Socket error on client , disconnecting. -1612520780: New connection from 172.18.0.3 on port 1883. -1612520780: Sending CONNACK to 172.18.0.3 (0, 5) -1612520780: Socket error on client , disconnecting. -1612520800: New connection from 172.18.0.3 on port 1883. -1612520800: Sending CONNACK to 172.18.0.3 (0, 5) -1612520800: Socket error on client , disconnecting. -1612520820: New connection from 172.18.0.3 on port 1883. -1612520820: Sending CONNACK to 172.18.0.3 (0, 5) -1612520820: Socket error on client , disconnecting. -1612520840: New connection from 172.18.0.3 on port 1883. -1612520840: Sending CONNACK to 172.18.0.3 (0, 5) -1612520840: Socket error on client , disconnecting. -1612520860: New connection from 172.18.0.3 on port 1883. -1612520860: Sending CONNACK to 172.18.0.3 (0, 5) -1612520860: Socket error on client , disconnecting. -1612520880: New connection from 172.18.0.3 on port 1883. -1612520880: Sending CONNACK to 172.18.0.3 (0, 5) -1612520880: Socket error on client , disconnecting. -1612520900: New connection from 172.18.0.3 on port 1883. -1612520900: Sending CONNACK to 172.18.0.3 (0, 5) -1612520900: Socket error on client , disconnecting. -1612520920: New connection from 172.18.0.3 on port 1883. -1612520920: Sending CONNACK to 172.18.0.3 (0, 5) -1612520920: Socket error on client , disconnecting. -1612520940: New connection from 172.18.0.3 on port 1883. -1612520940: Sending CONNACK to 172.18.0.3 (0, 5) -1612520940: Socket error on client , disconnecting. -1612520960: New connection from 172.18.0.3 on port 1883. -1612520960: Sending CONNACK to 172.18.0.3 (0, 5) -1612520960: Socket error on client , disconnecting. -1612520980: New connection from 172.18.0.3 on port 1883. -1612520980: Sending CONNACK to 172.18.0.3 (0, 5) -1612520980: Socket error on client , disconnecting. -1612521000: New connection from 172.18.0.3 on port 1883. -1612521000: Sending CONNACK to 172.18.0.3 (0, 5) -1612521000: Socket error on client , disconnecting. -1612521020: New connection from 172.18.0.3 on port 1883. -1612521020: Sending CONNACK to 172.18.0.3 (0, 5) -1612521020: Socket error on client , disconnecting. -1612521040: New connection from 172.18.0.3 on port 1883. -1612521040: Sending CONNACK to 172.18.0.3 (0, 5) -1612521040: Socket error on client , disconnecting. -1612521060: New connection from 172.18.0.3 on port 1883. -1612521060: Sending CONNACK to 172.18.0.3 (0, 5) -1612521060: Socket error on client , disconnecting. -1612521080: New connection from 172.18.0.3 on port 1883. -1612521080: Sending CONNACK to 172.18.0.3 (0, 5) -1612521080: Socket error on client , disconnecting. -1612521100: New connection from 172.18.0.3 on port 1883. -1612521100: Sending CONNACK to 172.18.0.3 (0, 5) -1612521100: Socket error on client , disconnecting. -1612521120: New connection from 172.18.0.3 on port 1883. -1612521120: Sending CONNACK to 172.18.0.3 (0, 5) -1612521120: Socket error on client , disconnecting. -1612521140: New connection from 172.18.0.3 on port 1883. -1612521140: Sending CONNACK to 172.18.0.3 (0, 5) -1612521140: Socket error on client , disconnecting. -1612521160: New connection from 172.18.0.3 on port 1883. -1612521160: Sending CONNACK to 172.18.0.3 (0, 5) -1612521160: Socket error on client , disconnecting. -1612521180: New connection from 172.18.0.3 on port 1883. -1612521180: Sending CONNACK to 172.18.0.3 (0, 5) -1612521180: Socket error on client , disconnecting. -1612521200: New connection from 172.18.0.3 on port 1883. -1612521200: Sending CONNACK to 172.18.0.3 (0, 5) -1612521200: Socket error on client , disconnecting. -1612521220: New connection from 172.18.0.3 on port 1883. -1612521220: Sending CONNACK to 172.18.0.3 (0, 5) -1612521220: Socket error on client , disconnecting. -1612521240: New connection from 172.18.0.3 on port 1883. -1612521240: Sending CONNACK to 172.18.0.3 (0, 5) -1612521240: Socket error on client , disconnecting. -1612521260: New connection from 172.18.0.3 on port 1883. -1612521260: Sending CONNACK to 172.18.0.3 (0, 5) -1612521260: Socket error on client , disconnecting. -1612521280: New connection from 172.18.0.3 on port 1883. -1612521280: Sending CONNACK to 172.18.0.3 (0, 5) -1612521280: Socket error on client , disconnecting. -1612521300: New connection from 172.18.0.3 on port 1883. -1612521300: Sending CONNACK to 172.18.0.3 (0, 5) -1612521300: Socket error on client , disconnecting. -1612521320: New connection from 172.18.0.3 on port 1883. -1612521320: Sending CONNACK to 172.18.0.3 (0, 5) -1612521320: Socket error on client , disconnecting. -1612521340: New connection from 172.18.0.3 on port 1883. -1612521340: Sending CONNACK to 172.18.0.3 (0, 5) -1612521340: Socket error on client , disconnecting. -1612521360: New connection from 172.18.0.3 on port 1883. -1612521360: Sending CONNACK to 172.18.0.3 (0, 5) -1612521360: Socket error on client , disconnecting. -1612521380: New connection from 172.18.0.3 on port 1883. -1612521380: Sending CONNACK to 172.18.0.3 (0, 5) -1612521380: Socket error on client , disconnecting. -1612521400: New connection from 172.18.0.3 on port 1883. -1612521400: Sending CONNACK to 172.18.0.3 (0, 5) -1612521400: Socket error on client , disconnecting. -1612521420: New connection from 172.18.0.3 on port 1883. -1612521420: Sending CONNACK to 172.18.0.3 (0, 5) -1612521420: Socket error on client , disconnecting. -1612521440: New connection from 172.18.0.3 on port 1883. -1612521440: Sending CONNACK to 172.18.0.3 (0, 5) -1612521440: Socket error on client , disconnecting. -1612521460: New connection from 172.18.0.3 on port 1883. -1612521460: Sending CONNACK to 172.18.0.3 (0, 5) -1612521460: Socket error on client , disconnecting. -1612521480: New connection from 172.18.0.3 on port 1883. -1612521480: Sending CONNACK to 172.18.0.3 (0, 5) -1612521480: Socket error on client , disconnecting. -1612521500: New connection from 172.18.0.3 on port 1883. -1612521500: Sending CONNACK to 172.18.0.3 (0, 5) -1612521500: Socket error on client , disconnecting. -1612521520: New connection from 172.18.0.3 on port 1883. -1612521520: Sending CONNACK to 172.18.0.3 (0, 5) -1612521520: Socket error on client , disconnecting. -1612521540: New connection from 172.18.0.3 on port 1883. -1612521540: Sending CONNACK to 172.18.0.3 (0, 5) -1612521540: Socket error on client , disconnecting. -1612521560: New connection from 172.18.0.3 on port 1883. -1612521560: Sending CONNACK to 172.18.0.3 (0, 5) -1612521560: Socket error on client , disconnecting. -1612521580: New connection from 172.18.0.3 on port 1883. -1612521580: Sending CONNACK to 172.18.0.3 (0, 5) -1612521580: Socket error on client , disconnecting. -1612521600: New connection from 172.18.0.3 on port 1883. -1612521600: Sending CONNACK to 172.18.0.3 (0, 5) -1612521600: Socket error on client , disconnecting. -1612521620: New connection from 172.18.0.3 on port 1883. -1612521620: Sending CONNACK to 172.18.0.3 (0, 5) -1612521620: Socket error on client , disconnecting. -1612521640: New connection from 172.18.0.3 on port 1883. -1612521640: Sending CONNACK to 172.18.0.3 (0, 5) -1612521640: Socket error on client , disconnecting. -1612521660: New connection from 172.18.0.3 on port 1883. -1612521660: Sending CONNACK to 172.18.0.3 (0, 5) -1612521660: Socket error on client , disconnecting. -1612521680: New connection from 172.18.0.3 on port 1883. -1612521680: Sending CONNACK to 172.18.0.3 (0, 5) -1612521680: Socket error on client , disconnecting. -1612521700: New connection from 172.18.0.3 on port 1883. -1612521700: Sending CONNACK to 172.18.0.3 (0, 5) -1612521700: Socket error on client , disconnecting. -1612521720: New connection from 172.18.0.3 on port 1883. -1612521720: Sending CONNACK to 172.18.0.3 (0, 5) -1612521720: Socket error on client , disconnecting. -1612521740: New connection from 172.18.0.3 on port 1883. -1612521740: Sending CONNACK to 172.18.0.3 (0, 5) -1612521740: Socket error on client , disconnecting. -1612521760: New connection from 172.18.0.3 on port 1883. -1612521760: Sending CONNACK to 172.18.0.3 (0, 5) -1612521760: Socket error on client , disconnecting. -1612521780: New connection from 172.18.0.3 on port 1883. -1612521780: Sending CONNACK to 172.18.0.3 (0, 5) -1612521780: Socket error on client , disconnecting. -1612521800: New connection from 172.18.0.3 on port 1883. -1612521800: Sending CONNACK to 172.18.0.3 (0, 5) -1612521800: Socket error on client , disconnecting. -1612521820: New connection from 172.18.0.3 on port 1883. -1612521820: Sending CONNACK to 172.18.0.3 (0, 5) -1612521820: Socket error on client , disconnecting. -1612521840: New connection from 172.18.0.3 on port 1883. -1612521840: Sending CONNACK to 172.18.0.3 (0, 5) -1612521840: Socket error on client , disconnecting. -1612521860: New connection from 172.18.0.3 on port 1883. -1612521860: Sending CONNACK to 172.18.0.3 (0, 5) -1612521860: Socket error on client , disconnecting. -1612521880: New connection from 172.18.0.3 on port 1883. -1612521880: Sending CONNACK to 172.18.0.3 (0, 5) -1612521880: Socket error on client , disconnecting. -1612521900: New connection from 172.18.0.3 on port 1883. -1612521900: Sending CONNACK to 172.18.0.3 (0, 5) -1612521900: Socket error on client , disconnecting. -1612521920: New connection from 172.18.0.3 on port 1883. -1612521920: Sending CONNACK to 172.18.0.3 (0, 5) -1612521920: Socket error on client , disconnecting. -1612521940: New connection from 172.18.0.3 on port 1883. -1612521940: Sending CONNACK to 172.18.0.3 (0, 5) -1612521940: Socket error on client , disconnecting. -1612521960: New connection from 172.18.0.3 on port 1883. -1612521960: Sending CONNACK to 172.18.0.3 (0, 5) -1612521960: Socket error on client , disconnecting. -1612521980: New connection from 172.18.0.3 on port 1883. -1612521980: Sending CONNACK to 172.18.0.3 (0, 5) -1612521980: Socket error on client , disconnecting. -1612522000: New connection from 172.18.0.3 on port 1883. -1612522000: Sending CONNACK to 172.18.0.3 (0, 5) -1612522000: Socket error on client , disconnecting. -1612522020: New connection from 172.18.0.3 on port 1883. -1612522020: Sending CONNACK to 172.18.0.3 (0, 5) -1612522020: Socket error on client , disconnecting. -1612522040: New connection from 172.18.0.3 on port 1883. -1612522040: Sending CONNACK to 172.18.0.3 (0, 5) -1612522040: Socket error on client , disconnecting. -1612522059: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612522059: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612522059: Error: Permission denied. -1612522060: New connection from 172.18.0.3 on port 1883. -1612522060: Sending CONNACK to 172.18.0.3 (0, 5) -1612522060: Socket error on client , disconnecting. -1612522080: New connection from 172.18.0.3 on port 1883. -1612522080: Sending CONNACK to 172.18.0.3 (0, 5) -1612522080: Socket error on client , disconnecting. -1612522100: New connection from 172.18.0.3 on port 1883. -1612522100: Sending CONNACK to 172.18.0.3 (0, 5) -1612522100: Socket error on client , disconnecting. -1612522120: New connection from 172.18.0.3 on port 1883. -1612522120: Sending CONNACK to 172.18.0.3 (0, 5) -1612522120: Socket error on client , disconnecting. -1612522140: New connection from 172.18.0.3 on port 1883. -1612522140: Sending CONNACK to 172.18.0.3 (0, 5) -1612522140: Socket error on client , disconnecting. -1612522160: New connection from 172.18.0.3 on port 1883. -1612522160: Sending CONNACK to 172.18.0.3 (0, 5) -1612522160: Socket error on client , disconnecting. -1612522180: New connection from 172.18.0.3 on port 1883. -1612522180: Sending CONNACK to 172.18.0.3 (0, 5) -1612522180: Socket error on client , disconnecting. -1612522200: New connection from 172.18.0.3 on port 1883. -1612522200: Sending CONNACK to 172.18.0.3 (0, 5) -1612522200: Socket error on client , disconnecting. -1612522220: New connection from 172.18.0.3 on port 1883. -1612522220: Sending CONNACK to 172.18.0.3 (0, 5) -1612522220: Socket error on client , disconnecting. -1612522240: New connection from 172.18.0.3 on port 1883. -1612522240: Sending CONNACK to 172.18.0.3 (0, 5) -1612522240: Socket error on client , disconnecting. -1612522260: New connection from 172.18.0.3 on port 1883. -1612522260: Sending CONNACK to 172.18.0.3 (0, 5) -1612522260: Socket error on client , disconnecting. -1612522280: New connection from 172.18.0.3 on port 1883. -1612522280: Sending CONNACK to 172.18.0.3 (0, 5) -1612522280: Socket error on client , disconnecting. -1612522300: New connection from 172.18.0.3 on port 1883. -1612522300: Sending CONNACK to 172.18.0.3 (0, 5) -1612522300: Socket error on client , disconnecting. -1612522320: New connection from 172.18.0.3 on port 1883. -1612522320: Sending CONNACK to 172.18.0.3 (0, 5) -1612522320: Socket error on client , disconnecting. -1612522340: New connection from 172.18.0.3 on port 1883. -1612522340: Sending CONNACK to 172.18.0.3 (0, 5) -1612522340: Socket error on client , disconnecting. -1612522360: New connection from 172.18.0.3 on port 1883. -1612522360: Sending CONNACK to 172.18.0.3 (0, 5) -1612522360: Socket error on client , disconnecting. -1612522380: New connection from 172.18.0.3 on port 1883. -1612522380: Sending CONNACK to 172.18.0.3 (0, 5) -1612522380: Socket error on client , disconnecting. -1612522400: New connection from 172.18.0.3 on port 1883. -1612522400: Sending CONNACK to 172.18.0.3 (0, 5) -1612522400: Socket error on client , disconnecting. -1612522420: New connection from 172.18.0.3 on port 1883. -1612522420: Sending CONNACK to 172.18.0.3 (0, 5) -1612522420: Socket error on client , disconnecting. -1612522440: New connection from 172.18.0.3 on port 1883. -1612522440: Sending CONNACK to 172.18.0.3 (0, 5) -1612522440: Socket error on client , disconnecting. -1612522460: New connection from 172.18.0.3 on port 1883. -1612522460: Sending CONNACK to 172.18.0.3 (0, 5) -1612522460: Socket error on client , disconnecting. -1612522480: New connection from 172.18.0.3 on port 1883. -1612522480: Sending CONNACK to 172.18.0.3 (0, 5) -1612522480: Socket error on client , disconnecting. -1612522500: New connection from 172.18.0.3 on port 1883. -1612522500: Sending CONNACK to 172.18.0.3 (0, 5) -1612522500: Socket error on client , disconnecting. -1612522520: New connection from 172.18.0.3 on port 1883. -1612522520: Sending CONNACK to 172.18.0.3 (0, 5) -1612522520: Socket error on client , disconnecting. -1612522540: New connection from 172.18.0.3 on port 1883. -1612522540: Sending CONNACK to 172.18.0.3 (0, 5) -1612522540: Socket error on client , disconnecting. -1612522560: New connection from 172.18.0.3 on port 1883. -1612522560: Sending CONNACK to 172.18.0.3 (0, 5) -1612522560: Socket error on client , disconnecting. -1612522580: New connection from 172.18.0.3 on port 1883. -1612522580: Sending CONNACK to 172.18.0.3 (0, 5) -1612522580: Socket error on client , disconnecting. -1612522600: New connection from 172.18.0.3 on port 1883. -1612522600: Sending CONNACK to 172.18.0.3 (0, 5) -1612522600: Socket error on client , disconnecting. -1612522620: New connection from 172.18.0.3 on port 1883. -1612522620: Sending CONNACK to 172.18.0.3 (0, 5) -1612522620: Socket error on client , disconnecting. -1612522640: New connection from 172.18.0.3 on port 1883. -1612522640: Sending CONNACK to 172.18.0.3 (0, 5) -1612522640: Socket error on client , disconnecting. -1612522660: New connection from 172.18.0.3 on port 1883. -1612522660: Sending CONNACK to 172.18.0.3 (0, 5) -1612522660: Socket error on client , disconnecting. -1612522680: New connection from 172.18.0.3 on port 1883. -1612522680: Sending CONNACK to 172.18.0.3 (0, 5) -1612522680: Socket error on client , disconnecting. -1612522700: New connection from 172.18.0.3 on port 1883. -1612522700: Sending CONNACK to 172.18.0.3 (0, 5) -1612522700: Socket error on client , disconnecting. -1612522720: New connection from 172.18.0.3 on port 1883. -1612522720: Sending CONNACK to 172.18.0.3 (0, 5) -1612522720: Socket error on client , disconnecting. -1612522740: New connection from 172.18.0.3 on port 1883. -1612522740: Sending CONNACK to 172.18.0.3 (0, 5) -1612522740: Socket error on client , disconnecting. -1612522760: New connection from 172.18.0.3 on port 1883. -1612522760: Sending CONNACK to 172.18.0.3 (0, 5) -1612522760: Socket error on client , disconnecting. -1612522780: New connection from 172.18.0.3 on port 1883. -1612522780: Sending CONNACK to 172.18.0.3 (0, 5) -1612522780: Socket error on client , disconnecting. -1612522800: New connection from 172.18.0.3 on port 1883. -1612522800: Sending CONNACK to 172.18.0.3 (0, 5) -1612522800: Socket error on client , disconnecting. -1612522820: New connection from 172.18.0.3 on port 1883. -1612522820: Sending CONNACK to 172.18.0.3 (0, 5) -1612522820: Socket error on client , disconnecting. -1612522840: New connection from 172.18.0.3 on port 1883. -1612522840: Sending CONNACK to 172.18.0.3 (0, 5) -1612522840: Socket error on client , disconnecting. -1612522860: New connection from 172.18.0.3 on port 1883. -1612522860: Sending CONNACK to 172.18.0.3 (0, 5) -1612522860: Socket error on client , disconnecting. -1612522880: New connection from 172.18.0.3 on port 1883. -1612522880: Sending CONNACK to 172.18.0.3 (0, 5) -1612522880: Socket error on client , disconnecting. -1612522900: New connection from 172.18.0.3 on port 1883. -1612522900: Sending CONNACK to 172.18.0.3 (0, 5) -1612522900: Socket error on client , disconnecting. -1612522920: New connection from 172.18.0.3 on port 1883. -1612522920: Sending CONNACK to 172.18.0.3 (0, 5) -1612522920: Socket error on client , disconnecting. -1612522940: New connection from 172.18.0.3 on port 1883. -1612522940: Sending CONNACK to 172.18.0.3 (0, 5) -1612522940: Socket error on client , disconnecting. -1612522960: New connection from 172.18.0.3 on port 1883. -1612522960: Sending CONNACK to 172.18.0.3 (0, 5) -1612522960: Socket error on client , disconnecting. -1612522980: New connection from 172.18.0.3 on port 1883. -1612522980: Sending CONNACK to 172.18.0.3 (0, 5) -1612522980: Socket error on client , disconnecting. -1612523000: New connection from 172.18.0.3 on port 1883. -1612523000: Sending CONNACK to 172.18.0.3 (0, 5) -1612523000: Socket error on client , disconnecting. -1612523020: New connection from 172.18.0.3 on port 1883. -1612523020: Sending CONNACK to 172.18.0.3 (0, 5) -1612523020: Socket error on client , disconnecting. -1612523040: New connection from 172.18.0.3 on port 1883. -1612523040: Sending CONNACK to 172.18.0.3 (0, 5) -1612523040: Socket error on client , disconnecting. -1612523060: New connection from 172.18.0.3 on port 1883. -1612523060: Sending CONNACK to 172.18.0.3 (0, 5) -1612523060: Socket error on client , disconnecting. -1612523080: New connection from 172.18.0.3 on port 1883. -1612523080: Sending CONNACK to 172.18.0.3 (0, 5) -1612523080: Socket error on client , disconnecting. -1612523100: New connection from 172.18.0.3 on port 1883. -1612523100: Sending CONNACK to 172.18.0.3 (0, 5) -1612523100: Socket error on client , disconnecting. -1612523120: New connection from 172.18.0.3 on port 1883. -1612523120: Sending CONNACK to 172.18.0.3 (0, 5) -1612523120: Socket error on client , disconnecting. -1612523140: New connection from 172.18.0.3 on port 1883. -1612523140: Sending CONNACK to 172.18.0.3 (0, 5) -1612523140: Socket error on client , disconnecting. -1612523160: New connection from 172.18.0.3 on port 1883. -1612523160: Sending CONNACK to 172.18.0.3 (0, 5) -1612523160: Socket error on client , disconnecting. -1612523180: New connection from 172.18.0.3 on port 1883. -1612523180: Sending CONNACK to 172.18.0.3 (0, 5) -1612523180: Socket error on client , disconnecting. -1612523200: New connection from 172.18.0.3 on port 1883. -1612523200: Sending CONNACK to 172.18.0.3 (0, 5) -1612523200: Socket error on client , disconnecting. -1612523220: New connection from 172.18.0.3 on port 1883. -1612523220: Sending CONNACK to 172.18.0.3 (0, 5) -1612523220: Socket error on client , disconnecting. -1612523240: New connection from 172.18.0.3 on port 1883. -1612523240: Sending CONNACK to 172.18.0.3 (0, 5) -1612523240: Socket error on client , disconnecting. -1612523260: New connection from 172.18.0.3 on port 1883. -1612523260: Sending CONNACK to 172.18.0.3 (0, 5) -1612523260: Socket error on client , disconnecting. -1612523280: New connection from 172.18.0.3 on port 1883. -1612523280: Sending CONNACK to 172.18.0.3 (0, 5) -1612523280: Socket error on client , disconnecting. -1612523300: New connection from 172.18.0.3 on port 1883. -1612523300: Sending CONNACK to 172.18.0.3 (0, 5) -1612523300: Socket error on client , disconnecting. -1612523320: New connection from 172.18.0.3 on port 1883. -1612523320: Sending CONNACK to 172.18.0.3 (0, 5) -1612523320: Socket error on client , disconnecting. -1612523340: New connection from 172.18.0.3 on port 1883. -1612523340: Sending CONNACK to 172.18.0.3 (0, 5) -1612523340: Socket error on client , disconnecting. -1612523360: New connection from 172.18.0.3 on port 1883. -1612523360: Sending CONNACK to 172.18.0.3 (0, 5) -1612523360: Socket error on client , disconnecting. -1612523380: New connection from 172.18.0.3 on port 1883. -1612523380: Sending CONNACK to 172.18.0.3 (0, 5) -1612523380: Socket error on client , disconnecting. -1612523400: New connection from 172.18.0.3 on port 1883. -1612523400: Sending CONNACK to 172.18.0.3 (0, 5) -1612523400: Socket error on client , disconnecting. -1612523420: New connection from 172.18.0.3 on port 1883. -1612523420: Sending CONNACK to 172.18.0.3 (0, 5) -1612523420: Socket error on client , disconnecting. -1612523440: New connection from 172.18.0.3 on port 1883. -1612523440: Sending CONNACK to 172.18.0.3 (0, 5) -1612523440: Socket error on client , disconnecting. -1612523460: New connection from 172.18.0.3 on port 1883. -1612523460: Sending CONNACK to 172.18.0.3 (0, 5) -1612523460: Socket error on client , disconnecting. -1612523480: New connection from 172.18.0.3 on port 1883. -1612523480: Sending CONNACK to 172.18.0.3 (0, 5) -1612523480: Socket error on client , disconnecting. -1612523500: New connection from 172.18.0.3 on port 1883. -1612523500: Sending CONNACK to 172.18.0.3 (0, 5) -1612523500: Socket error on client , disconnecting. -1612523520: New connection from 172.18.0.3 on port 1883. -1612523520: Sending CONNACK to 172.18.0.3 (0, 5) -1612523520: Socket error on client , disconnecting. -1612523540: New connection from 172.18.0.3 on port 1883. -1612523540: Sending CONNACK to 172.18.0.3 (0, 5) -1612523540: Socket error on client , disconnecting. -1612523560: New connection from 172.18.0.3 on port 1883. -1612523560: Sending CONNACK to 172.18.0.3 (0, 5) -1612523560: Socket error on client , disconnecting. -1612523580: New connection from 172.18.0.3 on port 1883. -1612523580: Sending CONNACK to 172.18.0.3 (0, 5) -1612523580: Socket error on client , disconnecting. -1612523600: New connection from 172.18.0.3 on port 1883. -1612523600: Sending CONNACK to 172.18.0.3 (0, 5) -1612523600: Socket error on client , disconnecting. -1612523620: New connection from 172.18.0.3 on port 1883. -1612523620: Sending CONNACK to 172.18.0.3 (0, 5) -1612523620: Socket error on client , disconnecting. -1612523640: New connection from 172.18.0.3 on port 1883. -1612523640: Sending CONNACK to 172.18.0.3 (0, 5) -1612523640: Socket error on client , disconnecting. -1612523660: New connection from 172.18.0.3 on port 1883. -1612523660: Sending CONNACK to 172.18.0.3 (0, 5) -1612523660: Socket error on client , disconnecting. -1612523680: New connection from 172.18.0.3 on port 1883. -1612523680: Sending CONNACK to 172.18.0.3 (0, 5) -1612523680: Socket error on client , disconnecting. -1612523700: New connection from 172.18.0.3 on port 1883. -1612523700: Sending CONNACK to 172.18.0.3 (0, 5) -1612523700: Socket error on client , disconnecting. -1612523720: New connection from 172.18.0.3 on port 1883. -1612523720: Sending CONNACK to 172.18.0.3 (0, 5) -1612523720: Socket error on client , disconnecting. -1612523740: New connection from 172.18.0.3 on port 1883. -1612523740: Sending CONNACK to 172.18.0.3 (0, 5) -1612523740: Socket error on client , disconnecting. -1612523760: New connection from 172.18.0.3 on port 1883. -1612523760: Sending CONNACK to 172.18.0.3 (0, 5) -1612523760: Socket error on client , disconnecting. -1612523780: New connection from 172.18.0.3 on port 1883. -1612523780: Sending CONNACK to 172.18.0.3 (0, 5) -1612523780: Socket error on client , disconnecting. -1612523800: New connection from 172.18.0.3 on port 1883. -1612523800: Sending CONNACK to 172.18.0.3 (0, 5) -1612523800: Socket error on client , disconnecting. -1612523820: New connection from 172.18.0.3 on port 1883. -1612523820: Sending CONNACK to 172.18.0.3 (0, 5) -1612523820: Socket error on client , disconnecting. -1612523840: New connection from 172.18.0.3 on port 1883. -1612523840: Sending CONNACK to 172.18.0.3 (0, 5) -1612523840: Socket error on client , disconnecting. -1612523860: New connection from 172.18.0.3 on port 1883. -1612523860: Sending CONNACK to 172.18.0.3 (0, 5) -1612523860: Socket error on client , disconnecting. -1612523860: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612523860: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612523860: Error: Permission denied. -1612523880: New connection from 172.18.0.3 on port 1883. -1612523880: Sending CONNACK to 172.18.0.3 (0, 5) -1612523880: Socket error on client , disconnecting. -1612523900: New connection from 172.18.0.3 on port 1883. -1612523900: Sending CONNACK to 172.18.0.3 (0, 5) -1612523900: Socket error on client , disconnecting. -1612523920: New connection from 172.18.0.3 on port 1883. -1612523920: Sending CONNACK to 172.18.0.3 (0, 5) -1612523920: Socket error on client , disconnecting. -1612523940: New connection from 172.18.0.3 on port 1883. -1612523940: Sending CONNACK to 172.18.0.3 (0, 5) -1612523940: Socket error on client , disconnecting. -1612523960: New connection from 172.18.0.3 on port 1883. -1612523960: Sending CONNACK to 172.18.0.3 (0, 5) -1612523960: Socket error on client , disconnecting. -1612523980: New connection from 172.18.0.3 on port 1883. -1612523980: Sending CONNACK to 172.18.0.3 (0, 5) -1612523980: Socket error on client , disconnecting. -1612524000: New connection from 172.18.0.3 on port 1883. -1612524000: Sending CONNACK to 172.18.0.3 (0, 5) -1612524000: Socket error on client , disconnecting. -1612524020: New connection from 172.18.0.3 on port 1883. -1612524020: Sending CONNACK to 172.18.0.3 (0, 5) -1612524020: Socket error on client , disconnecting. -1612524040: New connection from 172.18.0.3 on port 1883. -1612524040: Sending CONNACK to 172.18.0.3 (0, 5) -1612524040: Socket error on client , disconnecting. -1612524060: New connection from 172.18.0.3 on port 1883. -1612524060: Sending CONNACK to 172.18.0.3 (0, 5) -1612524060: Socket error on client , disconnecting. -1612524080: New connection from 172.18.0.3 on port 1883. -1612524080: Sending CONNACK to 172.18.0.3 (0, 5) -1612524080: Socket error on client , disconnecting. -1612524100: New connection from 172.18.0.3 on port 1883. -1612524100: Sending CONNACK to 172.18.0.3 (0, 5) -1612524100: Socket error on client , disconnecting. -1612524120: New connection from 172.18.0.3 on port 1883. -1612524120: Sending CONNACK to 172.18.0.3 (0, 5) -1612524120: Socket error on client , disconnecting. -1612524140: New connection from 172.18.0.3 on port 1883. -1612524140: Sending CONNACK to 172.18.0.3 (0, 5) -1612524140: Socket error on client , disconnecting. -1612524160: New connection from 172.18.0.3 on port 1883. -1612524160: Sending CONNACK to 172.18.0.3 (0, 5) -1612524160: Socket error on client , disconnecting. -1612524180: New connection from 172.18.0.3 on port 1883. -1612524180: Sending CONNACK to 172.18.0.3 (0, 5) -1612524180: Socket error on client , disconnecting. -1612524200: New connection from 172.18.0.3 on port 1883. -1612524200: Sending CONNACK to 172.18.0.3 (0, 5) -1612524200: Socket error on client , disconnecting. -1612524220: New connection from 172.18.0.3 on port 1883. -1612524220: Sending CONNACK to 172.18.0.3 (0, 5) -1612524220: Socket error on client , disconnecting. -1612524240: New connection from 172.18.0.3 on port 1883. -1612524240: Sending CONNACK to 172.18.0.3 (0, 5) -1612524240: Socket error on client , disconnecting. -1612524260: New connection from 172.18.0.3 on port 1883. -1612524260: Sending CONNACK to 172.18.0.3 (0, 5) -1612524260: Socket error on client , disconnecting. -1612524280: New connection from 172.18.0.3 on port 1883. -1612524280: Sending CONNACK to 172.18.0.3 (0, 5) -1612524280: Socket error on client , disconnecting. -1612524300: New connection from 172.18.0.3 on port 1883. -1612524300: Sending CONNACK to 172.18.0.3 (0, 5) -1612524300: Socket error on client , disconnecting. -1612524320: New connection from 172.18.0.3 on port 1883. -1612524320: Sending CONNACK to 172.18.0.3 (0, 5) -1612524320: Socket error on client , disconnecting. -1612524340: New connection from 172.18.0.3 on port 1883. -1612524340: Sending CONNACK to 172.18.0.3 (0, 5) -1612524340: Socket error on client , disconnecting. -1612524360: New connection from 172.18.0.3 on port 1883. -1612524360: Sending CONNACK to 172.18.0.3 (0, 5) -1612524360: Socket error on client , disconnecting. -1612524380: New connection from 172.18.0.3 on port 1883. -1612524380: Sending CONNACK to 172.18.0.3 (0, 5) -1612524380: Socket error on client , disconnecting. -1612524400: New connection from 172.18.0.3 on port 1883. -1612524400: Sending CONNACK to 172.18.0.3 (0, 5) -1612524400: Socket error on client , disconnecting. -1612524420: New connection from 172.18.0.3 on port 1883. -1612524420: Sending CONNACK to 172.18.0.3 (0, 5) -1612524420: Socket error on client , disconnecting. -1612524440: New connection from 172.18.0.3 on port 1883. -1612524440: Sending CONNACK to 172.18.0.3 (0, 5) -1612524440: Socket error on client , disconnecting. -1612524460: New connection from 172.18.0.3 on port 1883. -1612524460: Sending CONNACK to 172.18.0.3 (0, 5) -1612524460: Socket error on client , disconnecting. -1612524480: New connection from 172.18.0.3 on port 1883. -1612524480: Sending CONNACK to 172.18.0.3 (0, 5) -1612524480: Socket error on client , disconnecting. -1612524500: New connection from 172.18.0.3 on port 1883. -1612524500: Sending CONNACK to 172.18.0.3 (0, 5) -1612524500: Socket error on client , disconnecting. -1612524520: New connection from 172.18.0.3 on port 1883. -1612524520: Sending CONNACK to 172.18.0.3 (0, 5) -1612524520: Socket error on client , disconnecting. -1612524540: New connection from 172.18.0.3 on port 1883. -1612524540: Sending CONNACK to 172.18.0.3 (0, 5) -1612524540: Socket error on client , disconnecting. -1612524560: New connection from 172.18.0.3 on port 1883. -1612524560: Sending CONNACK to 172.18.0.3 (0, 5) -1612524560: Socket error on client , disconnecting. -1612524580: New connection from 172.18.0.3 on port 1883. -1612524580: Sending CONNACK to 172.18.0.3 (0, 5) -1612524580: Socket error on client , disconnecting. -1612524600: New connection from 172.18.0.3 on port 1883. -1612524600: Sending CONNACK to 172.18.0.3 (0, 5) -1612524600: Socket error on client , disconnecting. -1612524620: New connection from 172.18.0.3 on port 1883. -1612524620: Sending CONNACK to 172.18.0.3 (0, 5) -1612524620: Socket error on client , disconnecting. -1612524640: New connection from 172.18.0.3 on port 1883. -1612524640: Sending CONNACK to 172.18.0.3 (0, 5) -1612524640: Socket error on client , disconnecting. -1612524660: New connection from 172.18.0.3 on port 1883. -1612524660: Sending CONNACK to 172.18.0.3 (0, 5) -1612524660: Socket error on client , disconnecting. -1612524680: New connection from 172.18.0.3 on port 1883. -1612524680: Sending CONNACK to 172.18.0.3 (0, 5) -1612524680: Socket error on client , disconnecting. -1612524700: New connection from 172.18.0.3 on port 1883. -1612524700: Sending CONNACK to 172.18.0.3 (0, 5) -1612524700: Socket error on client , disconnecting. -1612524720: New connection from 172.18.0.3 on port 1883. -1612524720: Sending CONNACK to 172.18.0.3 (0, 5) -1612524720: Socket error on client , disconnecting. -1612524740: New connection from 172.18.0.3 on port 1883. -1612524740: Sending CONNACK to 172.18.0.3 (0, 5) -1612524740: Socket error on client , disconnecting. -1612524760: New connection from 172.18.0.3 on port 1883. -1612524760: Sending CONNACK to 172.18.0.3 (0, 5) -1612524760: Socket error on client , disconnecting. -1612524780: New connection from 172.18.0.3 on port 1883. -1612524780: Sending CONNACK to 172.18.0.3 (0, 5) -1612524780: Socket error on client , disconnecting. -1612524800: New connection from 172.18.0.3 on port 1883. -1612524800: Sending CONNACK to 172.18.0.3 (0, 5) -1612524800: Socket error on client , disconnecting. -1612524820: New connection from 172.18.0.3 on port 1883. -1612524820: Sending CONNACK to 172.18.0.3 (0, 5) -1612524820: Socket error on client , disconnecting. -1612524840: New connection from 172.18.0.3 on port 1883. -1612524840: Sending CONNACK to 172.18.0.3 (0, 5) -1612524840: Socket error on client , disconnecting. -1612524860: New connection from 172.18.0.3 on port 1883. -1612524860: Sending CONNACK to 172.18.0.3 (0, 5) -1612524860: Socket error on client , disconnecting. -1612524880: New connection from 172.18.0.3 on port 1883. -1612524880: Sending CONNACK to 172.18.0.3 (0, 5) -1612524880: Socket error on client , disconnecting. -1612524900: New connection from 172.18.0.3 on port 1883. -1612524900: Sending CONNACK to 172.18.0.3 (0, 5) -1612524900: Socket error on client , disconnecting. -1612524920: New connection from 172.18.0.3 on port 1883. -1612524920: Sending CONNACK to 172.18.0.3 (0, 5) -1612524920: Socket error on client , disconnecting. -1612524940: New connection from 172.18.0.3 on port 1883. -1612524940: Sending CONNACK to 172.18.0.3 (0, 5) -1612524940: Socket error on client , disconnecting. -1612524960: New connection from 172.18.0.3 on port 1883. -1612524960: Sending CONNACK to 172.18.0.3 (0, 5) -1612524960: Socket error on client , disconnecting. -1612524980: New connection from 172.18.0.3 on port 1883. -1612524980: Sending CONNACK to 172.18.0.3 (0, 5) -1612524980: Socket error on client , disconnecting. -1612525000: New connection from 172.18.0.3 on port 1883. -1612525000: Sending CONNACK to 172.18.0.3 (0, 5) -1612525000: Socket error on client , disconnecting. -1612525020: New connection from 172.18.0.3 on port 1883. -1612525020: Sending CONNACK to 172.18.0.3 (0, 5) -1612525020: Socket error on client , disconnecting. -1612525040: New connection from 172.18.0.3 on port 1883. -1612525040: Sending CONNACK to 172.18.0.3 (0, 5) -1612525040: Socket error on client , disconnecting. -1612525060: New connection from 172.18.0.3 on port 1883. -1612525060: Sending CONNACK to 172.18.0.3 (0, 5) -1612525060: Socket error on client , disconnecting. -1612525080: New connection from 172.18.0.3 on port 1883. -1612525080: Sending CONNACK to 172.18.0.3 (0, 5) -1612525080: Socket error on client , disconnecting. -1612525100: New connection from 172.18.0.3 on port 1883. -1612525100: Sending CONNACK to 172.18.0.3 (0, 5) -1612525100: Socket error on client , disconnecting. -1612525120: New connection from 172.18.0.3 on port 1883. -1612525120: Sending CONNACK to 172.18.0.3 (0, 5) -1612525120: Socket error on client , disconnecting. -1612525140: New connection from 172.18.0.3 on port 1883. -1612525140: Sending CONNACK to 172.18.0.3 (0, 5) -1612525140: Socket error on client , disconnecting. -1612525160: New connection from 172.18.0.3 on port 1883. -1612525160: Sending CONNACK to 172.18.0.3 (0, 5) -1612525160: Socket error on client , disconnecting. -1612525180: New connection from 172.18.0.3 on port 1883. -1612525180: Sending CONNACK to 172.18.0.3 (0, 5) -1612525180: Socket error on client , disconnecting. -1612525200: New connection from 172.18.0.3 on port 1883. -1612525200: Sending CONNACK to 172.18.0.3 (0, 5) -1612525200: Socket error on client , disconnecting. -1612525220: New connection from 172.18.0.3 on port 1883. -1612525220: Sending CONNACK to 172.18.0.3 (0, 5) -1612525220: Socket error on client , disconnecting. -1612525240: New connection from 172.18.0.3 on port 1883. -1612525240: Sending CONNACK to 172.18.0.3 (0, 5) -1612525240: Socket error on client , disconnecting. -1612525260: New connection from 172.18.0.3 on port 1883. -1612525260: Sending CONNACK to 172.18.0.3 (0, 5) -1612525260: Socket error on client , disconnecting. -1612525280: New connection from 172.18.0.3 on port 1883. -1612525280: Sending CONNACK to 172.18.0.3 (0, 5) -1612525280: Socket error on client , disconnecting. -1612525300: New connection from 172.18.0.3 on port 1883. -1612525300: Sending CONNACK to 172.18.0.3 (0, 5) -1612525300: Socket error on client , disconnecting. -1612525320: New connection from 172.18.0.3 on port 1883. -1612525320: Sending CONNACK to 172.18.0.3 (0, 5) -1612525320: Socket error on client , disconnecting. -1612525340: New connection from 172.18.0.3 on port 1883. -1612525340: Sending CONNACK to 172.18.0.3 (0, 5) -1612525340: Socket error on client , disconnecting. -1612525360: New connection from 172.18.0.3 on port 1883. -1612525360: Sending CONNACK to 172.18.0.3 (0, 5) -1612525360: Socket error on client , disconnecting. -1612525380: New connection from 172.18.0.3 on port 1883. -1612525380: Sending CONNACK to 172.18.0.3 (0, 5) -1612525380: Socket error on client , disconnecting. -1612525400: New connection from 172.18.0.3 on port 1883. -1612525400: Sending CONNACK to 172.18.0.3 (0, 5) -1612525400: Socket error on client , disconnecting. -1612525420: New connection from 172.18.0.3 on port 1883. -1612525420: Sending CONNACK to 172.18.0.3 (0, 5) -1612525420: Socket error on client , disconnecting. -1612525440: New connection from 172.18.0.3 on port 1883. -1612525440: Sending CONNACK to 172.18.0.3 (0, 5) -1612525440: Socket error on client , disconnecting. -1612525460: New connection from 172.18.0.3 on port 1883. -1612525460: Sending CONNACK to 172.18.0.3 (0, 5) -1612525460: Socket error on client , disconnecting. -1612525480: New connection from 172.18.0.3 on port 1883. -1612525480: Sending CONNACK to 172.18.0.3 (0, 5) -1612525480: Socket error on client , disconnecting. -1612525500: New connection from 172.18.0.3 on port 1883. -1612525500: Sending CONNACK to 172.18.0.3 (0, 5) -1612525500: Socket error on client , disconnecting. -1612525520: New connection from 172.18.0.3 on port 1883. -1612525520: Sending CONNACK to 172.18.0.3 (0, 5) -1612525520: Socket error on client , disconnecting. -1612525540: New connection from 172.18.0.3 on port 1883. -1612525540: Sending CONNACK to 172.18.0.3 (0, 5) -1612525540: Socket error on client , disconnecting. -1612525560: New connection from 172.18.0.3 on port 1883. -1612525560: Sending CONNACK to 172.18.0.3 (0, 5) -1612525560: Socket error on client , disconnecting. -1612525580: New connection from 172.18.0.3 on port 1883. -1612525580: Sending CONNACK to 172.18.0.3 (0, 5) -1612525580: Socket error on client , disconnecting. -1612525600: New connection from 172.18.0.3 on port 1883. -1612525600: Sending CONNACK to 172.18.0.3 (0, 5) -1612525600: Socket error on client , disconnecting. -1612525620: New connection from 172.18.0.3 on port 1883. -1612525620: Sending CONNACK to 172.18.0.3 (0, 5) -1612525620: Socket error on client , disconnecting. -1612525640: New connection from 172.18.0.3 on port 1883. -1612525640: Sending CONNACK to 172.18.0.3 (0, 5) -1612525640: Socket error on client , disconnecting. -1612525660: New connection from 172.18.0.3 on port 1883. -1612525660: Sending CONNACK to 172.18.0.3 (0, 5) -1612525660: Socket error on client , disconnecting. -1612525661: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612525661: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612525661: Error: Permission denied. -1612525680: New connection from 172.18.0.3 on port 1883. -1612525680: Sending CONNACK to 172.18.0.3 (0, 5) -1612525680: Socket error on client , disconnecting. -1612525700: New connection from 172.18.0.3 on port 1883. -1612525700: Sending CONNACK to 172.18.0.3 (0, 5) -1612525700: Socket error on client , disconnecting. -1612525720: New connection from 172.18.0.3 on port 1883. -1612525720: Sending CONNACK to 172.18.0.3 (0, 5) -1612525720: Socket error on client , disconnecting. -1612525740: New connection from 172.18.0.3 on port 1883. -1612525740: Sending CONNACK to 172.18.0.3 (0, 5) -1612525740: Socket error on client , disconnecting. -1612525760: New connection from 172.18.0.3 on port 1883. -1612525760: Sending CONNACK to 172.18.0.3 (0, 5) -1612525760: Socket error on client , disconnecting. -1612525780: New connection from 172.18.0.3 on port 1883. -1612525780: Sending CONNACK to 172.18.0.3 (0, 5) -1612525780: Socket error on client , disconnecting. -1612525800: New connection from 172.18.0.3 on port 1883. -1612525800: Sending CONNACK to 172.18.0.3 (0, 5) -1612525800: Socket error on client , disconnecting. -1612525820: New connection from 172.18.0.3 on port 1883. -1612525820: Sending CONNACK to 172.18.0.3 (0, 5) -1612525820: Socket error on client , disconnecting. -1612525840: New connection from 172.18.0.3 on port 1883. -1612525840: Sending CONNACK to 172.18.0.3 (0, 5) -1612525840: Socket error on client , disconnecting. -1612525860: New connection from 172.18.0.3 on port 1883. -1612525860: Sending CONNACK to 172.18.0.3 (0, 5) -1612525860: Socket error on client , disconnecting. -1612525880: New connection from 172.18.0.3 on port 1883. -1612525880: Sending CONNACK to 172.18.0.3 (0, 5) -1612525880: Socket error on client , disconnecting. -1612525900: New connection from 172.18.0.3 on port 1883. -1612525900: Sending CONNACK to 172.18.0.3 (0, 5) -1612525900: Socket error on client , disconnecting. -1612525920: New connection from 172.18.0.3 on port 1883. -1612525920: Sending CONNACK to 172.18.0.3 (0, 5) -1612525920: Socket error on client , disconnecting. -1612525940: New connection from 172.18.0.3 on port 1883. -1612525940: Sending CONNACK to 172.18.0.3 (0, 5) -1612525940: Socket error on client , disconnecting. -1612525960: New connection from 172.18.0.3 on port 1883. -1612525960: Sending CONNACK to 172.18.0.3 (0, 5) -1612525960: Socket error on client , disconnecting. -1612525980: New connection from 172.18.0.3 on port 1883. -1612525980: Sending CONNACK to 172.18.0.3 (0, 5) -1612525980: Socket error on client , disconnecting. -1612526000: New connection from 172.18.0.3 on port 1883. -1612526000: Sending CONNACK to 172.18.0.3 (0, 5) -1612526000: Socket error on client , disconnecting. -1612526020: New connection from 172.18.0.3 on port 1883. -1612526020: Sending CONNACK to 172.18.0.3 (0, 5) -1612526020: Socket error on client , disconnecting. -1612526040: New connection from 172.18.0.3 on port 1883. -1612526040: Sending CONNACK to 172.18.0.3 (0, 5) -1612526040: Socket error on client , disconnecting. -1612526060: New connection from 172.18.0.3 on port 1883. -1612526060: Sending CONNACK to 172.18.0.3 (0, 5) -1612526060: Socket error on client , disconnecting. -1612526080: New connection from 172.18.0.3 on port 1883. -1612526080: Sending CONNACK to 172.18.0.3 (0, 5) -1612526080: Socket error on client , disconnecting. -1612526100: New connection from 172.18.0.3 on port 1883. -1612526100: Sending CONNACK to 172.18.0.3 (0, 5) -1612526100: Socket error on client , disconnecting. -1612526120: New connection from 172.18.0.3 on port 1883. -1612526120: Sending CONNACK to 172.18.0.3 (0, 5) -1612526120: Socket error on client , disconnecting. -1612526140: New connection from 172.18.0.3 on port 1883. -1612526140: Sending CONNACK to 172.18.0.3 (0, 5) -1612526140: Socket error on client , disconnecting. -1612526160: New connection from 172.18.0.3 on port 1883. -1612526160: Sending CONNACK to 172.18.0.3 (0, 5) -1612526160: Socket error on client , disconnecting. -1612526180: New connection from 172.18.0.3 on port 1883. -1612526180: Sending CONNACK to 172.18.0.3 (0, 5) -1612526180: Socket error on client , disconnecting. -1612526200: New connection from 172.18.0.3 on port 1883. -1612526200: Sending CONNACK to 172.18.0.3 (0, 5) -1612526200: Socket error on client , disconnecting. -1612526220: New connection from 172.18.0.3 on port 1883. -1612526220: Sending CONNACK to 172.18.0.3 (0, 5) -1612526220: Socket error on client , disconnecting. -1612526240: New connection from 172.18.0.3 on port 1883. -1612526240: Sending CONNACK to 172.18.0.3 (0, 5) -1612526240: Socket error on client , disconnecting. -1612526260: New connection from 172.18.0.3 on port 1883. -1612526260: Sending CONNACK to 172.18.0.3 (0, 5) -1612526260: Socket error on client , disconnecting. -1612526280: New connection from 172.18.0.3 on port 1883. -1612526280: Sending CONNACK to 172.18.0.3 (0, 5) -1612526280: Socket error on client , disconnecting. -1612526300: New connection from 172.18.0.3 on port 1883. -1612526300: Sending CONNACK to 172.18.0.3 (0, 5) -1612526300: Socket error on client , disconnecting. -1612526320: New connection from 172.18.0.3 on port 1883. -1612526320: Sending CONNACK to 172.18.0.3 (0, 5) -1612526320: Socket error on client , disconnecting. -1612526340: New connection from 172.18.0.3 on port 1883. -1612526340: Sending CONNACK to 172.18.0.3 (0, 5) -1612526340: Socket error on client , disconnecting. -1612526360: New connection from 172.18.0.3 on port 1883. -1612526360: Sending CONNACK to 172.18.0.3 (0, 5) -1612526360: Socket error on client , disconnecting. -1612526380: New connection from 172.18.0.3 on port 1883. -1612526380: Sending CONNACK to 172.18.0.3 (0, 5) -1612526380: Socket error on client , disconnecting. -1612526400: New connection from 172.18.0.3 on port 1883. -1612526400: Sending CONNACK to 172.18.0.3 (0, 5) -1612526400: Socket error on client , disconnecting. -1612526420: New connection from 172.18.0.3 on port 1883. -1612526420: Sending CONNACK to 172.18.0.3 (0, 5) -1612526420: Socket error on client , disconnecting. -1612526440: New connection from 172.18.0.3 on port 1883. -1612526440: Sending CONNACK to 172.18.0.3 (0, 5) -1612526440: Socket error on client , disconnecting. -1612526460: New connection from 172.18.0.3 on port 1883. -1612526460: Sending CONNACK to 172.18.0.3 (0, 5) -1612526460: Socket error on client , disconnecting. -1612526480: New connection from 172.18.0.3 on port 1883. -1612526480: Sending CONNACK to 172.18.0.3 (0, 5) -1612526480: Socket error on client , disconnecting. -1612526500: New connection from 172.18.0.3 on port 1883. -1612526500: Sending CONNACK to 172.18.0.3 (0, 5) -1612526500: Socket error on client , disconnecting. -1612526520: New connection from 172.18.0.3 on port 1883. -1612526520: Sending CONNACK to 172.18.0.3 (0, 5) -1612526520: Socket error on client , disconnecting. -1612526540: New connection from 172.18.0.3 on port 1883. -1612526540: Sending CONNACK to 172.18.0.3 (0, 5) -1612526540: Socket error on client , disconnecting. -1612526560: New connection from 172.18.0.3 on port 1883. -1612526560: Sending CONNACK to 172.18.0.3 (0, 5) -1612526560: Socket error on client , disconnecting. -1612526580: New connection from 172.18.0.3 on port 1883. -1612526580: Sending CONNACK to 172.18.0.3 (0, 5) -1612526580: Socket error on client , disconnecting. -1612526600: New connection from 172.18.0.3 on port 1883. -1612526600: Sending CONNACK to 172.18.0.3 (0, 5) -1612526600: Socket error on client , disconnecting. -1612526620: New connection from 172.18.0.3 on port 1883. -1612526620: Sending CONNACK to 172.18.0.3 (0, 5) -1612526620: Socket error on client , disconnecting. -1612526640: New connection from 172.18.0.3 on port 1883. -1612526640: Sending CONNACK to 172.18.0.3 (0, 5) -1612526640: Socket error on client , disconnecting. -1612526660: New connection from 172.18.0.3 on port 1883. -1612526660: Sending CONNACK to 172.18.0.3 (0, 5) -1612526660: Socket error on client , disconnecting. -1612526680: New connection from 172.18.0.3 on port 1883. -1612526680: Sending CONNACK to 172.18.0.3 (0, 5) -1612526680: Socket error on client , disconnecting. -1612526700: New connection from 172.18.0.3 on port 1883. -1612526700: Sending CONNACK to 172.18.0.3 (0, 5) -1612526700: Socket error on client , disconnecting. -1612526720: New connection from 172.18.0.3 on port 1883. -1612526720: Sending CONNACK to 172.18.0.3 (0, 5) -1612526720: Socket error on client , disconnecting. -1612526740: New connection from 172.18.0.3 on port 1883. -1612526740: Sending CONNACK to 172.18.0.3 (0, 5) -1612526740: Socket error on client , disconnecting. -1612526760: New connection from 172.18.0.3 on port 1883. -1612526760: Sending CONNACK to 172.18.0.3 (0, 5) -1612526760: Socket error on client , disconnecting. -1612526780: New connection from 172.18.0.3 on port 1883. -1612526780: Sending CONNACK to 172.18.0.3 (0, 5) -1612526780: Socket error on client , disconnecting. -1612526800: New connection from 172.18.0.3 on port 1883. -1612526800: Sending CONNACK to 172.18.0.3 (0, 5) -1612526800: Socket error on client , disconnecting. -1612526820: New connection from 172.18.0.3 on port 1883. -1612526820: Sending CONNACK to 172.18.0.3 (0, 5) -1612526820: Socket error on client , disconnecting. -1612526840: New connection from 172.18.0.3 on port 1883. -1612526840: Sending CONNACK to 172.18.0.3 (0, 5) -1612526840: Socket error on client , disconnecting. -1612526860: New connection from 172.18.0.3 on port 1883. -1612526860: Sending CONNACK to 172.18.0.3 (0, 5) -1612526860: Socket error on client , disconnecting. -1612526880: New connection from 172.18.0.3 on port 1883. -1612526880: Sending CONNACK to 172.18.0.3 (0, 5) -1612526880: Socket error on client , disconnecting. -1612526900: New connection from 172.18.0.3 on port 1883. -1612526900: Sending CONNACK to 172.18.0.3 (0, 5) -1612526900: Socket error on client , disconnecting. -1612526920: New connection from 172.18.0.3 on port 1883. -1612526920: Sending CONNACK to 172.18.0.3 (0, 5) -1612526920: Socket error on client , disconnecting. -1612526940: New connection from 172.18.0.3 on port 1883. -1612526940: Sending CONNACK to 172.18.0.3 (0, 5) -1612526940: Socket error on client , disconnecting. -1612526960: New connection from 172.18.0.3 on port 1883. -1612526960: Sending CONNACK to 172.18.0.3 (0, 5) -1612526960: Socket error on client , disconnecting. -1612526980: New connection from 172.18.0.3 on port 1883. -1612526980: Sending CONNACK to 172.18.0.3 (0, 5) -1612526980: Socket error on client , disconnecting. -1612527000: New connection from 172.18.0.3 on port 1883. -1612527000: Sending CONNACK to 172.18.0.3 (0, 5) -1612527000: Socket error on client , disconnecting. -1612527020: New connection from 172.18.0.3 on port 1883. -1612527020: Sending CONNACK to 172.18.0.3 (0, 5) -1612527020: Socket error on client , disconnecting. -1612527040: New connection from 172.18.0.3 on port 1883. -1612527040: Sending CONNACK to 172.18.0.3 (0, 5) -1612527040: Socket error on client , disconnecting. -1612527060: New connection from 172.18.0.3 on port 1883. -1612527060: Sending CONNACK to 172.18.0.3 (0, 5) -1612527060: Socket error on client , disconnecting. -1612527080: New connection from 172.18.0.3 on port 1883. -1612527080: Sending CONNACK to 172.18.0.3 (0, 5) -1612527080: Socket error on client , disconnecting. -1612527100: New connection from 172.18.0.3 on port 1883. -1612527100: Sending CONNACK to 172.18.0.3 (0, 5) -1612527100: Socket error on client , disconnecting. -1612527120: New connection from 172.18.0.3 on port 1883. -1612527120: Sending CONNACK to 172.18.0.3 (0, 5) -1612527120: Socket error on client , disconnecting. -1612527140: New connection from 172.18.0.3 on port 1883. -1612527140: Sending CONNACK to 172.18.0.3 (0, 5) -1612527140: Socket error on client , disconnecting. -1612527160: New connection from 172.18.0.3 on port 1883. -1612527160: Sending CONNACK to 172.18.0.3 (0, 5) -1612527160: Socket error on client , disconnecting. -1612527180: New connection from 172.18.0.3 on port 1883. -1612527180: Sending CONNACK to 172.18.0.3 (0, 5) -1612527180: Socket error on client , disconnecting. -1612527200: New connection from 172.18.0.3 on port 1883. -1612527200: Sending CONNACK to 172.18.0.3 (0, 5) -1612527200: Socket error on client , disconnecting. -1612527220: New connection from 172.18.0.3 on port 1883. -1612527220: Sending CONNACK to 172.18.0.3 (0, 5) -1612527220: Socket error on client , disconnecting. -1612527240: New connection from 172.18.0.3 on port 1883. -1612527240: Sending CONNACK to 172.18.0.3 (0, 5) -1612527240: Socket error on client , disconnecting. -1612527260: New connection from 172.18.0.3 on port 1883. -1612527260: Sending CONNACK to 172.18.0.3 (0, 5) -1612527260: Socket error on client , disconnecting. -1612527280: New connection from 172.18.0.3 on port 1883. -1612527280: Sending CONNACK to 172.18.0.3 (0, 5) -1612527280: Socket error on client , disconnecting. -1612527300: New connection from 172.18.0.3 on port 1883. -1612527300: Sending CONNACK to 172.18.0.3 (0, 5) -1612527300: Socket error on client , disconnecting. -1612527320: New connection from 172.18.0.3 on port 1883. -1612527320: Sending CONNACK to 172.18.0.3 (0, 5) -1612527320: Socket error on client , disconnecting. -1612527340: New connection from 172.18.0.3 on port 1883. -1612527340: Sending CONNACK to 172.18.0.3 (0, 5) -1612527340: Socket error on client , disconnecting. -1612527360: New connection from 172.18.0.3 on port 1883. -1612527360: Sending CONNACK to 172.18.0.3 (0, 5) -1612527360: Socket error on client , disconnecting. -1612527380: New connection from 172.18.0.3 on port 1883. -1612527380: Sending CONNACK to 172.18.0.3 (0, 5) -1612527380: Socket error on client , disconnecting. -1612527400: New connection from 172.18.0.3 on port 1883. -1612527400: Sending CONNACK to 172.18.0.3 (0, 5) -1612527400: Socket error on client , disconnecting. -1612527420: New connection from 172.18.0.3 on port 1883. -1612527420: Sending CONNACK to 172.18.0.3 (0, 5) -1612527420: Socket error on client , disconnecting. -1612527440: New connection from 172.18.0.3 on port 1883. -1612527440: Sending CONNACK to 172.18.0.3 (0, 5) -1612527440: Socket error on client , disconnecting. -1612527460: New connection from 172.18.0.3 on port 1883. -1612527460: Sending CONNACK to 172.18.0.3 (0, 5) -1612527460: Socket error on client , disconnecting. -1612527462: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612527462: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612527462: Error: Permission denied. -1612527480: New connection from 172.18.0.3 on port 1883. -1612527480: Sending CONNACK to 172.18.0.3 (0, 5) -1612527480: Socket error on client , disconnecting. -1612527500: New connection from 172.18.0.3 on port 1883. -1612527500: Sending CONNACK to 172.18.0.3 (0, 5) -1612527500: Socket error on client , disconnecting. -1612527520: New connection from 172.18.0.3 on port 1883. -1612527520: Sending CONNACK to 172.18.0.3 (0, 5) -1612527520: Socket error on client , disconnecting. -1612527540: New connection from 172.18.0.3 on port 1883. -1612527540: Sending CONNACK to 172.18.0.3 (0, 5) -1612527540: Socket error on client , disconnecting. -1612527560: New connection from 172.18.0.3 on port 1883. -1612527560: Sending CONNACK to 172.18.0.3 (0, 5) -1612527560: Socket error on client , disconnecting. -1612527580: New connection from 172.18.0.3 on port 1883. -1612527580: Sending CONNACK to 172.18.0.3 (0, 5) -1612527580: Socket error on client , disconnecting. -1612527600: New connection from 172.18.0.3 on port 1883. -1612527600: Sending CONNACK to 172.18.0.3 (0, 5) -1612527600: Socket error on client , disconnecting. -1612527620: New connection from 172.18.0.3 on port 1883. -1612527620: Sending CONNACK to 172.18.0.3 (0, 5) -1612527620: Socket error on client , disconnecting. -1612527640: New connection from 172.18.0.3 on port 1883. -1612527640: Sending CONNACK to 172.18.0.3 (0, 5) -1612527640: Socket error on client , disconnecting. -1612527660: New connection from 172.18.0.3 on port 1883. -1612527660: Sending CONNACK to 172.18.0.3 (0, 5) -1612527660: Socket error on client , disconnecting. -1612527680: New connection from 172.18.0.3 on port 1883. -1612527680: Sending CONNACK to 172.18.0.3 (0, 5) -1612527680: Socket error on client , disconnecting. -1612527700: New connection from 172.18.0.3 on port 1883. -1612527700: Sending CONNACK to 172.18.0.3 (0, 5) -1612527700: Socket error on client , disconnecting. -1612527720: New connection from 172.18.0.3 on port 1883. -1612527720: Sending CONNACK to 172.18.0.3 (0, 5) -1612527720: Socket error on client , disconnecting. -1612527740: New connection from 172.18.0.3 on port 1883. -1612527740: Sending CONNACK to 172.18.0.3 (0, 5) -1612527740: Socket error on client , disconnecting. -1612527760: New connection from 172.18.0.3 on port 1883. -1612527760: Sending CONNACK to 172.18.0.3 (0, 5) -1612527760: Socket error on client , disconnecting. -1612527780: New connection from 172.18.0.3 on port 1883. -1612527780: Sending CONNACK to 172.18.0.3 (0, 5) -1612527780: Socket error on client , disconnecting. -1612527800: New connection from 172.18.0.3 on port 1883. -1612527800: Sending CONNACK to 172.18.0.3 (0, 5) -1612527800: Socket error on client , disconnecting. -1612527820: New connection from 172.18.0.3 on port 1883. -1612527820: Sending CONNACK to 172.18.0.3 (0, 5) -1612527820: Socket error on client , disconnecting. -1612527840: New connection from 172.18.0.3 on port 1883. -1612527840: Sending CONNACK to 172.18.0.3 (0, 5) -1612527840: Socket error on client , disconnecting. -1612527860: New connection from 172.18.0.3 on port 1883. -1612527860: Sending CONNACK to 172.18.0.3 (0, 5) -1612527860: Socket error on client , disconnecting. -1612527880: New connection from 172.18.0.3 on port 1883. -1612527880: Sending CONNACK to 172.18.0.3 (0, 5) -1612527880: Socket error on client , disconnecting. -1612527900: New connection from 172.18.0.3 on port 1883. -1612527900: Sending CONNACK to 172.18.0.3 (0, 5) -1612527900: Socket error on client , disconnecting. -1612527920: New connection from 172.18.0.3 on port 1883. -1612527920: Sending CONNACK to 172.18.0.3 (0, 5) -1612527920: Socket error on client , disconnecting. -1612527940: New connection from 172.18.0.3 on port 1883. -1612527940: Sending CONNACK to 172.18.0.3 (0, 5) -1612527940: Socket error on client , disconnecting. -1612527960: New connection from 172.18.0.3 on port 1883. -1612527960: Sending CONNACK to 172.18.0.3 (0, 5) -1612527960: Socket error on client , disconnecting. -1612527980: New connection from 172.18.0.3 on port 1883. -1612527980: Sending CONNACK to 172.18.0.3 (0, 5) -1612527980: Socket error on client , disconnecting. -1612528000: New connection from 172.18.0.3 on port 1883. -1612528000: Sending CONNACK to 172.18.0.3 (0, 5) -1612528000: Socket error on client , disconnecting. -1612528020: New connection from 172.18.0.3 on port 1883. -1612528020: Sending CONNACK to 172.18.0.3 (0, 5) -1612528020: Socket error on client , disconnecting. -1612528040: New connection from 172.18.0.3 on port 1883. -1612528040: Sending CONNACK to 172.18.0.3 (0, 5) -1612528040: Socket error on client , disconnecting. -1612528060: New connection from 172.18.0.3 on port 1883. -1612528060: Sending CONNACK to 172.18.0.3 (0, 5) -1612528060: Socket error on client , disconnecting. -1612528080: New connection from 172.18.0.3 on port 1883. -1612528080: Sending CONNACK to 172.18.0.3 (0, 5) -1612528080: Socket error on client , disconnecting. -1612528100: New connection from 172.18.0.3 on port 1883. -1612528100: Sending CONNACK to 172.18.0.3 (0, 5) -1612528100: Socket error on client , disconnecting. -1612528120: New connection from 172.18.0.3 on port 1883. -1612528120: Sending CONNACK to 172.18.0.3 (0, 5) -1612528120: Socket error on client , disconnecting. -1612528140: New connection from 172.18.0.3 on port 1883. -1612528140: Sending CONNACK to 172.18.0.3 (0, 5) -1612528140: Socket error on client , disconnecting. -1612528160: New connection from 172.18.0.3 on port 1883. -1612528160: Sending CONNACK to 172.18.0.3 (0, 5) -1612528160: Socket error on client , disconnecting. -1612528180: New connection from 172.18.0.3 on port 1883. -1612528180: Sending CONNACK to 172.18.0.3 (0, 5) -1612528180: Socket error on client , disconnecting. -1612528200: New connection from 172.18.0.3 on port 1883. -1612528200: Sending CONNACK to 172.18.0.3 (0, 5) -1612528200: Socket error on client , disconnecting. -1612528220: New connection from 172.18.0.3 on port 1883. -1612528220: Sending CONNACK to 172.18.0.3 (0, 5) -1612528220: Socket error on client , disconnecting. -1612528240: New connection from 172.18.0.3 on port 1883. -1612528240: Sending CONNACK to 172.18.0.3 (0, 5) -1612528240: Socket error on client , disconnecting. -1612528260: New connection from 172.18.0.3 on port 1883. -1612528260: Sending CONNACK to 172.18.0.3 (0, 5) -1612528260: Socket error on client , disconnecting. -1612528280: New connection from 172.18.0.3 on port 1883. -1612528280: Sending CONNACK to 172.18.0.3 (0, 5) -1612528280: Socket error on client , disconnecting. -1612528300: New connection from 172.18.0.3 on port 1883. -1612528300: Sending CONNACK to 172.18.0.3 (0, 5) -1612528300: Socket error on client , disconnecting. -1612528320: New connection from 172.18.0.3 on port 1883. -1612528320: Sending CONNACK to 172.18.0.3 (0, 5) -1612528320: Socket error on client , disconnecting. -1612528340: New connection from 172.18.0.3 on port 1883. -1612528340: Sending CONNACK to 172.18.0.3 (0, 5) -1612528340: Socket error on client , disconnecting. -1612528360: New connection from 172.18.0.3 on port 1883. -1612528360: Sending CONNACK to 172.18.0.3 (0, 5) -1612528360: Socket error on client , disconnecting. -1612528380: New connection from 172.18.0.3 on port 1883. -1612528380: Sending CONNACK to 172.18.0.3 (0, 5) -1612528380: Socket error on client , disconnecting. -1612528400: New connection from 172.18.0.3 on port 1883. -1612528400: Sending CONNACK to 172.18.0.3 (0, 5) -1612528400: Socket error on client , disconnecting. -1612528420: New connection from 172.18.0.3 on port 1883. -1612528420: Sending CONNACK to 172.18.0.3 (0, 5) -1612528420: Socket error on client , disconnecting. -1612528440: New connection from 172.18.0.3 on port 1883. -1612528440: Sending CONNACK to 172.18.0.3 (0, 5) -1612528440: Socket error on client , disconnecting. -1612528460: New connection from 172.18.0.3 on port 1883. -1612528460: Sending CONNACK to 172.18.0.3 (0, 5) -1612528460: Socket error on client , disconnecting. -1612528480: New connection from 172.18.0.3 on port 1883. -1612528480: Sending CONNACK to 172.18.0.3 (0, 5) -1612528480: Socket error on client , disconnecting. -1612528500: New connection from 172.18.0.3 on port 1883. -1612528500: Sending CONNACK to 172.18.0.3 (0, 5) -1612528500: Socket error on client , disconnecting. -1612528520: New connection from 172.18.0.3 on port 1883. -1612528520: Sending CONNACK to 172.18.0.3 (0, 5) -1612528520: Socket error on client , disconnecting. -1612528540: New connection from 172.18.0.3 on port 1883. -1612528540: Sending CONNACK to 172.18.0.3 (0, 5) -1612528540: Socket error on client , disconnecting. -1612528560: New connection from 172.18.0.3 on port 1883. -1612528560: Sending CONNACK to 172.18.0.3 (0, 5) -1612528560: Socket error on client , disconnecting. -1612528580: New connection from 172.18.0.3 on port 1883. -1612528580: Sending CONNACK to 172.18.0.3 (0, 5) -1612528580: Socket error on client , disconnecting. -1612528600: New connection from 172.18.0.3 on port 1883. -1612528600: Sending CONNACK to 172.18.0.3 (0, 5) -1612528600: Socket error on client , disconnecting. -1612528620: New connection from 172.18.0.3 on port 1883. -1612528620: Sending CONNACK to 172.18.0.3 (0, 5) -1612528620: Socket error on client , disconnecting. -1612528640: New connection from 172.18.0.3 on port 1883. -1612528640: Sending CONNACK to 172.18.0.3 (0, 5) -1612528640: Socket error on client , disconnecting. -1612528660: New connection from 172.18.0.3 on port 1883. -1612528660: Sending CONNACK to 172.18.0.3 (0, 5) -1612528660: Socket error on client , disconnecting. -1612528680: New connection from 172.18.0.3 on port 1883. -1612528680: Sending CONNACK to 172.18.0.3 (0, 5) -1612528680: Socket error on client , disconnecting. -1612528700: New connection from 172.18.0.3 on port 1883. -1612528700: Sending CONNACK to 172.18.0.3 (0, 5) -1612528700: Socket error on client , disconnecting. -1612528720: New connection from 172.18.0.3 on port 1883. -1612528720: Sending CONNACK to 172.18.0.3 (0, 5) -1612528720: Socket error on client , disconnecting. -1612528740: New connection from 172.18.0.3 on port 1883. -1612528740: Sending CONNACK to 172.18.0.3 (0, 5) -1612528740: Socket error on client , disconnecting. -1612528760: New connection from 172.18.0.3 on port 1883. -1612528760: Sending CONNACK to 172.18.0.3 (0, 5) -1612528760: Socket error on client , disconnecting. -1612528780: New connection from 172.18.0.3 on port 1883. -1612528780: Sending CONNACK to 172.18.0.3 (0, 5) -1612528780: Socket error on client , disconnecting. -1612528800: New connection from 172.18.0.3 on port 1883. -1612528800: Sending CONNACK to 172.18.0.3 (0, 5) -1612528800: Socket error on client , disconnecting. -1612528820: New connection from 172.18.0.3 on port 1883. -1612528820: Sending CONNACK to 172.18.0.3 (0, 5) -1612528820: Socket error on client , disconnecting. -1612528840: New connection from 172.18.0.3 on port 1883. -1612528840: Sending CONNACK to 172.18.0.3 (0, 5) -1612528840: Socket error on client , disconnecting. -1612528860: New connection from 172.18.0.3 on port 1883. -1612528860: Sending CONNACK to 172.18.0.3 (0, 5) -1612528860: Socket error on client , disconnecting. -1612528880: New connection from 172.18.0.3 on port 1883. -1612528880: Sending CONNACK to 172.18.0.3 (0, 5) -1612528880: Socket error on client , disconnecting. -1612528900: New connection from 172.18.0.3 on port 1883. -1612528900: Sending CONNACK to 172.18.0.3 (0, 5) -1612528900: Socket error on client , disconnecting. -1612528920: New connection from 172.18.0.3 on port 1883. -1612528920: Sending CONNACK to 172.18.0.3 (0, 5) -1612528920: Socket error on client , disconnecting. -1612528940: New connection from 172.18.0.3 on port 1883. -1612528940: Sending CONNACK to 172.18.0.3 (0, 5) -1612528940: Socket error on client , disconnecting. -1612528960: New connection from 172.18.0.3 on port 1883. -1612528960: Sending CONNACK to 172.18.0.3 (0, 5) -1612528960: Socket error on client , disconnecting. -1612528980: New connection from 172.18.0.3 on port 1883. -1612528980: Sending CONNACK to 172.18.0.3 (0, 5) -1612528980: Socket error on client , disconnecting. -1612529000: New connection from 172.18.0.3 on port 1883. -1612529000: Sending CONNACK to 172.18.0.3 (0, 5) -1612529000: Socket error on client , disconnecting. -1612529020: New connection from 172.18.0.3 on port 1883. -1612529020: Sending CONNACK to 172.18.0.3 (0, 5) -1612529020: Socket error on client , disconnecting. -1612529040: New connection from 172.18.0.3 on port 1883. -1612529040: Sending CONNACK to 172.18.0.3 (0, 5) -1612529040: Socket error on client , disconnecting. -1612529060: New connection from 172.18.0.3 on port 1883. -1612529060: Sending CONNACK to 172.18.0.3 (0, 5) -1612529060: Socket error on client , disconnecting. -1612529080: New connection from 172.18.0.3 on port 1883. -1612529080: Sending CONNACK to 172.18.0.3 (0, 5) -1612529080: Socket error on client , disconnecting. -1612529100: New connection from 172.18.0.3 on port 1883. -1612529100: Sending CONNACK to 172.18.0.3 (0, 5) -1612529100: Socket error on client , disconnecting. -1612529120: New connection from 172.18.0.3 on port 1883. -1612529120: Sending CONNACK to 172.18.0.3 (0, 5) -1612529120: Socket error on client , disconnecting. -1612529140: New connection from 172.18.0.3 on port 1883. -1612529140: Sending CONNACK to 172.18.0.3 (0, 5) -1612529140: Socket error on client , disconnecting. -1612529160: New connection from 172.18.0.3 on port 1883. -1612529160: Sending CONNACK to 172.18.0.3 (0, 5) -1612529160: Socket error on client , disconnecting. -1612529180: New connection from 172.18.0.3 on port 1883. -1612529180: Sending CONNACK to 172.18.0.3 (0, 5) -1612529180: Socket error on client , disconnecting. -1612529200: New connection from 172.18.0.3 on port 1883. -1612529200: Sending CONNACK to 172.18.0.3 (0, 5) -1612529200: Socket error on client , disconnecting. -1612529220: New connection from 172.18.0.3 on port 1883. -1612529220: Sending CONNACK to 172.18.0.3 (0, 5) -1612529220: Socket error on client , disconnecting. -1612529240: New connection from 172.18.0.3 on port 1883. -1612529240: Sending CONNACK to 172.18.0.3 (0, 5) -1612529240: Socket error on client , disconnecting. -1612529260: New connection from 172.18.0.3 on port 1883. -1612529260: Sending CONNACK to 172.18.0.3 (0, 5) -1612529260: Socket error on client , disconnecting. -1612529263: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612529263: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612529263: Error: Permission denied. -1612529280: New connection from 172.18.0.3 on port 1883. -1612529280: Sending CONNACK to 172.18.0.3 (0, 5) -1612529280: Socket error on client , disconnecting. -1612529300: New connection from 172.18.0.3 on port 1883. -1612529300: Sending CONNACK to 172.18.0.3 (0, 5) -1612529300: Socket error on client , disconnecting. -1612529320: New connection from 172.18.0.3 on port 1883. -1612529320: Sending CONNACK to 172.18.0.3 (0, 5) -1612529320: Socket error on client , disconnecting. -1612529340: New connection from 172.18.0.3 on port 1883. -1612529340: Sending CONNACK to 172.18.0.3 (0, 5) -1612529340: Socket error on client , disconnecting. -1612529360: New connection from 172.18.0.3 on port 1883. -1612529360: Sending CONNACK to 172.18.0.3 (0, 5) -1612529360: Socket error on client , disconnecting. -1612529380: New connection from 172.18.0.3 on port 1883. -1612529380: Sending CONNACK to 172.18.0.3 (0, 5) -1612529380: Socket error on client , disconnecting. -1612529400: New connection from 172.18.0.3 on port 1883. -1612529400: Sending CONNACK to 172.18.0.3 (0, 5) -1612529400: Socket error on client , disconnecting. -1612529420: New connection from 172.18.0.3 on port 1883. -1612529420: Sending CONNACK to 172.18.0.3 (0, 5) -1612529420: Socket error on client , disconnecting. -1612529440: New connection from 172.18.0.3 on port 1883. -1612529440: Sending CONNACK to 172.18.0.3 (0, 5) -1612529440: Socket error on client , disconnecting. -1612529460: New connection from 172.18.0.3 on port 1883. -1612529460: Sending CONNACK to 172.18.0.3 (0, 5) -1612529460: Socket error on client , disconnecting. -1612529480: New connection from 172.18.0.3 on port 1883. -1612529480: Sending CONNACK to 172.18.0.3 (0, 5) -1612529480: Socket error on client , disconnecting. -1612529500: New connection from 172.18.0.3 on port 1883. -1612529500: Sending CONNACK to 172.18.0.3 (0, 5) -1612529500: Socket error on client , disconnecting. -1612529520: New connection from 172.18.0.3 on port 1883. -1612529520: Sending CONNACK to 172.18.0.3 (0, 5) -1612529520: Socket error on client , disconnecting. -1612529540: New connection from 172.18.0.3 on port 1883. -1612529540: Sending CONNACK to 172.18.0.3 (0, 5) -1612529540: Socket error on client , disconnecting. -1612529560: New connection from 172.18.0.3 on port 1883. -1612529560: Sending CONNACK to 172.18.0.3 (0, 5) -1612529560: Socket error on client , disconnecting. -1612529580: New connection from 172.18.0.3 on port 1883. -1612529580: Sending CONNACK to 172.18.0.3 (0, 5) -1612529580: Socket error on client , disconnecting. -1612529600: New connection from 172.18.0.3 on port 1883. -1612529600: Sending CONNACK to 172.18.0.3 (0, 5) -1612529600: Socket error on client , disconnecting. -1612529620: New connection from 172.18.0.3 on port 1883. -1612529620: Sending CONNACK to 172.18.0.3 (0, 5) -1612529620: Socket error on client , disconnecting. -1612529640: New connection from 172.18.0.3 on port 1883. -1612529640: Sending CONNACK to 172.18.0.3 (0, 5) -1612529640: Socket error on client , disconnecting. -1612529660: New connection from 172.18.0.3 on port 1883. -1612529660: Sending CONNACK to 172.18.0.3 (0, 5) -1612529660: Socket error on client , disconnecting. -1612529680: New connection from 172.18.0.3 on port 1883. -1612529680: Sending CONNACK to 172.18.0.3 (0, 5) -1612529680: Socket error on client , disconnecting. -1612529700: New connection from 172.18.0.3 on port 1883. -1612529700: Sending CONNACK to 172.18.0.3 (0, 5) -1612529700: Socket error on client , disconnecting. -1612529720: New connection from 172.18.0.3 on port 1883. -1612529720: Sending CONNACK to 172.18.0.3 (0, 5) -1612529720: Socket error on client , disconnecting. -1612529740: New connection from 172.18.0.3 on port 1883. -1612529740: Sending CONNACK to 172.18.0.3 (0, 5) -1612529740: Socket error on client , disconnecting. -1612529760: New connection from 172.18.0.3 on port 1883. -1612529760: Sending CONNACK to 172.18.0.3 (0, 5) -1612529760: Socket error on client , disconnecting. -1612529780: New connection from 172.18.0.3 on port 1883. -1612529780: Sending CONNACK to 172.18.0.3 (0, 5) -1612529780: Socket error on client , disconnecting. -1612529800: New connection from 172.18.0.3 on port 1883. -1612529800: Sending CONNACK to 172.18.0.3 (0, 5) -1612529800: Socket error on client , disconnecting. -1612529820: New connection from 172.18.0.3 on port 1883. -1612529820: Sending CONNACK to 172.18.0.3 (0, 5) -1612529820: Socket error on client , disconnecting. -1612529840: New connection from 172.18.0.3 on port 1883. -1612529840: Sending CONNACK to 172.18.0.3 (0, 5) -1612529840: Socket error on client , disconnecting. -1612529860: New connection from 172.18.0.3 on port 1883. -1612529860: Sending CONNACK to 172.18.0.3 (0, 5) -1612529860: Socket error on client , disconnecting. -1612529880: New connection from 172.18.0.3 on port 1883. -1612529880: Sending CONNACK to 172.18.0.3 (0, 5) -1612529880: Socket error on client , disconnecting. -1612529900: New connection from 172.18.0.3 on port 1883. -1612529900: Sending CONNACK to 172.18.0.3 (0, 5) -1612529900: Socket error on client , disconnecting. -1612529920: New connection from 172.18.0.3 on port 1883. -1612529920: Sending CONNACK to 172.18.0.3 (0, 5) -1612529920: Socket error on client , disconnecting. -1612529940: New connection from 172.18.0.3 on port 1883. -1612529940: Sending CONNACK to 172.18.0.3 (0, 5) -1612529940: Socket error on client , disconnecting. -1612529960: New connection from 172.18.0.3 on port 1883. -1612529960: Sending CONNACK to 172.18.0.3 (0, 5) -1612529960: Socket error on client , disconnecting. -1612529980: New connection from 172.18.0.3 on port 1883. -1612529980: Sending CONNACK to 172.18.0.3 (0, 5) -1612529980: Socket error on client , disconnecting. -1612530000: New connection from 172.18.0.3 on port 1883. -1612530000: Sending CONNACK to 172.18.0.3 (0, 5) -1612530000: Socket error on client , disconnecting. -1612530020: New connection from 172.18.0.3 on port 1883. -1612530020: Sending CONNACK to 172.18.0.3 (0, 5) -1612530020: Socket error on client , disconnecting. -1612530040: New connection from 172.18.0.3 on port 1883. -1612530040: Sending CONNACK to 172.18.0.3 (0, 5) -1612530040: Socket error on client , disconnecting. -1612530060: New connection from 172.18.0.3 on port 1883. -1612530060: Sending CONNACK to 172.18.0.3 (0, 5) -1612530060: Socket error on client , disconnecting. -1612530080: New connection from 172.18.0.3 on port 1883. -1612530080: Sending CONNACK to 172.18.0.3 (0, 5) -1612530080: Socket error on client , disconnecting. -1612530100: New connection from 172.18.0.3 on port 1883. -1612530100: Sending CONNACK to 172.18.0.3 (0, 5) -1612530100: Socket error on client , disconnecting. -1612530120: New connection from 172.18.0.3 on port 1883. -1612530120: Sending CONNACK to 172.18.0.3 (0, 5) -1612530120: Socket error on client , disconnecting. -1612530140: New connection from 172.18.0.3 on port 1883. -1612530140: Sending CONNACK to 172.18.0.3 (0, 5) -1612530140: Socket error on client , disconnecting. -1612530160: New connection from 172.18.0.3 on port 1883. -1612530160: Sending CONNACK to 172.18.0.3 (0, 5) -1612530160: Socket error on client , disconnecting. -1612530180: New connection from 172.18.0.3 on port 1883. -1612530180: Sending CONNACK to 172.18.0.3 (0, 5) -1612530180: Socket error on client , disconnecting. -1612530200: New connection from 172.18.0.3 on port 1883. -1612530200: Sending CONNACK to 172.18.0.3 (0, 5) -1612530200: Socket error on client , disconnecting. -1612530220: New connection from 172.18.0.3 on port 1883. -1612530220: Sending CONNACK to 172.18.0.3 (0, 5) -1612530220: Socket error on client , disconnecting. -1612530240: New connection from 172.18.0.3 on port 1883. -1612530240: Sending CONNACK to 172.18.0.3 (0, 5) -1612530240: Socket error on client , disconnecting. -1612530260: New connection from 172.18.0.3 on port 1883. -1612530260: Sending CONNACK to 172.18.0.3 (0, 5) -1612530260: Socket error on client , disconnecting. -1612530280: New connection from 172.18.0.3 on port 1883. -1612530280: Sending CONNACK to 172.18.0.3 (0, 5) -1612530280: Socket error on client , disconnecting. -1612530300: New connection from 172.18.0.3 on port 1883. -1612530300: Sending CONNACK to 172.18.0.3 (0, 5) -1612530300: Socket error on client , disconnecting. -1612530320: New connection from 172.18.0.3 on port 1883. -1612530320: Sending CONNACK to 172.18.0.3 (0, 5) -1612530320: Socket error on client , disconnecting. -1612530340: New connection from 172.18.0.3 on port 1883. -1612530340: Sending CONNACK to 172.18.0.3 (0, 5) -1612530340: Socket error on client , disconnecting. -1612530360: New connection from 172.18.0.3 on port 1883. -1612530360: Sending CONNACK to 172.18.0.3 (0, 5) -1612530360: Socket error on client , disconnecting. -1612530380: New connection from 172.18.0.3 on port 1883. -1612530380: Sending CONNACK to 172.18.0.3 (0, 5) -1612530380: Socket error on client , disconnecting. -1612530400: New connection from 172.18.0.3 on port 1883. -1612530400: Sending CONNACK to 172.18.0.3 (0, 5) -1612530400: Socket error on client , disconnecting. -1612530420: New connection from 172.18.0.3 on port 1883. -1612530420: Sending CONNACK to 172.18.0.3 (0, 5) -1612530420: Socket error on client , disconnecting. -1612530440: New connection from 172.18.0.3 on port 1883. -1612530440: Sending CONNACK to 172.18.0.3 (0, 5) -1612530440: Socket error on client , disconnecting. -1612530460: New connection from 172.18.0.3 on port 1883. -1612530460: Sending CONNACK to 172.18.0.3 (0, 5) -1612530460: Socket error on client , disconnecting. -1612530480: New connection from 172.18.0.3 on port 1883. -1612530480: Sending CONNACK to 172.18.0.3 (0, 5) -1612530480: Socket error on client , disconnecting. -1612530500: New connection from 172.18.0.3 on port 1883. -1612530500: Sending CONNACK to 172.18.0.3 (0, 5) -1612530500: Socket error on client , disconnecting. -1612530520: New connection from 172.18.0.3 on port 1883. -1612530520: Sending CONNACK to 172.18.0.3 (0, 5) -1612530520: Socket error on client , disconnecting. -1612530540: New connection from 172.18.0.3 on port 1883. -1612530540: Sending CONNACK to 172.18.0.3 (0, 5) -1612530540: Socket error on client , disconnecting. -1612530560: New connection from 172.18.0.3 on port 1883. -1612530560: Sending CONNACK to 172.18.0.3 (0, 5) -1612530560: Socket error on client , disconnecting. -1612530580: New connection from 172.18.0.3 on port 1883. -1612530580: Sending CONNACK to 172.18.0.3 (0, 5) -1612530580: Socket error on client , disconnecting. -1612530600: New connection from 172.18.0.3 on port 1883. -1612530600: Sending CONNACK to 172.18.0.3 (0, 5) -1612530600: Socket error on client , disconnecting. -1612530620: New connection from 172.18.0.3 on port 1883. -1612530620: Sending CONNACK to 172.18.0.3 (0, 5) -1612530620: Socket error on client , disconnecting. -1612530640: New connection from 172.18.0.3 on port 1883. -1612530640: Sending CONNACK to 172.18.0.3 (0, 5) -1612530640: Socket error on client , disconnecting. -1612530660: New connection from 172.18.0.3 on port 1883. -1612530660: Sending CONNACK to 172.18.0.3 (0, 5) -1612530660: Socket error on client , disconnecting. -1612530680: New connection from 172.18.0.3 on port 1883. -1612530680: Sending CONNACK to 172.18.0.3 (0, 5) -1612530680: Socket error on client , disconnecting. -1612530700: New connection from 172.18.0.3 on port 1883. -1612530700: Sending CONNACK to 172.18.0.3 (0, 5) -1612530700: Socket error on client , disconnecting. -1612530720: New connection from 172.18.0.3 on port 1883. -1612530720: Sending CONNACK to 172.18.0.3 (0, 5) -1612530720: Socket error on client , disconnecting. -1612530740: New connection from 172.18.0.3 on port 1883. -1612530740: Sending CONNACK to 172.18.0.3 (0, 5) -1612530740: Socket error on client , disconnecting. -1612530760: New connection from 172.18.0.3 on port 1883. -1612530760: Sending CONNACK to 172.18.0.3 (0, 5) -1612530760: Socket error on client , disconnecting. -1612530780: New connection from 172.18.0.3 on port 1883. -1612530780: Sending CONNACK to 172.18.0.3 (0, 5) -1612530780: Socket error on client , disconnecting. -1612530800: New connection from 172.18.0.3 on port 1883. -1612530800: Sending CONNACK to 172.18.0.3 (0, 5) -1612530800: Socket error on client , disconnecting. -1612530820: New connection from 172.18.0.3 on port 1883. -1612530820: Sending CONNACK to 172.18.0.3 (0, 5) -1612530820: Socket error on client , disconnecting. -1612530840: New connection from 172.18.0.3 on port 1883. -1612530840: Sending CONNACK to 172.18.0.3 (0, 5) -1612530840: Socket error on client , disconnecting. -1612530860: New connection from 172.18.0.3 on port 1883. -1612530860: Sending CONNACK to 172.18.0.3 (0, 5) -1612530860: Socket error on client , disconnecting. -1612530880: New connection from 172.18.0.3 on port 1883. -1612530880: Sending CONNACK to 172.18.0.3 (0, 5) -1612530880: Socket error on client , disconnecting. -1612530900: New connection from 172.18.0.3 on port 1883. -1612530900: Sending CONNACK to 172.18.0.3 (0, 5) -1612530900: Socket error on client , disconnecting. -1612530920: New connection from 172.18.0.3 on port 1883. -1612530920: Sending CONNACK to 172.18.0.3 (0, 5) -1612530920: Socket error on client , disconnecting. -1612530940: New connection from 172.18.0.3 on port 1883. -1612530940: Sending CONNACK to 172.18.0.3 (0, 5) -1612530940: Socket error on client , disconnecting. -1612530960: New connection from 172.18.0.3 on port 1883. -1612530960: Sending CONNACK to 172.18.0.3 (0, 5) -1612530960: Socket error on client , disconnecting. -1612530980: New connection from 172.18.0.3 on port 1883. -1612530980: Sending CONNACK to 172.18.0.3 (0, 5) -1612530980: Socket error on client , disconnecting. -1612531000: New connection from 172.18.0.3 on port 1883. -1612531000: Sending CONNACK to 172.18.0.3 (0, 5) -1612531000: Socket error on client , disconnecting. -1612531020: New connection from 172.18.0.3 on port 1883. -1612531020: Sending CONNACK to 172.18.0.3 (0, 5) -1612531020: Socket error on client , disconnecting. -1612531040: New connection from 172.18.0.3 on port 1883. -1612531040: Sending CONNACK to 172.18.0.3 (0, 5) -1612531040: Socket error on client , disconnecting. -1612531060: New connection from 172.18.0.3 on port 1883. -1612531060: Sending CONNACK to 172.18.0.3 (0, 5) -1612531060: Socket error on client , disconnecting. -1612531064: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612531064: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612531064: Error: Permission denied. -1612531080: New connection from 172.18.0.3 on port 1883. -1612531080: Sending CONNACK to 172.18.0.3 (0, 5) -1612531080: Socket error on client , disconnecting. -1612531100: New connection from 172.18.0.3 on port 1883. -1612531100: Sending CONNACK to 172.18.0.3 (0, 5) -1612531100: Socket error on client , disconnecting. -1612531120: New connection from 172.18.0.3 on port 1883. -1612531120: Sending CONNACK to 172.18.0.3 (0, 5) -1612531120: Socket error on client , disconnecting. -1612531140: New connection from 172.18.0.3 on port 1883. -1612531140: Sending CONNACK to 172.18.0.3 (0, 5) -1612531140: Socket error on client , disconnecting. -1612531160: New connection from 172.18.0.3 on port 1883. -1612531160: Sending CONNACK to 172.18.0.3 (0, 5) -1612531160: Socket error on client , disconnecting. -1612531180: New connection from 172.18.0.3 on port 1883. -1612531180: Sending CONNACK to 172.18.0.3 (0, 5) -1612531180: Socket error on client , disconnecting. -1612531200: New connection from 172.18.0.3 on port 1883. -1612531200: Sending CONNACK to 172.18.0.3 (0, 5) -1612531200: Socket error on client , disconnecting. -1612531220: New connection from 172.18.0.3 on port 1883. -1612531220: Sending CONNACK to 172.18.0.3 (0, 5) -1612531220: Socket error on client , disconnecting. -1612531240: New connection from 172.18.0.3 on port 1883. -1612531240: Sending CONNACK to 172.18.0.3 (0, 5) -1612531240: Socket error on client , disconnecting. -1612531260: New connection from 172.18.0.3 on port 1883. -1612531260: Sending CONNACK to 172.18.0.3 (0, 5) -1612531260: Socket error on client , disconnecting. -1612531280: New connection from 172.18.0.3 on port 1883. -1612531280: Sending CONNACK to 172.18.0.3 (0, 5) -1612531280: Socket error on client , disconnecting. -1612531300: New connection from 172.18.0.3 on port 1883. -1612531300: Sending CONNACK to 172.18.0.3 (0, 5) -1612531300: Socket error on client , disconnecting. -1612531320: New connection from 172.18.0.3 on port 1883. -1612531320: Sending CONNACK to 172.18.0.3 (0, 5) -1612531320: Socket error on client , disconnecting. -1612531340: New connection from 172.18.0.3 on port 1883. -1612531340: Sending CONNACK to 172.18.0.3 (0, 5) -1612531340: Socket error on client , disconnecting. -1612531360: New connection from 172.18.0.3 on port 1883. -1612531360: Sending CONNACK to 172.18.0.3 (0, 5) -1612531360: Socket error on client , disconnecting. -1612531380: New connection from 172.18.0.3 on port 1883. -1612531380: Sending CONNACK to 172.18.0.3 (0, 5) -1612531380: Socket error on client , disconnecting. -1612531400: New connection from 172.18.0.3 on port 1883. -1612531400: Sending CONNACK to 172.18.0.3 (0, 5) -1612531400: Socket error on client , disconnecting. -1612531420: New connection from 172.18.0.3 on port 1883. -1612531420: Sending CONNACK to 172.18.0.3 (0, 5) -1612531420: Socket error on client , disconnecting. -1612531440: New connection from 172.18.0.3 on port 1883. -1612531440: Sending CONNACK to 172.18.0.3 (0, 5) -1612531440: Socket error on client , disconnecting. -1612531460: New connection from 172.18.0.3 on port 1883. -1612531460: Sending CONNACK to 172.18.0.3 (0, 5) -1612531460: Socket error on client , disconnecting. -1612531480: New connection from 172.18.0.3 on port 1883. -1612531480: Sending CONNACK to 172.18.0.3 (0, 5) -1612531480: Socket error on client , disconnecting. -1612531500: New connection from 172.18.0.3 on port 1883. -1612531500: Sending CONNACK to 172.18.0.3 (0, 5) -1612531500: Socket error on client , disconnecting. -1612531520: New connection from 172.18.0.3 on port 1883. -1612531520: Sending CONNACK to 172.18.0.3 (0, 5) -1612531520: Socket error on client , disconnecting. -1612531540: New connection from 172.18.0.3 on port 1883. -1612531540: Sending CONNACK to 172.18.0.3 (0, 5) -1612531540: Socket error on client , disconnecting. -1612531560: New connection from 172.18.0.3 on port 1883. -1612531560: Sending CONNACK to 172.18.0.3 (0, 5) -1612531560: Socket error on client , disconnecting. -1612531580: New connection from 172.18.0.3 on port 1883. -1612531580: Sending CONNACK to 172.18.0.3 (0, 5) -1612531580: Socket error on client , disconnecting. -1612531600: New connection from 172.18.0.3 on port 1883. -1612531600: Sending CONNACK to 172.18.0.3 (0, 5) -1612531600: Socket error on client , disconnecting. -1612531620: New connection from 172.18.0.3 on port 1883. -1612531620: Sending CONNACK to 172.18.0.3 (0, 5) -1612531620: Socket error on client , disconnecting. -1612531640: New connection from 172.18.0.3 on port 1883. -1612531640: Sending CONNACK to 172.18.0.3 (0, 5) -1612531640: Socket error on client , disconnecting. -1612531660: New connection from 172.18.0.3 on port 1883. -1612531660: Sending CONNACK to 172.18.0.3 (0, 5) -1612531660: Socket error on client , disconnecting. -1612531680: New connection from 172.18.0.3 on port 1883. -1612531680: Sending CONNACK to 172.18.0.3 (0, 5) -1612531680: Socket error on client , disconnecting. -1612531700: New connection from 172.18.0.3 on port 1883. -1612531700: Sending CONNACK to 172.18.0.3 (0, 5) -1612531700: Socket error on client , disconnecting. -1612531720: New connection from 172.18.0.3 on port 1883. -1612531720: Sending CONNACK to 172.18.0.3 (0, 5) -1612531720: Socket error on client , disconnecting. -1612531740: New connection from 172.18.0.3 on port 1883. -1612531740: Sending CONNACK to 172.18.0.3 (0, 5) -1612531740: Socket error on client , disconnecting. -1612531760: New connection from 172.18.0.3 on port 1883. -1612531760: Sending CONNACK to 172.18.0.3 (0, 5) -1612531760: Socket error on client , disconnecting. -1612531780: New connection from 172.18.0.3 on port 1883. -1612531780: Sending CONNACK to 172.18.0.3 (0, 5) -1612531780: Socket error on client , disconnecting. -1612531800: New connection from 172.18.0.3 on port 1883. -1612531800: Sending CONNACK to 172.18.0.3 (0, 5) -1612531800: Socket error on client , disconnecting. -1612531820: New connection from 172.18.0.3 on port 1883. -1612531820: Sending CONNACK to 172.18.0.3 (0, 5) -1612531820: Socket error on client , disconnecting. -1612531840: New connection from 172.18.0.3 on port 1883. -1612531840: Sending CONNACK to 172.18.0.3 (0, 5) -1612531840: Socket error on client , disconnecting. -1612531860: New connection from 172.18.0.3 on port 1883. -1612531860: Sending CONNACK to 172.18.0.3 (0, 5) -1612531860: Socket error on client , disconnecting. -1612531880: New connection from 172.18.0.3 on port 1883. -1612531880: Sending CONNACK to 172.18.0.3 (0, 5) -1612531880: Socket error on client , disconnecting. -1612531900: New connection from 172.18.0.3 on port 1883. -1612531900: Sending CONNACK to 172.18.0.3 (0, 5) -1612531900: Socket error on client , disconnecting. -1612531920: New connection from 172.18.0.3 on port 1883. -1612531920: Sending CONNACK to 172.18.0.3 (0, 5) -1612531920: Socket error on client , disconnecting. -1612531940: New connection from 172.18.0.3 on port 1883. -1612531940: Sending CONNACK to 172.18.0.3 (0, 5) -1612531940: Socket error on client , disconnecting. -1612531960: New connection from 172.18.0.3 on port 1883. -1612531960: Sending CONNACK to 172.18.0.3 (0, 5) -1612531960: Socket error on client , disconnecting. -1612531980: New connection from 172.18.0.3 on port 1883. -1612531980: Sending CONNACK to 172.18.0.3 (0, 5) -1612531980: Socket error on client , disconnecting. -1612532000: New connection from 172.18.0.3 on port 1883. -1612532000: Sending CONNACK to 172.18.0.3 (0, 5) -1612532000: Socket error on client , disconnecting. -1612532020: New connection from 172.18.0.3 on port 1883. -1612532020: Sending CONNACK to 172.18.0.3 (0, 5) -1612532020: Socket error on client , disconnecting. -1612532040: New connection from 172.18.0.3 on port 1883. -1612532040: Sending CONNACK to 172.18.0.3 (0, 5) -1612532040: Socket error on client , disconnecting. -1612532060: New connection from 172.18.0.3 on port 1883. -1612532060: Sending CONNACK to 172.18.0.3 (0, 5) -1612532060: Socket error on client , disconnecting. -1612532080: New connection from 172.18.0.3 on port 1883. -1612532080: Sending CONNACK to 172.18.0.3 (0, 5) -1612532080: Socket error on client , disconnecting. -1612532100: New connection from 172.18.0.3 on port 1883. -1612532100: Sending CONNACK to 172.18.0.3 (0, 5) -1612532100: Socket error on client , disconnecting. -1612532120: New connection from 172.18.0.3 on port 1883. -1612532120: Sending CONNACK to 172.18.0.3 (0, 5) -1612532120: Socket error on client , disconnecting. -1612532140: New connection from 172.18.0.3 on port 1883. -1612532140: Sending CONNACK to 172.18.0.3 (0, 5) -1612532140: Socket error on client , disconnecting. -1612532160: New connection from 172.18.0.3 on port 1883. -1612532160: Sending CONNACK to 172.18.0.3 (0, 5) -1612532160: Socket error on client , disconnecting. -1612532180: New connection from 172.18.0.3 on port 1883. -1612532180: Sending CONNACK to 172.18.0.3 (0, 5) -1612532180: Socket error on client , disconnecting. -1612532200: New connection from 172.18.0.3 on port 1883. -1612532200: Sending CONNACK to 172.18.0.3 (0, 5) -1612532200: Socket error on client , disconnecting. -1612532220: New connection from 172.18.0.3 on port 1883. -1612532220: Sending CONNACK to 172.18.0.3 (0, 5) -1612532220: Socket error on client , disconnecting. -1612532240: New connection from 172.18.0.3 on port 1883. -1612532240: Sending CONNACK to 172.18.0.3 (0, 5) -1612532240: Socket error on client , disconnecting. -1612532260: New connection from 172.18.0.3 on port 1883. -1612532260: Sending CONNACK to 172.18.0.3 (0, 5) -1612532260: Socket error on client , disconnecting. -1612532280: New connection from 172.18.0.3 on port 1883. -1612532280: Sending CONNACK to 172.18.0.3 (0, 5) -1612532280: Socket error on client , disconnecting. -1612532300: New connection from 172.18.0.3 on port 1883. -1612532300: Sending CONNACK to 172.18.0.3 (0, 5) -1612532300: Socket error on client , disconnecting. -1612532320: New connection from 172.18.0.3 on port 1883. -1612532320: Sending CONNACK to 172.18.0.3 (0, 5) -1612532320: Socket error on client , disconnecting. -1612532340: New connection from 172.18.0.3 on port 1883. -1612532340: Sending CONNACK to 172.18.0.3 (0, 5) -1612532340: Socket error on client , disconnecting. -1612532360: New connection from 172.18.0.3 on port 1883. -1612532360: Sending CONNACK to 172.18.0.3 (0, 5) -1612532360: Socket error on client , disconnecting. -1612532380: New connection from 172.18.0.3 on port 1883. -1612532380: Sending CONNACK to 172.18.0.3 (0, 5) -1612532380: Socket error on client , disconnecting. -1612532400: New connection from 172.18.0.3 on port 1883. -1612532400: Sending CONNACK to 172.18.0.3 (0, 5) -1612532400: Socket error on client , disconnecting. -1612532420: New connection from 172.18.0.3 on port 1883. -1612532420: Sending CONNACK to 172.18.0.3 (0, 5) -1612532420: Socket error on client , disconnecting. -1612532440: New connection from 172.18.0.3 on port 1883. -1612532440: Sending CONNACK to 172.18.0.3 (0, 5) -1612532440: Socket error on client , disconnecting. -1612532460: New connection from 172.18.0.3 on port 1883. -1612532460: Sending CONNACK to 172.18.0.3 (0, 5) -1612532460: Socket error on client , disconnecting. -1612532480: New connection from 172.18.0.3 on port 1883. -1612532480: Sending CONNACK to 172.18.0.3 (0, 5) -1612532480: Socket error on client , disconnecting. -1612532500: New connection from 172.18.0.3 on port 1883. -1612532500: Sending CONNACK to 172.18.0.3 (0, 5) -1612532500: Socket error on client , disconnecting. -1612532520: New connection from 172.18.0.3 on port 1883. -1612532520: Sending CONNACK to 172.18.0.3 (0, 5) -1612532520: Socket error on client , disconnecting. -1612532540: New connection from 172.18.0.3 on port 1883. -1612532540: Sending CONNACK to 172.18.0.3 (0, 5) -1612532540: Socket error on client , disconnecting. -1612532560: New connection from 172.18.0.3 on port 1883. -1612532560: Sending CONNACK to 172.18.0.3 (0, 5) -1612532560: Socket error on client , disconnecting. -1612532580: New connection from 172.18.0.3 on port 1883. -1612532580: Sending CONNACK to 172.18.0.3 (0, 5) -1612532580: Socket error on client , disconnecting. -1612532600: New connection from 172.18.0.3 on port 1883. -1612532600: Sending CONNACK to 172.18.0.3 (0, 5) -1612532600: Socket error on client , disconnecting. -1612532620: New connection from 172.18.0.3 on port 1883. -1612532620: Sending CONNACK to 172.18.0.3 (0, 5) -1612532620: Socket error on client , disconnecting. -1612532640: New connection from 172.18.0.3 on port 1883. -1612532640: Sending CONNACK to 172.18.0.3 (0, 5) -1612532640: Socket error on client , disconnecting. -1612532660: New connection from 172.18.0.3 on port 1883. -1612532660: Sending CONNACK to 172.18.0.3 (0, 5) -1612532660: Socket error on client , disconnecting. -1612532680: New connection from 172.18.0.3 on port 1883. -1612532680: Sending CONNACK to 172.18.0.3 (0, 5) -1612532680: Socket error on client , disconnecting. -1612532700: New connection from 172.18.0.3 on port 1883. -1612532700: Sending CONNACK to 172.18.0.3 (0, 5) -1612532700: Socket error on client , disconnecting. -1612532720: New connection from 172.18.0.3 on port 1883. -1612532720: Sending CONNACK to 172.18.0.3 (0, 5) -1612532720: Socket error on client , disconnecting. -1612532740: New connection from 172.18.0.3 on port 1883. -1612532740: Sending CONNACK to 172.18.0.3 (0, 5) -1612532740: Socket error on client , disconnecting. -1612532760: New connection from 172.18.0.3 on port 1883. -1612532760: Sending CONNACK to 172.18.0.3 (0, 5) -1612532760: Socket error on client , disconnecting. -1612532780: New connection from 172.18.0.3 on port 1883. -1612532780: Sending CONNACK to 172.18.0.3 (0, 5) -1612532780: Socket error on client , disconnecting. -1612532800: New connection from 172.18.0.3 on port 1883. -1612532800: Sending CONNACK to 172.18.0.3 (0, 5) -1612532800: Socket error on client , disconnecting. -1612532820: New connection from 172.18.0.3 on port 1883. -1612532820: Sending CONNACK to 172.18.0.3 (0, 5) -1612532820: Socket error on client , disconnecting. -1612532840: New connection from 172.18.0.3 on port 1883. -1612532840: Sending CONNACK to 172.18.0.3 (0, 5) -1612532840: Socket error on client , disconnecting. -1612532860: New connection from 172.18.0.3 on port 1883. -1612532860: Sending CONNACK to 172.18.0.3 (0, 5) -1612532860: Socket error on client , disconnecting. -1612532865: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612532865: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612532865: Error: Permission denied. -1612532880: New connection from 172.18.0.3 on port 1883. -1612532880: Sending CONNACK to 172.18.0.3 (0, 5) -1612532880: Socket error on client , disconnecting. -1612532900: New connection from 172.18.0.3 on port 1883. -1612532900: Sending CONNACK to 172.18.0.3 (0, 5) -1612532900: Socket error on client , disconnecting. -1612532920: New connection from 172.18.0.3 on port 1883. -1612532920: Sending CONNACK to 172.18.0.3 (0, 5) -1612532920: Socket error on client , disconnecting. -1612532940: New connection from 172.18.0.3 on port 1883. -1612532940: Sending CONNACK to 172.18.0.3 (0, 5) -1612532940: Socket error on client , disconnecting. -1612532960: New connection from 172.18.0.3 on port 1883. -1612532960: Sending CONNACK to 172.18.0.3 (0, 5) -1612532960: Socket error on client , disconnecting. -1612532980: New connection from 172.18.0.3 on port 1883. -1612532980: Sending CONNACK to 172.18.0.3 (0, 5) -1612532980: Socket error on client , disconnecting. -1612533000: New connection from 172.18.0.3 on port 1883. -1612533000: Sending CONNACK to 172.18.0.3 (0, 5) -1612533000: Socket error on client , disconnecting. -1612533020: New connection from 172.18.0.3 on port 1883. -1612533020: Sending CONNACK to 172.18.0.3 (0, 5) -1612533020: Socket error on client , disconnecting. -1612533040: New connection from 172.18.0.3 on port 1883. -1612533040: Sending CONNACK to 172.18.0.3 (0, 5) -1612533040: Socket error on client , disconnecting. -1612533060: New connection from 172.18.0.3 on port 1883. -1612533060: Sending CONNACK to 172.18.0.3 (0, 5) -1612533060: Socket error on client , disconnecting. -1612533080: New connection from 172.18.0.3 on port 1883. -1612533080: Sending CONNACK to 172.18.0.3 (0, 5) -1612533080: Socket error on client , disconnecting. -1612533100: New connection from 172.18.0.3 on port 1883. -1612533100: Sending CONNACK to 172.18.0.3 (0, 5) -1612533100: Socket error on client , disconnecting. -1612533120: New connection from 172.18.0.3 on port 1883. -1612533120: Sending CONNACK to 172.18.0.3 (0, 5) -1612533120: Socket error on client , disconnecting. -1612533140: New connection from 172.18.0.3 on port 1883. -1612533140: Sending CONNACK to 172.18.0.3 (0, 5) -1612533140: Socket error on client , disconnecting. -1612533160: New connection from 172.18.0.3 on port 1883. -1612533160: Sending CONNACK to 172.18.0.3 (0, 5) -1612533160: Socket error on client , disconnecting. -1612533180: New connection from 172.18.0.3 on port 1883. -1612533180: Sending CONNACK to 172.18.0.3 (0, 5) -1612533180: Socket error on client , disconnecting. -1612533200: New connection from 172.18.0.3 on port 1883. -1612533200: Sending CONNACK to 172.18.0.3 (0, 5) -1612533200: Socket error on client , disconnecting. -1612533220: New connection from 172.18.0.3 on port 1883. -1612533220: Sending CONNACK to 172.18.0.3 (0, 5) -1612533220: Socket error on client , disconnecting. -1612533240: New connection from 172.18.0.3 on port 1883. -1612533240: Sending CONNACK to 172.18.0.3 (0, 5) -1612533240: Socket error on client , disconnecting. -1612533260: New connection from 172.18.0.3 on port 1883. -1612533260: Sending CONNACK to 172.18.0.3 (0, 5) -1612533260: Socket error on client , disconnecting. -1612533280: New connection from 172.18.0.3 on port 1883. -1612533280: Sending CONNACK to 172.18.0.3 (0, 5) -1612533280: Socket error on client , disconnecting. -1612533300: New connection from 172.18.0.3 on port 1883. -1612533300: Sending CONNACK to 172.18.0.3 (0, 5) -1612533300: Socket error on client , disconnecting. -1612533320: New connection from 172.18.0.3 on port 1883. -1612533320: Sending CONNACK to 172.18.0.3 (0, 5) -1612533320: Socket error on client , disconnecting. -1612533340: New connection from 172.18.0.3 on port 1883. -1612533340: Sending CONNACK to 172.18.0.3 (0, 5) -1612533340: Socket error on client , disconnecting. -1612533360: New connection from 172.18.0.3 on port 1883. -1612533360: Sending CONNACK to 172.18.0.3 (0, 5) -1612533360: Socket error on client , disconnecting. -1612533380: New connection from 172.18.0.3 on port 1883. -1612533380: Sending CONNACK to 172.18.0.3 (0, 5) -1612533380: Socket error on client , disconnecting. -1612533400: New connection from 172.18.0.3 on port 1883. -1612533400: Sending CONNACK to 172.18.0.3 (0, 5) -1612533400: Socket error on client , disconnecting. -1612533420: New connection from 172.18.0.3 on port 1883. -1612533420: Sending CONNACK to 172.18.0.3 (0, 5) -1612533420: Socket error on client , disconnecting. -1612533440: New connection from 172.18.0.3 on port 1883. -1612533440: Sending CONNACK to 172.18.0.3 (0, 5) -1612533440: Socket error on client , disconnecting. -1612533460: New connection from 172.18.0.3 on port 1883. -1612533460: Sending CONNACK to 172.18.0.3 (0, 5) -1612533460: Socket error on client , disconnecting. -1612533480: New connection from 172.18.0.3 on port 1883. -1612533480: Sending CONNACK to 172.18.0.3 (0, 5) -1612533480: Socket error on client , disconnecting. -1612533500: New connection from 172.18.0.3 on port 1883. -1612533500: Sending CONNACK to 172.18.0.3 (0, 5) -1612533500: Socket error on client , disconnecting. -1612533520: New connection from 172.18.0.3 on port 1883. -1612533520: Sending CONNACK to 172.18.0.3 (0, 5) -1612533520: Socket error on client , disconnecting. -1612533540: New connection from 172.18.0.3 on port 1883. -1612533540: Sending CONNACK to 172.18.0.3 (0, 5) -1612533540: Socket error on client , disconnecting. -1612533560: New connection from 172.18.0.3 on port 1883. -1612533560: Sending CONNACK to 172.18.0.3 (0, 5) -1612533560: Socket error on client , disconnecting. -1612533580: New connection from 172.18.0.3 on port 1883. -1612533580: Sending CONNACK to 172.18.0.3 (0, 5) -1612533580: Socket error on client , disconnecting. -1612533600: New connection from 172.18.0.3 on port 1883. -1612533600: Sending CONNACK to 172.18.0.3 (0, 5) -1612533600: Socket error on client , disconnecting. -1612533620: New connection from 172.18.0.3 on port 1883. -1612533620: Sending CONNACK to 172.18.0.3 (0, 5) -1612533620: Socket error on client , disconnecting. -1612533640: New connection from 172.18.0.3 on port 1883. -1612533640: Sending CONNACK to 172.18.0.3 (0, 5) -1612533640: Socket error on client , disconnecting. -1612533660: New connection from 172.18.0.3 on port 1883. -1612533660: Sending CONNACK to 172.18.0.3 (0, 5) -1612533660: Socket error on client , disconnecting. -1612533680: New connection from 172.18.0.3 on port 1883. -1612533680: Sending CONNACK to 172.18.0.3 (0, 5) -1612533680: Socket error on client , disconnecting. -1612533700: New connection from 172.18.0.3 on port 1883. -1612533700: Sending CONNACK to 172.18.0.3 (0, 5) -1612533700: Socket error on client , disconnecting. -1612533720: New connection from 172.18.0.3 on port 1883. -1612533720: Sending CONNACK to 172.18.0.3 (0, 5) -1612533720: Socket error on client , disconnecting. -1612533740: New connection from 172.18.0.3 on port 1883. -1612533740: Sending CONNACK to 172.18.0.3 (0, 5) -1612533740: Socket error on client , disconnecting. -1612533760: New connection from 172.18.0.3 on port 1883. -1612533760: Sending CONNACK to 172.18.0.3 (0, 5) -1612533760: Socket error on client , disconnecting. -1612533780: New connection from 172.18.0.3 on port 1883. -1612533780: Sending CONNACK to 172.18.0.3 (0, 5) -1612533780: Socket error on client , disconnecting. -1612533800: New connection from 172.18.0.3 on port 1883. -1612533800: Sending CONNACK to 172.18.0.3 (0, 5) -1612533800: Socket error on client , disconnecting. -1612533820: New connection from 172.18.0.3 on port 1883. -1612533820: Sending CONNACK to 172.18.0.3 (0, 5) -1612533820: Socket error on client , disconnecting. -1612533840: New connection from 172.18.0.3 on port 1883. -1612533840: Sending CONNACK to 172.18.0.3 (0, 5) -1612533840: Socket error on client , disconnecting. -1612533860: New connection from 172.18.0.3 on port 1883. -1612533860: Sending CONNACK to 172.18.0.3 (0, 5) -1612533860: Socket error on client , disconnecting. -1612533880: New connection from 172.18.0.3 on port 1883. -1612533880: Sending CONNACK to 172.18.0.3 (0, 5) -1612533880: Socket error on client , disconnecting. -1612533900: New connection from 172.18.0.3 on port 1883. -1612533900: Sending CONNACK to 172.18.0.3 (0, 5) -1612533900: Socket error on client , disconnecting. -1612533920: New connection from 172.18.0.3 on port 1883. -1612533920: Sending CONNACK to 172.18.0.3 (0, 5) -1612533920: Socket error on client , disconnecting. -1612533940: New connection from 172.18.0.3 on port 1883. -1612533940: Sending CONNACK to 172.18.0.3 (0, 5) -1612533940: Socket error on client , disconnecting. -1612533960: New connection from 172.18.0.3 on port 1883. -1612533960: Sending CONNACK to 172.18.0.3 (0, 5) -1612533960: Socket error on client , disconnecting. -1612533980: New connection from 172.18.0.3 on port 1883. -1612533980: Sending CONNACK to 172.18.0.3 (0, 5) -1612533980: Socket error on client , disconnecting. -1612534000: New connection from 172.18.0.3 on port 1883. -1612534000: Sending CONNACK to 172.18.0.3 (0, 5) -1612534000: Socket error on client , disconnecting. -1612534020: New connection from 172.18.0.3 on port 1883. -1612534020: Sending CONNACK to 172.18.0.3 (0, 5) -1612534020: Socket error on client , disconnecting. -1612534040: New connection from 172.18.0.3 on port 1883. -1612534040: Sending CONNACK to 172.18.0.3 (0, 5) -1612534040: Socket error on client , disconnecting. -1612534060: New connection from 172.18.0.3 on port 1883. -1612534060: Sending CONNACK to 172.18.0.3 (0, 5) -1612534060: Socket error on client , disconnecting. -1612534080: New connection from 172.18.0.3 on port 1883. -1612534080: Sending CONNACK to 172.18.0.3 (0, 5) -1612534080: Socket error on client , disconnecting. -1612534100: New connection from 172.18.0.3 on port 1883. -1612534100: Sending CONNACK to 172.18.0.3 (0, 5) -1612534100: Socket error on client , disconnecting. -1612534120: New connection from 172.18.0.3 on port 1883. -1612534120: Sending CONNACK to 172.18.0.3 (0, 5) -1612534120: Socket error on client , disconnecting. -1612534140: New connection from 172.18.0.3 on port 1883. -1612534140: Sending CONNACK to 172.18.0.3 (0, 5) -1612534140: Socket error on client , disconnecting. -1612534160: New connection from 172.18.0.3 on port 1883. -1612534160: Sending CONNACK to 172.18.0.3 (0, 5) -1612534160: Socket error on client , disconnecting. -1612534180: New connection from 172.18.0.3 on port 1883. -1612534180: Sending CONNACK to 172.18.0.3 (0, 5) -1612534180: Socket error on client , disconnecting. -1612534200: New connection from 172.18.0.3 on port 1883. -1612534200: Sending CONNACK to 172.18.0.3 (0, 5) -1612534200: Socket error on client , disconnecting. -1612534220: New connection from 172.18.0.3 on port 1883. -1612534220: Sending CONNACK to 172.18.0.3 (0, 5) -1612534220: Socket error on client , disconnecting. -1612534240: New connection from 172.18.0.3 on port 1883. -1612534240: Sending CONNACK to 172.18.0.3 (0, 5) -1612534240: Socket error on client , disconnecting. -1612534260: New connection from 172.18.0.3 on port 1883. -1612534260: Sending CONNACK to 172.18.0.3 (0, 5) -1612534260: Socket error on client , disconnecting. -1612534280: New connection from 172.18.0.3 on port 1883. -1612534280: Sending CONNACK to 172.18.0.3 (0, 5) -1612534280: Socket error on client , disconnecting. -1612534300: New connection from 172.18.0.3 on port 1883. -1612534300: Sending CONNACK to 172.18.0.3 (0, 5) -1612534300: Socket error on client , disconnecting. -1612534320: New connection from 172.18.0.3 on port 1883. -1612534320: Sending CONNACK to 172.18.0.3 (0, 5) -1612534320: Socket error on client , disconnecting. -1612534340: New connection from 172.18.0.3 on port 1883. -1612534340: Sending CONNACK to 172.18.0.3 (0, 5) -1612534340: Socket error on client , disconnecting. -1612534360: New connection from 172.18.0.3 on port 1883. -1612534360: Sending CONNACK to 172.18.0.3 (0, 5) -1612534360: Socket error on client , disconnecting. -1612534379: mosquitto version 1.6.10 terminating -1612534379: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612534379: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612534379: Error: Permission denied. -1612534381: mosquitto version 1.6.10 starting -1612534381: Config loaded from /mosquitto/config/mosquitto.conf. -1612534381: Opening websockets listen socket on port 8884. -1612534381: Opening ipv4 listen socket on port 1883. -1612534381: Opening ipv6 listen socket on port 1883. -1612534400: New connection from 172.18.0.3 on port 1883. -1612534400: New client connected from 172.18.0.3 as Telegraf-Consumer-fbkEL (p1, c1, k60, u'subclient'). -1612534400: No will message specified. -1612534400: Sending CONNACK to Telegraf-Consumer-fbkEL (0, 0) -1612534400: Received SUBSCRIBE from Telegraf-Consumer-fbkEL -1612534400: IOT/+/acc (QoS 0) -1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/acc -1612534400: IOT/+/mag (QoS 0) -1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/mag -1612534400: IOT/+/gyro (QoS 0) -1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/gyro -1612534400: IOT/+/temp (QoS 0) -1612534400: Telegraf-Consumer-fbkEL 0 IOT/+/temp -1612534400: Sending SUBACK to Telegraf-Consumer-fbkEL -1612534465: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534465: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534530: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534530: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534590: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534590: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534655: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534655: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534720: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534720: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534785: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534785: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534850: Received PINGREQ from Telegraf-Consumer-fbkEL -1612534850: Sending PINGRESP to Telegraf-Consumer-fbkEL -1612534880: mosquitto version 1.6.10 terminating -1612534880: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612534880: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612534880: Error: Permission denied. -1612534882: mosquitto version 1.6.10 starting -1612536540: mosquitto version 1.6.10 starting -1612536540: Config loaded from /mosquitto/config/mosquitto.conf. -1612536540: Opening websockets listen socket on port 9001. -1612536540: Opening ipv4 listen socket on port 8883. -1612536540: Opening ipv6 listen socket on port 8883. -1612536540: New connection from 172.18.0.3 on port 8883. -1612536540: New client connected from 172.18.0.3 as Telegraf-Consumer-GBfjN (p2, c1, k60, u'subclient'). -1612536540: No will message specified. -1612536540: Sending CONNACK to Telegraf-Consumer-GBfjN (0, 0) -1612536540: Received SUBSCRIBE from Telegraf-Consumer-GBfjN -1612536540: IOT/+/mag (QoS 0) -1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/mag -1612536540: IOT/+/gyro (QoS 0) -1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/gyro -1612536540: IOT/+/temp (QoS 0) -1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/temp -1612536540: IOT/+/acc (QoS 0) -1612536540: Telegraf-Consumer-GBfjN 0 IOT/+/acc -1612536540: Sending SUBACK to Telegraf-Consumer-GBfjN -1612536605: Received PINGREQ from Telegraf-Consumer-GBfjN -1612536605: Sending PINGRESP to Telegraf-Consumer-GBfjN -1612536665: Received PINGREQ from Telegraf-Consumer-GBfjN -1612537032: mosquitto version 1.6.10 starting -1612537032: Config loaded from /mosquitto/config/mosquitto.conf. -1612537032: Opening websockets listen socket on port 9001. -1612537033: Opening ipv4 listen socket on port 8883. -1612537033: Opening ipv6 listen socket on port 8883. -1612537033: New connection from 172.18.0.4 on port 8883. -1612537033: New client connected from 172.18.0.4 as Telegraf-Consumer-LlXz9 (p2, c1, k60, u'subclient'). -1612537033: No will message specified. -1612537033: Sending CONNACK to Telegraf-Consumer-LlXz9 (0, 0) -1612537033: Received SUBSCRIBE from Telegraf-Consumer-LlXz9 -1612537033: IOT/+/acc (QoS 0) -1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/acc -1612537033: IOT/+/mag (QoS 0) -1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/mag -1612537033: IOT/+/gyro (QoS 0) -1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/gyro -1612537033: IOT/+/temp (QoS 0) -1612537033: Telegraf-Consumer-LlXz9 0 IOT/+/temp -1612537033: Sending SUBACK to Telegraf-Consumer-LlXz9 -1612537098: Received PINGREQ from Telegraf-Consumer-LlXz9 -1612537098: Sending PINGRESP to Telegraf-Consumer-LlXz9 -1612537157: mosquitto version 1.6.10 terminating -1612537157: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612537157: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612537157: Error: Permission denied. -1612537169: mosquitto version 1.6.10 starting -1612537169: Config loaded from /mosquitto/config/mosquitto.conf. -1612537169: Opening websockets listen socket on port 9001. -1612537169: Opening ipv4 listen socket on port 8883. -1612537169: Opening ipv6 listen socket on port 8883. -1612537169: New connection from 172.18.0.3 on port 8883. -1612537169: New client connected from 172.18.0.3 as Telegraf-Consumer-3Zghm (p2, c1, k60, u'subclient'). -1612537169: No will message specified. -1612537169: Sending CONNACK to Telegraf-Consumer-3Zghm (0, 0) -1612537169: Received SUBSCRIBE from Telegraf-Consumer-3Zghm -1612537169: IOT/+/gyro (QoS 0) -1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/gyro -1612537169: IOT/+/temp (QoS 0) -1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/temp -1612537169: IOT/+/acc (QoS 0) -1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/acc -1612537169: IOT/+/mag (QoS 0) -1612537169: Telegraf-Consumer-3Zghm 0 IOT/+/mag -1612537169: Sending SUBACK to Telegraf-Consumer-3Zghm -1612537229: Received PINGREQ from Telegraf-Consumer-3Zghm -1612537229: Sending PINGRESP to Telegraf-Consumer-3Zghm -1612537271: mosquitto version 1.6.10 terminating -1612537271: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612537271: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612537271: Error: Permission denied. -1612537283: mosquitto version 1.6.10 starting -1612537283: Config loaded from /mosquitto/config/mosquitto.conf. -1612537283: Opening websockets listen socket on port 9001. -1612537284: Opening ipv4 listen socket on port 8883. -1612537284: Opening ipv6 listen socket on port 8883. -1612537284: New connection from 172.18.0.4 on port 8883. -1612537284: New client connected from 172.18.0.4 as Telegraf-Consumer-Z1jPf (p2, c1, k60, u'subclient'). -1612537284: No will message specified. -1612537284: Sending CONNACK to Telegraf-Consumer-Z1jPf (0, 0) -1612537284: Received SUBSCRIBE from Telegraf-Consumer-Z1jPf -1612537284: IOT/+/acc (QoS 0) -1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/acc -1612537284: IOT/+/mag (QoS 0) -1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/mag -1612537284: IOT/+/gyro (QoS 0) -1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/gyro -1612537284: IOT/+/temp (QoS 0) -1612537284: Telegraf-Consumer-Z1jPf 0 IOT/+/temp -1612537284: Sending SUBACK to Telegraf-Consumer-Z1jPf -1612537306: New connection from 172.18.0.6 on port 8883. -1612537306: New client connected from 172.18.0.6 as MQTT_FX_Client (p2, c1, k60). -1612537306: No will message specified. -1612537306: Sending CONNACK to MQTT_FX_Client (0, 0) -1612537307: Received DISCONNECT from MQTT_FX_Client -1612537307: Client MQTT_FX_Client disconnected. -1612537308: New connection from 172.18.0.6 on port 8883. -1612537308: New client connected from 172.18.0.6 as MQTT_FX_Client (p2, c1, k60). -1612537308: No will message specified. -1612537308: Sending CONNACK to MQTT_FX_Client (0, 0) -1612537310: Received SUBSCRIBE from MQTT_FX_Client -1612537310: # (QoS 0) -1612537310: MQTT_FX_Client 0 # -1612537310: Sending SUBACK to MQTT_FX_Client -1612537326: Socket error on client MQTT_FX_Client, disconnecting. -1612537326: mosquitto version 1.6.10 terminating -1612537326: Saving in-memory database to /mosquitto/data/mosquitto.db. -1612537326: Error saving in-memory database, unable to open /mosquitto/data/mosquitto.db.new for writing. -1612537326: Error: Permission denied. diff --git a/selfsigned/traefik/log/access.log b/selfsigned/traefik/log/access.log deleted file mode 100644 index ffe3c0a..0000000 --- a/selfsigned/traefik/log/access.log +++ /dev/null @@ -1,1413 +0,0 @@ -37.138.224.211 - - [27/Jan/2021:10:10:35 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 1 "web-to-web-secure@internal" "-" 3ms -37.138.224.211 - - [27/Jan/2021:10:10:44 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms -37.138.224.211 - - [27/Jan/2021:10:11:00 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 3 "-" "-" 1ms -37.138.224.211 - - [27/Jan/2021:10:11:05 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 4 "-" "-" 0ms -37.138.224.211 - - [27/Jan/2021:10:11:23 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 5 "-" "-" 1ms -37.138.224.211 - - [27/Jan/2021:10:11:25 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 6 "-" "-" 0ms -37.138.224.211 - - [27/Jan/2021:10:11:30 +0000] "GET / HTTP/1.1" 301 17 "-" "-" 7 "web-to-web-secure@internal" "-" 2ms -37.138.224.211 - - [27/Jan/2021:10:11:30 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 8 "-" "-" 1ms -37.138.224.211 - - [27/Jan/2021:10:11:39 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 10 "-" "-" 0ms -37.138.224.211 - - [27/Jan/2021:10:15:24 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 0ms -37.138.224.211 - - [27/Jan/2021:10:15:39 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 1ms -37.138.224.211 - - [27/Jan/2021:10:20:35 +0000] "GET /grafana HTTP/2.0" 401 42 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana HTTP/2.0" 302 37 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 12ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 25ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 34ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 349ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 353ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 703ms -37.138.224.211 - - [27/Jan/2021:10:20:42 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 146ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 7544ms -37.138.224.211 - - [27/Jan/2021:10:20:41 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 12387ms -37.138.224.211 - - [27/Jan/2021:10:20:54 +0000] "GET /grafana/ HTTP/2.0" 302 37 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:20:54 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 13ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 325ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 325ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 1071ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 226ms -37.138.224.211 - - [27/Jan/2021:10:20:57 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 18ms -37.138.224.211 - - [27/Jan/2021:10:20:57 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:20:58 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 8038ms -37.138.224.211 - - [27/Jan/2021:10:20:55 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 13152ms -37.138.224.211 - - [27/Jan/2021:10:21:09 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 25 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:21:09 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 26 "grafana-router@file" "http://grafana:3000" 3ms -37.138.224.211 - - [27/Jan/2021:10:21:15 +0000] "POST /grafana/login HTTP/2.0" 401 42 "-" "-" 27 "grafana-router@file" "http://grafana:3000" 47ms -37.138.224.211 - - [27/Jan/2021:10:21:22 +0000] "POST /grafana/login HTTP/2.0" 200 49 "-" "-" 28 "grafana-router@file" "http://grafana:3000" 37ms -37.138.224.211 - - [27/Jan/2021:10:21:22 +0000] "GET /grafana/ HTTP/2.0" 200 30100 "-" "-" 29 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 30 "grafana-router@file" "http://grafana:3000" 20ms -37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 31 "grafana-router@file" "http://grafana:3000" 19ms -37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 32 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 33 "grafana-router@file" "http://grafana:3000" 25ms -37.138.224.211 - - [27/Jan/2021:10:21:23 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 34 "grafana-router@file" "http://grafana:3000" 13ms -37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 35 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 36 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 37 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 38 "grafana-router@file" "http://grafana:3000" 13ms -37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 39 "grafana-router@file" "http://grafana:3000" 13ms -37.138.224.211 - - [27/Jan/2021:10:21:24 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 40 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:21:28 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 41 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:21:28 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 2 "-" "-" 42 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:21:28 +0000] "GET /grafana/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 HTTP/2.0" 200 16204 "-" "-" 43 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/build/NewDataSourcePage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19014 "-" "-" 44 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/api/plugins?enabled=1&type=datasource HTTP/2.0" 200 9971 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/prometheus/img/prometheus_logo.svg HTTP/2.0" 200 1075 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 45ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 49 "grafana-router@file" "http://grafana:3000" 30ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/loki/img/loki_icon.svg HTTP/2.0" 200 6953 "-" "-" 50 "grafana-router@file" "http://grafana:3000" 32ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/graphite/img/graphite_logo.png HTTP/2.0" 200 4452 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 43ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/opentsdb/img/opentsdb_logo.png HTTP/2.0" 200 9600 "-" "-" 48 "grafana-router@file" "http://grafana:3000" 40ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/zipkin/img/zipkin-logo.svg HTTP/2.0" 200 20677 "-" "-" 53 "grafana-router@file" "http://grafana:3000" 22ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/postgres/img/postgresql_logo.svg HTTP/2.0" 200 4464 "-" "-" 55 "grafana-router@file" "http://grafana:3000" 28ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/jaeger/img/jaeger_logo.svg HTTP/2.0" 200 35107 "-" "-" 52 "grafana-router@file" "http://grafana:3000" 33ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/mysql/img/mysql_logo.svg HTTP/2.0" 200 10863 "-" "-" 54 "grafana-router@file" "http://grafana:3000" 30ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/elasticsearch/img/elasticsearch.svg HTTP/2.0" 200 2394 "-" "-" 51 "grafana-router@file" "http://grafana:3000" 46ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/mssql/img/sql_server_logo.svg HTTP/2.0" 200 22436 "-" "-" 56 "grafana-router@file" "http://grafana:3000" 33ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/splunk_logo_128.png HTTP/2.0" 200 4019 "-" "-" 60 "grafana-router@file" "http://grafana:3000" 30ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/cloud-monitoring/img/cloud_monitoring_logo.svg HTTP/2.0" 200 2978 "-" "-" 57 "grafana-router@file" "http://grafana:3000" 33ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/cloudwatch/img/amazon-web-services.png HTTP/2.0" 200 7838 "-" "-" 58 "grafana-router@file" "http://grafana:3000" 33ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/grafana-azure-monitor-datasource/img/logo.jpg HTTP/2.0" 200 9593 "-" "-" 59 "grafana-router@file" "http://grafana:3000" 32ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/app/plugins/datasource/testdata/img/testdata.svg HTTP/2.0" 200 1476 "-" "-" 67 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/appdynamics.svg HTTP/2.0" 200 1032 "-" "-" 66 "grafana-router@file" "http://grafana:3000" 18ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/dynatrace.png HTTP/2.0" 200 2328 "-" "-" 64 "grafana-router@file" "http://grafana:3000" 30ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/servicenow.svg HTTP/2.0" 200 1674 "-" "-" 61 "grafana-router@file" "http://grafana:3000" 33ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/datadog.png HTTP/2.0" 200 8009 "-" "-" 65 "grafana-router@file" "http://grafana:3000" 21ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/newrelic.svg HTTP/2.0" 200 4215 "-" "-" 63 "grafana-router@file" "http://grafana:3000" 32ms -37.138.224.211 - - [27/Jan/2021:10:21:29 +0000] "GET /grafana/public/img/plugins/oracle.png HTTP/2.0" 200 74402 "-" "-" 62 "grafana-router@file" "http://grafana:3000" 34ms -37.138.224.211 - - [27/Jan/2021:10:21:31 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 2 "-" "-" 68 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:21:31 +0000] "POST /grafana/api/datasources HTTP/2.0" 200 370 "-" "-" 69 "grafana-router@file" "http://grafana:3000" 14ms -37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 70 "grafana-router@file" "http://grafana:3000" 3ms -37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 301 "-" "-" 71 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 72 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:21:32 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 73 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 452 "-" "-" 74 "grafana-router@file" "http://grafana:3000" 40ms -37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13185 "-" "-" 75 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 381 "-" "-" 76 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - - [27/Jan/2021:10:22:22 +0000] "GET /grafana/api/datasources/proxy/1/query?q=SHOW%20RETENTION%20POLICIES%20on%20%22%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 77 "grafana-router@file" "http://grafana:3000" 30055ms -37.138.224.211 - - [27/Jan/2021:10:27:39 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 2 "influxdb-router@file" "http://influxdb:8086" 10ms -37.138.224.211 - - [27/Jan/2021:10:28:22 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 3 "influxdb-router@file" "http://influxdb:8086" 11ms -37.138.224.211 - - [27/Jan/2021:10:28:26 +0000] "GET /influxdb/query HTTP/2.0" 401 55 "-" "-" 4 "influxdb-router@file" "http://influxdb:8086" 3ms -37.138.224.211 - - [27/Jan/2021:10:28:35 +0000] "GET /influxdb/query HTTP/2.0" 400 45 "-" "-" 5 "influxdb-router@file" "http://influxdb:8086" 101ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana HTTP/2.0" 302 37 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 24ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 26ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 24ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 372ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 363ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 808ms -37.138.224.211 - - [27/Jan/2021:10:28:48 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 349ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 6687ms -37.138.224.211 - - [27/Jan/2021:10:28:47 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 11457ms -37.138.224.211 - - [27/Jan/2021:10:29:05 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:29:05 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - - [27/Jan/2021:10:29:11 +0000] "POST /grafana/login HTTP/2.0" 200 49 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 57ms -37.138.224.211 - - [27/Jan/2021:10:29:11 +0000] "GET /grafana/ HTTP/2.0" 200 31055 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 25ms -37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 27ms -37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 20ms -37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 20ms -37.138.224.211 - - [27/Jan/2021:10:29:12 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 32ms -37.138.224.211 - - [27/Jan/2021:10:29:13 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 2ms -37.138.224.211 - - [27/Jan/2021:10:29:13 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 25 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:29:13 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 26 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 27 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 28 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 29 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 30 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - - [27/Jan/2021:10:29:14 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 31 "grafana-router@file" "http://grafana:3000" 3ms -37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/public/build/DashboardListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2811 "-" "-" 32 "grafana-router@file" "http://grafana:3000" 14ms -37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/api/search?query=&starred=false&skipRecent=true&skipStarred=true&folderIds=0&layout=folders HTTP/2.0" 200 2 "-" "-" 33 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/api/search/sorting HTTP/2.0" 200 267 "-" "-" 35 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/api/dashboards/tags HTTP/2.0" 200 2 "-" "-" 34 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:29:23 +0000] "GET /grafana/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 HTTP/2.0" 200 16204 "-" "-" 36 "grafana-router@file" "http://grafana:3000" 3ms -37.138.224.211 - - [27/Jan/2021:10:29:26 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 37 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:10:29:26 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 314 "-" "-" 38 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:29:26 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 39 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 40 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 381 "-" "-" 41 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 42 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:29:28 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 43 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:29:40 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 454 "-" "-" 44 "grafana-router@file" "http://grafana:3000" 18ms -37.138.224.211 - - [27/Jan/2021:10:29:40 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13185 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:29:40 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 383 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:29:41 +0000] "GET /grafana/api/datasources/proxy/1/query?q=SHOW%20RETENTION%20POLICIES%20on%20%22%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 30039ms -37.138.224.211 - - [27/Jan/2021:10:30:56 +0000] "GET /influxdb/query?SHOW%20DATABASE HTTP/2.0" 400 45 "-" "-" 48 "influxdb-router@file" "http://influxdb:8086" 5ms -37.138.224.211 - - [27/Jan/2021:10:36:26 +0000] "POST /query?u=admin&p=tiguitto HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 1ms -37.138.224.211 - - [27/Jan/2021:10:37:38 +0000] "GET /influxdb HTTP/2.0" 404 19 "-" "-" 2 "influxdb-router@file" "http://influxdb:8086" 2ms -37.138.224.211 - - [27/Jan/2021:10:37:45 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 3 "influxdb-router@file" "http://influxdb:8086" 12ms -37.138.224.211 - - [27/Jan/2021:10:37:48 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 4 "influxdb-router@file" "http://influxdb:8086" 5ms -37.138.224.211 - - [27/Jan/2021:10:37:48 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 5 "influxdb-router@file" "http://influxdb:8086" 2ms -37.138.224.211 - - [27/Jan/2021:10:37:55 +0000] "GET /influxdb/ HTTP/2.0" 404 19 "-" "-" 6 "influxdb-router@file" "http://influxdb:8086" 3ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana HTTP/2.0" 200 31055 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 37ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 28ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 27ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 240ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 421ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 820ms -37.138.224.211 - - [27/Jan/2021:10:38:18 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 181ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 7988ms -37.138.224.211 - - [27/Jan/2021:10:38:17 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 12923ms -37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 18ms -37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 26ms -37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 36ms -37.138.224.211 - - [27/Jan/2021:10:38:31 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 25 "grafana-router@file" "http://grafana:3000" 14ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 22ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 26 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 27 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:38:32 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 28 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:38:37 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 29 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - - [27/Jan/2021:10:38:37 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 316 "-" "-" 30 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:38:37 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 31 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - - [27/Jan/2021:10:38:40 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 32 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:38:40 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 383 "-" "-" 33 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:38:40 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 34 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:38:41 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 35 "grafana-router@file" "http://grafana:3000" 3ms -37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 462 "-" "-" 36 "grafana-router@file" "http://grafana:3000" 20ms -37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13193 "-" "-" 37 "grafana-router@file" "http://grafana:3000" 13ms -37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 391 "-" "-" 38 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:39:00 +0000] "GET /grafana/api/datasources/proxy/1/query?db=tiguitto&q=SHOW%20RETENTION%20POLICIES%20on%20%22tiguitto%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 39 "grafana-router@file" "http://grafana:3000" 30055ms -37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 482 "-" "-" 40 "grafana-router@file" "http://grafana:3000" 55ms -37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13189 "-" "-" 41 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 411 "-" "-" 42 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 482 "-" "-" 44 "grafana-router@file" "http://grafana:3000" 24ms -37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13189 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 411 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 482 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 18ms -37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13189 "-" "-" 48 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:40:26 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 411 "-" "-" 49 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:39:57 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 43 "grafana-router@file" "http://grafana:3000" 30052ms -37.138.224.211 - - [27/Jan/2021:10:40:28 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 50 "grafana-router@file" "http://grafana:3000" 30069ms -37.138.224.211 - - [27/Jan/2021:10:41:17 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 52 "grafana-router@file" "http://grafana:3000" 73ms -37.138.224.211 - - [27/Jan/2021:10:40:48 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 51 "grafana-router@file" "http://grafana:3000" 30016ms -37.138.224.211 - - [27/Jan/2021:10:41:18 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 53 "grafana-router@file" "http://grafana:3000" 12ms -37.138.224.211 - - [27/Jan/2021:10:41:18 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 54 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:41:18 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 499 21 "-" "-" 55 "grafana-router@file" "http://grafana:3000" 10696ms -37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 158ms -37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:42:40 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 30067ms -37.138.224.211 - - [27/Jan/2021:10:49:50 +0000] "GET /dashboard HTTP/2.0" 401 17 "-" "-" 5 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:49:59 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 6 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:02 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 7 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:07 +0000] "GET /api/version HTTP/2.0" 200 83 "-" "-" 8 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 9 "api-router@file" "-" 7ms -37.138.224.211 - admin [27/Jan/2021:10:50:07 +0000] "GET /api/entrypoints HTTP/2.0" 200 799 "-" "-" 10 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:08 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 11 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 12 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 13 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:50:21 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 14 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:21 +0000] "GET /api/udp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 3 "-" "-" 15 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:21 +0000] "GET /api/udp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 16 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:22 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 419 "-" "-" 17 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:50:22 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 18 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:50:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 19 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:50:23 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 20 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:50:25 +0000] "GET /api/entrypoints HTTP/2.0" 200 799 "-" "-" 21 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:50:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 22 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:50:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 23 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 24 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 25 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 26 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:50:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 27 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:47 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 769 "-" "-" 28 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:50:47 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 29 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:50:51 +0000] "GET /api/http/middlewares/redirect-web-to-web-secure@internal HTTP/2.0" 200 218 "-" "-" 30 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:50:51 +0000] "GET /api/http/routers/web-to-web-secure@internal HTTP/2.0" 200 252 "-" "-" 31 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:50:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 32 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:50:55 +0000] "GET /api/entrypoints HTTP/2.0" 200 799 "-" "-" 33 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:50:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 34 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 35 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/http/routers?search=&status=&per_page=8&page=1 HTTP/2.0" 200 2007 "-" "-" 36 "api-router@file" "-" 8ms -37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 37 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:00 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 38 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 39 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:05 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 40 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 41 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:51:10 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 42 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:15 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 44 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:10:51:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 45 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:10:51:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 2007 "-" "-" 46 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:22 +0000] "GET /api/http/routers/influxdb-router@file HTTP/2.0" 200 246 "-" "-" 47 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:22 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 48 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:22 +0000] "GET /api/http/middlewares/influxdb-mw@file HTTP/2.0" 200 186 "-" "-" 49 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:51:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 50 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 51 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 52 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:51:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 53 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:51:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 54 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 55 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:51:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 56 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:10:52:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 57 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:52:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 58 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:52:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:52:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 60 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:52:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 8ms -37.138.224.211 - admin [27/Jan/2021:10:52:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 9ms -37.138.224.211 - admin [27/Jan/2021:10:52:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 63 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:52:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:52:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:10:52:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 66 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:52:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 67 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:52:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:53:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 69 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:53:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 70 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:53:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 71 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:53:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 72 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:53:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:53:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:53:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:10:53:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:53:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:53:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 78 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:53:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 12ms -37.138.224.211 - admin [27/Jan/2021:10:54:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:54:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:10:54:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:54:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 7ms -37.138.224.211 - - [27/Jan/2021:10:54:17 +0000] "POST /influxdb/ HTTP/1.1" 404 19 "-" "-" 84 "influxdb-router@file" "http://influxdb:8086" 12ms -37.138.224.211 - admin [27/Jan/2021:10:54:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:54:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:54:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:54:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:54:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:54:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 90 "api-router@file" "-" 7ms -37.138.224.211 - - [27/Jan/2021:10:54:47 +0000] "POST /influxdb/query HTTP/1.1" 401 55 "-" "-" 91 "influxdb-router@file" "http://influxdb:8086" 6ms -37.138.224.211 - admin [27/Jan/2021:10:54:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:54:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:55:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:55:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 7ms -37.138.224.211 - - [27/Jan/2021:10:55:06 +0000] "POST /influxdb/query HTTP/1.1" 200 107 "-" "-" 96 "influxdb-router@file" "http://influxdb:8086" 9ms -37.138.224.211 - admin [27/Jan/2021:10:55:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:55:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:55:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:55:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:55:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:55:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 102 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:10:55:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:55:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:10:55:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:55:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:56:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:56:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 108 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:56:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:56:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:56:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:56:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:56:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:10:56:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:56:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:56:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:56:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:56:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:57:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:57:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 120 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:57:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 121 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:57:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 122 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:57:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 123 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:57:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:57:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:10:57:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 126 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:57:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 127 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:57:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 128 "api-router@file" "-" 10ms -37.138.224.211 - - [27/Jan/2021:10:57:45 +0000] "GET /grafana/ HTTP/2.0" 200 31085 "-" "-" 129 "grafana-router@file" "http://grafana:3000" 25ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 130 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 132 "grafana-router@file" "http://grafana:3000" 30ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 131 "grafana-router@file" "http://grafana:3000" 1019ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 133 "grafana-router@file" "http://grafana:3000" 1631ms -37.138.224.211 - - [27/Jan/2021:10:57:47 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 137 "grafana-router@file" "http://grafana:3000" 414ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 135 "grafana-router@file" "http://grafana:3000" 3300ms -37.138.224.211 - admin [27/Jan/2021:10:57:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 138 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:57:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 139 "api-router@file" "-" 8ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 134 "grafana-router@file" "http://grafana:3000" 9503ms -37.138.224.211 - admin [27/Jan/2021:10:58:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 140 "api-router@file" "-" 3ms -37.138.224.211 - - [27/Jan/2021:10:57:46 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 136 "grafana-router@file" "http://grafana:3000" 14524ms -37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 141 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 142 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 1486 "-" "-" 144 "grafana-router@file" "http://grafana:3000" 29ms -37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 145 "grafana-router@file" "http://grafana:3000" 88ms -37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 143 "grafana-router@file" "http://grafana:3000" 259ms -37.138.224.211 - - [27/Jan/2021:10:58:02 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 146 "grafana-router@file" "http://grafana:3000" 116ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 147 "grafana-router@file" "http://grafana:3000" 12ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 149 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 150 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 152 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 153 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 151 "grafana-router@file" "http://grafana:3000" 243ms -37.138.224.211 - - [27/Jan/2021:10:58:03 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 148 "grafana-router@file" "http://grafana:3000" 659ms -37.138.224.211 - admin [27/Jan/2021:10:58:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 154 "api-router@file" "-" 5ms -37.138.224.211 - - [27/Jan/2021:10:58:05 +0000] "GET /grafana/public/build/DataSourcesListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 22067 "-" "-" 155 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:58:05 +0000] "GET /grafana/api/datasources HTTP/2.0" 200 355 "-" "-" 156 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:58:05 +0000] "GET /grafana/public/app/plugins/datasource/influxdb/img/influxdb_logo.svg HTTP/2.0" 200 1937 "-" "-" 157 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/public/build/DataSourceSettingsPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 25798 "-" "-" 158 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 159 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/api/plugins/influxdb/settings HTTP/2.0" 200 700 "-" "-" 160 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:10:58:07 +0000] "GET /grafana/public/build/influxdbPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 53825 "-" "-" 161 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - admin [27/Jan/2021:10:58:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 162 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:58:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 163 "api-router@file" "-" 3ms -37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 164 "grafana-router@file" "http://grafana:3000" 11ms -37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 165 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 166 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - admin [27/Jan/2021:10:58:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 168 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:58:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 169 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:58:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 170 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:58:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 171 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:58:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 172 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:58:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 173 "api-router@file" "-" 6ms -37.138.224.211 - - [27/Jan/2021:10:58:19 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 167 "grafana-router@file" "http://grafana:3000" 30077ms -37.138.224.211 - admin [27/Jan/2021:10:58:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 174 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:58:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 175 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:59:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 176 "api-router@file" "-" 7ms -37.138.224.211 - admin [27/Jan/2021:10:59:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 177 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:59:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 178 "api-router@file" "-" 7ms -37.138.224.211 - admin [27/Jan/2021:10:59:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 179 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:59:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 180 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:59:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 181 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:10:59:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 182 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:10:59:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 183 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:10:59:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 184 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:10:59:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 185 "api-router@file" "-" 0ms -37.138.224.211 - - [27/Jan/2021:10:59:47 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 509 "-" "-" 186 "grafana-router@file" "http://grafana:3000" 20ms -37.138.224.211 - - [27/Jan/2021:10:59:48 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 187 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:10:59:48 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 438 "-" "-" 188 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - admin [27/Jan/2021:10:59:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 190 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:10:59:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 191 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:11:00:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 192 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:11:00:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 193 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:11:00:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 194 "api-router@file" "-" 3ms -37.138.224.211 - - [27/Jan/2021:11:00:15 +0000] "GET /grafana/public/fonts/roboto/OLffGBTaF0XFOW1gnuHF0Y4P5ICox8Kq3LLUNMylGO4.woff2 HTTP/2.0" 200 16112 "-" "-" 195 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - admin [27/Jan/2021:11:00:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 196 "api-router@file" "-" 4ms -37.138.224.211 - - [27/Jan/2021:10:59:48 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 189 "grafana-router@file" "http://grafana:3000" 30072ms -37.138.224.211 - admin [27/Jan/2021:11:00:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 197 "api-router@file" "-" 0ms -37.138.224.211 - admin [27/Jan/2021:11:00:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 198 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:11:00:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 199 "api-router@file" "-" 14ms -37.138.224.211 - admin [27/Jan/2021:11:00:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 200 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:11:00:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 201 "api-router@file" "-" 5ms -37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 511 "-" "-" 202 "grafana-router@file" "http://grafana:3000" 73ms -37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 203 "grafana-router@file" "http://grafana:3000" 10ms -37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 440 "-" "-" 204 "grafana-router@file" "http://grafana:3000" 4ms -37.138.224.211 - admin [27/Jan/2021:11:00:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 206 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:11:00:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 207 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:11:00:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 208 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:11:01:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 209 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:11:01:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 210 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:11:01:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 211 "api-router@file" "-" 3ms -37.138.224.211 - - [27/Jan/2021:11:01:11 +0000] "PUT /grafana/api/datasources/1 HTTP/2.0" 200 484 "-" "-" 212 "grafana-router@file" "http://grafana:3000" 19ms -37.138.224.211 - - [27/Jan/2021:11:01:11 +0000] "GET /grafana/api/frontend/settings HTTP/2.0" 200 13215 "-" "-" 213 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - - [27/Jan/2021:11:01:11 +0000] "GET /grafana/api/datasources/1 HTTP/2.0" 200 413 "-" "-" 214 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:11:00:43 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 502 0 "-" "-" 205 "grafana-router@file" "http://grafana:3000" 30069ms -37.138.224.211 - - [27/Jan/2021:11:01:13 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 200 149 "-" "-" 215 "grafana-router@file" "http://grafana:3000" 160ms -37.138.224.211 - admin [27/Jan/2021:11:01:15 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 216 "api-router@file" "-" 2ms -37.138.224.211 - admin [27/Jan/2021:11:01:20 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 217 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:11:01:25 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 218 "api-router@file" "-" 3ms -37.138.224.211 - - [27/Jan/2021:11:01:27 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 219 "grafana-router@file" "http://grafana:3000" 15ms -37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 220 "grafana-router@file" "http://grafana:3000" 14ms -37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 221 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 222 "grafana-router@file" "http://grafana:3000" 14ms -37.138.224.211 - - [27/Jan/2021:11:01:28 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 223 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - admin [27/Jan/2021:11:01:30 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 224 "api-router@file" "-" 4ms -37.138.224.211 - - [27/Jan/2021:11:01:30 +0000] "GET /grafana/public/build/DashboardListPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2811 "-" "-" 225 "grafana-router@file" "http://grafana:3000" 8ms -37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/api/search?query=&starred=false&skipRecent=true&skipStarred=true&folderIds=0&layout=folders HTTP/2.0" 200 2 "-" "-" 226 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/api/dashboards/tags HTTP/2.0" 200 2 "-" "-" 227 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/api/search/sorting HTTP/2.0" 200 267 "-" "-" 228 "grafana-router@file" "http://grafana:3000" 6ms -37.138.224.211 - - [27/Jan/2021:11:01:31 +0000] "GET /grafana/public/fonts/roboto/vPcynSL0qHq_6dX7lKVByfesZW2xOQ-xsNqO47m55DA.woff2 HTTP/2.0" 200 16204 "-" "-" 229 "grafana-router@file" "http://grafana:3000" 5ms -37.138.224.211 - - [27/Jan/2021:11:01:35 +0000] "GET /grafana/public/build/grafanaPlugin.5e3a92e1d96185a124d4.js HTTP/2.0" 200 4935 "-" "-" 230 "grafana-router@file" "http://grafana:3000" 14ms -37.138.224.211 - - [27/Jan/2021:11:01:35 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SELECT%20mean(%22value%22)%20FROM%20%22measurement%22%20WHERE%20time%20%3E%3D%20now()%20-%206h%20GROUP%20BY%20time(20s)%20fill(null)&epoch=ms HTTP/2.0" 200 57 "-" "-" 231 "grafana-router@file" "http://grafana:3000" 21ms -37.138.224.211 - admin [27/Jan/2021:11:01:35 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 232 "api-router@file" "-" 2ms -37.138.224.211 - - [27/Jan/2021:11:01:37 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20MEASUREMENTS%20LIMIT%20100&epoch=ms HTTP/2.0" 200 57 "-" "-" 233 "grafana-router@file" "http://grafana:3000" 7ms -37.138.224.211 - - [27/Jan/2021:11:01:38 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20RETENTION%20POLICIES%20on%20%22edge%22&epoch=ms HTTP/2.0" 200 149 "-" "-" 234 "grafana-router@file" "http://grafana:3000" 16ms -37.138.224.211 - - [27/Jan/2021:11:01:39 +0000] "GET /grafana/api/datasources/proxy/1/query?db=edge&q=SHOW%20MEASUREMENTS%20LIMIT%20100&epoch=ms HTTP/2.0" 200 57 "-" "-" 235 "grafana-router@file" "http://grafana:3000" 9ms -37.138.224.211 - admin [27/Jan/2021:11:01:40 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 236 "api-router@file" "-" 4ms -37.138.224.211 - admin [27/Jan/2021:11:01:45 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 237 "api-router@file" "-" 7ms -37.138.224.211 - admin [27/Jan/2021:11:01:50 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 238 "api-router@file" "-" 6ms -37.138.224.211 - admin [27/Jan/2021:11:01:55 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 239 "api-router@file" "-" 5ms -37.138.224.211 - admin [27/Jan/2021:11:02:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 240 "api-router@file" "-" 3ms -37.138.224.211 - admin [27/Jan/2021:11:02:05 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 241 "api-router@file" "-" 1ms -37.138.224.211 - admin [27/Jan/2021:11:02:10 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 242 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana HTTP/2.0" 302 37 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 17ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 21ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 3ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 39ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 354ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 663ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 36ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 1170ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 6361ms -85.16.177.133 - - [03/Feb/2021:17:05:21 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5636096 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 9948ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/login HTTP/2.0" 200 27148 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 24ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 3ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 174ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 1ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 617ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 219ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 1274ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 6039ms -85.16.177.133 - - [03/Feb/2021:17:07:18 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 9833ms -85.16.177.133 - - [03/Feb/2021:17:07:30 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 159ms -85.16.177.133 - - [03/Feb/2021:17:07:30 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 397ms -85.16.177.133 - - [03/Feb/2021:17:07:30 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 2ms -85.16.177.133 - - [03/Feb/2021:17:26:22 +0000] "GET /grafana HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 3ms -85.16.177.133 - - [03/Feb/2021:17:26:27 +0000] "GET /grafana/ HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:17:26:30 +0000] "GET /grafana/ HTTP/2.0" 404 19 "-" "-" 3 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:17:30:36 +0000] "GET /grafana/ HTTP/2.0" 404 19 "-" "-" 1 "-" "-" 2ms -85.16.177.133 - - [03/Feb/2021:17:30:39 +0000] "GET /grafana HTTP/2.0" 404 19 "-" "-" 2 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:17:30:45 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 3 "-" "-" 2ms -45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "POST /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 4 "-" "-" 1ms -45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "POST /api/jsonws/invoke HTTP/1.1" 404 19 "-" "-" 5 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "GET /vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php HTTP/1.1" 404 19 "-" "-" 6 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:51 +0000] "GET /solr/admin/info/system?wt=json HTTP/1.1" 404 19 "-" "-" 7 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /index.php?s=/Index/\think\app/invokefunction&function=call_user_func_array&vars[0]=md5&vars[1][]=HelloThinkPHP21 HTTP/1.1" 404 19 "-" "-" 8 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /?a=fetch&content=die(@md5(HelloThinkCMF)) HTTP/1.1" 404 19 "-" "-" 9 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /console/ HTTP/1.1" 404 19 "-" "-" 10 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /wp-content/plugins/wp-file-manager/readme.txt HTTP/1.1" 404 19 "-" "-" 11 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /?XDEBUG_SESSION_START=phpstorm HTTP/1.1" 404 19 "-" "-" 12 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "POST /Autodiscover/Autodiscover.xml HTTP/1.1" 404 19 "-" "-" 13 "-" "-" 0ms -45.155.205.108 - - [03/Feb/2021:17:45:52 +0000] "GET /_ignition/execute-solution HTTP/1.1" 404 19 "-" "-" 14 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:31 +0000] "HEAD / HTTP/1.0" 404 19 "-" "-" 15 "-" "-" 1ms -144.126.209.243 - - [03/Feb/2021:18:49:35 +0000] "HEAD / HTTP/1.0" 404 19 "-" "-" 16 "-" "-" 1ms -144.126.209.243 - - [03/Feb/2021:18:49:37 +0000] "GET /system_api.php HTTP/1.1" 404 19 "-" "-" 17 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:38 +0000] "GET /system_api.php HTTP/1.1" 404 19 "-" "-" 18 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:39 +0000] "GET /c/version.js HTTP/1.1" 404 19 "-" "-" 19 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:39 +0000] "GET /c/version.js HTTP/1.1" 404 19 "-" "-" 20 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:40 +0000] "GET /streaming/clients_live.php HTTP/1.1" 404 19 "-" "-" 21 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:40 +0000] "GET /streaming/clients_live.php HTTP/1.1" 404 19 "-" "-" 22 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:41 +0000] "GET /stalker_portal/c/version.js HTTP/1.1" 404 19 "-" "-" 23 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:41 +0000] "GET /stalker_portal/c/version.js HTTP/1.1" 404 19 "-" "-" 24 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:42 +0000] "GET /client_area/ HTTP/1.1" 404 19 "-" "-" 25 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:43 +0000] "GET /client_area/ HTTP/1.1" 404 19 "-" "-" 26 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:44 +0000] "GET /stalker_portal/c/ HTTP/1.1" 404 19 "-" "-" 27 "-" "-" 0ms -144.126.209.243 - - [03/Feb/2021:18:49:44 +0000] "GET /stalker_portal/c/ HTTP/1.1" 404 19 "-" "-" 28 "-" "-" 0ms -83.97.20.29 - - [03/Feb/2021:19:38:22 +0000] "GET / HTTP/1.0" 404 19 "-" "-" 29 "-" "-" 0ms -186.179.112.254 - - [03/Feb/2021:19:46:48 +0000] "GET /.env HTTP/1.1" 404 19 "-" "-" 30 "-" "-" 0ms -186.179.112.254 - - [03/Feb/2021:19:46:49 +0000] "POST / HTTP/1.1" 404 19 "-" "-" 31 "-" "-" 0ms -13.212.104.81 - - [03/Feb/2021:19:51:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 32 "-" "-" 0ms -13.212.104.81 - - [03/Feb/2021:19:52:14 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 33 "-" "-" 0ms -45.83.67.19 - - [03/Feb/2021:20:39:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 34 "-" "-" 0ms -185.224.129.247 - - [03/Feb/2021:20:58:02 +0000] "GET /config/getuser?index=0 HTTP/1.1" 404 19 "-" "-" 35 "-" "-" 2ms -85.16.177.133 - - [03/Feb/2021:21:01:04 +0000] "GET /grafana HTTP/2.0" - - "-" "-" 1 "-" "-" 1ms -85.16.177.133 - - [03/Feb/2021:21:01:05 +0000] "GET /favicon.ico HTTP/2.0" - - "-" "-" 2 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:21:01:08 +0000] "GET /grafana/ HTTP/2.0" - - "-" "-" 3 "-" "-" 0ms -162.142.125.38 - - [03/Feb/2021:21:07:18 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 1ms -162.142.125.38 - - [03/Feb/2021:21:07:19 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:21:43:25 +0000] "GET /grafana HTTP/2.0" 401 17 "-" "-" 1 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:34 +0000] "GET /grafana HTTP/2.0" 404 19 "-" "-" 2 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:34 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 3 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:37 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 4 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:37 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 5 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 8 "api-router@file" "-" 20ms -85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 7 "api-router@file" "-" 46ms -85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 6 "api-router@file" "-" 49ms -85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 10 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 9 "api-router@file" "-" 853ms -85.16.177.133 - admin [03/Feb/2021:21:43:38 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 11 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 12 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 14 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 13 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 16 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 17 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 18 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 19 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 20 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 21 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 22 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 23 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 24 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 25 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 26 "api-router@file" "-" 33ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 27 "api-router@file" "-" 32ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 29 "api-router@file" "-" 26ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 30 "api-router@file" "-" 26ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 33 "api-router@file" "-" 23ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 42 "api-router@file" "-" 15ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 28 "api-router@file" "-" 214ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 32 "api-router@file" "-" 207ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 34 "api-router@file" "-" 205ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 35 "api-router@file" "-" 397ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 31 "api-router@file" "-" 401ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 36 "api-router@file" "-" 397ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 37 "api-router@file" "-" 397ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 38 "api-router@file" "-" 396ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 39 "api-router@file" "-" 396ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 40 "api-router@file" "-" 395ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 41 "api-router@file" "-" 392ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 43 "api-router@file" "-" 389ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 44 "api-router@file" "-" 382ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 46 "api-router@file" "-" 559ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 15 "api-router@file" "-" 1765ms -85.16.177.133 - admin [03/Feb/2021:21:43:39 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 45 "api-router@file" "-" 1655ms -85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 47 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 49 "api-router@file" "-" 9ms -85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 48 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:21:43:41 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 50 "api-router@file" "-" 291ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 51 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 52 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 53 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 54 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 55 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 57 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 58 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 56 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:21:43:42 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 59 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:43:43 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 60 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:43 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 61 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 63 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 64 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 65 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 66 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 68 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 69 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 70 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 71 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 72 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 73 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 74 "api-router@file" "-" 11ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 75 "api-router@file" "-" 11ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 76 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 77 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 78 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 79 "api-router@file" "-" 9ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 81 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 82 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 85 "api-router@file" "-" 30ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 94 "api-router@file" "-" 9ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 80 "api-router@file" "-" 81ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 84 "api-router@file" "-" 65ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 86 "api-router@file" "-" 164ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 83 "api-router@file" "-" 181ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 87 "api-router@file" "-" 163ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 88 "api-router@file" "-" 163ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 89 "api-router@file" "-" 156ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 90 "api-router@file" "-" 156ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 91 "api-router@file" "-" 155ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 92 "api-router@file" "-" 155ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 93 "api-router@file" "-" 150ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 95 "api-router@file" "-" 149ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 96 "api-router@file" "-" 142ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 98 "api-router@file" "-" 340ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 67 "api-router@file" "-" 1116ms -85.16.177.133 - admin [03/Feb/2021:21:43:51 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 97 "api-router@file" "-" 941ms -85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 100 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 101 "api-router@file" "-" 17ms -85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 102 "api-router@file" "-" 13ms -85.16.177.133 - admin [03/Feb/2021:21:43:52 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 103 "api-router@file" "-" 634ms -85.16.177.133 - admin [03/Feb/2021:21:43:53 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 104 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:53 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 105 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 107 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 108 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 110 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 111 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 109 "api-router@file" "-" 9ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 112 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:43:54 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 113 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:43:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:00 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:21:44:02 +0000] "GET /dashboard/ HTTP/2.0" 401 17 "-" "-" 116 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:04 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 8ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 120 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 123 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 125 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 126 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 127 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 128 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 129 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 130 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 131 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 132 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 133 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 134 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 135 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 136 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 138 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 139 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 142 "api-router@file" "-" 8ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 151 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 122 "api-router@file" "-" 68ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 137 "api-router@file" "-" 22ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 141 "api-router@file" "-" 174ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 121 "api-router@file" "-" 229ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 140 "api-router@file" "-" 175ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 143 "api-router@file" "-" 174ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 144 "api-router@file" "-" 173ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 145 "api-router@file" "-" 169ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 146 "api-router@file" "-" 168ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 147 "api-router@file" "-" 168ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 148 "api-router@file" "-" 167ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 149 "api-router@file" "-" 167ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 150 "api-router@file" "-" 166ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 152 "api-router@file" "-" 341ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 153 "api-router@file" "-" 339ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 155 "api-router@file" "-" 325ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 156 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:08 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 124 "api-router@file" "-" 2060ms -85.16.177.133 - admin [03/Feb/2021:21:44:09 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 154 "api-router@file" "-" 1984ms -85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 157 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 158 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 159 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:44:11 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 160 "api-router@file" "-" 346ms -85.16.177.133 - - [03/Feb/2021:21:44:12 +0000] "GET /api/version HTTP/2.0" 401 17 "-" "-" 161 "api-router@file" "-" 0ms -85.16.177.133 - - [03/Feb/2021:21:44:12 +0000] "GET /api/entrypoints HTTP/2.0" 401 17 "-" "-" 162 "api-router@file" "-" 0ms -85.16.177.133 - - [03/Feb/2021:21:44:12 +0000] "GET /api/overview HTTP/2.0" 401 17 "-" "-" 163 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 164 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 165 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 166 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 167 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 168 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 169 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 170 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 171 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:21:44:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 172 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:13 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 173 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:21:44:13 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 174 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:14 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 175 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 176 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 177 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:19 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 178 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 179 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 180 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:21:44:24 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 181 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:21:44:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 182 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:22:01:13 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:01:13 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET / HTTP/2.0" 302 37 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 11ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 16ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 4ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 58ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 437ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 944ms -85.16.177.133 - - [03/Feb/2021:22:01:25 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 137ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 1516ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 8007ms -85.16.177.133 - - [03/Feb/2021:22:01:23 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 12137ms -85.16.177.133 - - [03/Feb/2021:22:01:37 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 154ms -85.16.177.133 - - [03/Feb/2021:22:01:37 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 494ms -85.16.177.133 - - [03/Feb/2021:22:01:37 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 1ms -74.120.14.53 - - [03/Feb/2021:22:04:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 16 "-" "-" 0ms -74.120.14.53 - - [03/Feb/2021:22:04:56 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 17 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:17:55 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 44ms -85.16.177.133 - - [03/Feb/2021:22:17:55 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 212ms -85.16.177.133 - - [03/Feb/2021:22:18:00 +0000] "POST /grafana/login HTTP/2.0" 200 49 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 89ms -85.16.177.133 - - [03/Feb/2021:22:18:01 +0000] "GET /grafana/ HTTP/2.0" 200 31089 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 18ms -85.16.177.133 - - [03/Feb/2021:22:18:01 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 249ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 8ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 16ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 720 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 36ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 320ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 653ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 6ms -85.16.177.133 - - [03/Feb/2021:22:18:02 +0000] "GET /grafana/public/img/fav32.png HTTP/2.0" 200 1118 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 1ms -85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 13ms -85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 16ms -85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 4ms -85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 2ms -85.16.177.133 - - [03/Feb/2021:22:18:03 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 2ms -205.169.39.52 - - [03/Feb/2021:22:18:35 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 18 "-" "-" 1ms -85.16.177.133 - - [03/Feb/2021:22:18:52 +0000] "GET /dashboard HTTP/2.0" 401 17 "-" "-" 19 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:18:57 +0000] "GET /dashboard HTTP/2.0" 404 19 "-" "-" 20 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:18:57 +0000] "GET /favicon.ico HTTP/2.0" 404 19 "-" "-" 21 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 22 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 23 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 26 "api-router@file" "-" 29ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 28 "api-router@file" "-" 20ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 29 "api-router@file" "-" 19ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 30 "api-router@file" "-" 14ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 31 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 32 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 33 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 34 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 35 "api-router@file" "-" 29ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 36 "api-router@file" "-" 29ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 37 "api-router@file" "-" 25ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 38 "api-router@file" "-" 24ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 39 "api-router@file" "-" 24ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 41 "api-router@file" "-" 20ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 42 "api-router@file" "-" 19ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 45 "api-router@file" "-" 16ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 54 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 25 "api-router@file" "-" 64ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 24 "api-router@file" "-" 187ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 40 "api-router@file" "-" 128ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 44 "api-router@file" "-" 122ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 46 "api-router@file" "-" 120ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 47 "api-router@file" "-" 275ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 43 "api-router@file" "-" 280ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 48 "api-router@file" "-" 274ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 49 "api-router@file" "-" 273ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 50 "api-router@file" "-" 272ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 51 "api-router@file" "-" 271ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 52 "api-router@file" "-" 270ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 53 "api-router@file" "-" 269ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 55 "api-router@file" "-" 266ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 56 "api-router@file" "-" 264ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 58 "api-router@file" "-" 654ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 27 "api-router@file" "-" 1878ms -85.16.177.133 - admin [03/Feb/2021:22:19:00 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 57 "api-router@file" "-" 1824ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 59 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 60 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 61 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 62 "api-router@file" "-" 332ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 63 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 64 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 66 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 67 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 68 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 69 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:03 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 70 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:04 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 71 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:04 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 72 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:04 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 73 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 77 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 79 "api-router@file" "-" 8ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 81 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 78 "api-router@file" "-" 9ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 80 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 82 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 84 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:19 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 85 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:20 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 86 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:24 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:24 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 88 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:29 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 90 "api-router@file" "-" 13ms -85.16.177.133 - admin [03/Feb/2021:22:19:34 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 92 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:39 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:39 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 94 "api-router@file" "-" 15ms -85.16.177.133 - admin [03/Feb/2021:22:19:44 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 7ms -85.16.177.133 - admin [03/Feb/2021:22:19:44 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 96 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 97 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 99 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 100 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:46 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 98 "api-router@file" "-" 8ms -85.16.177.133 - admin [03/Feb/2021:22:19:47 +0000] "GET /api/http/routers/grafana-router@file HTTP/2.0" 200 219 "-" "-" 101 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:47 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 102 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:47 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 103 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:49 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:54 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:19:58 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 106 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:19:58 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 108 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:19:59 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 109 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:20:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 113 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 114 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:13 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 116 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:14 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 117 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:18 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 119 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:21 +0000] "GET /api/http/routers/influxdb-router@file HTTP/2.0" 200 222 "-" "-" 120 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:21 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 121 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:21 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 122 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 123 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 126 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 127 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 128 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 129 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/statics/providers/internal.svg HTTP/2.0" 200 3681 "-" "-" 130 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 131 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:34 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 132 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 133 "api-router@file" "-" 12ms -85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 134 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 183 "-" "-" 135 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 136 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:20:36 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 137 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/http/services?search=&status=&per_page=8&page=1 HTTP/2.0" 200 1573 "-" "-" 138 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 139 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 140 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 141 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 142 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:43 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 143 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:20:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 144 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 145 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 146 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /api/http/services/influxdb@file HTTP/2.0" 200 341 "-" "-" 147 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 148 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /api/http/routers/influxdb-router@docker HTTP/2.0" 200 335 "-" "-" 149 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:46 +0000] "GET /api/http/routers/influxdb-router@file HTTP/2.0" 200 222 "-" "-" 150 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 151 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/http/middlewares?search=&status=&per_page=1&page=1 HTTP/2.0" 200 183 "-" "-" 152 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 153 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 183 "-" "-" 154 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:20:48 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 155 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET / HTTP/2.0" 302 37 "-" "-" 1 "grafana-router@file" "http://grafana:3000" 25ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/login HTTP/2.0" 302 32 "-" "-" 2 "grafana-router@file" "http://grafana:3000" 30ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/ HTTP/2.0" 200 31089 "-" "-" 3 "grafana-router@file" "http://grafana:3000" 22ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 4 "grafana-router@file" "http://grafana:3000" 7ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 6 "grafana-router@file" "http://grafana:3000" 20ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 7 "grafana-router@file" "http://grafana:3000" 492ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 5 "grafana-router@file" "http://grafana:3000" 795ms -85.16.177.133 - - [03/Feb/2021:22:24:24 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 11 "grafana-router@file" "http://grafana:3000" 176ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 9 "grafana-router@file" "http://grafana:3000" 1728ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 8 "grafana-router@file" "http://grafana:3000" 7281ms -85.16.177.133 - - [03/Feb/2021:22:24:22 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 10 "grafana-router@file" "http://grafana:3000" 11870ms -85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 33274 "-" "-" 13 "grafana-router@file" "http://grafana:3000" 20ms -85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 15 "grafana-router@file" "http://grafana:3000" 17ms -85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/build/default~DashboardPage~SoloPanelPage~explore.5e3a92e1d96185a124d4.js HTTP/2.0" 200 19366 "-" "-" 12 "grafana-router@file" "http://grafana:3000" 36ms -85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/avatar/46d229b033af06a191ff2267bca9ae56 HTTP/2.0" 200 720 "-" "-" 16 "grafana-router@file" "http://grafana:3000" 32ms -85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/public/build/DashboardPage.5e3a92e1d96185a124d4.js HTTP/2.0" 200 336396 "-" "-" 14 "grafana-router@file" "http://grafana:3000" 452ms -85.16.177.133 - - [03/Feb/2021:22:24:36 +0000] "GET /grafana/api/dashboards/home HTTP/2.0" 200 1332 "-" "-" 17 "grafana-router@file" "http://grafana:3000" 9ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/search?limit=1 HTTP/2.0" 200 2 "-" "-" 19 "grafana-router@file" "http://grafana:3000" 9ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/plugins?embedded=0&core=0 HTTP/2.0" 200 2 "-" "-" 20 "grafana-router@file" "http://grafana:3000" 2ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/public/build/static/img/Onboarding_Panel_dark.da2034ff.svg HTTP/2.0" 200 13911 "-" "-" 21 "grafana-router@file" "http://grafana:3000" 86ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/public/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/2.0" 200 77160 "-" "-" 22 "grafana-router@file" "http://grafana:3000" 97ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/search?limit=30 HTTP/2.0" 200 2 "-" "-" 23 "grafana-router@file" "http://grafana:3000" 1ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/api/search?limit=30&starred=true HTTP/2.0" 200 2 "-" "-" 24 "grafana-router@file" "http://grafana:3000" 1ms -85.16.177.133 - - [03/Feb/2021:22:24:37 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 18 "grafana-router@file" "http://grafana:3000" 617ms -85.16.177.133 - - [03/Feb/2021:22:26:30 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 1 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:26:30 +0000] "GET /favicon.ico HTTP/1.1" 404 19 "-" "-" 2 "-" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:26:36 +0000] "GET / HTTP/2.0" 401 17 "-" "-" 3 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 4 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 5 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 7 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 8 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 6 "api-router@file" "-" 106ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 10 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 11 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 12 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 13 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 14 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 15 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 16 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 17 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 18 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 19 "api-router@file" "-" 17ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 20 "api-router@file" "-" 16ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 21 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 24 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 25 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 27 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 36 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 23 "api-router@file" "-" 152ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 26 "api-router@file" "-" 149ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 28 "api-router@file" "-" 289ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 22 "api-router@file" "-" 295ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 29 "api-router@file" "-" 282ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 30 "api-router@file" "-" 281ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 31 "api-router@file" "-" 281ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 32 "api-router@file" "-" 280ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 33 "api-router@file" "-" 276ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 34 "api-router@file" "-" 275ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 35 "api-router@file" "-" 275ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 37 "api-router@file" "-" 268ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 38 "api-router@file" "-" 267ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 9 "api-router@file" "-" 731ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 40 "api-router@file" "-" 408ms -85.16.177.133 - admin [03/Feb/2021:22:26:41 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 39 "api-router@file" "-" 861ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 41 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 42 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 44 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 45 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 47 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 48 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 46 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 49 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:26:43 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 50 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:44 +0000] "GET /dashboard/statics/icons/favicon.ico HTTP/2.0" 200 10134 "-" "-" 51 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 52 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:47 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 53 "api-router@file" "-" 8ms -85.16.177.133 - admin [03/Feb/2021:22:26:48 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 54 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/http/routers/grafana-router@docker HTTP/2.0" 200 330 "-" "-" 55 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/mqtt HTTP/2.0" 200 171 "-" "-" 56 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/web HTTP/2.0" 200 168 "-" "-" 57 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 58 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/entrypoints/websockets HTTP/2.0" 200 177 "-" "-" 59 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/http/middlewares/grafana-mw@file HTTP/2.0" 404 52 "-" "-" 60 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:26:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:57 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 63 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 64 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:26:58 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 65 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:27:00 +0000] "GET /api/http/routers/grafana-router@docker HTTP/2.0" 200 330 "-" "-" 66 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/mqtt HTTP/2.0" 200 171 "-" "-" 67 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/web HTTP/2.0" 200 168 "-" "-" 68 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 69 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/entrypoints/websockets HTTP/2.0" 200 177 "-" "-" 70 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:27:01 +0000] "GET /api/http/middlewares/grafana-mw@file HTTP/2.0" 404 52 "-" "-" 71 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:27:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 72 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:27:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 78 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:27:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:27:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:27:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:27:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:42:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 1 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:42:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 2 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:42:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 3 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 4 "api-router@file" "-" 1ms -189.159.79.184 - - [03/Feb/2021:22:43:06 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 5 "-" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:09 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 6 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 7 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 8 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:22:43:20 +0000] "GET / HTTP/2.0" 401 17 "-" "-" 9 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 10 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET / HTTP/2.0" 302 34 "-" "-" 11 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/ HTTP/2.0" 200 2708 "-" "-" 12 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/runtime.be240131.js HTTP/2.0" 200 3982 "-" "-" 15 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/app.4b9719d8.js HTTP/2.0" 200 36308 "-" "-" 14 "api-router@file" "-" 33ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/284ee262.162ea886.css HTTP/2.0" 200 3201 "-" "-" 17 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/2b31cb68.b69a4f0a.css HTTP/2.0" 200 497 "-" "-" 18 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/2fc4e300.15d951f1.css HTTP/2.0" 200 2819 "-" "-" 19 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/3e3ce03c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 20 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/46fd955e.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 21 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/491024e9.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 22 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/52875482.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 23 "api-router@file" "-" 13ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/6d73c73c.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 24 "api-router@file" "-" 11ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/70aa9655.0e433876.css HTTP/2.0" 200 0 "-" "-" 25 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/77d911b4.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 26 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/ad8e29f4.b5aeb305.css HTTP/2.0" 200 662 "-" "-" 27 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/b34404c8.9b22e80f.css HTTP/2.0" 200 378 "-" "-" 28 "api-router@file" "-" 26ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/d2880142.dd7c0af2.css HTTP/2.0" 200 3153 "-" "-" 30 "api-router@file" "-" 23ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/dba10db0.350172b4.css HTTP/2.0" 200 1027 "-" "-" 31 "api-router@file" "-" 18ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/2d21e8fd.c00ac0e6.js HTTP/2.0" 200 701 "-" "-" 34 "api-router@file" "-" 11ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/ad8e29f4.e68646e2.js HTTP/2.0" 200 3068 "-" "-" 43 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/app.03db6149.css HTTP/2.0" 200 204627 "-" "-" 13 "api-router@file" "-" 178ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/css/c8abb44a.ad36de1b.css HTTP/2.0" 200 6803 "-" "-" 29 "api-router@file" "-" 98ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/2b31cb68.af1fdfbd.js HTTP/2.0" 200 12338 "-" "-" 33 "api-router@file" "-" 329ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/2fc4e300.35f36a4b.js HTTP/2.0" 200 16288 "-" "-" 35 "api-router@file" "-" 323ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/3e3ce03c.293f4729.js HTTP/2.0" 200 6859 "-" "-" 36 "api-router@file" "-" 323ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/46fd955e.5ae3567e.js HTTP/2.0" 200 6869 "-" "-" 37 "api-router@file" "-" 322ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/491024e9.fca48131.js HTTP/2.0" 200 6857 "-" "-" 38 "api-router@file" "-" 322ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/52875482.65e645a6.js HTTP/2.0" 200 6873 "-" "-" 39 "api-router@file" "-" 321ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/6d73c73c.935c393f.js HTTP/2.0" 200 6857 "-" "-" 40 "api-router@file" "-" 321ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/70aa9655.2470591c.js HTTP/2.0" 200 4593 "-" "-" 41 "api-router@file" "-" 321ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/77d911b4.40543ff4.js HTTP/2.0" 200 6871 "-" "-" 42 "api-router@file" "-" 320ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/b34404c8.7a4b9be8.js HTTP/2.0" 200 6917 "-" "-" 44 "api-router@file" "-" 315ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/284ee262.91e29d10.js HTTP/2.0" 200 36979 "-" "-" 32 "api-router@file" "-" 792ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/c8abb44a.11069c8c.js HTTP/2.0" 200 21213 "-" "-" 45 "api-router@file" "-" 777ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/dba10db0.4b33a696.js HTTP/2.0" 200 11047 "-" "-" 47 "api-router@file" "-" 776ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/vendor.569cebaa.js HTTP/2.0" 200 506585 "-" "-" 16 "api-router@file" "-" 2172ms -85.16.177.133 - admin [03/Feb/2021:22:43:25 +0000] "GET /dashboard/js/d2880142.1586712d.js HTTP/2.0" 200 463020 "-" "-" 46 "api-router@file" "-" 2084ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 48 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 49 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/entrypoints HTTP/2.0" 200 694 "-" "-" 50 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 51 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/Eva-Icons.5073ed91.woff2 HTTP/2.0" 200 25896 "-" "-" 52 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/nunito-v11-latin-600.b10ecee2.woff2 HTTP/2.0" 200 20084 "-" "-" 53 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.0509ab09.woff2 HTTP/2.0" 200 60840 "-" "-" 54 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/nunito-v11-latin-700.91ae827a.woff2 HTTP/2.0" 200 20128 "-" "-" 55 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:28 +0000] "GET /dashboard/fonts/nunito-v11-latin-regular.de6068bf.woff2 HTTP/2.0" 200 19976 "-" "-" 56 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:29 +0000] "GET /dashboard/statics/providers/docker.svg HTTP/2.0" 200 1808 "-" "-" 57 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:29 +0000] "GET /dashboard/statics/providers/file.svg HTTP/2.0" 200 644 "-" "-" 58 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 60 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:43:32 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 61 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:33 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 62 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:33 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 63 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 65 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 66 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:34 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 67 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/http/routers/grafana-router@docker HTTP/2.0" 200 330 "-" "-" 69 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/mqtt HTTP/2.0" 200 171 "-" "-" 70 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/web HTTP/2.0" 200 168 "-" "-" 71 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/web-secure HTTP/2.0" 200 176 "-" "-" 72 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/entrypoints/websockets HTTP/2.0" 200 177 "-" "-" 73 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:37 +0000] "GET /api/http/middlewares/grafana-mw@file HTTP/2.0" 404 52 "-" "-" 74 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 78 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:43:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:43:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:43:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 84 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 90 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:44:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:44:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:44:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 96 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 102 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:44:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:44:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:44:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:45:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 108 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:45:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 11ms -85.16.177.133 - admin [03/Feb/2021:22:45:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:45:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:24 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 118 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:24 +0000] "GET /dashboard/statics/providers/internal.svg HTTP/2.0" 200 3681 "-" "-" 119 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:24 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 120 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1844 "-" "-" 121 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 122 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:45:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 123 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:45:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:45:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:22:45:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1844 "-" "-" 126 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 698 "-" "-" 1 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 2 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 3 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 4 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 5 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:46:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 6 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:46:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 7 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:46:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 8 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 9 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 10 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 11 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 12 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 13 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:46:34 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 14 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:46:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 15 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 16 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:39 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 17 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 18 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 19 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 20 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:46 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 21 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 22 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:46:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 23 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 24 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 25 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 26 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 27 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:46:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 28 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:46:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 29 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 30 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 31 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 32 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 33 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 34 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 35 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 36 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 37 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 38 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 39 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:47:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 40 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 41 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 42 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 44 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 45 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 46 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 47 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 48 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 49 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 50 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 51 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 52 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 53 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 54 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 55 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 56 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 57 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 58 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 60 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 63 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:47:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:47:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 66 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 67 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 69 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 70 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:48:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 71 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 72 "api-router@file" "-" 7ms -85.16.177.133 - admin [03/Feb/2021:22:48:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 74 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 75 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 78 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 81 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 84 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:48:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 87 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 90 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 93 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 96 "api-router@file" "-" 11ms -85.16.177.133 - admin [03/Feb/2021:22:48:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:48:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 99 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:48:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 102 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 105 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 108 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 111 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:49:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 114 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 117 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:49:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 120 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 121 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 122 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 123 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 126 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:49:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 127 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 128 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 129 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 130 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 131 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:51 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 132 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:52 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 133 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 134 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:56 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 135 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:49:57 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 136 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:49:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 137 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:50:01 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 138 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:02 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 139 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 140 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:06 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 141 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:07 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 142 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 143 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:11 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 144 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:50:12 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 145 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 146 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:16 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 147 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:17 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 148 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 149 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:21 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 150 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 151 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 152 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 153 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 154 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 155 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:31 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 156 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:32 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 157 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 158 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:36 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 159 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:37 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 160 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:50:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 161 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:41 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 162 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:42 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 163 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:50:44 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 164 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:50:46 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 165 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:50:47 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 166 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:22 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 1 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 2 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:26 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 3 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:27 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 4 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 5 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/version HTTP/2.0" 200 43 "-" "-" 7 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 8 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 9 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:29 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 10 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:31 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=1 HTTP/2.0" 200 183 "-" "-" 11 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:31 +0000] "GET /api/http/middlewares?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 12 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:32 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1656 "-" "-" 13 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 14 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 15 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 16 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1573 "-" "-" 17 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:51:33 +0000] "GET /api/http/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 18 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:51:34 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 19 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:36 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 20 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:36 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 21 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 22 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:39 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 23 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:41 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 24 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 25 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:44 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 26 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:46 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 27 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 28 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:49 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 29 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:51 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 30 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 31 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:54 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 32 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:55 +0000] "GET /api/tcp/services?search=&status=&per_page=10&page=1 HTTP/2.0" 200 408 "-" "-" 33 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:55 +0000] "GET /api/tcp/services?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 34 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:56 +0000] "GET /api/tcp/routers?search=&status=&per_page=2&page=1 HTTP/2.0" 200 478 "-" "-" 35 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:56 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 478 "-" "-" 36 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:56 +0000] "GET /api/tcp/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 37 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:57 +0000] "GET /api/http/routers?search=&status=&per_page=7&page=1 HTTP/2.0" 200 1656 "-" "-" 38 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:51:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=1 HTTP/2.0" 200 1656 "-" "-" 39 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:57 +0000] "GET /api/http/routers?search=&status=&per_page=10&page=2 HTTP/2.0" 400 53 "-" "-" 40 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:51:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 41 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:51:59 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 42 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:52:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 43 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:52:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 44 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET / HTTP/2.0" 302 37 "-" "-" 45 "grafana-router@file" "http://grafana:3000" 12ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 46 "grafana-router@file" "http://grafana:3000" 15ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/fonts/roboto/RxZJdnzeo3R5zSexge8UUVtXRa8TVwTICgirnJhmVJw.woff2 HTTP/2.0" 200 14748 "-" "-" 47 "grafana-router@file" "http://grafana:3000" 2ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/runtime.5e3a92e1d96185a124d4.js HTTP/2.0" 200 3684 "-" "-" 49 "grafana-router@file" "http://grafana:3000" 14ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/grafana.dark.5e3a92e1d96185a124d4.css HTTP/2.0" 200 305673 "-" "-" 48 "grafana-router@file" "http://grafana:3000" 33ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/angular~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 177721 "-" "-" 50 "grafana-router@file" "http://grafana:3000" 115ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/fonts/roboto/CWB0XYA8bzo0kSThX0UTuA.woff2 HTTP/2.0" 200 14600 "-" "-" 54 "grafana-router@file" "http://grafana:3000" 272ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/moment~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 265623 "-" "-" 52 "grafana-router@file" "http://grafana:3000" 669ms -85.16.177.133 - admin [03/Feb/2021:22:52:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 55 "api-router@file" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 2789642 "-" "-" 51 "grafana-router@file" "http://grafana:3000" 5788ms -85.16.177.133 - admin [03/Feb/2021:22:52:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 56 "api-router@file" "-" 1ms -85.16.177.133 - - [03/Feb/2021:22:52:10 +0000] "GET /grafana/public/build/vendors~app.5e3a92e1d96185a124d4.js HTTP/2.0" 200 5809199 "-" "-" 53 "grafana-router@file" "http://grafana:3000" 10812ms -85.16.177.133 - - [03/Feb/2021:22:52:23 +0000] "GET /grafana/public/img/login_background_dark.svg HTTP/2.0" 200 494730 "-" "-" 57 "grafana-router@file" "http://grafana:3000" 12ms -85.16.177.133 - - [03/Feb/2021:22:52:23 +0000] "GET /grafana/public/img/grafana_icon.svg HTTP/2.0" 200 5690 "-" "-" 58 "grafana-router@file" "http://grafana:3000" 2ms -85.16.177.133 - admin [03/Feb/2021:22:52:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 59 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:52:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 60 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:52:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 61 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:52:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 62 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:52:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 63 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:52:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 64 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:52:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 65 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:52:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 66 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 67 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 68 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 69 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 70 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 71 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 72 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:53:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 73 "api-router@file" "-" 2ms -205.169.39.49 - - [03/Feb/2021:22:53:37 +0000] "GET / HTTP/1.1" 404 19 "-" "-" 74 "-" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:22:53:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 75 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:22:53:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 76 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 77 "api-router@file" "-" 1ms -67.205.165.53 - - [03/Feb/2021:22:53:52 +0000] "GET / HTTP/2.0" 404 19 "-" "-" 78 "influxdb-router@file" "http://influxdb:8086" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 79 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:53:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 80 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 81 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:54:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 82 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 83 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 84 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:54:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 85 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 86 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:54:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 87 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 88 "api-router@file" "-" 9ms -85.16.177.133 - admin [03/Feb/2021:22:54:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 89 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 90 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 91 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:54:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 92 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 93 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:55:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 94 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 95 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 96 "api-router@file" "-" 2ms -85.16.177.133 - admin [03/Feb/2021:22:55:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 97 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 98 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 99 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 100 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 101 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 102 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 103 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:55:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 104 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 105 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 106 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:56:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 107 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 108 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 109 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 110 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 111 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 112 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 113 "api-router@file" "-" 15ms -85.16.177.133 - admin [03/Feb/2021:22:56:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 114 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 115 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:56:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 116 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 117 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:57:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 118 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 119 "api-router@file" "-" 0ms -85.16.177.133 - - [03/Feb/2021:22:57:15 +0000] "GET /grafana/login HTTP/2.0" 200 27152 "-" "-" 120 "grafana-router@file" "http://grafana:3000" 19ms -85.16.177.133 - admin [03/Feb/2021:22:57:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 121 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 122 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 123 "api-router@file" "-" 5ms -85.16.177.133 - admin [03/Feb/2021:22:57:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 124 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 125 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:22:57:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 126 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 127 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:57:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 128 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:57:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 129 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 130 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 131 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 132 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 133 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 134 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 135 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 136 "api-router@file" "-" 6ms -85.16.177.133 - admin [03/Feb/2021:22:58:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 137 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 138 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 139 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 140 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:58:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 141 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 142 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 143 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 144 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 145 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 146 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 147 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 148 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 149 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 150 "api-router@file" "-" 10ms -85.16.177.133 - admin [03/Feb/2021:22:59:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 151 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 152 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:22:59:58 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 153 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:03 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 154 "api-router@file" "-" 3ms -85.16.177.133 - admin [03/Feb/2021:23:00:08 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 155 "api-router@file" "-" 4ms -85.16.177.133 - admin [03/Feb/2021:23:00:13 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 156 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:23:00:18 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 157 "api-router@file" "-" 0ms -85.16.177.133 - admin [03/Feb/2021:23:00:23 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 158 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:28 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 159 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:33 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 160 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:38 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 161 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:43 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 162 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:48 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 163 "api-router@file" "-" 1ms -85.16.177.133 - admin [03/Feb/2021:23:00:53 +0000] "GET /api/overview HTTP/2.0" 200 450 "-" "-" 164 "api-router@file" "-" 1ms From 931626aa361fc779a809b3b96efee36c1f0818c1 Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Fri, 5 Feb 2021 16:12:44 +0100 Subject: [PATCH 18/19] selfsigned reverted --- selfsigned/certs/.gitkeep | 0 selfsigned/docker-compose.selfsigned.yml | 116 +++++++++++++ selfsigned/docker-compose.yml | 111 ------------- selfsigned/generate-certs.sh | 155 ++++++++++++++++++ selfsigned/mosquitto/config/mosquitto.conf | 12 +- selfsigned/selfsigned.env | 16 +- selfsigned/telegraf/telegraf.toml | 12 +- .../configurations/middlewares-http.toml | 9 + .../traefik/configurations/routers-http.toml | 13 +- .../traefik/configurations/routers-tcp.toml | 10 +- .../traefik/configurations/services-http.toml | 6 +- .../traefik/configurations/services-tcp.toml | 4 +- selfsigned/traefik/configurations/tls.toml | 35 ++++ selfsigned/traefik/traefik.toml | 24 ++- 14 files changed, 368 insertions(+), 155 deletions(-) create mode 100644 selfsigned/certs/.gitkeep create mode 100644 selfsigned/docker-compose.selfsigned.yml delete mode 100644 selfsigned/docker-compose.yml create mode 100644 selfsigned/generate-certs.sh create mode 100644 selfsigned/traefik/configurations/tls.toml diff --git a/selfsigned/certs/.gitkeep b/selfsigned/certs/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/selfsigned/docker-compose.selfsigned.yml b/selfsigned/docker-compose.selfsigned.yml new file mode 100644 index 0000000..a789342 --- /dev/null +++ b/selfsigned/docker-compose.selfsigned.yml @@ -0,0 +1,116 @@ +version: "3" + +services: + traefik: + image: traefik:v2.3 + container_name: traefik + restart: always + networks: + - "iotstack" + ports: + - "80:80" + # HTTPS + - "443:443" + # MQTT + - "8883:8883" + - "8884:8884" + depends_on: + # Let every other service start before traefik + - mosquitto + - grafana + - influxdb + - telegraf + volumes: + # Traefik Static Configuration + - ./traefik/traefik.toml:/etc/traefik/traefik.toml + - ./traefik/log/access.log:/log/access.log + # Traefik Dynamic Configuration + - ./traefik/configurations:/etc/traefik/configurations + # SSL Certificates + - ./certs:/etc/ssl/certs + # Docker Provider via Socket + - /var/run/docker.sock:/var/run/docker.sock:ro + labels: + - "traefik.enable=true" + - "traefik.http.routers.api-router=api-router@file" + - "traefik.http.routers.traefik-http-router.service=api@internal" + influxdb: + image: influxdb + container_name: influxdb + env_file: selfsigned.env + volumes: + - ./certs/influxdb:/etc/ssl/influxdb + - influxdb_data:/var/lib/influxdb + networks: + - "iotstack" + labels: + - "traefik.enable=true" + - "traefik.http.routers.influxdb-router=influxdb-router@file" + - "traefik.http.routers.influxdb-router.middlewares=influxdb-mw@file" + - "traefik.http.routers.influxdb-router.service=influxdb@file" + + mosquitto: + image: eclipse-mosquitto + container_name: mosquitto + volumes: + - ./certs/mqtt:/mosquitto/config/certs + - ./mosquitto/config:/mosquitto/config + - ./mosquitto/log:/mosquitto/log + - ./mosquitto/data:/mosquitto/data + user: "${USER_ID}:${GRP_ID}" + expose: + - 8883 + - 8884 + links: + - telegraf + restart: always + networks: + - "iotstack" + labels: + - "traefik.enable=true" + # TCP Routers for MQTT and Websockets + - "traefik.tcp.routers.mqtt-router=mqtt-router@file" + - "traefik.tcp.routers.mqtt-websockets-router=mqtt-websockets-router@file" + # TCP Services for MQTT and Websockets + - "traefik.tcp.services.mosquitto=mosquitto@file" + - "traefik.tcp.services.mosquitto-ws=mosquitto-ws@file" + + telegraf: + image: telegraf + container_name: telegraf + links: + - influxdb + env_file: selfsigned.env + volumes: + - ./certs/mqtt:/etc/telegraf + - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro + networks: + - "iotstack" + labels: + - "traefik.enable=false" + + grafana: + image: grafana/grafana + container_name: grafana + env_file: selfsigned.env + user: "472" + links: + - influxdb + volumes: + - grafana_data:/var/lib/grafana + - ./certs/grafana:/etc/ssl/certs + networks: + - "iotstack" + labels: + - "traefik.enable=true" + - "traefik.http.routers.grafana-router=grafana-router@file" + - "traefik.http.routers.grafana-router.middlewares=grafana-mw@file" + - "traefik.http.routers.grafana-router.service=grafana@file" + +volumes: + influxdb_data: + grafana_data: + +networks: + iotstack: + external: true diff --git a/selfsigned/docker-compose.yml b/selfsigned/docker-compose.yml deleted file mode 100644 index 0e903f0..0000000 --- a/selfsigned/docker-compose.yml +++ /dev/null @@ -1,111 +0,0 @@ -version: "3" - -services: - traefik: - image: traefik:v2.2 - container_name: traefik - - restart: always - networks: - - "iotstack" - ports: - - "80:80" - # HTTPS - - "443:443" - # MQTT - - "8883:1883" - - "8884:1884" - depends_on: - # Let every other service start before traefik - - mosquitto - - grafana - - influxdb - - telegraf - volumes: - # Traefik Static Configuration - - ./traefik/traefik.toml:/etc/traefik/traefik.toml - - ./traefik/log/access.log:/log/access.log - # Traefik Dynamic Configuration - - ./traefik/configurations:/etc/traefik/configurations - # SSL Certificates - - "./letsencrypt:/letsencrypt" - # Docker Provider via Socket - - /var/run/docker.sock:/var/run/docker.sock:ro - labels: - - "traefik.enable=true" - - "traefik.http.routers.api-router=api-router@file" - - "traefik.http.routers.traefik-http-router.service=api@internal" - influxdb: - image: influxdb - container_name: influxdb - env_file: selfsigned.env - volumes: - - influxdb_data:/var/lib/influxdb - networks: - - "iotstack" - labels: - - "traefik.enable=true" - - "traefik.http.routers.influxdb-router=influxdb-router@file" - - "traefik.http.routers.influxdb-router.service=influxdb@file" - - mosquitto: - image: eclipse-mosquitto - container_name: mosquitto - volumes: - - ./mosquitto/config:/mosquitto/config - - ./mosquitto/log:/mosquitto/log - - ./mosquitto/data:/mosquitto/data - user: "${USER_ID}:${GRP_ID}" - expose: - - 1883 - - 1884 - links: - - telegraf - restart: always - networks: - - "iotstack" - labels: - - "traefik.enable=true" - # TCP Routers for MQTT and Websockets - - "traefik.tcp.routers.mqtt-router=mqtt-router@file" - - "traefik.tcp.routers.mqtt-websockets-router=mqtt-websockets-router@file" - # TCP Services for MQTT and Websockets - - "traefik.tcp.services.mosquitto=mosquitto@file" - - "traefik.tcp.services.mosquitto-ws=mosquitto-ws@file" - - telegraf: - image: telegraf - container_name: telegraf - links: - - influxdb - env_file: selfsigned.env - volumes: - - ./telegraf/telegraf.toml:/etc/telegraf/telegraf.conf:ro - networks: - - "iotstack" - labels: - - "traefik.enable=false" - - grafana: - image: grafana/grafana - container_name: grafana - env_file: selfsigned.env - user: "472" - links: - - influxdb - volumes: - - grafana_data:/var/lib/grafana - networks: - - "iotstack" - labels: - - "traefik.enable=true" - - "traefik.http.routers.grafana-router=grafana-router@file" - - "traefik.http.routers.grafana-router.service=grafana@file" - -volumes: - influxdb_data: - grafana_data: - -networks: - iotstack: - external: true diff --git a/selfsigned/generate-certs.sh b/selfsigned/generate-certs.sh new file mode 100644 index 0000000..fbb2bef --- /dev/null +++ b/selfsigned/generate-certs.sh @@ -0,0 +1,155 @@ +#!/bin/bash +#============================================================================ +# FILE: generate-certs.sh +# USAGE: ./generate-certs.sh +# DESCRIPTION: Script to generate self-signed certificates for: +# 1. Certificate Authority (CA) +# 1.1 Domain (localhost) +# 2. InfluxDB +# 3. Mosquitto MQTT Broker +# +#============================================================================ + +CERTSDIR="certs" + +# NOTE: Feel free to change the Geographical/Organizational Information Here +# NOTE: DO NOT change the `OU` or `CN` values + +# Use IP Address for CN +CN=$(hostname -I | awk '{print $1}') + +SUBJECT_CA="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=Certificate Authority" +SUBJECT_DOMAIN="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=DOMAIN/CN=${CN}" +SUBJECT_MQTT_SERVER="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=MQTTSERVER/CN=${CN}" +SUBJECT_INFLUXDB="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=INFLUXDB/CN=${CN}" +SUBJECT_MQTT_CLIENT="/C=DE/ST=Bremen/L=Bremen/O=BIBA/OU=MQTTCLIENT/CN=${CN}" +SUBJECT_GRAFANA="/C=DE/ST=Bremen/L=Bremen/O=TIGUITTO/OU=GRAFANA/CN=${CN}" + + +cd $(pwd)/$CERTSDIR +mkdir mqtt/ +mkdir influxdb/ +mkdir grafana/ # Do not generate Grafana Certificate for time-being + +function generate_ca() { + #=========================================================================== + # Generating Certificate Authority Key Pair + #=========================================================================== + + echo "STEP1: Generating Certificate Authority" + echo $SUBJECT_CA + + openssl req -new -x509 -days 3650 -subj "$SUBJECT_CA" -keyout ca.key -out ca.crt +} + + +function generate_domain_cert() { + #=========================================================================== + # Generating Certificate for Local Domain + #=========================================================================== + echo "Step1.1: Generating Private Key for Local Domain" + + openssl genrsa -out domain.key 2048 + + echo "Step 1.2: Generating A Signing Request for Local Domain Cert" + + openssl req -out domain.csr -key domain.key -subj "$SUBJECT_DOMAIN" -new + + echo "Step 1.3: Sending CSR to the CA" + + openssl x509 -req -in domain.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out domain.crt -days 3650 +} + + +function generate_mqtt_server_cert() { + #=========================================================================== + # Generating Certificate for MQTT Broker + #=========================================================================== + + echo "STEP2: Generating Private Key for MQTT Broker" + + openssl genrsa -out mqtt-server.key 2048 + + echo "STEP2a: Generating a Signing Request for MQTT Broker Cert" + + openssl req -out mqtt-server.csr -key mqtt-server.key -subj "$SUBJECT_MQTT_SERVER" -new + + + echo "STEP2b: Sending CSR to the CA" + + openssl x509 -req -in mqtt-server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out mqtt-server.crt -days 3650 +} + + +function generate_influxdb_cert() { + #=========================================================================== + # Generating Certificate for InfluxDB + #=========================================================================== + + echo "STEP3: Generating Private Key for INFLUXDB" + + openssl genrsa -out influx-server.key 2048 + + echo "STEP3a: Generating a Signing Request for INFLUXDB" + + openssl req -out influx-server.csr -key influx-server.key -subj "$SUBJECT_INFLUXDB" -new + + + echo "STEP3b: Sending CSR to the CA" + + openssl x509 -req -in influx-server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out influx-server.crt -days 3650 +} + + +function generate_mqtt_client_cert () { + #=========================================================================== + # Generating Certificate for MQTT Clients + #=========================================================================== + echo "$SUBJECT_MQTT_CLIENT" + + echo "STEP 4: Generating Private Key for MQTT Client Certificate" + + openssl req -new -nodes -sha256 -subj "$SUBJECT_MQTT_CLIENT" -out mqtt-client.csr -keyout mqtt-client.key + + openssl x509 -req -sha256 -in mqtt-client.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out mqtt-client.crt -days 3650 +} + + +function generate_grafana_cert() { + #=========================================================================== + # Generating Certificate for Grafana + #=========================================================================== + + echo "STEP5: Generating Private Key for GRAFANA" + + openssl genrsa -out grafana-server.key 2048 + + echo "STEP5a: Generating a Signing Request for GRAFANA" + + openssl req -out grafana-server.csr -key grafana-server.key -subj "$SUBJECT_GRAFANA" -new + + openssl x509 -req -in grafana-server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out grafana-server.crt -days 3650 +} + + +generate_ca +generate_domain_cert +generate_mqtt_server_cert +generate_mqtt_client_cert +generate_influxdb_cert +generate_grafana_cert # Do Not Generate Grafana certificate for time-being + +echo "Moving Certificates in to dedicated directories" + +mv mqtt-server.* mqtt/ +mv mqtt-client.* mqtt/ +mv influx-server.* influxdb/ +mv grafana-server.* grafana/ + +echo "Copying the CA Certificate for Mosquitto, InfluxDB, Grafana" + +cp ca.crt mqtt/ +cp ca.crt influxdb/ +cp ca.crt grafana/ + +exit 0 diff --git a/selfsigned/mosquitto/config/mosquitto.conf b/selfsigned/mosquitto/config/mosquitto.conf index e78c379..9b4183d 100644 --- a/selfsigned/mosquitto/config/mosquitto.conf +++ b/selfsigned/mosquitto/config/mosquitto.conf @@ -14,10 +14,20 @@ log_timestamp true log_type all # TLS -listener 1883 +listener 8883 +cafile /mosquitto/config/certs/ca.crt +certfile /mosquitto/config/certs/mqtt-server.crt +keyfile /mosquitto/config/certs/mqtt-server.key +tls_version tlsv1.2 +require_certificate true # Optional: Comment out if not required use_identity_as_username true # Websockets listener 8884 protocol websockets +cafile /mosquitto/config/certs/ca.crt +certfile /mosquitto/config/certs/mqtt-server.crt +keyfile /mosquitto/config/certs/mqtt-server.key +tls_version tlsv1.2 +require_certificate true # Optional: Comment out if not required use_identity_as_username true \ No newline at end of file diff --git a/selfsigned/selfsigned.env b/selfsigned/selfsigned.env index 2458daf..0664afb 100644 --- a/selfsigned/selfsigned.env +++ b/selfsigned/selfsigned.env @@ -2,9 +2,9 @@ INFLUXDB_DB=edge INFLUXDB_HTTP_AUTH_ENABLED=true -#INFLUXDB_HTTP_HTTPS_ENABLED=true -#INFLUXDB_HTTP_HTTPS_CERTIFICATE=/etc/ssl/influxdb/influx-server.crt -#INFLUXDB_HTTP_HTTPS_PRIVATE_KEY=/etc/ssl/influxdb/influx-server.key +INFLUXDB_HTTP_HTTPS_ENABLED=true +INFLUXDB_HTTP_HTTPS_CERTIFICATE=/etc/ssl/influxdb/influx-server.crt +INFLUXDB_HTTP_HTTPS_PRIVATE_KEY=/etc/ssl/influxdb/influx-server.key INFLUXDB_ADMIN_USER=admin INFLUXDB_ADMIN_PASSWORD=tiguitto @@ -20,12 +20,12 @@ INFLUXDB_UDP_DATABASE=traefik # Grafana Environment Variables GF_SECURITY_ADMIN_USER=admin GF_SECURITY_ADMIN_PASSWORD=tiguitto -GF_SERVER_PROTOCOL=http -GF_SERVER_ROOT_URL=http://127.0.0.1:3000/grafana +GF_SERVER_PROTOCOL=https +GF_SERVER_ROOT_URL=https://127.0.0.1:3000/grafana GF_SERVER_SERVE_FROM_SUB_PATH=true -#GF_SERVER_CERT_FILE=/etc/ssl/certs/grafana-server.crt -#GF_SERVER_CERT_KEY=/etc/ssl/certs/grafana-server.key +GF_SERVER_CERT_FILE=/etc/ssl/certs/grafana-server.crt +GF_SERVER_CERT_KEY=/etc/ssl/certs/grafana-server.key # Telegraf Environment Variables TG_MOSQUITTO_USERNAME=subclient -TG_MOSQUITTO_PASSWORD=tiguitto +TG_MOSQUITTO_PASSWORD=tiguitto \ No newline at end of file diff --git a/selfsigned/telegraf/telegraf.toml b/selfsigned/telegraf/telegraf.toml index 9031d89..930c1d0 100644 --- a/selfsigned/telegraf/telegraf.toml +++ b/selfsigned/telegraf/telegraf.toml @@ -16,7 +16,7 @@ # OUTPUT PLUGINS # ############################################################# [[outputs.influxdb]] - urls = [ "http://influxdb:8086" ] + urls = [ "https://influxdb:8086" ] database = "edge" @@ -69,7 +69,7 @@ [[inputs.mqtt_consumer]] - servers = [ "tcp://mosquitto:1883" ] + servers = [ "ssl://mosquitto:8883" ] # Topics to subscribe to: topics = [ @@ -91,11 +91,11 @@ ## Use TLS but skip chain & host verification # Use Certificates if `require_certificate true` in `mosquitto.conf` file - #tls_ca = "/etc/telegraf/ca.crt" - #tls_cert = "/etc/telegraf/mqtt-client.crt" - #tls_key = "/etc/telegraf/mqtt-client.key" + tls_ca = "/etc/telegraf/ca.crt" + tls_cert = "/etc/telegraf/mqtt-client.crt" + tls_key = "/etc/telegraf/mqtt-client.key" ## Use TLS but skip chain & host verification - #insecure_skip_verify = true + insecure_skip_verify = true # Incoming MQTT Payload from Sensor nodes is in InfluxDB Line Protocol strings data_format = "influx" diff --git a/selfsigned/traefik/configurations/middlewares-http.toml b/selfsigned/traefik/configurations/middlewares-http.toml index d1ab5a6..8ab8eec 100644 --- a/selfsigned/traefik/configurations/middlewares-http.toml +++ b/selfsigned/traefik/configurations/middlewares-http.toml @@ -5,3 +5,12 @@ # Username:Password -> admin:tiguitto users = ["admin:$apr1$r3puowjd$lXRESWyaLtTa8Qdt6yD.0."] + [http.middlewares.grafana-mw] + [http.middlewares.grafana-mw.stripPrefix] + prefixes = ["/grafana"] + forceSlash = false + + [http.middlewares.influxdb-mw] + [http.middlewares.influxdb-mw.stripPrefix] + prefixes = ["/influxdb"] + forceSlash = false \ No newline at end of file diff --git a/selfsigned/traefik/configurations/routers-http.toml b/selfsigned/traefik/configurations/routers-http.toml index 3748095..e84b775 100644 --- a/selfsigned/traefik/configurations/routers-http.toml +++ b/selfsigned/traefik/configurations/routers-http.toml @@ -2,26 +2,27 @@ [http.routers] [http.routers.api-router] - rule = "Host(`dashboard.demo1.iotstack.co`)" + rule = "PathPrefix(`/api`) || PathPrefix(`/dashboard`)" entryPoints = ["web-secure"] middlewares = ["user-auth"] service = "api@internal" [http.routers.api-router.tls] - certResolver = "myresolver" [http.routers.grafana-router] - rule = "Host(`grafana.demo1.iotstack.co`)" + rule = "PathPrefix(`/grafana`)" entryPoints = ["web-secure"] + middlewares = ["grafana-mw"] service = "grafana" [http.routers.grafana-router.tls] - certResolver = "myresolver" + options = ["grafana-secure"] [http.routers.influxdb-router] - rule = "Host(`influxdb.demo1.iotstack.co`)" + rule = "PathPrefix(`/influxdb`)" entryPoints = ["web-secure"] + middlewares = ["influxdb-mw"] service = "influxdb" [http.routers.influxdb-router.tls] - certResolver = "myresolver" \ No newline at end of file + options = ["influxdb-secure"] \ No newline at end of file diff --git a/selfsigned/traefik/configurations/routers-tcp.toml b/selfsigned/traefik/configurations/routers-tcp.toml index c86e064..572750a 100644 --- a/selfsigned/traefik/configurations/routers-tcp.toml +++ b/selfsigned/traefik/configurations/routers-tcp.toml @@ -3,17 +3,17 @@ [tcp.routers.mqtt-router] entryPoints = ["mqtt"] service = "mosquitto" - rule = "HostSNI(`mqtt.demo1.iotstack.co`)" + rule = "HostSNI(`*`)" [tcp.routers.mqtt-router.tls] - certResolver = "myresolver" - passthrough = true + options = "mqtts" + passthrough = true [tcp.routers.mqtt-websockets-router] entryPoints = ["websockets"] service = "mosquitto-ws" - rule = "HostSNI(`mqtt.demo1.iotstack.co`)" + rule = "HostSNI(`*`)" [tcp.routers.mqtt-websockets-router.tls] - certResolver = "myresolver" + options = ["mqtt-wss"] passthrough = true \ No newline at end of file diff --git a/selfsigned/traefik/configurations/services-http.toml b/selfsigned/traefik/configurations/services-http.toml index 32efa12..6f13bee 100644 --- a/selfsigned/traefik/configurations/services-http.toml +++ b/selfsigned/traefik/configurations/services-http.toml @@ -3,7 +3,7 @@ [http.services.grafana] [http.services.grafana.loadBalancer] [[http.services.grafana.loadBalancer.servers]] - url = "http://grafana:3000" + url = "https://grafana:3000" [http.services.grafana.loadBalancer.healthCheck] path = "grafana/api/health" interval = "30s" @@ -11,7 +11,7 @@ [http.services.influxdb] [http.services.influxdb.loadBalancer] [[http.services.influxdb.loadBalancer.servers]] - url = "http://influxdb:8086" + url = "https://influxdb:8086" [http.services.influxdb.loadBalancer.healthCheck] path = "/ping" - interval = "30s" + interval = "30s" \ No newline at end of file diff --git a/selfsigned/traefik/configurations/services-tcp.toml b/selfsigned/traefik/configurations/services-tcp.toml index 9347af7..aedf41d 100644 --- a/selfsigned/traefik/configurations/services-tcp.toml +++ b/selfsigned/traefik/configurations/services-tcp.toml @@ -3,9 +3,9 @@ [tcp.services.mosquitto] [tcp.services.mosquitto.loadBalancer] [[tcp.services.mosquitto.loadBalancer.servers]] - address = "mosquitto:1883" + address = "mosquitto:8883" [tcp.services.mosquitto-ws] [tcp.services.mosquitto-ws.loadBalancer] [[tcp.services.mosquitto-ws.loadBalancer.servers]] - address = "mosquitto:1884" + address = "mosquitto:8884" diff --git a/selfsigned/traefik/configurations/tls.toml b/selfsigned/traefik/configurations/tls.toml new file mode 100644 index 0000000..4cb6812 --- /dev/null +++ b/selfsigned/traefik/configurations/tls.toml @@ -0,0 +1,35 @@ +[tls] + [[tls.certificates]] + certFile = "/etc/ssl/certs/domain.crt" + keyFile = "/etc/ssl/certs/domain.key" + stores = ["default"] + + [tls.stores] + [tls.stores.default] + [tls.stores.default.defaultCertificate] + certFile = "/etc/ssl/certs/domain.crt" + keyFile = "/etc/ssl/certs/domain.key" + + [tls.options] + [tls.options.mintls12] + minVersion = "VersionTLS12" + + [tls.options.mqtts] + [tls.options.mqtts.clientAuth] + caFiles = ["/etc/ssl/certs/ca.crt"] + clientAuthType = "RequireAndVerifyClientCert" + + [tls.options.mqtt-wss] + [tls.options.mqtt-wss.clientAuth] + caFiles = ["/etc/ssl/certs/ca.crt"] + clientAuthType = "RequireAndVerifyClientCert" + + [tls.options.grafana-secure] + [tls.options.grafana-secure.clientAuth] + caFiles = ["/etc/ssl/certs/ca.crt"] + clientAuthType = "VerifyClientCertIfGiven" + + [tls.options.influxdb-secure] + [tls.options.influxdb-secure.clientAuth] + caFiles = ["/etc/ssl/certs/ca.crt"] + clientAuthType = "VerifyClientCertIfGiven" diff --git a/selfsigned/traefik/traefik.toml b/selfsigned/traefik/traefik.toml index f0d6548..83af404 100644 --- a/selfsigned/traefik/traefik.toml +++ b/selfsigned/traefik/traefik.toml @@ -3,7 +3,11 @@ [global] checkNewVersion = false - sendAnonymousUsage = false + sendAnonymousUsage = true + +[serversTransport] + insecureSkipVerify = true + rootCAs = ["/etc/ssl/certs/ca.crt"] [api] # insecure = true @@ -36,6 +40,11 @@ [entryPoints] [entryPoints.web] address = ":80" + [entryPoints.web.http] + [entryPoints.web.http.redirections] + [entryPoints.web.http.redirections.entryPoint] + to = "web-secure" + scheme = "https" [entryPoints.web-secure] address = ":443" @@ -45,8 +54,6 @@ [entryPoints.websockets] address = ":8884" -[retry] - [providers] [providers.docker] endpoint = "unix:///var/run/docker.sock" @@ -54,13 +61,4 @@ network = "iotstack" [providers.file] directory = "/etc/traefik/configurations/" - watch = true - -[certificatesResolvers.myresolver.acme] - email = "lewandowski@swms.de" - storage = "/letsencrypt/acme.json" - # caserver = "https://acme-staging-v02.api.letsencrypt.org/directory" - - [certificatesResolvers.myresolver.acme.httpChallenge] - # used during the challenge - entryPoint = "web" \ No newline at end of file + watch = true \ No newline at end of file From be6297bedd05b641b9860a961ca770829ec1086b Mon Sep 17 00:00:00 2001 From: Marco Lewandowski Date: Fri, 5 Feb 2021 16:15:17 +0100 Subject: [PATCH 19/19] Docker Compose file renamed --- certbot/{docker-compose.yml => docker-compose.certbot.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename certbot/{docker-compose.yml => docker-compose.certbot.yml} (100%) diff --git a/certbot/docker-compose.yml b/certbot/docker-compose.certbot.yml similarity index 100% rename from certbot/docker-compose.yml rename to certbot/docker-compose.certbot.yml