Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using startWebLogic.cmd in telnet

Status
Not open for further replies.

mmaloney10

Programmer
Jul 6, 2005
3
US

I am working on a QA automation project and am having trouble creating routines for starting the weblogic server.

Problem:
After telneting to a Windows box and executing startWebLogic.cmd, my script then logs out. Once I log out of the system, the process goes away.

I have tried using the following in my shell script (running in Cygwin):

startWebLogic.cmd
nohup startWebLogic.cmd
nohup startWebLogic.cmd >> /dev/null&

Anyone have any other ideas on how to keep this process running after logging out?

Thanks
 
The [tt]start[/tt] command maybe? Do a "[tt]start /?[/tt]" on Windows for options. So maybe something like...
Code:
start /B startWebLogic.cmd >> startWebLogic.log

Also look at [tt]cmd.exe[/tt] and it's options ("[tt]cmd /?[/tt]").

I haven't tried either of these because I don't use weblogic on Windows, but it looks like a good place to start.

Hope this helps.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top