Skip to content

XSI-1706/CP-51295: limit open TCP connections to 250 and increase soc… #5953

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

Merged
merged 1 commit into from
Aug 28, 2024
Merged
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
6 changes: 3 additions & 3 deletions ocaml/xapi/xapi_globs.ml
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ let pbis_db_path = "/var/lib/pbis/db/registry.db"
let on_system_boot = ref false

(* Default backlog supplied to Unix.listen *)
let listen_backlog = 128
let listen_backlog = 768

(* Xapi script hooks root *)
let xapi_hooks_root = ref "/etc/xapi.d"
Expand Down Expand Up @@ -892,9 +892,9 @@ let header_total_timeout_tcp = ref 60.
let max_header_length_tcp = ref 1024
(* Maximum accepted size of HTTP headers in bytes (on TCP only) *)

let conn_limit_tcp = ref 800
let conn_limit_tcp = ref 250

let conn_limit_unix = ref 1024
let conn_limit_unix = ref 250

let xapi_globs_spec =
[
Expand Down