출처: https://bumcrush.tistory.com/182 [맑음때때로 겨울]
반응형

https://mosquitto.org/download/ 

 

Download

Mosquitto Enhancements These projects can be used to add extra features to Mosquitto. Management Center: A web UI for managing Mosquitto instances. In particular, this offers a convenient UI for managing clients, groups and roles as in the new Dynamic Secu

mosquitto.org

나는 Windows 라서 mosquitto-2.0.14-install-windows-x64.exe 설치함 

 

default 로 모두 설치 하면 "C:\Program Files\mosquitto" 에 설치됨.

 

2. 환경설정

 2.1 mosquitto.conf -> 복사

 2.2 broker.conf 로 이름 변경

 2.3 관리자 권한으로 broker.conf 파일 실행 

listener 1883
allow_anonymous true

입력후 저장

 

3. 사용

cmd 창 을 하나 열어서 입력

cd C:\Program Files\mosquitto
mosquitto -v -c broker.conf

1883 으로 서버가 열린다.

 

cmd 창을 하나 더 오픈 

cd C:\Program Files\mosquitto
mosquitto_sub -t mytopic

topic은 mytopic 이고 해당되는 메시지가 들어올경우 출력해준다.

 

cmd 창 추가로 더 오픈

cd C:\Program Files\mosquitto
mosquitto_pub -t mytopic -m "Hello world"

cmd 창에 입력하게 되면 

 

사진과 같이 Hello world내용이 찍힌다.

 

반응형

+ Recent posts