MacにEclipse MosquittoをインストールしてPub/Subを試す。
インストール/アンインストール
Homebrewで以下のように簡単にインストール/アンインストール出来る。
brew install mosquitto
brew uninstall mosquitto
サーバの開始/停止
サーバの開始と停止も簡単。
brew services start mosquitto
brew services stop mosquitto
websocket対応
websocketを使う場合は、
code /usr/local/etc/mosquitto/mosquitto.conf
の最後に
listener 1883
listener 9001
protocol websockets
allow_anonymous true
のように追加しサービスを再起動すると、
brew services restart mosquitto
以下のように呼び出すことが出来る。
"ws://localhost:9001"
のように呼び出せる。