I'm trying to start a weblogic server using ant exec command,after the operation triggers the exec process creates a child process, i wish to kill the parent process and keep alive the child process.

My code below

<project name="startserver" default="start" basedir=".">
        <target name="start">
            <exec dir="C:\bea\user_projects\domains\devtest" 
                     executable="cmd" 
                     failonerror="true">
                     <arg value="/c"/>
                 <arg value="startWebLogic.cmd"/>
             </exec>
        </target>
</project>

this code starts server and my application is also up, problem is that ant script is still running & moreover it doesn't exit as shown below

enter image description here

how can i exit from the exec and kill the parent process, as a workaround i tried using

timeout

attribute of exec task, but it kills both parent and child process, how can i achieve this so that ANT exits and also server keeps running in the background.

link|improve this question

74% accept rate
feedback

2 Answers

Try the spawn="true" attribute of the exec task. It should do what you are looking for. But beware of the implications for input/output handling (see link).

link|improve this answer
i could not achieve even after using spawn="true" – raghav Jan 25 at 15:18
feedback

When you set spawn="true" for exec tag, the child process runs in the the background even if current process ends execution. In your case instead of cmd, use startweblogic.cmd directly as exec command.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.