[GH-ISSUE #418] Management Service Read Timeout #750

Open
opened 2026-08-05 00:39:48 -04:00 by saavagebueno · 0 comments
Owner

Originally created by @diseq on GitHub (Aug 8, 2022).
Original GitHub issue: https://github.com/netbirdio/netbird/issues/418

i'm testing netbird behind nginx. Is there a recommended read timeout value for the management service?

per default, gprc proxy terminates after one minute leading to this:

time="2022-08-08T19:21:14+02:00" level=warning msg="disconnected from the Management service but will retry silently. Reason: rpc error: code = Internal desc = stream terminated by RST_STREAM with error code: INTERNAL_ERROR"

i configured nginx now with this, though not sure if 1h is too much. are there regular management service checkins?

location /management.ManagementService {
  grpc_pass grpc://127.0.0.1:8081;
  grpc_read_timeout 60m;              
}
Originally created by @diseq on GitHub (Aug 8, 2022). Original GitHub issue: https://github.com/netbirdio/netbird/issues/418 i'm testing netbird behind nginx. Is there a recommended read timeout value for the management service? per default, gprc proxy terminates after one minute leading to this: ``` time="2022-08-08T19:21:14+02:00" level=warning msg="disconnected from the Management service but will retry silently. Reason: rpc error: code = Internal desc = stream terminated by RST_STREAM with error code: INTERNAL_ERROR" ``` i configured nginx now with this, though not sure if 1h is too much. are there regular management service checkins? ``` location /management.ManagementService { grpc_pass grpc://127.0.0.1:8081; grpc_read_timeout 60m; } ```
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: DYNR/netbird#750