mosquitto參數怎么配置?
1、查看CentOS版本
cat /etc/redhat-release
返回:CentOS Linux release 7.4.1708 (Core),如果系統不是最新版本,執行yum update更新
2、通過yum install mosquitto安裝mosquitto
配置文件在/etc/mosquitto下
3、去騰訊云或者阿里云申請免費的域名證書,下載證書到服務器,解壓到/etc/mosquitto/cert下
4、配置mosquitto
mv /etc/mosquitto/mosquitto,conf /etc/mosquitto/mosquitto.conf.bak
把下面的內容復制到 /etc/mosquitto/mosquitto.conf
5、啟動服務端
mosquitto -c /etc/mosquitto/mosquitto.conf -d
-d 后臺運行
-c 指定配置文件路徑
6、測試tls websocket連接
hivemq有個在線的測試工具,我們用他們的,
http://www.hivemq.com/demos/websocket-client/
host填寫:
http://www.mengmeitong.com
port填寫:8883
選中SSL復選框,然后點擊 Connect 按鈕,能連接成功,就表示配置正確。