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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help me to stop and start the application in solaris server.

Status
Not open for further replies.

starplus2010

Programmer
Nov 7, 2002
3
JP
Hi
I want to stop and start the application running in the solaris server after i do changes in the configuration file for that application. How to do that?.
 
Hello starplus,

There's a forum here at tek-tips "Sun: Solaris" that will probably be able to help you. :) Mike

Want to get great answers to your Tek-Tips questions? Have a look at faq219-2884

It's like this; even samurai have teddy bears, and even teddy bears get drunk.
 
Hi Mike
Thanks for your reply.
Well currently i am developing web based application using perlscript.After editing the configuration file, i have to stop and restart the application. so How to do it in perlscript?.
Thank you
srinivasa
 
the command you would normally use to restart the application, run it like this

$cmd = 'this is the command';

$result = `$cmd`;

the output of $cmd will then be in $result for you to look at Mike

Want to get great answers to your Tek-Tips questions? Have a look at faq219-2884

It's like this; even samurai have teddy bears, and even teddy bears get drunk.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top