Linux下查看、關閉、啓動weblogic服務web
查看命令:ps -ef|grep 'weblogic'blog
關閉命令:kill -9 進程 (stopweblogic會常常出現中止失敗)進程
啓動並掛載命令:nohup ./startWebLogic.sh >out.log 2>&1 &後臺
1.nohup語法
用途:不掛斷地運行命令。grep
語法:nohup Command [ Arg … ] [ & ]command
2.&top
用途:在後臺運行co
通常兩個一塊兒用ps
nohup command &