suppose we have the thread dump for particular weblogic server.ho can you analyse it manually without using any tool
Answers were Sorted based on User's Feedback
Answer / sujit singh
kill -3 gives javacore dump which is thread dump in wl
terminology. open this file in any text editor and check
Current Thread details . If there server hanged then in
current thread details will give you details that why server
was hanged or which particular thread got stuck,.
| Is This Answer Correct ? | 6 Yes | 1 No |
1)obtain the process id of server
$ps -ef|grep java
2)kill the process
$ kill -3 PID
3)see the log file of server
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / gobinath
Check for the running threads for a particular Managed
server or admin server in Unix box
Syntax: ps -ef|grep <managed servername>or(Admin Server)
the above command will show the running process for the
server
| Is This Answer Correct ? | 4 Yes | 10 No |
Explain the tier architecture of a web logic server?
What is weblogic?
What is the significance of boot?
What is Virtual Host in Weblogic , how to create it & what is the advantage ?
What is the sla in prd,qa,dev.?
What is the default port of weblogic admin server?
What are the uses of a middleware server?
Define the purpose of the serializedsystemini.dat file?
howmany types in garbage collection
What is LDAP and how to configure LDAP server to weblogic server? any budy give me steps
In cluster , the load balancing that simply redirect the client request to any available server in weblogic server cluster. Suppose assume we have 4 managed servers and one admin server. can we trace that request is going to which managed server in the cluster? is it possible to tell that request is going to which ipaddr/managed server?
What is the easiest way to set the classpath ?