Influxdb - NOt startingup -

I am not really using influxdb yet, but I had it running to at least store the data in there until I can examine it in more detail.

However, I did see influxdb related messages in the logs sinse some time, and I decided to have a look.

My firewall blocks some stuff, so the statistics server is not resolved and I suspected this might be a raeson for failure:

[22:13:30] INFO: Starting the Kapacitor

'##:::'##::::'###::::'########:::::'###:::::'######::'####:'########::'#######::'########::
 ##::'##::::'## ##::: ##.... ##:::'## ##:::'##... ##:. ##::... ##..::'##.... ##: ##.... ##:
 ##:'##::::'##:. ##:: ##:::: ##::'##:. ##:: ##:::..::: ##::::: ##:::: ##:::: ##: ##:::: ##:
 #####::::'##:::. ##: ########::'##:::. ##: ##:::::::: ##::::: ##:::: ##:::: ##: ########::
 ##. ##::: #########: ##.....::: #########: ##:::::::: ##::::: ##:::: ##:::: ##: ##.. ##:::
 ##:. ##:: ##.... ##: ##:::::::: ##.... ##: ##::: ##:: ##::::: ##:::: ##:::: ##: ##::. ##::
 ##::. ##: ##:::: ##: ##:::::::: ##:::: ##:. ######::'####:::: ##::::. #######:: ##:::. ##:
..::::..::..:::::..::..:::::::::..:::::..:::......:::....:::::..::::::.......:::..:::::..::

2023/12/01 22:13:32 Using configuration at: /etc/kapacitor/kapacitor.conf
ts=2023-12-01T22:13:32.796+01:00 lvl=error msg="error while sending usage report on startup" service=reporting err="Post \"https://usage.influxdata.com/api/v1/usage/kapacitor\": dial tcp 0.0.0.0:443: connect: connection refused"
[22:14:20] INFO: InfluxDB stopped, restarting...
[22:14:24] INFO: Starting the InfluxDB...
ts=2023-12-01T22:14:32.631+01:00 lvl=error msg="failed to connect to InfluxDB, retrying..." service=influxdb cluster=default err="Get \"http://localhost:8086/ping\": dial tcp 127.0.0.1:8086: connect: connection refused"

With trace (event with frontdoor open)::

[22:32:16] TRACE: bashio::cache.get: addons.self.options.config
[22:32:16] TRACE: bashio::cache.exists: addons.self.options.config
[22:32:16] TRACE: bashio::fs.file_exists: /tmp/.bashio/addons.self.options.config.cache
[22:32:16] TRACE: bashio::jq: {"auth":true,"reporting":true,"ssl":false,"certfile":"fullchain.pem","keyfile":"privkey.pem","envvars":[],"log_level":"trace","leave_front_door_open":true} if (.log_level == null) then
            null
        elif (.log_level | type == "string") then
            .log_level // empty
        elif (.log_level | type == "boolean") then
            .log_level // false
        elif (.log_level | type == "array") then
            if (.log_level == []) then
                empty
            else
                .log_level[]
            end
        elif (.log_level | type == "object") then
            if (.log_level == {}) then
                empty
            else
                .log_level
            end
        else
            .log_level
        end
ts=2023-12-01T22:32:16.270+01:00 lvl=error msg="error while sending usage report on startup" service=reporting err="Post \"https://usage.influxdata.com/api/v1/usage/kapacitor\": dial tcp 0.0.0.0:443: connect: connection refused"
[22:32:17] TRACE: bashio::string.lower: trace
[22:32:17] TRACE: bashio::addon.ingress_entry
[22:32:17] TRACE: bashio::addons self addons.self.ingress_entry .ingress_entry // empty
[22:32:17] TRACE: bashio::cache.exists: addons.self.ingress_entry
[22:32:17] TRACE: bashio::fs.file_exists: /tmp/.bashio/addons.self.ingress_entry.cache
[22:32:17] TRACE: bashio::cache.get: addons.self.ingress_entry
[22:32:17] TRACE: bashio::cache.exists: addons.self.ingress_entry
[22:32:17] TRACE: bashio::fs.file_exists: /tmp/.bashio/addons.self.ingress_entry.cache
[22:32:17] TRACE: bashio::config.false: reporting
[22:32:17] TRACE: bashio::config: reporting
[22:32:17] TRACE: bashio::addon.config
[22:32:17] TRACE: bashio::cache.exists: addons.self.options.config
[22:32:17] TRACE: bashio::fs.file_exists: /tmp/.bashio/addons.self.options.config.cache
[22:32:17] TRACE: bashio::cache.get: addons.self.options.config
[22:32:17] TRACE: bashio::cache.exists: addons.self.options.config
[22:32:17] TRACE: bashio::fs.file_exists: /tmp/.bashio/addons.self.options.config.cache
[22:32:17] TRACE: bashio::jq: {"auth":true,"reporting":true,"ssl":false,"certfile":"fullchain.pem","keyfile":"privkey.pem","envvars":[],"log_level":"trace","leave_front_door_open":true} if (.reporting == null) then
            null
        elif (.reporting | type == "string") then
            .reporting // empty
        elif (.reporting | type == "boolean") then
            .reporting // false
        elif (.reporting | type == "array") then
            if (.reporting == []) then
                empty
            else
                .reporting[]
            end
        elif (.reporting | type == "object") then
            if (.reporting == {}) then
                empty
            else
                .reporting
            end
        else
            .reporting
        end
[22:32:18] TRACE: bashio::var.false: true

Puzling -