17 lines
248 B
Plaintext
17 lines
248 B
Plaintext
```
|
|
$ sudo apt install mosquito -y
|
|
#zazeni broker
|
|
$ mosquito -c mosquitto.conf -v
|
|
```
|
|
|
|
|
|
# config file za broker: mosquito.conf
|
|
```
|
|
#Protocol mqtt ali websocket
|
|
protocol mqtt
|
|
# port za poslušanje
|
|
listener 1883
|
|
# no creds
|
|
allow_anonymous true
|
|
```
|