# License 配置 (EMQX 企业版)

# 任务目标

  • 如何配置 EMQX 企业版 License。
  • 如何更新 EMQX 企业版 License。

# 配置 License

EMQX 企业版 License 可以在 EMQ 官网免费申请:申请 EMQX 企业版 License (opens new window)

下面是 EMQX Custom Resource 的相关配置,你可以根据希望部署的 EMQX 的版本来选择对应的 APIVersion,具体的兼容性关系,请参考EMQX Operator 兼容性:

# 检查 License 信息

kubectl exec -it emqx-ee-core-0 -c emqx -- emqx_ctl license info
1

输出类似于:

customer        : EMQ
email           : cloudnative@emqx.io
deployment      : deployment-6159820
max_connections : 10000
start_at        : 2023-02-16
expiry_at       : 2023-05-17
type            : trial
customer_type   : 0
expiry          : false
1
2
3
4
5
6
7
8
9

从输出结果可以看到我们申请的 License 的基本信息,包括申请人的信息和 License 支持最大连接数以及 License 过期时间等。