Skip to content

Commit

Permalink
Merge pull request #40175 from juazugas/busy-port-detection-command
Browse files Browse the repository at this point in the history
Update suggested command for busy port detection during the start
  • Loading branch information
gsmet authored Apr 30, 2024
2 parents f97eca3 + b0eacd4 commit 01c11a0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,8 @@ public static void run(Application application, Class<? extends QuarkusApplicati
} else {
for (Integer port : ports) {
applicationLogger
.warnf("Use 'netstat -anop | grep %d' to identify the process occupying the port.", port);
.warnf("Use 'ss -anop | grep %d' or 'netstat -anop | grep %d' to identify the process occupying the port.",
port);
}
applicationLogger.warn("You can try to kill it with 'kill -9 <pid>'.");
}
Expand Down

0 comments on commit 01c11a0

Please sign in to comment.