MQTT 消息服务器,emqttd 0.11.0-beta 发布

jopen 9年前

[emqttd]是采用Erlang语言开发,全面支持MQTT V3.1.1协议,支持集群和大规模连接的开源MQTT消息服务器。 [emqttd]致力于发布一个基于Erlang/OTP语言平台,企业级稳定可靠,完全开源免费,可集群支持大规模物联网、移动互联网连接的MQTT消 息服务器。

MQTT 消息服务器,emqttd 0.11.0-beta 发布

 # 完整的MQTT V3.1/V3.1.1协议支持

* 全面支持MQTT V3.1/V3.1.1协议规范

* QoS0/1/2消息发布与订阅支持

* Session管理和离线消息支持

* Last Will消息支持

* Retained消息支持

* TCP/SSL连接支持

* MQTT over WebSocket连接支持

* HTTP Publish消息发布接口

* ‘$SYS/#’系统Topic支持

* 基于ClientId、IP地址认证支持

* 基于用户名、密码认证支持

* 基于ClientId、用户名、IP地址的ACL访问控制

* 多服务器集群(Cluster)支持

* 多节点桥接(Bridge)支持

* 单节点50万+客户端连接支持

* 插件扩展架构支持

* 通过Eclipse Paho项目的服务器互操作性测试

# 完全开放源码,多节点集群支持

* 开放源码, MIT开源软件许可协议

* 多服务器集群, 大规模客户端连接支持

* 安装简便, 下载解压即可启动运行

* 插件架构, 定制或扩展服务器功能

# 快速下载安装

 emqttd可跨平台运行在Linux、FreeBSD、Windows与 Mac OS X。[http://emqtt.io/downloads]页面下载程序安装包。

解压tgz格式程序包,到安装目录启动。例如:

tar xvf emqttd-ubuntu64-0.8.1-alpha-20150529.tgz && cd emqttd

控制台模式启动,用于调试。控制台可以打印所有收发的MQTT报文

./bin/emqttd console

守护进程模式启动,默认占用1883端口用于MQTT连接,8083端口用于HTTP接口

./bin/emqttd start

查看运行状态

./bin/emqttd_ctl status

停止

./bin/emqttd stop

下载源码编译:

git clone https://github.com/emqtt/emqttd.git

cd emqttd && make && make dist

HTTP消息发布接口测试

emqttd支持通过HTTP接口从应用程序向MQTT客户端发布消息:

curl -v --basic -u user:passwd -d "qos=1&retain=0&topic=/a/b/c&message=hello" -k http://localhost:8083/mqtt/publish

URL:  HTTP POST http://host:8083/mqtt/publish

参数:

* qos:      QoS(0, 1, 2)

* retain:   Retain(0, 1)

* topic:   Topic

* message:  Message

emqttd 0.11.0 beta 发布了,该版本改进内容包括:

Highlight: Rebar to manage plugin dependencies.
Highlight: Stomp and SockJS Plugins!
Improve: add rel/files/emqttd.config.development|production.
Improve: rel/reltool.config.script to release deps of plugin.
Improve: persist mnesia schema on slave nodes.
Improve: use timer:seconds/1 api.
Improve: The binary release will be compiled with R18.1 now.
Bugfix: issue#306 - emqttd_cm should unregister the duplicated client
Bugfix: issue#310 - usage of emqttd_ctl error: 'session list' should be 'sessions list'
Bugfix: issue#311 - './bin/emqttd_ctl sessions list' error
Bugfix: issue#312 - unsubcribe will lead to crash if emqttd_plugin_template plugin loaded

下载地址:

Ubuntu emqttd-ubuntu64-0.11.0-beta-20150925.zip
CentOS emqttd-centos64-0.11.0-beta-20150925.zip
FreeBSD emqttd-freebsd64-0.11.0-beta-20150925.zip
Mac OS X emqttd-macosx-0.11.0-beta-20150925.zip
Windows emqttd-windows-0.10.0-beta-20150823.zip

快速开始:

unzip emqttd-ubuntu64-0.11.0-beta-20150925.zip && cd emqttd     # Start console  ./bin/emqttd console     # Start as daemon  ./bin/emqttd start     # Check status  ./bin/emqttd_ctl status     # Stop  ./bin/emqttd stop
来自: http://www.oschina.net/p/emqttd