Mosquitto configuration uses recent options, Debian version too old #8
Labels
No labels
app/api-search
app/iot-broker
app/web
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Feature
Kind/Rewrite
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
TurtleHost/mono#8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The mosquitto broker configuration file of the iot-broker application makes use of an option that was added fairly recently. The required version of mosquitto is not yet available via the Debian repositories.
Specifically, this section is problematic:
# # # # ## LISTENERS# Container-internal (intended for monitoring)listener 1882protocol mqttaccept_protocol_versions 4listener_allow_anonymous true# Internal network (IoT)listener 1883protocol mqttaccept_protocol_versions 3, 4, 5socket_domain ipv4listener_allow_anonymous falseThe offending option is
accept_protocol_versions, which is used to define what MQTT protocol versions a client may use.See also
Possible solutions would be to either use a newer version of mosquitto (for example, by installing from source or using a different base-image), or remove the option completely - At least until mosquitto 2.1.0 is available via the Debian apt repos.