-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Update suggested command for busy port detection during the start #40175
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for taking the time to open a PR.
I think we should keep the reference to netstat
though as macOS doesn't have ss
(and I'm not sure the BSD have it).
Can you adjust and squash? Thanks!
core/runtime/src/main/java/io/quarkus/runtime/ApplicationLifecycleManager.java
Outdated
Show resolved
Hide resolved
1b572ba
to
a28c2aa
Compare
This comment has been minimized.
This comment has been minimized.
a28c2aa
to
e9ebdc7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I force pushed a small update to fix the formatting issue.
This comment has been minimized.
This comment has been minimized.
Change deprecated busy port detection command with the utility to dump socket statistics.
e9ebdc7
to
b0eacd4
Compare
Status for workflow
|
Thanks for providing a PR! |
Thanks @gsmet for your support and taking care of the PR |
Change the suggested command for busy port detection with the utility to dump socket statistics.
The command
netstat
was deprecated in linux and it is being retired from the default installed networking tools. The suggested command to look for the busy port may not be installed by default on the latest linux distributions (as it happened to me).Find more information on the new tools on the article :
https://www.redhat.com/sysadmin/deprecated-linux-command-replacements
or the replacement announcement :
https://lists.debian.org/debian-devel/2009/03/msg00780.html