色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

docker安裝emqx

Docker 是一個基于容器化技術的開源項目,可以快速構建、發(fā)布和運行分布式應用程序,其中包括了 EMQ X 的安裝及部署。下面我們將通過 Docker 安裝 EMQ X 集群。

步驟如下:

一、安裝 Docker CE

$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
$ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
$ sudo add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"
$ sudo apt-get update
$ sudo apt-get install docker-ce

二、拉取 EMQ X 鏡像

$ docker pull emqx/emqx

三、創(chuàng)建 EMQ X 容器

$ docker run -d --name emqx -p 1883:1883 -p 8083:8083 -p 8883:8883 -p 8084:8084 -p 18083:18083 emqx/emqx

四、查看 EMQ X 容器運行情況

$ docker ps

五、通過瀏覽器訪問 EMQ X 管理控制臺

http://localhost:18083

六、配置 EMQ X 集群

# 配置文件路徑
$ cd /etc/emqx/
# 創(chuàng)建新的應用程序配置文件
$ cp emqx.conf emqx1.conf
# 修改配置文件
$ vim emqx1.conf
# 啟動應用程序
$ emqx start

以上為 Docker 安裝 EMQ X 集群的步驟,對于有需要的用戶也可以嘗試安裝和部署一下。