Search code examples
weblogicstartupputty

How to keep weblogic running after closing putty window


I’ve started weblogic through putty:

./startWebLogic.sh

After that server started successfully.

But when I close the putty window, the server stops working

How can I keep weblogic running after I close the putty window?

Thanks!


Solution

  • You will want to use something like the following:

    nohup ./startWebLogic.sh &

    Nohup is a unix command, used to start another program, in such a way that it does not terminate when the parent process is terminated.

    You can also output it to a file if you'd like:

    nohup ./startWebLogic.sh > admin_server.out &