public_brokers
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 page, REST API, MQTT 5.0 compliant |
field | value |
---|---|
address | iot.eclipse.org |
port | 1883 , 80 (WebSockets), 443 (WebSockets+SSL) |
type | mosquitto |
info | web page, Xively statistics, topics and HTTP bridge |
field | value |
---|---|
address | test.mosquitto.org |
port | 1883 , 8883 (SSL), 8884 (SSL), 80 (WebSockets) |
type | mosquitto |
info | web page, Xively statistics, topics and HTTP bridge |
field | value |
---|---|
address | broker.hivemq.com |
port | 1883 , 8000 (WebSockets) |
type | HiveMQ |
info | information page, stastistics and dashboard |
field | value |
---|---|
address | www.cloudmqtt.com (Note: actual host varies, see dashboard) |
port | 18443 , 28443 (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 |
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 started, docs |
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的更多相关文章
- MQTT的学习研究(十六) MQTT的Mosquitto的window安装部署
在mqtt的官方网站,有许多mqtt,其中:MosquittoAn Open Source MQTT server with C, C++, Python and Javascript clients ...
随机推荐
- 【深搜+set使用学习】POJ3050-Hopscotch
[题目大意] 给出一个5*5的方格,求出从任意一点出发走6步组成的不同序列数. [思路] dfs的水题,当作set使用方法的初次学习.每次从任意一点出发进行一次dfs,将序列加入set,最后输出set ...
- bzoj 3312: [Usaco2013 Nov]No Change
3312: [Usaco2013 Nov]No Change Description Farmer John is at the market to purchase supplies for his ...
- B 君的第二题 (hongkong)
B 君的第二题 (hongkong) 题目大意: 一个长度为\(n(n\le2\times10^5)\)的数组,给定一个数\(k(k\le40)\).用\(a[i][j]\)表示该数组\(i\)次前缀 ...
- iOS中 xib自定义View在storyboard中的使用
1,创建UIView 的SubClass 命名为MyView 2, new一个名为MyView的xib p1 3,配置xib的属性 p2 4,为View 添加背景色,添加一个按钮并定制按钮约束,这里我 ...
- flask restful修改头部信息
有两种方式,第一种是使用make_response from flask import make_response def test(): resp = make_response('test', c ...
- [Python爬虫] 之十三:Selenium +phantomjs抓取活动树会议活动数据
抓取活动树网站中会议活动数据(http://www.huodongshu.com/html/index.html) 具体的思路是[Python爬虫] 之十一中抓取活动行网站的类似,都是用多线程来抓取, ...
- scrapy-splash抓取动态数据例子四
一.介绍 本例子用scrapy-splash抓取微众圈网站给定关键字抓取咨询信息. 给定关键字:打通:融合:电视 抓取信息内如下: 1.资讯标题 2.资讯链接 3.资讯时间 4.资讯来源 二.网站信息 ...
- mac osx加入全局启动terminal快捷键
尽管有非常多第三方工具(Alfred.keyboad Maestro)能够设置全局启动terminal快捷键,但怎么感觉都不如native的好,呵呵.本文就使用mac 自带的Automator来创建一 ...
- POJ 1511 链式前向星+SPFA
#include<iostream> #include<cstdio> #include<cstdlib> using namespace std; const i ...
- android APK反编译及代码混淆
反编译.查看源代码,需要用到两个工具:dex2jar 和 jdgui dex2jar(google code) jdgui(google code),最新版本请见 官方 操作很简单,步骤如下: 1.将 ...