Linux下查看、关闭、启动weblogic服务

Linux下查看、关闭、启动weblogic服务

查看命令:ps -ef|grep 'weblogic'

关闭命令:kill -9 进程 (stopweblogic会经常出现停止失败)

启动并挂载命令:nohup ./startWebLogic.sh >out.log 2>&1 &

1.nohup

用途:不挂断地运行命令。

语法:nohup Command [ Arg … ] [ & ]

2.&

用途:在后台运行

一般两个一起用

nohup command &

原文地址:https://www.cnblogs.com/soul-mate/p/8659453.html