CentOS下安装mosquitto(MQTT)

来源:互联网 发布:数据库工程师待遇 编辑:程序博客网 时间:2024/05/22 04:28

What you'll need:
  • Port 1883 to be open to incoming MQTT messages
Step 1: Add the CentOS mosquitto repository to YUM's list of repositories
  1. $ cd /etc/yum/yum.repos.d
  2. $ wget http://download.opensuse.org/repositories/home:/oojah:/mqtt/CentOS_CentO...
  3. $ sudo yum update
Step 2: Install mosquitto
  1. $ sudo yum install mosquitto
Step 3: Run mosquitto

As of writing, no init.d script exists for the CentOS distribution of mosquitto. However, it is a simple enough matter to set it running as a daemon, you'll just need to restart it yourself whenever your machine gets restarted.

  1. $ sudo su
  2. $ /usr/sbin/mosquitto -d -c /etc/mosquitto/mosquitto.conf > /var/log/mosquitto.log 2>&1

 

Mosquitto should now be running! You can test it by pointing mosquitto_pub and _sub at it.

0 0
原创粉丝点击