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

时间:2021-02-06 17:30:02

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

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

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

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

 

1.nohup

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

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

 

2.&

用途:在后台运行

一般两个一起用

nohup command &