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 ...
随机推荐
- 【SAM】BZOJ3998-弦论
[题目大意] 给出一个字符串,求第k大的子串.(输入1表示子串可重复,0表示不可重复) [思路] 显然,k大子串是后缀自动机的经典题型,可以利用后缀自动机的性质来解决.对于字符串 [前铺1]" ...
- 【贪心】POJ1328-Radar Installation
[思路] 以每一座岛屿为圆心,雷达范围为半径作圆,记录下与x轴的左右交点.如果与x轴没交点,则直接退出输出“-1”.以左交点为关键字进行排序,从左到右进行贪心.容易知道,离每一个雷达最远的那一座岛与雷 ...
- python 多继承详解
class A(object): # A must be new-style class def __init__(self): print "enter A" print &qu ...
- Java中的文件操作(一)RandomAccessFile
今天,学到的是java中的文件操作. Java.IO.File Java中操作文件用到RandomAccessFile类,既可以读取文件内容,也可以向文件输出数据,但不同与普通输入/输出流的是Rand ...
- [转]Servlet的load-on-startup
在servlet的配置当中,<load-on-startup>5</load-on-startup>的含义是: 标记容器是否在启动的时候就加载这个servlet. 当值为0 ...
- CentOS 6.9修改网卡名eth1为eth0
vi /etc/udev/rules.d/70-persistent-net.rules 把NAME="eth1"修改为NAME="eth0",并将多余的记录删 ...
- 改变element-ui滚动条设置,
基于vue的滚动条组件之--element隐藏组件滚动条scrollbar使用 在项目中,总是需要用到滚动条,但windows浏览器默认的滚动条是很丑的,为了页面美观,可以考虑优化滚动条样式. vu ...
- ArcGIS Engine10.2与VS2017的环境设置
首先,在安装ArcGIS Engine 10.2之前,大家应该了解的事是:AE10.2推荐与VS2010或VS2012匹配使用,AE10.3推荐与VS2013匹配使用.除上述的推荐匹配版本之外的方法, ...
- 将图片转换为Base64字符串公共类抽取
public class ImageToBase64 { //图片转化成base64字符串 public static String GetImageStr(String path,int width ...
- 【好】strong-password-checker,我自己做出来的:)
我自己做出来的,分了几种情况来考虑.(再后面有加了注释的版本) https://leetcode.com/problems/strong-password-checker/ // 加油! public ...