Linux 下 EMQ X 服务器部署

官方文档中提供了好几种安装方式,为了自定义安装版本和安装路径,我采用了 zip 压缩包模式安装。

zip 压缩包下载网站: https://www.emqx.io/downloads/broker/?osType=Linux

一、 上传并解压程序包

wget https://packages.emqx.io/emqx-ce/v4.1.4/emqx-centos7-v4.1.4.zip

unzip emqx-centos7-v4.1.4.zip


二、 启动 EMQ X Broker

cd emqx

./bin/emqx start

emqx 4.0.0 is started successfully!

查看状态

./bin/emqx_ctl status

Node ‘[email protected]’ is started
emqx v4.0.0 is running

三、停止 EMQ X Broker

./bin/emqx stop
ok

四、卸载 EMQ X Broker

直接删除 EMQ X 目录即可

EMQ 2.0 消息服务器默认占用的 TCP 端口包括:
1883 MQTT 协议端口
8883 MQTT/SSL 端口
8083 MQTT/WebSocket 端口
8080 HTTP API 端口
18083 Dashboard 管理控制台端口

EMQ 2.0 占用的上述端口,可通过 etc/emq.conf 配置文件的 ‘listener’ 段落设置:

## Examples: 1883, 127.0.0.1:1883, ::1:1883
listener.tcp.external = 0.0.0.0:1883
## Examples: 8883, 127.0.0.1:8883, ::1:8883
listener.ssl.external = 8883
## Examples: 8083, 127.0.0.1:8083, ::1:8083
listener.ws.external = 8083

你可能感兴趣的:(服务器,linux,运维)