查看端口占用情况
netstat -an|grep LIST|grep 15
数据库监听占用情况。
netstat -an|grep
1521
1521为端口号
使用如下语句kill占用端口的进程
linux下杀掉占用端口的进程
ps -efww|grep appltest|grep -v grep|cut -c
9-15|xargs kill -9
AIX下杀掉占用端口的进程
ps -ef | grep "appltest" | grep -v grep | awk
‘{print $2}‘ | xargs kill -9
RC-50221 问题解决 - netstat 查看端口占用情况,布布扣,bubuko.com
时间: 2024-10-13 00:32:35