MQTT服务器搭建--Mosquitto用户名密码配置
Mosquitto用户认证配置
前言:基于Mosquitto服务器已经搭建成功,大部分都是采用默认的是允许匿名用户登录模式,正式上线的系统需要进行用户认证。
Mosquitto服务器的配置文件为/etc/mosquitto/mosquitto.conf,关于用户认证的方式和读取的配置都在这个文件中进行配置。
password_file /etc/mosquitto/pwfile
#mosquitto_passwd -c /etc/mosquitto/pwfile chisj
通过Ctrl+C关闭mosquitto,然后通过下面命令启动Mosquitto
# mosquitto-c /etc/mosquitto/mosquitto.conf
#mosquitto_sub -h 192.168.1.100 -t mtopic -u chisj -P chisj
#mosquitto_pub -h 192.168.1.100 -t mtopic -u chisj -P chisj -m "test"
大悲无泪--大悟无言--大笑无声