Debian 安裝 EMQ X 服務器指南

系統要求

  • Stretch (Debian 9)
  • Jessie (Debian 8)

安裝 EMQ X

您能夠根據須要以不一樣方式安裝 EMQ X :html

  • 設置 EMQ X 的鏡像庫並從中進行安裝,以便於安裝和升級任務。
  • 手動下載軟件包並安裝。

使用鏡像庫安裝 EMQ X

在新主機上首次安裝 EMQ X 以前,須要設置 EMQ X 鏡像庫。 以後,您能夠從鏡像庫安裝和更新 EMQ X 。git

設置鏡像庫

1.更新 apt 包索引:github

$ sudo apt update

2.安裝必要的軟件:curl

$ sudo apt install -y \
  apt-transport-https \
  ca-certificates \
  curl \
  gnupg-agent \
  software-properties-common

3.添加 EMQ X 的官方 GPG 密鑰:ide

$ curl -fsSL https://repos.emqx.io/gpg.pub | sudo apt-key add -

驗證密鑰測試

$ sudo apt-key fingerprint 3E640D53

pub  rsa2048 2019-04-10 [SC]
        FC84 1BA6 3775 5CA8 487B 1E3C C0B4 0946 3E64 0D53
uid       [ unknown] emqx team <support@emqx.io>

4.使用如下命令設置 stable 鏡像庫。 要添加 unstable 鏡像庫,在如下命令中的單詞 stable 以後添加單詞 unstable。ui

注意:下面的 lsb_release -cs 子命令返回 Debian 發行版的名稱,例如 helium。 有時,在像BunsenLabs Linux這樣的發行版中,可能須要將 $(lsb_release -cs) 更改成父 Debian 發行版。 例如,若是使用的是 BunsenLabs Linux Helium ,則能夠使用 stretch 。 EMQ X 不對未經測試和不受支持的 Debian 發行版提供任何保證。
$ sudo add-apt-repository \
  "deb [arch=amd64] https://repos.emqx.io/emqx-ce/deb/debian/ \
  $(lsb_release -cs) \
  stable"

安裝 EMQ X

1.更新 apt 包索引:url

$ sudo apt update

2.安裝最新版本的 EMQ X ,或者轉到下一步安裝特定版本:code

$ sudo apt install emqx
若是啓用了多個 EMQ X 鏡像庫,則在 apt installapt update 命令中未指定版本的狀況下將始終安裝儘量高的版本,這可能不適合穩定性需求。

3.要安裝特定版本的 EMQ X ,須要列出可用版本,而後選擇並安裝:server

查詢可用版本

$ sudo apt-cache madison emqx

 emqx |  3.1.0 | https://repos.emqx.io/emqx-ce/deb/debian stretch/stable amd64 Packages
 emqx |  3.0.1 | https://repos.emqx.io/emqx-ce/deb/debian stretch/stable amd64 Packages
 emqx |  3.0.0 | https://repos.emqx.io/emqx-ce/deb/debian stretch/stable amd64 Packages

使用第二列中的版本字符串安裝特定版本,例如 3.1-rc.1

$ sudo apt install emqx=3.1.0

4.啓動 EMQ X

$ emqx start emqx 3.1 is started successfully! $ emqx_ctl status Node 'emqx@127.0.0.1' is started emqx v3.1.0 is running

5.EMQ X 啓動成功,如何使用請參考 EMQ X 官方文檔

使用軟件包安裝 EMQ X

若是沒法使用 EMQ X 的鏡像庫來安裝 EMQ X ,則能夠下載 .deb 文件或 .zip 文件並手動安裝。

.deb 文件安裝

1.轉到 emqx.io 或 github ,選擇 Debian 版本,而後下載要安裝的 EMQ X 版本的 .deb 文件。

2.安裝 EMQ X ,將下面的路徑更改成下載 EMQ X 軟件包的路徑。

$ sudo dpkg -i /path/to/emqx-debian9-v3.1.0_amd64.deb

3.啓動 EMQ X

$ emqx start emqx 3.1 is started successfully! $ emqx_ctl status Node 'emqx@127.0.0.1' is started emqx v3.1.0 is running

4.EMQ X 啓動成功,如何使用請參考 官方文檔

.zip 文件安裝

1.轉到 emqx.io 或 github ,選擇 Debian 版本,而後下載要安裝的 EMQ X 版本的 .zip 文件。

2.解壓壓縮包,將下面的路徑更改成下載 EMQ X 軟件包的路徑。

$ unzip /path/to/emqx-debian9-v3.1.0.zip

3.啓動 EMQ X

$ cd emqx $ ./bin/emqx start emqx 3.1 is started successfully! $ ./bin/emqx_ctl status Node 'emqx@127.0.0.1' is started emqx v3.1.0 is running

4.EMQ X 啓動成功,如何使用請參考官方文檔

版權聲明: 本文爲 EMQ 原創,轉載請註明出處。

原文連接:https://www.emqx.io/cn/blog/e...

相關文章
相關標籤/搜索