10分鐘搭建MQTT單機集群

2021-10-06 19:53:09 字數 805 閱讀 4145

yum install -y mosquitto

或者(apt-get install mosquitto)

cp -r /etc/mosquitto /etc/mosquitto_1884

cp -r /etc/mosquitto /etc/mosquitto_1885

vim /etc/mosquitto/mosquitto.conf

allow_anonymous true     開啟匿名模式,ip需要修改

connection bridge1

address ip:1884

topic # both 0 "" ""

connection bridge2

address ip:1885

topic # both 0 "" ""

修改從節點:

修改port 分為為 1884 和1885 

vim /etc/mosquitto_1884/mosquitto.conf

vim /etc/mosquitto_1885/mosquitto.conf

mosquitto -c /etc/mosquitto_1884/mosquitto.conf -d 

mosquitto -c /etc/mosquitto_1885/mosquitto.conf -d 

mosquitto -c /etc/mosquitto/mosquitto.conf -d 

安裝mqtt-fx工具。或者使用mosquitto_sub mosquitto_pub命令

傳送到1884 和1885的節點上的訊息均可在1883埠看到

10分鐘快速搭建本地微服務

啟動mongdb,注意提前新建db目錄 mongod dbpath d workspace db安裝服務端 cnpm install g parse server配置並啟動服務端 安裝成功之後,mongod 命令啟動mongo資料庫。瀏覽器下輸入 如果能正常顯示mongo資料庫的資訊,則表示啟動成功...

5分鐘看會 redis分片集群搭建

分片集群模式解決了單機redis記憶體容量有限的問題,資料儲存到多個redis例項裡面,資料量過大可以新增機器擴容 此處用3臺伺服器,6個例項 3主3從 進行集群模擬 wget tar zxvf redis 5.0.5.tar.gz make 缺少gcc的話 yum y install gcc au...

10分鐘 深入less

三種方式引用less 瀏覽器引用 less.js link type text lesss node中使用 工程中使用 變數 key value在js中,條件語句中 可以使用 if,else,switch定義,less中語句中跟switch中case比較像。less 沒有像js中這樣的關鍵字,但是也...