RC-50221 问题解决

查看端口占用情况
 
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
原文地址:https://www.cnblogs.com/toowang/p/3767485.html