浏览代码

Update mqtt-install.sh

create `/etc/mosquitto/conf.d/default.conf`
tteckster 1 年之前
父节点
当前提交
f796767e06
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      install/mqtt-install.sh

+ 6 - 0
install/mqtt-install.sh

@@ -22,6 +22,12 @@ msg_ok "Installed Dependencies"
 msg_info "Installing Mosquitto MQTT Broker"
 $STD apt-get -y install mosquitto
 $STD apt-get -y install mosquitto-clients
+cat <<EOF >/etc/mosquitto/conf.d/default.conf
+allow_anonymous false
+persistence true
+password_file /etc/mosquitto/passwd
+listener 1883
+EOF
 msg_ok "Installed Mosquitto MQTT Broker"
 
 motd_ssh