Mosquitto服务器搭建成功之后,可以考虑设置用户名与密码,增加服务其安全性。
方法如下:
1、找到并打开Mosquitto服务器的配置文件 /etc/mosquitto/mosquitto.conf
2、将其中的配置选项allow_anonymous改为 false,禁止匿名登录
allow_anonymous false
3、将密码配置选项配置如下:
password_file /etc/mosquitto/pwfile
4、如果该目录下没有该文件,则进入该目录,并拷贝一份,命令如下:
cp pwfile.example pwfile
5、添加用户信息。在终端执行以下代码,应用mosquitto_passwd命令创建用户名
mosquitto_passwd -c /etc/mosquitto/pwfile username
执行以后会提示输入密码,重复2次输入之后,用户名密码配置完成。
6、重新启动mosquitto服务之后,用户名密码生效
mosquitto -c /etc/mosquitto/mosquitto.conf