This page is an effort to list the publically-accessible MQTT brokers, often useful for testing and prototyping.

Note: none of these test brokers (except mqtt.flespi.io) carry any guarantee of service. Be sensible when using them and don't break things for others! :-)

field value
address mqtt.flespi.io
port 1883 (TCP), 80 (WebSocket), 8883 (SSL), 443 (Secure WebSockets)
type flespi
info requires signup/username, information pageREST API, MQTT 5.0 compliant

field value
address iot.eclipse.org
port 188380 (WebSockets), 443(WebSockets+SSL)
type mosquitto
info web pageXively statisticstopics and HTTP bridge

field value
address test.mosquitto.org
port 18838883 (SSL), 8884 (SSL), 80 (WebSockets)
type mosquitto
info web pageXively statisticstopics and HTTP bridge

field value
address broker.hivemq.com
port 18838000 (WebSockets)
type HiveMQ
info information pagestastistics and dashboard

field value
address www.cloudmqtt.com (Note: actual host varies, see dashboard)
port 1844328443 (SSL)
type mosquitto
info requires signup/username and password, pricing (free plan available), documentation

field value
address mqtt.dioty.co
port 1883 (MQTT), 8883 (MQTT+SSL), 8080 (WebSockets), 8880 (WebSockets+SSL)
type mosca
info Free - requires signup/username and password, documentation, includes mobile IoT app (iOS and Android)

field value
address mqtt.swifitch.cz
port 1883 (MQTT)
type mosquitto
info Free, it is mostly running for Swifitch project, but you can use it too for testing your IoT or whatever ;), it is running on Raspberry Pi profesional VPS.

field value
address broker.bevywise.com
port 1883 (TCP), 8443 (WebSockets)
type Bevywise
info web page. Secure. Need to sign up to view your devices. Use MQTT Authentication in your devices to connect securely. Free trial with unsecure ports (see https://devicemanager.bevywise.com/help)

field value
address mqtt.fluux.io
port 1883 (TCP), 8883 (TLS)
type ejabberd
info Free - no registration required, MQTT 5.0 compliant

field value
address console.solace.cloud (MQTT hostname varies, see dashboard)
port TCP, TLS, WS, WSS: varies per instance
type solace
info requires sign-up, free plan available (50 connections), getting starteddocs

 MQTT Community Wiki by mqtt.org community members is licensed under a Creative Commons Attribution 4.0 International License and was made possible by the generosity of all of its contributors.

public_brokers的更多相关文章

  1. MQTT的学习研究(十六) MQTT的Mosquitto的window安装部署

    在mqtt的官方网站,有许多mqtt,其中:MosquittoAn Open Source MQTT server with C, C++, Python and Javascript clients ...

随机推荐

  1. echarts 关系图graph force布局 拖动节点并固定不返回原点

    myChart.on('mouseup',function(params){var option=myChart.getOption();option.series[0].nodes[params.d ...

  2. 源码安装redis初始化实例脚本

    #!/bin/bash - #Date: -- #Auth: Jin version='2.8.7' progname='redis' pkgname="${progname}-${vers ...

  3. rman catalog配置简要笔记

    服务端配置: SQL> create tablespace tbs_rman datafile 'H:\oradata\test\tbs_rman.dbf' size 20m autoexten ...

  4. javax.servlet.ServletException: javax.servlet.jsp.JspTagException: Invalid property in <set>: "age2"

    <%@ page language="java" import="java.util.*" pageEncoding="utf-8"% ...

  5. oracle 查看执行最慢 sql

    查询执行最慢的sql select * from (select sa.SQL_TEXT, sa.SQL_FULLTEXT, sa.EXECUTIONS "执行次数", round ...

  6. es6数组去重复

    var arr=[1,1,2,3,5,7,7,7] arr=Array.from(new Set(arr))

  7. js中setinterval 的相关使用

    1.setinterval 方法 setinterval()是定时调用的函数,可按照指定的周期(以毫秒计)来调用函数或计算表达式. 2.创建一个setinterval 方法 setInterval(s ...

  8. php中自定义事件---事件驱动

    PHP中自定义事件驱动,处理机制. 原文:https://www.cnblogs.com/mafeifan/p/4322271.html ------------------------------- ...

  9. HDU 3726 Graph and Queries treap树

    题目来源:HDU 3726 Graph and Queries 题意:见白书 思路:刚学treap 參考白皮书 #include <cstdio> #include <cstring ...

  10. java web 拦截器、过滤器理解

    1.首先要明确什么是拦截器.什么是过滤器 1.1 什么是拦截器: 拦截器,在AOP(Aspect-Oriented Programming)中用于在某个方法或字段被访问之前,进行拦截然后在之前或之后加 ...