Linux weblogic启停

一般weblogic启停在windows下很方便使用图标方式。但是在linux下需要杀掉weblogic进程才能真正关掉weblogic.

1.查询weblogic进程 ps -ef | grep "weblogic" 

2.杀掉weblogic子进程  kill -9 19536 

3.后台启动 weblogic。    nohup ./startWebLogic.sh&  (&的作用是让weblogic启动在后台运行)

原文地址:https://www.cnblogs.com/lidedong/p/9578506.html