Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add-port-info #102

Merged
merged 2 commits into from
Nov 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
属性名 | 默认值 | 说明 |
------------------------------- | ------------------------ | ----------- |
`meta_server_addrs` | "127.0.0.1:45500" | meta server 地址列表,格式为 ip1:port1, ip2:port2, ip3:port3. **生产配置要求配置3个机器地址以组成一组 RAFT 集群。**
`port` | 45500 | RPC 监听端口
`port` | 45500 | RPC 监听端口。`port` 为 Meta 服务的对外通信端口。此外,系统内部通信还需要使用端口 `port+1`,默认为 45501。**注意 `port` 和 `port+1` 都不要被占用。**
`reuse_port` | true | 开启内核(>3.9) `SO_REUSEPORT` 选项
`ws_http_port` | 11000 | HTTP 协议监听端口 (内部使用)
`ws_h2_port` | 11002 | HTTP/2 协议监听端口 (内部使用)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ nebula> UPDATE CONFIGS storage:v=1;
属性名 | 默认值 | 说明 | 动态修改 |
------------------------------- | ------------------------ | ----------- | ----------- |
`meta_server_addrs` | "127.0.0.1:45500" | meta server 地址列表,格式为 ip1:port1, ip2:port2, ip3:port3 |
`port` | 44500 | RPC 监听端口 |
`port` | 44500 | RPC 监听端口。`port` 为 Storage 服务的对外通信端口。此外,系统内部通信还需要使用端口 `port+1`,默认为 44501。**注意 `port` 和 `port+1` 都不要被占用。** |
`reuse_port` | true | 开启内核(>3.9) `SO_REUSEPORT` 选项
`ws_http_port` | 12000 | HTTP 协议监听端口 (内部使用) |
`ws_h2_port` | 12002 | HTTP/2 协议监听端口 (内部使用) |
Expand Down