我已经安装了 Weblogic Server 10.3.6,我使用下面的脚本来启动我的服务器:
user_projects/domains/my_domain/bin/startWebLogic.sh
我发现下面的命令在后台启动服务器:
nohup startWebLogic.sh &
但是当我使用这个命令时,我得到了这个输出:
-bash-3.2$ nohup ./startWebLogic.sh &
[2] 25379
-bash-3.2$ nohup: appending output to `nohup.out'
所以在这里我必须按 Enter 才能退出并转到新行。现在我的要求是,当我运行命令时,服务器应该启动,我必须从这个到一个新行,比如:
-bash-3.2$ nohup ./startWebLogic.sh &
[2] 25379
-bash-3.2$ nohup: appending output to `nohup.out'
-bash-3.2$
有人可以帮助我吗?我正在使用 bash shell。