轉:使用Mosquitto-Auth-Plugin對mqtt用戶端進行驗證

來源:互聯網
上載者:User

標籤:dev   驗證   mysql資料庫   Opens   sql   git   資料庫   load   hub   

https://www.lixiaodong.com/?p=163
1.安裝需要的包
sudo apt-get install libc-ares-dev libcurl4-openssl-dev libmysqlclient-dev
2.下載mosquitto源碼並編譯安裝
從http://mosquitto.org/download/ 下載源碼並解壓到某個目錄,進入該目錄編譯安裝
make mosquitto
sudo make install
3.下載mosquitto-auth-plug源碼
git clone https://github.com/jpmens/mosquitto-auth-plug.git
並使用copy命令產生config.mk檔案:cp config.mk.in config.mk
編輯config.mk:根據需要選擇合適的後台。我這裡只使用mysql資料庫驗證使用者,BACKEND_MYSQL這一行是yes,其餘行都是no。在MOSQUITTO_SRC一行輸入mosquitto的源碼路徑,比如MOSQUITTO_SRC =/root/mosquitto-1.4.4/
。在OPENSSLDIR一行輸入openssl的路徑,比如OPENSSLDIR = /usr/lib/ssl。
可以使用以下命令得到openssl的路徑:openssl version -a
4.進入mosquitto-auth-plug所在目錄,使用make命令產生so檔案。
5.移動so檔案到mosquitto目錄(不是源碼目錄,而是安裝後的目錄)
mv auth-plug.so /etc/mosquitto/
6.編輯mosquitto設定檔
mosquitto-auth-plug的源碼裡已經有多種範例設定檔,可以使用這些檔案。比如,我用mysql做驗證,可以使用 examples目錄下的mosquitto-mysql.conf。
mv mosquitto.conf mosquitto.conf.origin(保留原始設定檔,供以後使用)
mv mosquitto-auth-plug目錄/examples/mosquitto-mysql.conf mosquitto目錄/mosquitto.conf
根據實際情況,編輯檔案裡的auth_plugin,backend,資料庫host,連接埠,資料庫名,使用者,密碼,sql語句等。
7.運行mosquitto並觀察輸出
mosquitto -c mosquitto-conf -v


問題:
1. 輸出顯示Unable to load auth plugin ".../auth-plug.so"
解決:
編輯Mosquitto源碼目錄下的config.mk:WITH_SRV:=no
然後重新編譯:
make clean
make
產生新的so檔案。

轉:使用Mosquitto-Auth-Plugin對mqtt用戶端進行驗證

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.