win emqx设置mqtt用户名密码
时间: 2023-07-11 11:28:37 浏览: 168
要在 Win 版本的 EMQ X 中设置 MQTT 用户名和密码,可以按照以下步骤进行操作:
1. 找到 EMQ X 安装目录下的 `etc` 文件夹,进入该文件夹。
2. 打开 `emqx_auth_username.conf` 文件,在文件中添加以下内容:
```
## auth.username: Enable Authentication with Username/Password
##
## true: Enable username/password authentication
## false: Disable username/password authentication
##
## Value: true, false
auth.username = true
## auth.username.default_role: Default User Role
##
## The default role of the user after successful authentication
##
## Value: atom
auth.username.default_role = user
## auth.username.password_hash: Password Hashing Algorithm
##
## The algorithm used to hash the password.
##
## Value: plain, md5, sha, sha256, sha512, bcrypt
auth.username.password_hash = bcrypt
```
3. 在 `auth.username.password_hash` 属性中选择密码哈希算法,这里选择 bcrypt 算法,它提供了更好的安全性。
4. 在 `etc` 文件夹中创建一个新的 `emqx_auth_username.conf` 文件,添加以下内容:
```
## User: test
##
## Password: test
##
## Roles: user
##
## password_hash: bcrypt
##
## 注意:此处为示例,实际使用时应该更改用户名和密码
test.$2a$10$u1WuTzCwXQ6ZvMvL0B8QgO5wN5Z5qOwD0xE/3c/UJlHjyI4k9A4g6
```
5. 在 `emqx_auth_username.conf` 文件中,为每个用户添加一个条目,包括用户名、密码哈希值和角色。
6. 保存文件并重启 EMQ X 服务器,使更改生效。
这样,你就成功地为 Win 版本的 EMQ X 设置了 MQTT 用户名和密码。
阅读全文