其他分享
首页 > 其他分享> > nohup 启动 WebLogic Server

nohup 启动 WebLogic Server

作者:互联网

  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