Update Makefile and README.md
This commit is contained in:
parent
dc9a1cd80f
commit
a4efcb5b2c
4
Makefile
4
Makefile
|
@ -10,8 +10,8 @@ dep_jsx = git https://github.com/talentdeficit/jsx 2.9.0
|
||||||
dep_gproc = git https://github.com/uwiger/gproc 0.8.0
|
dep_gproc = git https://github.com/uwiger/gproc 0.8.0
|
||||||
dep_gen_rpc = git https://github.com/emqx/gen_rpc 2.2.0
|
dep_gen_rpc = git https://github.com/emqx/gen_rpc 2.2.0
|
||||||
dep_lager = git https://github.com/erlang-lager/lager 3.6.4
|
dep_lager = git https://github.com/erlang-lager/lager 3.6.4
|
||||||
dep_esockd = git https://github.com/emqx/esockd emqx30
|
dep_esockd = git https://github.com/emqx/esockd v5.4
|
||||||
dep_ekka = git https://github.com/emqx/ekka emqx30
|
dep_ekka = git https://github.com/emqx/ekka v0.4.1
|
||||||
dep_cowboy = git https://github.com/ninenines/cowboy 2.4.0
|
dep_cowboy = git https://github.com/ninenines/cowboy 2.4.0
|
||||||
dep_clique = git https://github.com/emqx/clique
|
dep_clique = git https://github.com/emqx/clique
|
||||||
dep_lager_syslog = git https://github.com/basho/lager_syslog 3.0.1
|
dep_lager_syslog = git https://github.com/basho/lager_syslog 3.0.1
|
||||||
|
|
20
README.md
20
README.md
|
@ -13,7 +13,7 @@ Starting from 3.0 release, *EMQ X* broker fully supports MQTT V5.0 protocol spec
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
The *EMQ* broker is cross-platform, which can be deployed on Linux, Unix, Mac, Windows and even Raspberry Pi.
|
The *EMQ X* broker is cross-platform, which can be deployed on Linux, Unix, Mac, Windows and even Raspberry Pi.
|
||||||
|
|
||||||
Download the binary package for your platform from [here](http://emqtt.io/downloads).
|
Download the binary package for your platform from [here](http://emqtt.io/downloads).
|
||||||
|
|
||||||
|
@ -23,27 +23,27 @@ Download the binary package for your platform from [here](http://emqtt.io/downlo
|
||||||
|
|
||||||
## Build From Source
|
## Build From Source
|
||||||
|
|
||||||
The *EMQ* broker requires Erlang/OTP R21+ to build since 3.0 release.
|
The *EMQ X* broker requires Erlang/OTP R21+ to build since 3.0 release.
|
||||||
|
|
||||||
```
|
```
|
||||||
git clone https://github.com/emqtt/emq-relx.git
|
git clone https://github.com/emqx/emqx-rel.git
|
||||||
|
|
||||||
cd emq-relx && make
|
cd emqx-rel && make
|
||||||
|
|
||||||
cd _rel/emqttd && ./bin/emqttd console
|
cd _rel/emqx && ./bin/emqx console
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
|
||||||
# Start emqttd
|
# Start emqx
|
||||||
./bin/emqttd start
|
./bin/emqx start
|
||||||
|
|
||||||
# Check Status
|
# Check Status
|
||||||
./bin/emqttd_ctl status
|
./bin/emqx_ctl status
|
||||||
|
|
||||||
# Stop emqttd
|
# Stop emqx
|
||||||
./bin/emqttd stop
|
./bin/emqx stop
|
||||||
|
|
||||||
To view the dashboard after running, use your browser to open: http://localhost:18083
|
To view the dashboard after running, use your browser to open: http://localhost:18083
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue