zoukankan      html  css  js  c++  java
  • Openwrt21 设置mosquitto账号密码

    设置用户名和密码

          1: 打开mosquitto.conf文件,找到allow_anonymous节点,这个节点作用是,是否开启匿名用户登录,默认是true。打开此项配置(将前面的 # 号去掉)之后将其值改为true

        修改前:#allow_anonymous

        修改后:allow_anonymous false

      2: 找到password_file节点,这个节点是告诉服务器你要配置的用户将存放在哪里。打开此配置并指定pwfile.example文件路劲(注意是绝对路劲)

        修改前:#password_file

        修改后:password_file /etc/mosquitto/pwfile.example (这里的地址根据自己文件实际位置填写)

      3: 创建用户名和密码、打开命令窗口 键入如下命令:  

    mosquitto_passwd -c /etc/mosquitto/pwfile.example admin
        提示连续两次输入密码、创建成功。命令解释: -c 创建一个用户、/etc/mosquitto/pwfile.example 是将用户创建到 pwfile.example  文件中、admin 是用户名。

      4: 创建mosquitto用户。在命令窗口键入如下命令:

    mosquitto_passwd /etc/mosquitto/pwfile.example mosquitto
        同样连续会提示连续输入两次密码。注意第二次创建用户时不用加 -c 如果加 -c 会把第一次创建的用户覆盖。

    至此两个用户创建成功,此时如果查看 pwfile.example 文件会发现其中多了两个用户。

  • 相关阅读:
    编写StyleCop自定义规则教程(二)校验规则增加配置参数
    XtraReport学习笔记之Bookmark (一)
    Web Application Firewall(WAF)
    CAN/CFN/CPN
    什么是 SASE?
    FEC 前向纠错
    VPP usage
    强化学习
    What Is a RAN Intelligent Controller (RIC)?
    Read Up: Connection Management xAPP for ORAN RIC: A Graph Neural Network and Reinforcement Learning Approach
  • 原文地址:https://www.cnblogs.com/z3286586/p/14924381.html
Copyright © 2011-2022 走看看