I have Weblogic Server 10.3.6 installed and I use the script below to start my server:
user_projects/domains/my_domain/bin/startWebLogic.sh
I found the command below to start the server in the background:
nohup startWebLogic.sh &
But when I use this command, I get this output:
-bash-3.2$ nohup ./startWebLogic.sh & [2] 25379 -bash-3.2$ nohup: appending output to `nohup.out'
So, here I have to press Enter to exit this and go to a new line. Now my requirement is that when I run the command, then the server should start, and I have to exit this on a new line, for example:
-bash-3.2$ nohup ./startWebLogic.sh & [2] 25379 -bash-3.2$ nohup: appending output to `nohup.out' -bash-3.2$
Can someone please help me with this. I am using a bash shell.
source share