본문 바로가기

카테고리 없음

[MQTT] mosquitto(모스키토) 설치 및 실행 / m2 , 홈브루(homebrew)

 

1. 설치

 brew install mosquitto

 

 

설치가 완료되면 아래와 같이 설명이 출력됨

 

/opt/homebrew/etc/mosquitto/mosquitto.conf 를 편집하여 configuration을 수정할 수 있음

sudo nano /opt/homebrew/etc/mosquitto/mosquitto.conf

 

 

2. 실행

서비스가 실행중이지 않을 경우 실행 됨, 실행중이라면 아무 변화 없음

brew services start mosquitto

 

 

백그라운드 서비스를 원하지 않으면 아래와 같이 실행

/opt/homebrew/opt/mosquitto/sbin/mosquitto -c 
/opt/homebrew/etc/mosquitto/mosquitto.conf

 

 

3. 중지

brew services stop mosquitto

 

 

 

4. 재실행

실행과 다른점: 이미 서비스가 실행중이라면 서비스를 중단하고 재시작

brew services restart mosquitto