[Centos]

$ sudo yum -y install epel-release

$ sudo yum -y install mosquitto

$ sudo systemctl start mosquitto

 

$ sudo systemctl status mosquitto

$ sudo systemctl enable mosquitto (자동 서비스 실행)

 

# 실행확인

$ mosquitto -v 

 

 

# Subscriber 실행
$ mosquitto_sub -h localhost -t /testTopic

# Publisher
$ mosquitto_pub -h localhost -t /testTopic -m "Test"

 

==============================================================

 

[Ubuntu]

$ sudo apt-get update

 

$ sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppa

 

$ apt-cache policy mosquitto

 

$ sudo apt install mosquitto

$ sudo apt install mosquitto-clients

$ sudo systemctl status mosquitto.service


# Subscriber 실행
$ mosquitto_sub -h localhost -t /testTopic

# Publisher
$ mosquitto_pub -h localhost -t /testTopic -m "Test"

 

[특정버전설치]
sudo apt-cache policy mosquitto

sudo apt-get install mosquitto=1.6.9-1

 

+ Recent posts