[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
'Data Engineering > MQTT' 카테고리의 다른 글
RabbitMQ 윈도우 설치 (0) | 2022.02.08 |
---|---|
Mosquitto 도커 설치 (0) | 2022.02.07 |
Mosquitto Web Socket 설정 (0) | 2022.01.27 |
Mosquitto 접속오류 (대상 컴퓨터에서 연결을 거부했으므로 연결하지 못했습니다) (0) | 2022.01.27 |
Mosquitto broker id/password 설정(리눅스/윈도우) (0) | 2021.12.28 |