From b7dd03b17cc7850f234fc3c10dc50c55cd830189 Mon Sep 17 00:00:00 2001 From: dkeven Date: Wed, 18 Dec 2024 14:01:22 +0800 Subject: [PATCH] fix: add precheck for port 9100 --- pkg/bootstrap/precheck/tasks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/bootstrap/precheck/tasks.go b/pkg/bootstrap/precheck/tasks.go index d5f8d62..7e42132 100644 --- a/pkg/bootstrap/precheck/tasks.go +++ b/pkg/bootstrap/precheck/tasks.go @@ -57,7 +57,7 @@ type PreCheckPortsBindable struct { } func (t *PreCheckPortsBindable) Execute(runtime connector.Runtime) error { - ports := []int{80, 443, 444, 2444, 30180} + ports := []int{80, 443, 444, 2444, 9100, 30180} var unbindablePorts []int for _, port := range ports { l, err := net.Listen("tcp", fmt.Sprintf(":%d", port))