serverdevops【Q250】刚刚启动了一个服务,如何知道这个服务对应的端口号是多少

刚刚启动了一个服务,如何知道这个服务对应的端口号是多少

Issue 欢迎在 Gtihub Issue 中回答此问题: Issue 252

Author 回答者: edisonwd

在linux系统中,我通常通过 ps -aux |grep 服务名 查看服务端口

Author 回答者: wuzhejia

netstat -tlunp | grep {name}