create emqx project

Zaiming Shi 45dfc8a2fa chore(test): make app-ct run easier il y a 4 ans
.ci 280fedca0d chore(CI): cts support enterprise repos il y a 4 ans
.github 7ea69f56be chore(CI): fix cts error il y a 4 ans
apps 99843e7b4b chore(auth plugins): remove emqx_modules in test case il y a 4 ans
bin 178404c821 chore(build): add rebar_mix plugin il y a 4 ans
data e1979bf488 chore(build): Single source of EMQX_DESCRIPTION il y a 5 ans
deploy fc0dea75e4 feat(helm): allow custom securityContext il y a 4 ans
etc 2232bca150 chore(config): update enum for config item il y a 4 ans
include 00a2daba19 chore(build): add more enterprise build support il y a 5 ans
lib-ce beac1f5f59 fix(test cases): fix test case error il y a 4 ans
lib-extra 8f6e02c322 chore(lib-extra): Pin elixir plugin dependency with tag il y a 4 ans
priv 2232bca150 chore(config): update enum for config item il y a 4 ans
scripts 45dfc8a2fa chore(test): make app-ct run easier il y a 4 ans
src 8201e4c820 feat(emqx.erl): Add a help function to load debug secret il y a 4 ans
test 72c1ee264c chore(elvis): fix elvis error il y a 4 ans
.editorconfig 7f12db0180 add editorconfig for emqx il y a 7 ans
.gitattributes b397b56db7 chore(gitattributes): fix file classification. il y a 4 ans
.gitignore 4373367c15 chore(script): Add a script to split emqx.conf il y a 4 ans
.tool-versions bc29a1f9c4 chore(dev): Pin asdf erlang 23.2.2 il y a 5 ans
CONTRIBUTING.md ca47dae699 docs: format contributing il y a 5 ans
LICENSE 94c3e69b44 Licensed under the Apache, Version 2.0 il y a 10 ans
Makefile 45dfc8a2fa chore(test): make app-ct run easier il y a 4 ans
README-CN.md 2e8dbe9130 fix(README): update README files il y a 4 ans
README-JP.md c4d16c40a9 docs(dialyzer): use natural expression il y a 5 ans
README.md 45dfc8a2fa chore(test): make app-ct run easier il y a 4 ans
Windows.md 96bd561790 feat(windows): Support environment variable override for windows il y a 4 ans
build 73500a0983 chore(build): inject product description from makefile il y a 5 ans
docker.mk 862e484944 chore(CI): build workflow support enterprise repo (#4363) il y a 4 ans
elvis.config aed58a14ee chore(build): rename lib-opensource to lib-ce for shorter name il y a 5 ans
pkg-vsn.sh 00a2daba19 chore(build): add more enterprise build support il y a 5 ans
rebar.config 8e45fa1c8b feat(observer_cli): Add observer_cli il y a 4 ans
rebar.config.erl ddec66fe35 chore(build): remove plugin regression for now il y a 4 ans

README-CN.md

EMQ X Broker

GitHub Release Build Status Coverage Status Docker Pulls Slack Invite Twitter Community

最棒的物联网 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 8081:8081 -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