当前位置:   article > 正文

使用docker-compose 搭建mqtt服务器_mqtt docker-compose

mqtt docker-compose

参考: https://blog.csdn.net/weixin_43790195/article/details/104633271

docker-compose-mqtt.yml

version: "3.7" 
services:
    mqtt:
        image: eclipse-mosquitto:2 
        container_name: mqtt
        privileged: true 
        ports: 
            - 1883:1883
            - 9001:9001
        volumes:
            - ./config:/mosquitto/config
            - ./data:/mosquitto/data
            - ./log:/mosquitto/log
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

config文件夹中放
mosquitto.conf

persistence true
listener 1883
persistence_location /mosquitto/data
log_dest file /mosquitto/log/mosquitto.log

# 关闭匿名模式
# allow_anonymous false
# 指定密码文件
# password_file /mosquitto/config/pwfile.conf
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

docker-compose -f docker-compose-mqtt.yml up -d

此时连接时没有密码的

密码配置 分三步

  1. 修改配置文件
# 关闭匿名模式
allow_anonymous true
# 指定密码文件
password_file /mosquitto/config/pwfile.conf
  • 1
  • 2
  • 3
  • 4
  1. 进入docker内部生成密码
进入容器内部
 docker exec -it mqtt sh
 
 生成文件 创建密码
touch /mosquitto/config/pwfile.conf
chmod -R 755 /mosquitto/config/pwfile.conf
# 使用mosquitto_passwd命令创建用户,admin是用户名,admin_123是密码
mosquitto_passwd -b /mosquitto/config/pwfile.conf admin admin_123
退出 
exit 或者 Ctrl + D
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  1. 重启容器
docker restart mqtt
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/560371
推荐阅读
相关标签
  

闽ICP备14008679号