nohup ./startWebLogic.sh &
查看后台(nohup 会在当前目录下生成一个nohup.out文件作为输出)
tail -f nohup.out
或者:
nohup ./startWebLogic.sh >日志文件名 &
查看后台
tail -f 日志文件名
关闭weblogic,我们更倾向于直接杀掉weblogic进程:
ps -ef|grep java
查找到进程ID之后,直接运行如下命令:
kill -9 ID
通过守护进程 init最新的是init.d
最好参阅weblogic和apache的官方文档,如果仅仅是启停服务的话,那么只需要:
/etc/init.d/httpd start/stop
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)