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 |
What is managed server
What type of object is returned by resultset.getobject()?
What is a domain template?
Do you know how are multi-byte characters used with weblogic jdriver?
Explain weblogic server?
Can I set the deployment order for application modules? For standalone modules?
What are the ways in which weblogic servers can run on multiple machines?
How Administration Server And Managed Servers Will Interact ?
what is the differencees between work manager and executequeue?
how ITIL process occurs in weblogic?
What is meany by plugin?
when i am starting my managed server it is coming to admin state.I used to click on resume button in admin console , so that it is comming to running state. How to resolve this problem for ever so that the server will come directly to running state instead of going to admin state?