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