ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

nohup 启动 WebLogic Server

2022-07-01 14:02:09  阅读:278  来源: 互联网

标签:log Server sh WebLogic nohup out standard startWebLogic


  1. 但是如果终端关闭,那么程序也会被关闭。但是为了能够后台运行,那么我们就可以使用nohup这个命令,  
  1.     The trick to do nohup and be able to enter username and passwd etc. is to go into C-Shell, csh.  I usually use an advanced C-Shell called "tcsh".  This is the exact steps:  
  2.   
  3. $ tcsh  
  4. $ cd <to the directory>(Where the startWebLogic.sh locates)  
  5. $ nohup ./startWebLogic.sh  
  6.   
  7. <enter user name and passwd if asked>  
  8. <Press Ctrl-Z to suspend it after all the starting messages have been displayed>  
  9.   
  10. $ bg  
  1. 另附一个参考:  
  2. http://langzhiwang888.iteye.com/blog/1534915  
  1. 在启动weblogic的时候我们经常看到如下的命令:  
  2.   
  3. nohup ./startWebLogic.sh >out.log 2>&1 &  
  4.   
  5. 从09年开始用weblogic到现在已经过去3年多了 ,今天终于将该命令理解清楚了。  
  6.   
  7. 其中 0、1、2分别代表如下含义:  
  8.  0 – stdin (standard input)  
  9.  1 – stdout (standard output)  
  10.  2 – stderr (standard error)  
  11.   
  12. nohup ./startWebLogic.sh >out.log 2>&1 &  
  13.   
  14. nohup+最后面的& 是让命令在后台执行  
  15.   
  16. >out.log 是将信息输出到out.log日志中  
  17.   
  18. 2>&1 是将标准错误信息转变成标准输出,这样就可以将错误信息输出到out.log 日志里面来。  

标签:log,Server,sh,WebLogic,nohup,out,standard,startWebLogic
来源: https://www.cnblogs.com/forestwolf/p/16434423.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有