All Projects → eclipse → Mosquitto

eclipse / Mosquitto

Licence: other
Eclipse Mosquitto - An open source MQTT broker

Programming Languages

c
50402 projects - #5 most used programming language
python
139335 projects - #7 most used programming language
Makefile
30231 projects
C++
36643 projects - #6 most used programming language
Dockerfile
14818 projects
CMake
9771 projects

Projects that are alternatives of or similar to Mosquitto

ccu-addon-mosquitto
Mosquitto packaged as Addon for the Homematic CCU3 and RaspberryMatic
Stars: ✭ 23 (-99.6%)
Mutual labels:  mqtt, broker, mosquitto
MQTT.jl
An asynchronous MQTT client library for julia
Stars: ✭ 15 (-99.74%)
Mutual labels:  mqtt, broker
Vernemq
A distributed MQTT message broker based on Erlang/OTP. Built for high quality & Industrial use cases.
Stars: ✭ 2,628 (-54.64%)
Mutual labels:  mqtt, broker
aedes-cli
Run Aedes MQTT Broker from the CLI
Stars: ✭ 29 (-99.5%)
Mutual labels:  mqtt, broker
Mqttnet
MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from http://mqtt.org/.
Stars: ✭ 2,486 (-57.09%)
Mutual labels:  mqtt, broker
Enmasse
EnMasse - Self-service messaging on Kubernetes and OpenShift
Stars: ✭ 185 (-96.81%)
Mutual labels:  mqtt, broker
kafka-connect-iot-mqtt-connector-example
Internet of Things Integration Example => Apache Kafka + Kafka Connect + MQTT Connector + Sensor Data
Stars: ✭ 170 (-97.07%)
Mutual labels:  mqtt, mosquitto
Mqtt
MQTT broker written in D, using vibe.d
Stars: ✭ 59 (-98.98%)
Mutual labels:  mqtt, broker
ruuvitag-demo
Demo of reading Bluetooth Low Energy sensor measurements of RuuviTag environmental sensors and feeding them to MQTT, a database and dashboards
Stars: ✭ 14 (-99.76%)
Mutual labels:  mqtt, mosquitto
gmqtt
Golang MQTT Broker.
Stars: ✭ 75 (-98.71%)
Mutual labels:  mqtt, broker
emqx-docs-en
EMQ X Broker Documentation
Stars: ✭ 12 (-99.79%)
Mutual labels:  mqtt, broker
Crossbar
Crossbar.io - WAMP application router
Stars: ✭ 1,957 (-66.22%)
Mutual labels:  mqtt, broker
Moquette
Java MQTT lightweight broker
Stars: ✭ 1,897 (-67.26%)
Mutual labels:  mqtt, broker
Rumqttd
rust mqtt broker
Stars: ✭ 77 (-98.67%)
Mutual labels:  mqtt, broker
mqttbeat
Elasticsearch beat to save messages received with the MQTT protocol.
Stars: ✭ 18 (-99.69%)
Mutual labels:  mqtt, broker
zmosq
MQTT/Mosquitto / ZeroMQ proxy
Stars: ✭ 22 (-99.62%)
Mutual labels:  mqtt, mosquitto
Emqx
An Open-Source, Cloud-Native, Distributed MQTT Message Broker for IoT.
Stars: ✭ 8,951 (+54.49%)
Mutual labels:  mqtt, broker
Hermes
Tiny MQTT broker written in Go
Stars: ✭ 50 (-99.14%)
Mutual labels:  mqtt, broker
kotori
A flexible data historian based on InfluxDB, Grafana, MQTT and more. Free, open, simple.
Stars: ✭ 73 (-98.74%)
Mutual labels:  mqtt, mosquitto
dlibox
Home automation that does not depend on the internet
Stars: ✭ 26 (-99.55%)
Mutual labels:  mqtt, mosquitto

Eclipse Mosquitto

Mosquitto is an open source implementation of a server for version 5.0, 3.1.1, and 3.1 of the MQTT protocol. It also includes a C and C++ client library, and the mosquitto_pub and mosquitto_sub utilities for publishing and subscribing.

Links

See the following links for more information on MQTT:

Mosquitto project information is available at the following locations:

There is also a public test server available at https://test.mosquitto.org/

Installing

See https://mosquitto.org/download/ for details on installing binaries for various platforms.

Quick start

If you have installed a binary package the broker should have been started automatically. If not, it can be started with a basic configuration:

mosquitto

Then use mosquitto_sub to subscribe to a topic:

mosquitto_sub -t 'test/topic' -v

And to publish a message:

mosquitto_pub -t 'test/topic' -m 'hello world'

Documentation

Documentation for the broker, clients and client library API can be found in the man pages, which are available online at https://mosquitto.org/man/. There are also pages with an introduction to the features of MQTT, the mosquitto_passwd utility for dealing with username/passwords, and a description of the configuration file options available for the broker.

Detailed client library API documentation can be found at https://mosquitto.org/api/

Building from source

To build from source the recommended route for end users is to download the archive from https://mosquitto.org/download/.

On Windows and Mac, use cmake to build. On other platforms, just run make to build. For Windows, see also README-windows.md.

If you are building from the git repository then the documentation will not already be built. Use make binary to skip building the man pages, or install docbook-xsl on Debian/Ubuntu systems.

Build Dependencies

  • c-ares (libc-ares-dev on Debian based systems) - only when compiled with make WITH_SRV=yes
  • cJSON - for client JSON output support. Disable with make WITH_CJSON=no Auto detected with CMake.
  • libwebsockets (libwebsockets-dev) - enable with make WITH_WEBSOCKETS=yes
  • openssl (libssl-dev on Debian based systems) - disable with make WITH_TLS=no
  • pthreads - for client library thread support. This is required to support the mosquitto_loop_start() and mosquitto_loop_stop() functions. If compiled without pthread support, the library isn't guaranteed to be thread safe.
  • uthash / utlist - bundled versions of these headers are provided, disable their use with make WITH_BUNDLED_DEPS=no
  • xsltproc (xsltproc and docbook-xsl on Debian based systems) - only needed when building from git sources - disable with make WITH_DOCS=no

Equivalent options for enabling/disabling features are available when using the CMake build.

Credits

Mosquitto was written by Roger Light [email protected]

Master: Travis Build Status (master) Develop: Travis Build Status (develop) Fixes: Travis Build Status (fixes)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].