您好,登錄后才能下訂單哦!
這篇文章的知識點包括:mosquitto的安裝下載、mosquitto的配置以及mosquitto的使用,閱讀完整文相信大家對MQTT服務器中mosquitto的有了一定的認識。
Mosquitto有很多版本,如果想體驗新版本可以上github下載源文件編譯,比較麻煩。我這里使用Mosquiitto提供的windows版本,雖然版本不是最新的,但是穩定。
從官網下載https://mosquitto.org/download/, 目前最新版本為
mosquitto-1.6.8-install-windows-x64.exe
雖然一路“下一步”很爽,為了默認的路徑“C:\Program Files\mosquitto”包含了空格,所以這里安裝時在C盤的mosquitto目錄下。
如下圖所示,點擊啟動服務后,mosquitto命令才可用。
進入“C:\mosquitto”目錄下,可以查看mosquitto的配置文件及命令
找到mosquitto.conf文件,在任意位置添加如下代碼,重啟服務生效。
# 設置不允許匿名登錄
allow_anonymous false
# 設置賬戶密碼文件位置為C:\mosquitto\pwfile.example
password_file /mosquitto/pwfile.example
mosquitto_passwd -c pwfile.example username (使用-c 參數會導致清空密碼文件,重新插入用戶)
mosquitto_passwd pwfile.example username(不使用-c 表示追加用戶,不影響舊用戶)
C:\mosquitto>mosquitto_passwd.exe pwfile.example username
Password:
Reenter password:
添加成功后pwfile.example會出現剛剛添加的用戶信息。
新開一命令行窗口,使用以下命令啟動服務。
C:\mosquitto>mosquitto.exe -c mosquitto.conf
新開一命令行窗口,訂閱消息 mosquitto_sub -u cx -P cx -t 'virus /topic' -v, 當執行5.3命令時,該窗口會接收到訂閱消息。
C:\mosquitto>mosquitto_sub -u cx -P cx -t 'virus /topic' -v
'virus/topic' '消滅病毒'
'virus/topic' '消滅病毒'
'virus /topic' '消滅病毒'
新開一命令行窗口,發送消息 mosquitto_pub -u cx -P cx -t 'virus/topic' -m '消滅病毒'
C:\mosquitto>mosquitto_pub -u cx -P cx -t 'virus/topic' -m '消滅病毒'
看完上述內容,你們對MQTT服務器中mosquitto有進一步的了解嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。