Reputation: 1
I'm created Linux server to host the eclipse-mosquitto broker. I use dynamic security concept to create authorization. text I can add new clients and provided some permissions using mosquitto_ctrl in Linux CLI. but! if I want to create new client automatically by using mosquitto_ctrl at server side when user was registered on mobile app. **- what tools I have to learn? or provide me any concepts please. (I'm not programmer but I want to learn about programing)
**- what tools I have to learn? or provide me any concepts please.
Upvotes: -4
Views: 114
Reputation: 59771
All mosquitto_ctrl
does is send MQTT messages to a set of known topics
So you need to determine which topics ($control/...
iirc) and the message payloads required and the details of the admin user (the one created when initialising the dynamic security plugin).
The feature holds the data you should need https://github.com/eclipse/mosquitto/issues/1779
Upvotes: 0