-
Notifications
You must be signed in to change notification settings - Fork 0
Mosquitto Intel Edison
SeventhSERGIO edited this page Jun 28, 2018
·
2 revisions
wget https://mosquitto.org/files/source/mosquitto-1.3.5.tar.gz
tar xzf mosquitto-1.3.5.tar.gz
cd mosquitto-1.3.5
make WITH_SRV=no
adduser mosquitto
cd test/broker
make test
cd ../../
cp client/mosquitto_pub /usr/bin
cp client/mosquitto_sub /usr/bin
cp lib/libmosquitto.so.1 /usr/lib
cp src/mosquitto /usr/bin
mosquitto -p 1993
mosquitto_sub -h 192.168.1.89 -p 1993 -t test
mosquitto_pub -h 192.168.1.89 -p 1993 -t test -m "Hello Communications Learners!"
sudo kill mosquitto