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?
Answers were Sorted based on User's Feedback
Answer / vijaya kumar
We need to write the wrapper scripts for those kind of need .
create the wrapper scripts as follows
1.create a file startmangedserver1.sh
$vi startmangedserver1.sh
DOMAIN_HOME=beauser_projectsdomainsMyDomainin
nohup $DOMAIN_HOMEstartMangedWeblogic.sh mang1 1>>mng1.log 2>>&1 &
2.change the file permissions of the startmangedweblogic1.sh
$chmod 777 startmanagedweblogic1.sh
start managed server using the wrapper script
$./startmanagedserver1.sh
3.you can create different files to run different managed servers but change the server name in the script.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / arzun
if u want to modify the scripts you need to update the
instance name (managed server name )& port , admin url .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Do you know what is the local interface used by web logic server?
What signal tells the jvm to give a thread dump? Does those signal work if you specify -xrs? Why?
For ejb applications with bean-managed transaction demarcations, which of the following is used by the client to get a reference to the usertransaction object for the weblogic server domain? : BEA Weblogic
Can I use the getattribute() and setattribute() methods of version 2.2 of the java servlet api to parse xml documents? : BEA Weblogic
A client wants to preserve the reference to the ejbhome object of an enterprise bean instance and use it later. Which of the following can be serialized for this purpose? : BEA Weblogic
Ho do you troubleshoot server hang?
How can we configure http tunneling on weblogic?
What are crossdomainconnectors in reference to web logic servers?
Do you know how can third-party jdbc driver be used with jms?
What is the default thread stack size in windows?
How can default jvm be changed to others?
What command will you use to recursively search for a particular string across multiple files in your currentdirectory?