Mosquitto

From Chorke Wiki
Jump to navigation Jump to search
df -h
vcgencmd measure_temp
apt list --upgradable
apt upgrade

apt -f install
apt install mosquitto/stable
apt install mosquitto-clients/stable
df -h

mosquitto -v
systemctl start mosquitto
systemctl status mosquitto
systemctl enable mosquitto

ssh -L 1883:localhost:1883 [email protected]

MQTT Users

cat > /etc/mosquitto/conf.d/users.conf <<'EOF'
# Chorke Academia, Inc
# MQTT Users Config

allow_anonymous false
password_file /etc/mosquitto/.mqpass
EOF

mosquitto_passwd -c /etc/mosquitto/mqpass admin
mosquitto_passwd -b /etc/mosquitto/.mqpass arduino

NodeRED

df -h
vcgencmd measure_temp
apt list --upgradable
apt upgrade

apt -f install
apt install nodered/stable
df -h

systemctl start nodered
systemctl status nodered
systemctl enable nodered
ssh -L 1880:localhost:1880 [email protected]
http://localhost:1880/

References