Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
rumqttd
Rumqttd is a high performance MQTT broker written in Rust. It's light weight and embeddable, meaning you can use it as a library in your code and extend functionality
Currently supported features
- MQTT 3.1.1
- QoS 0 and 1
- Retained messages
- Connection via TLS
- Last will
- All MQTT 3.1.1 packets
Upcoming features
- QoS 2
- Retransmission after reconnect
- MQTT 5
Getting started
You can directly run the broker by running the binary with a config file with:
cargo run --release -- -c demo.toml
Example config file is provided on the root of the repo.
Using Docker
rumqttd can be used with docker by pulling the image from docker hub as follows:
To use the rumqttd docker image with the included demo.toml while exposing the necessary ports for clients to interact with the broker, use the following command:
One can also mount the local directory containing configs as a volume and use the appropriate config file as follows:
Building the docker image
In order to run rumqttd within a docker container, build the image by running build_rumqttd_docker.sh from the project's root directory. The shell script will use docker to build rumqttd and package it along in an alpine image. You can then run rumqttd with the included demo.toml as follows(ensure you are in the project's root directory):
How to use with TLS
To connect an MQTT client to rumqttd over TLS, create relevant certificates for the broker and client using provision as follows:
Update config files for rumqttd and rumqttc with the generated certificates:
[]
= "path/to/localhost.cert.pem"
= "path/to/localhost.key.pem"
= "path/to/ca.cert.pem"
You may also use certgen, tls-gen or openssl to generate self-signed certificates, though we recommend using provision.
NOTE: Mount the folders containing the generated tls certificates and the proper config file(with absolute paths to the certificate) to enable tls connections with rumqttd running inside docker.