查看端口占用情况
 
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

相关文章:

  • 2022-03-01
  • 2021-07-09
  • 2021-12-04
  • 2021-12-04
猜你喜欢
  • 2022-02-02
  • 2021-12-28
  • 2022-12-23
  • 2021-12-17
  • 2021-09-10
相关资源
相似解决方案