when we creates a domain, it creates one-startManagedWebLogic in
bea user_projects\domains\MyDomain\bin dir. Suppose we have 2 or
more than 2 managed severs in our unix env.how can we start all
our managed servers. I know we have to copy startManagedWebLogic
with server name.then wht to modify in the script to start ecah
of the managed servers?
Answer Posted / a reddy
create a startmanagedserver.sh file
vi startmanagedserver.sh
write the script
------------------
DOMAIN_HOME=/home/bea10g/user_projects/domains/domain1
nohup $DOMAIN_HOME/bin/StartManagedwebLogic.sh mngserver-name adminIP:PORT 1>>mngserver-name.log 2>&1 &
--------------------
if u want to start another managed server, give that server name and change the output(1) log file name.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is it ok to add new sessions and subscribers to a queue or topic connection once it has been started? : BEA Weblogic
How do you troubleshoot a crash?
What are the special design care that must be taken when you work with local interfaces?
In how many formats we can deploy an application in wls??
Explain what is the purpose of stub in web-logic server cluster?
What is a trace in relation to web logic server?
What is thread stack size?
How do I call a servlet with parameters in the url? : BEA Weblogic
What is meant by jndi and why its needed??
What is the format of the log message out to standard out?
What is meant by node manager?
Explain deployment descriptors?
Is it better to have more or fewer sessions for a given number of subscribers? : BEA Weblogic
What is meant by unicast?
I have a process running on one of my unix terminals, but I cannot close the terminal window as the process will terminate. How can I transfer this process to a background process?