Linux weblogic启停时间:2023-03-09 08:45:55 一般weblogic启停在windows下很方便使用图标方式。但是在linux下需要杀掉weblogic进程才能真正关掉weblogic. 1.查询weblogic进程 ps -ef | grep "weblogic" 2.杀掉weblogic子进程 3.后台启动 weblogic。 nohup ./startWebLogic.sh& (&的作用是让weblogic启动在后台运行)