Skip to content

Commit

Permalink
Merge pull request #2729 from emqx/hostname-cannot-be-used-as-nodename
Browse files Browse the repository at this point in the history
fix: only FQDN is allowed in node name
  • Loading branch information
Meggielqk authored Nov 8, 2024
2 parents b4dd7ec + 4125ae1 commit 27c1bc6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion en_US/advanced/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,8 @@ Deploy EMQX Broker cluster on two servers of s1.emqx.io, s2.emqx.io:
| [email protected] or [email protected] | s2.emqx.io | 192.168.0.20 |

::: tip Tip
The format of node name is<Name@Host>, and Host must be an IP address or FQDN (server name. Domain name)
The format of node name is<Name@Host>, and Host must be an IP address or FQDN(`hostname.domain-name`)
The format of FQDN is `hostname.domain-name`, and it cannot be a single-layer `hostname`. For example, `abc` is invalid, while `abc.local` is valid.
:::

#### Configure [email protected] node
Expand Down
3 changes: 2 additions & 1 deletion zh_CN/advanced/cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,8 @@ cluster.k8s.app_name = ekka
| [email protected][email protected] | s1.emqx.io | 192.168.0.10 |
| [email protected][email protected] | s2.emqx.io | 192.168.0.20 |

**注意:** 节点名格式为 <Name@Host>, Host 必须是 IP 地址或 FQDN (主机名。域名)
**注意:** 节点名格式为 <Name@Host>, Host 必须是 IP 地址或 FQDN。
其中 FQDN 格式为:`主机名.域名`,不能是单层的 `主机名`。例如,`abc` 是不合法的,而 `abc.local` 是合法的。

#### 配置 [email protected] 节点

Expand Down

0 comments on commit 27c1bc6

Please sign in to comment.