sh [#Process在#Linux中特定的#port上运行]

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh [#Process在#Linux中特定的#port上运行]相关的知识,希望对你有一定的参考价值。

fuser -k 8080/tcp

# or
kill -9 $(lsof -t -i:8080)
# -9 - forcefully

# or
kill -9 $(lsof -t -i:3000 -sTCP:LISTEN)

kill -9 [PID]
fuser 8080/tcp

# or
lsof -t -i:8080  -sTCP:LISTEN
# lsof - list of files(Also used for to list related processes)
# -t - show only process ID
# -i - show only internet connections related process

# or 
sudo netstat -plten |grep java

以上是关于sh [#Process在#Linux中特定的#port上运行]的主要内容,如果未能解决你的问题,请参考以下文章

sh 在Alpine Linux 3.4上的PHP 7.1.7中打破了strftime()%P修饰符

Java调用Linux命令执行

Linux ps命令:用于显示当前进程 (process) 的状态

Linux中定时清除指定目录中30分钟前生成的特定文件

Linux中:Out of memory: Kill process 1270 (java) score 478 or sacrifice child 或者:java.lang.OutOfMemory

在 shell 脚本中杀死后台进程