首页 > 系统服务 > 详细

mosquitto MQTT message broker on ubuntu/debian built from source

时间:2014-11-23 18:54:21      阅读:1093      评论:0      收藏:0      [点我收藏+]

what is mosquitto?

check this out!

http://mosquitto.org

what is MQTT?

check this out.

http://mqtt.org

 

sudo apt-get install libc-ares-dev libc-ares2 -y
wget -c http://mosquitto.org/files/source/mosquitto-1.3.5.tar.gz
tar -xzvf mosquitto-1.3.5.tar.gz -C /usr/local/src
cd /usr/local/src/mosquitto-1.3.5
sudo make
sudo make install
# if you can not find the libmosquitto.so.1
sudo ln -s /usr/local/lib/libmosquitto.so.1 /usr/lib/libmosquitto.so.1
sudo ldconfig

then try this:

Step 1.

Start the mosquitto server

mosquitto -v # v for more information

bubuko.com,布布扣

 

Here is another one which is in Chinese and understanding consuming. It is from here:

http://blog.csdn.net/xukai871105/article/details/39252653

bubuko.com,布布扣

Step 2.

Subscribe a topic

bubuko.com,布布扣

 

Step 3.

Publish a message to a topic

bubuko.com,布布扣

 

Explain:

bubuko.com,布布扣

 

3rd-party libs:

http://mosquitto.org/documentation/

One good in python mostly:

http://mosquitto.org/documentation/python/

download that from https://pypi.python.org/pypi/paho-mqtt

 

mosquitto MQTT message broker on ubuntu/debian built from source

原文:http://www.cnblogs.com/spaceship9/p/4117200.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!