訪問是否啟動成功:127.0
.0.1
:18083
賬號:admin
密碼:public
停止服務命令:進入cmd視窗 \bin>emqx stop 關閉服務
新增使用者:
使用者名稱密碼認證
基於 mqtt 登入使用者名稱(username)、密碼(password)認證。
etc/plugins/emqx_auth_username.conf 中配置預設使用者:
auth.user.$n
.username = admin
auth.user.$n
.password =
public
## 啟用 emqx_auth_username 外掛程式:
服務必須啟動:
\emqx\bin>emqx_ctl plugins load emqx_auth_username
## 使用 ./bin/emqttd_ctl users 命令新增使用者:
\bin>emqx_ctl users add <
username
>
<
password
>
## etc/emqx.conf 配置關閉匿名認證:
allow
anonymous authentication
allow_anonymous =
true 更改為 false
使用指令碼關閉訂單頭
訂單的關閉是自動的,在所有行工作流結束 close或者cancel 後0.5天,訂單頭也將在workflow background process的推動下關閉。還有另外一種說法 you can wait until month end and the order flow generic workf...
window系統關閉占用埠使用
window系統總是會出現埠被占用的問題,網上也有很多教程來處理埠占用問題,我們一般通過cmd命令來解決這個問題 1.在執行面板中輸入cmd開啟cmd面板 2.在cmd面板中輸入 netstat ano可以檢視電腦所有埠被占用的情況,使用netstat ano findstr 埠號 例如 netst...
golang defer使用 資源關閉時候多用
go語言中有種不錯的設計,即延遲 defer 語句,你可以在函式中新增多個defer語句。當函式執行到最後時,這些defer語句會按照逆序執行,最後該函式返回。特別是當你在進行一些開啟資源的操作時,遇到錯誤需要提前返回,在返回前你需要關閉相應的資源,不然很容易造成資源洩露等問題。如下 所示,我們一般...