Created
October 23, 2016 17:21
-
-
Save vladbabii/69152ba84e448f0f2e41c1c354662991 to your computer and use it in GitHub Desktop.
Compile EMQTT on Raspberry Pi 3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
apt-get install git erlang-base erlang-crypto erlang-eunit erlang-mnesia erlang-runtime-tools erlang-syntax-tools erlang-asn1 erlang-public-key erlang-ssl erlang-inets erlang-snmp erlang-os-mon erlang-webtool erlang-tools erlang-xmerl erlang-dev erlang-edoc erlang-eldap erlang-gs erlang-appmon erlang-wx erlang-et erlang-observer | |
# then follow instructions from http://emqtt.io/docs/v2/install.html#installing-from-source | |
git clone https://github.com/emqtt/emqttd-relx.git | |
cd emqttd-relx | |
make | |
# to start cd to bin then run emqttd console | |
# cd _rel/emqttd/bin/ | |
# ./emqttd console |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also need to add
apt-get install rebar
before the git command