2017년 1월 11일 수요일

MQTT mosquitto 서버 Mac 설치/ 테스트

MQTT mosquitto 서버 설치와 간이 테스트

https://mosquitto.org


모스키토 설치

brew install mosquitto


모스키토 서비스 실행

brew services start mosquitto

모스키토 서비스 중지

brew services stop mosquitto

비서비스 실행

/usr/local/sbin/mosquitto -c /usr/local/etc/mosquitto/mosquitto.conf

lemonheim~$ /usr/local/sbin/mosquitto -c /usr/local/etc/mosquitto/mosquitto.conf
1515670129: mosquitto version 1.4.14 (build date 2017-10-22 16:34:39+0100) starting
1515670129: Config loaded from /usr/local/etc/mosquitto/mosquitto.conf.
1515670129: Opening ipv6 listen socket on port 1883.
1515670129: Opening ipv4 listen socket on port 1883.

메세지 구독

mosquitto_sub -h [주소] -p [포트] -t [주제, 방제목]

/usr/local/opt/mosquitto/bin/mosquitto_sub -h 127.0.0.1 -p 1883 -t topic

메시지 발행(퍼블리싱)

mosquitto_pub -h [주소] -p [포트] -t [주제, 방제목] -m [메세지]

/usr/local/opt/mosquitto/bin/mosquitto_pub -h 127.0.0.1 -p 1883 -t topic -m "test messgae"