왕논의 연구실

[iOS] MQTT를 이용한 채팅서비스 만들기 - MQTT mosquitto 서버 설치 본문

iOS/iOS

[iOS] MQTT를 이용한 채팅서비스 만들기 - MQTT mosquitto 서버 설치

ywangnon 2020. 4. 22. 23:56

구독을 중계해줄 서버가 필요하기 때문에 서버 설치를 해야한다.

 

홈브류가 없다면 설치

https://brew.sh/index_ko

 

Homebrew

The Missing Package Manager for macOS (or Linux).

brew.sh

그냥 이 문구를 터미널에 붙여넣으면 된다.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

 

 

모스키토 사이트

https://mosquitto.org

 

Eclipse Mosquitto

Eclipse Mosquitto is an open source (EPL/EDL licensed) message broker that implements the MQTT protocol versions 5.0, 3.1.1 and 3.1. Mosquitto is lightweight and is suitable for use on all devices

mosquitto.org

모스키토 설치

brew install mosquitto

 

모스키토 서비스 실행

brew services start mosquitto

 

모스키토 서비스 중지

brew services stop mosquitto

 

출처:

http://lemonheim.blogspot.com/2017/01/mqtt-mosquitto-mac.html

 

MQTT mosquitto 서버 Mac 설치/ 테스트

lemonheim's program note

lemonheim.blogspot.com