標籤: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用戶端進行驗證