create emqx project

Zaiming Shi 582dea10f5 style(emqx_sys): make elvis happy hace 5 años
.ci b12d4f481f chore(script): remove the prefix of pkg-vsn.sh hace 5 años
.github de6359b5fd chore(ci): find and run plugin tests hace 5 años
apps 6bf15c6a2f chore(exhook): deinit registray after application stopped hace 5 años
bin b629a6c58c chore(scripts): fix typo for var names hace 5 años
data e1979bf488 chore(build): Single source of EMQX_DESCRIPTION hace 5 años
deploy 059d9fcaeb build(dashboard): get dashboard script support enterprise hace 5 años
etc 6b2949e2c1 chore(config): Change default log_to config hace 5 años
include 00a2daba19 chore(build): add more enterprise build support hace 5 años
lib-ce 115397523d chore(build): add more enterprise build support (#4302) hace 5 años
lib-extra e495213618 chore(build): Add README for lib-extra hace 5 años
priv 6b2949e2c1 chore(config): Change default log_to config hace 5 años
scripts 3e3c06118c chore(build): Ensure git hooks from Makefile hace 5 años
src 582dea10f5 style(emqx_sys): make elvis happy hace 5 años
test c752f3bec5 Refactor http lib add uri parse (#4292) hace 5 años
vars d14b90ef2e chore(build): Feed relx overlay var from rebar.config.erl hace 5 años
.editorconfig 7f12db0180 add editorconfig for emqx hace 7 años
.gitignore 059d9fcaeb build(dashboard): get dashboard script support enterprise hace 5 años
.tool-versions bc29a1f9c4 chore(dev): Pin asdf erlang 23.2.2 hace 5 años
CONTRIBUTING.md ca47dae699 docs: format contributing hace 5 años
LICENSE 94c3e69b44 Licensed under the Apache, Version 2.0 hace 10 años
Makefile e1979bf488 chore(build): Single source of EMQX_DESCRIPTION hace 5 años
README-CN.md 61d73ea530 chore(dialyzer): optimize dialyzer run hace 5 años
README-JP.md c4d16c40a9 docs(dialyzer): use natural expression hace 5 años
README.md e283a3d165 docs(README.md): update Community section hace 5 años
build 73500a0983 chore(build): inject product description from makefile hace 5 años
docker.mk 617838cc49 build(docker): fix docker build error when image name not equal emqx hace 5 años
elvis.config aed58a14ee chore(build): rename lib-opensource to lib-ce for shorter name hace 5 años
pkg-vsn.sh 00a2daba19 chore(build): add more enterprise build support hace 5 años
rebar.config 6fb5c9de42 chore(deps): upgrade replayq to version 0.3.2 hace 5 años
rebar.config.erl d14b90ef2e chore(build): Feed relx overlay var from rebar.config.erl hace 5 años

README-CN.md

EMQ X Broker

GitHub Release Build Status Coverage Status Docker Pulls Slack Invite Twitter

最棒的物联网 MQTT 开源团队期待您的加入

English | 简体中文 | 日本語

EMQ X 是一款完全开源,高度可伸缩,高可用的分布式 MQTT 消息服务器,适用于 IoT、M2M 和移动应用程序,可处理千万级别的并发客户端。

从 3.0 版本开始,EMQ X 完整支持 MQTT V5.0 协议规范,向下兼容 MQTT V3.1 和 V3.1.1,并支持 MQTT-SN、CoAP、LwM2M、WebSocket 和 STOMP 等通信协议。EMQ X 3.0 单集群可支持千万级别的 MQTT 并发连接。

安装

EMQ X 是跨平台的,支持 Linux、Unix、macOS 以及 Windows。这意味着 EMQ X 可以部署在 x86_64 架构的服务器上,也可以部署在 Raspberry Pi 这样的 ARM 设备上。

EMQ X Docker 镜像安装

docker run -d --name emqx -p 1883:1883 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 emqx/emqx

二进制软件包安装

需从 EMQ X 下载 页面获取相应操作系统的二进制软件包。

从源码构建

3.0 版本开始,构建 EMQ X 需要 Erlang/OTP R21+。

git clone https://github.com/emqx/emqx-rel.git

cd emqx-rel && make

cd _rel/emqx && ./bin/emqx console

快速入门

# Start emqx
./bin/emqx start

# Check Status
./bin/emqx_ctl status

# Stop emqx
./bin/emqx stop

EMQ X 启动,可以使用浏览器访问 http://localhost:18083 来查看 Dashboard。

静态分析(Dialyzer)

分析所有应用程序
make dialyzer
要分析特定的应用程序,(用逗号分隔的应用程序列表)
DIALYZER_ANALYSE_APP=emqx_lwm2m,emqx_auth_jwt,emqx_auth_ldap make dialyzer

FAQ

访问 EMQ X FAQ 以获取常见问题的帮助。

产品路线

通过 EMQ X Roadmap uses Github milestones 参与跟踪项目进度。

社区、讨论、贡献和支持

你可通过以下途径与 EMQ 社区及开发者联系:

欢迎你将任何 bug、问题和功能请求提交到 emqx/emqx

MQTT 规范

你可以通过以下链接了解与查阅 MQTT 协议:

MQTT Version 3.1.1

MQTT Version 5.0

MQTT SN

开源许可

Apache License 2.0, 详见 LICENSE