From 18537be298671f1445cd263a2a526a7679a90343 Mon Sep 17 00:00:00 2001 From: Felix Prasanna <91577249+fprasx@users.noreply.github.com> Date: Thu, 24 Aug 2023 17:32:46 -0400 Subject: [PATCH] monitor: listen on correct port to accept agent connections (#5100) ## Problem The previous arguments have the monitor listen on `localhost`, which the informant can connect to since it's also in the VM, but which the agent cannot. Also, the port is wrong. ## Summary of changes Listen on `0.0.0.0:10301` --- compute_tools/src/bin/compute_ctl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compute_tools/src/bin/compute_ctl.rs b/compute_tools/src/bin/compute_ctl.rs index ba8f4ab2b9..7fdae1f096 100644 --- a/compute_tools/src/bin/compute_ctl.rs +++ b/compute_tools/src/bin/compute_ctl.rs @@ -465,7 +465,7 @@ fn cli() -> clap::Command { .arg( Arg::new("vm-monitor-addr") .long("vm-monitor-addr") - .default_value("127.0.0.1:10369") + .default_value("0.0.0.0:10301") .value_name("VM_MONITOR_ADDR"), ) .arg(