当前位置:   article > 正文

基于阿里云服务器在Ubuntu环境下配置MQTT云服务平台_mqtt 服务器 ubuntu emqx

mqtt 服务器 ubuntu emqx

基于阿里云服务器在Ubuntu环境下配置MQTT云服务平台

首先登陆阿里云服务器

1.安装所需要的依赖包

$ sudo apt update && sudo apt install -y \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

2.添加 EMQ X 的官方 GPG 密钥

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

验证密钥

$ 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>
  • 1
  • 2
  • 3
  • 4
  • 5

3.使用以下命令设置 stable 存储库

$ sudo add-apt-repository \
    "deb [arch=amd64] https://repos.emqx.io/emqx-ce/deb/ubuntu/ \
    ./$(lsb_release -cs) \
    stable"
  • 1
  • 2
  • 3
  • 4

4.更新 apt 包索引

$ sudo apt update
  • 1

5.安装最新版本的 EMQ X Broker

sudo apt install empx
  • 1

6.安装特定版本的 EMQ X Broker

$ sudo apt-cache madison emqx

emqx |      4.0.0 | https://repos.emqx.io/emqx-ce/deb/ubuntu bionic/stable amd64 Packages
emqx |      3.0.1 | https://repos.emqx.io/emqx-ce/deb/ubuntu bionic/stable amd64 Packages
emqx |      3.0.0 | https://repos.emqx.io/emqx-ce/deb/ubuntu bionic/stable amd64 Packages
$ sudo apt install emqx=4.0.0 #更改4.0.0选择自己需要的版本
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

启动EMQ X Broker

$ emqx start
emqx 4.0.0 is started successfully!

$ emqx_ctl status
Node 'emqx@127.0.0.1' is started
emqx v4.0.0 is running
停止 EMQ X Broker
$ emqx stop
ok
卸载 EMQ X Broker
$ sudo apt remove emqx
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

阿里云服务器安全配置

进入安全配置打开这几个端口

请添加图片描述

然后就可以通过浏览器访问啦,找到你的阿里云服务器公网ip地址,在浏览器中输入yourip:18083,就会进入如下界面

账号为admin,密码为public请添加图片描述
之后就到了这个界面啦,至此成功。
请添加图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/543224
推荐阅读
相关标签
  

闽ICP备14008679号