【发布时间】:2020-04-12 10:34:05
【问题描述】:
在 HashiCorp Nomad 中,是否可以为服务器和客户端指定绑定端口(例如,从 464{6,7,8} 到 600{6,7.8}?
addresses 节不允许端口指定,-bind 开关也不允许。
advertise 节不会更改 Nomad 绑定的端口。
-bind 开关只允许指定 IP:
> nomad agent -server -data-dir=/tmp/nomad -bind=0.0.0.0
==> No configuration files loaded
==> Starting Nomad agent...
==> Nomad agent configuration:
Advertise Addrs: HTTP: <HOSTIP>:4646; RPC: <HOSTIP>:4647; Serf: <HOSTIP>:4648
Bind Addrs: HTTP: 0.0.0.0:4646; RPC: 0.0.0.0:4647; Serf: 0.0.0.0:4648
尝试指定端口错误输出:
> nomad agent -server -data-dir=/tmp/nomad -bind=0.0.0.0:6000
==> Failed to parse HTTP advertise address (, 0.0.0.0:6000, 4646, false): Error resolving bind address "0.0.0.0:6000": lookup 0.0.0.0:6000: no such host
【问题讨论】:
-
我可以指出 Nomad 问题通常存在于 SO 上吗?来源:stackexchange.com/search?q=nomad
-
我上面的评论是指对我的问题和我的回答投反对票的用户,他还指出 Nomad 问题不属于 SO。
标签: port specifications nomad